2013-03-21- 4678.400 -Spec-ROC rework implementation - Update User IDs in ROCET with ROC IDs #ROCETApplication
SPECIFICATIONS
ROC rework implementation -Update User IDs in ROCET with ROC IDs
Purpose
Update UserID column in ROCET with ROC IDs.
Admin Info
Purpose
|
Update UserIDs in ROCET with ROC IDs
|
Requested By
|
Bibin
|
Spec Created By
|
Rajesh K
|
Spec Created Date
|
03/21/2013
|
Spec QA by
|
Rajesh K
|
Document Status
|
Completed
|
References
Prior Tickets
N/A
Documents
N/A
Functional Requirement
In tblUserMst table , UserID column is taken as identity column value due to which it mismatches with ID in ROC.
Update to this table is required to match the UserID column depending on ADID between old and new ROC and if any addition records exists in ROCET, that should still exists.
Solution Summary
[Discuss this section with Requester and get approval prior to beginning work]
Write a query to do following
- Take backup of existing records in ROCET into temp table
- truncate entries from ROCET user master table [tblUserMst]
- insert users from ROC to ROCET
- check for any addional records in temp table
- if any records exists, insert those records with default value [Identity column].
Test Plan
[List test scenarios/cases to be executed here]
Title
|
Module
|
Steps
|
Expected Result
|
1) Compare Rows
|
DB Users Comparision
|
- Login to production DB
- Select ROC Users from tblUserMst with ADID,User_MST_ID columns
- Select ROCET Users from tblUserMst with ADID,User_MST_ID columns
- Compare the list and map on ADID
|
- Logs to production SQL
- returns all users in ROC.
- returns all users in ROCET.
- User User_MST_ID should match for all ADID in roc
|
Solution Details
[Provide complete technical details for configuration or programming here]
Issues