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

Unloading Point User Exit

Former Member
0 Likes
1,387

Hi all,

We have requirement to enter Unloading point using user exit at item level in Sales order .

Any suggestions welcome,

Regards,

4 REPLIES 4
Read only

ans1
Explorer
0 Likes
936

Hi.

I am not sure what you mean with "Unloading Point".

You can find user exits by switch into debugging mode ( /h ) before the task you want to do and then insert break points at the abap statement CALL CUSTOMER-FUNCTION (using F9 in new debugger).

Now you can go through the possible user exits by pressing F8.

Greetz,

Andrea

Read only

Former Member
0 Likes
936

Hi,

In the include MV45AFZZ use the beloe exit and code.

FORM userexit_field_modification.

case screen-name.

check sy-dynnr = '4452'.

WHEN 'KUWEV-ABLAD'.

KUWEV-ABLAD = 'TEST'.

endcase.

ENDFORM. "USEREXIT_FIELD_MODIFICATION

Thanks.

Read only

0 Likes
936

If i want user exit for unloading point while processing IDOCS for sales order then where we embed the code for same.

Regards,

Read only

0 Likes
936

Hi ,

This user exit will tigger when u are updating(creation/change) sales order, once u update it on sales order items , u can get it in Idocs as well ?

Regards

Prabhu