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

User exit for LT03

Former Member
0 Likes
692

Hi all,

I need to find out what is the user exit that enter right after the user create the TO and click on 'Save' button.

I already tried on the program that can search all user exit available and i got 100++ results in return. I need to know the exactly user exit.

Time constraint and hope u all can help and advice.

Thanks.

Best Regards,

JL

Hi all,

I need to find out what is the user exit that enter right after the user create the TO and click on 'Save' button.

I already tried on the program that can search all user exit available and i got 100++ results in return. I need to know the exactly user exit.

Time constraint and hope u all can help and advice.

Thanks.

Best Regards,

JL

1 REPLY 1
Read only

uwe_schieferstein
Active Contributor
0 Likes
549

Hello

I would assume that are two top candidates for your requirement:

- MWMTO001 (Enhancements for end of transfer order generation)
- MWMTR001 (Exits at the end of transfer rqmnt creation (IM,PP interf.))

The second exit has the component EXIT_SAPLL03T_003 with the following interface:

FUNCTION EXIT_SAPLL03T_003.
*"----------------------------------------------------------------------
*"*"Lokale Schnittstelle:
*"       TABLES
*"              XV_LTBK STRUCTURE  LTBK
*"              XV_LTBP STRUCTURE  LTBP
*"              XH_LTBK STRUCTURE  LTBK
*"              XH_LTBP STRUCTURE  LTBP
*"----------------------------------------------------------------------

  INCLUDE ZXLTRU01.

ENDFUNCTION.

The naming of the tables parameter (XV_...) indicates that these parameters are semantically (eX)changing parameters.

Regards

Uwe