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

differece between Starting new task and in update task

Former Member
0 Likes
2,370

What is the dfference between starting new task and in udate task.

What is V1 Update and V2 Update.

I new in SAP.

Please explain me urgently.......

Thanks in advance

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,663

V1 update module generate update requests in table VBLOG in synchronous mode and in asynchronous update in main memory .

V2 update module generates requests in table VBLOG and always run asynchronously .

V1 update functions are handled by the system asynchronously,synchronously and in lolal where as V2 update functions are always handled by the system asynchronously .

7 REPLIES 7
Read only

Former Member
0 Likes
1,663

Hi Subhajit,

A function called in update task will not execute until a commit work is encountered.

A function called with 'STARTING NEW TASK' will be triggered immediately, but will run asynchronously with respect to your current program.

Regards,

Pankaj Singh

<b>**** please do not forget to give points</b>

Read only

Former Member
0 Likes
1,664

V1 update module generate update requests in table VBLOG in synchronous mode and in asynchronous update in main memory .

V2 update module generates requests in table VBLOG and always run asynchronously .

V1 update functions are handled by the system asynchronously,synchronously and in lolal where as V2 update functions are always handled by the system asynchronously .

Read only

0 Likes
1,663

I think i have understood it........Can i say that UPDATE TASK does V1 update (online update) and STARTING NEW TASK does V2 update(asynchronous update).

I have one question.....when in starting new task does SAP stores the task name that is given in the program in some structure?

Read only

0 Likes
1,663

Hi,

In sap internally every task create one process id, task id, userid, .... stores in the sap tables, thats why when you use 'STAT' , it shows all taskid,....

so if you want know some detials just check when you click stat what program invoking..

Regards

Read only

0 Likes
1,663

Can u please explain me what is STAT?

Read only

0 Likes
1,663

What is the database table in which it gets stored?

Read only

Former Member
0 Likes
1,663

v1 update means online update, its updating immaidetly syncronise way, v2 is offline means asyncronise depend on process avaialbility

Regards