‎2008 Mar 17 7:05 PM
Hi Gems,
This is an interview question .
what is meant by update terminations? While doing an updation say into R/3 (say with an inbound Idoc ), Does it happen only while doing with BAPI's?
thanks
‎2008 Mar 17 8:09 PM
Usual scenario ,
you are trying to create a sales order via
BDC / IDOC / BAPI
and you get successful message saying 'Sales Order is created ' along with the number . But soon after you receive an email in your SAP Invbox saying 'Update Terminated'.
what happens is that sales order no. is given as soon as the input data passes all validation checks . and finally everything is sent for UPdate Task.
It is there the Update task fails , sometimes due to there is already an existing key in the table which you are trying to create or some other issue. never the less update fails.
Hope this helps.
‎2008 Mar 17 7:55 PM
Hi Dan,
UPDATE termination may happen whenever the database update is done in UPDATE TASK.
This has nothingh to do with BAPI or not to BAPI.
Search online help on UPDATE TASK.
Regards,
Clemens
‎2008 Mar 17 8:09 PM
Usual scenario ,
you are trying to create a sales order via
BDC / IDOC / BAPI
and you get successful message saying 'Sales Order is created ' along with the number . But soon after you receive an email in your SAP Invbox saying 'Update Terminated'.
what happens is that sales order no. is given as soon as the input data passes all validation checks . and finally everything is sent for UPdate Task.
It is there the Update task fails , sometimes due to there is already an existing key in the table which you are trying to create or some other issue. never the less update fails.
Hope this helps.
‎2008 Mar 17 9:23 PM
Hi Vaibhav & Clemens,
Can an updation fail while unit testing because of conversion errors?
thanks
Dan
‎2008 Mar 17 9:45 PM
Update can fail only when COMMIT WORK happens in UPDATE TASK or otherwise.
If you are unit testing without the COMMIT WORK , you wont get this.