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: 

WORKFLOW

Former Member
0 Kudos
90

Hi All,

I have a requirement where I need to tap the sales order related data into a custom table when the sales order is getting created.I donot want to use UserExits for this.

I need to use a workflow for this requirement.

I need to trigger the workflow when the sales order is created and tap the data into the custom table through a BO.

Can someone tell me as to how can this be achieved??

How the data flow can be monitored??

Thanks,

Sneha Singh.

1 ACCEPTED SOLUTION

Former Member
0 Kudos
56

Hi

Use FM SWE_EVENT_CREATE_FOR_UPD_TASK to call an event for your Business object during order creation. You might have to call this FM from the save user-exit.

The corresponding event-handler method can read the container values and update a Z-table.

Regards

Shounak

2 REPLIES 2

Former Member
0 Kudos
57

Hi

Use FM SWE_EVENT_CREATE_FOR_UPD_TASK to call an event for your Business object during order creation. You might have to call this FM from the save user-exit.

The corresponding event-handler method can read the container values and update a Z-table.

Regards

Shounak

Former Member
0 Kudos
56

More help required please.