‎2008 Feb 13 5:04 AM
hi,
The session method can't return sy-subrc, and call tranction will return
sy-subrc what does it mean?
‎2008 Feb 13 6:26 AM
Hi
With synchronous updating, we can check SY-SUBRC to determine the success of the transaction and the actual update to the database.
With asynchronous updating, we can check SY-SUBRC to determine the success of the transaction only, not the actual update to the database.
‎2008 Feb 13 6:26 AM
Hi
With synchronous updating, we can check SY-SUBRC to determine the success of the transaction and the actual update to the database.
With asynchronous updating, we can check SY-SUBRC to determine the success of the transaction only, not the actual update to the database.
‎2008 Feb 13 6:34 AM
Hi
session is a 2 step process. we dont update database directly. 1st we craete session, then if we run session database will be updated.
so if take sy0subrc value, it relates to the session creation but not database update.
in Call Trn method, database will be updated directly. so sy-subrc value is relates to database update
Reward if useful