Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

BDC Loacal

Former Member
0 Likes
606

Hi,

I can not understand what is L ( other than A, S) local update in call transaction method. can any one explain please.

Thanks and regards

mahesh.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
585

Hi,

Local update mode describes the updates to be done in the memory of the current process. No entries are made in and then deleted from the database describing the update task.

Regards

Sudheer

3 REPLIES 3
Read only

Former Member
0 Likes
586

Hi,

Local update mode describes the updates to be done in the memory of the current process. No entries are made in and then deleted from the database describing the update task.

Regards

Sudheer

Read only

Former Member
0 Likes
585

Hi Mahesh,

You use the UPDATE parameter to specify how updates produced by a transaction should be processed. You can select between these modes:

A Asynchronous updating. In this mode, the called transaction does not wait for any updates it produces to be completed. It simply passes the updates to the SAP update service. Asynchronous processing therefore usually results in faster execution of your data transfer program.

Asynchronous processing is NOT recommended for processing any larger amount of data. This is because the called transaction receives no completion message from the update module in asynchronous updating. The calling data transfer program, in turn, cannot determine whether a called transaction ended with a successful update of the database or not.

If you use asynchronous updating, then you will need to use the update management facility (Transaction SM12) to check whether updates have been terminated abnormally during session processing. Error analysis and recovery is less convenient than with synchronous updating.

S Synchronous updating. In this mode, the called transaction waits for any updates that it produces to be completed. Execution is slower than with asynchronous updating because called transactions wait for updating to be completed. However, the called transaction is able to return any update error message that occurs to your program. It is much easier for you to analyze and recover from errors.

<b>L Local updating. If you update data locally, the update of the database will not be processed in a separate process, but in the process of the calling program. (See the ABAP keyword documentation on SET UPDATE TASK LOCAL for more information.)</b>

Read only

Former Member
0 Likes
585

Thanks for your all valuable replies

Regards

Mahesh