Update Production Work Item using activity
Hi,
I'm planning to update Production work data using activity by getting the pzInskey, open the work item and then save it. The total number of work is around 100,000 work item.
Will Report Definition or Obj-Browse can handle one big call to get all the work item (100,000)? My concern is the system might hangup.
Is there a better and faster way to update the work item?
Thank you in advance for your kind advice.
Regards,
nomar
HI ,
Few possible ways :
1) Create an Agent , call your activity from it . In the activity while doing Obj-Browse , limit the number of records and fetch only those records which are not updated . Process those records at a time . Here you may need to track which all work items are updated . So next time , your Obj-Browse skips the updated work items. You may iterate it till all the work items are updated.
2) Is it not possible to use SQl to update your data ? ( I assume the update logic is not complex)
Regards
Bhavya