Application Development 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: 

Update Function Module

rvmosquera
Explorer
0 Kudos

Hi everybody, i want to know what is exactly an update function module, and if it has some problem with jobs.

Thanks...

1 ACCEPTED SOLUTION
4 REPLIES 4

p291102
Active Contributor
0 Kudos

Hi

In R/3 system, Go to transaction - SE37 and put any standard function module name

say BAPI_PO_CREATE

and click on Display key.

Go to the Attributes tab.

Press F1 on the particular radio buttons (say Update Function module .. and so on..)

You will all the relevant information from there.

Also read this

-


To be able to call a function module in an update work process, you must flag it in the Function Builder. When you create the function module, set the Process Type attribute to one of the following values:

Update with immediate start

Set this option for high priority ("V1") functions that run in a shared (SAP LUW). These functions can be restarted by the update task in case of errors.

Update w. imm. start, no restart

Set this option for high priority ("V1") functions that run in a shared (SAP LUW). These functions may not be restarted by the update task.

Update with delayed start

Set this option for low priority ("V2") functions that run in their own update transactions. These functions can be restarted by the update task in case of errors.

-


Hope this will help.

Pls reward suitable points.

Thanks,

Shankar

Former Member
0 Kudos

Hi Raul,

To be able to call a function module in an update work process, you must flag it in the Function Builder. When you create the function module, set the Process Type attribute to one of the following values:

Update with immediate start

Set this option for high priority ("V1") functions that run in a shared (SAP LUW). These functions can be restarted by the update task in case of errors.

Update w. imm. start, no restart

Set this option for high priority ("V1") functions that run in a shared (SAP LUW). These functions may not be restarted by the update task.

Update with delayed start

Set this option for low priority ("V2") functions that run in their own update transactions. These functions can be restarted by the update task in case of errors.

reward if it helps,

keerthi

Former Member
0 Kudos

Hi raul,

1. Update FM - The main purpose of such FM is to update

some database tables, in a consitent manner.

2. It means that, when we call such update FM,

it does not update the tables immediately.

3. Instead

4. It stores the information (such as table to be update, data to be update etc),

and later on,

indepenently updates the tables.

5. If any error occurs, it notifies using inbox/workplace.

regards,

amit m.