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: 

USER-EXIT

former_member190312
Active Participant
0 Kudos

can i use EXIT_SAPLIPW1_008(IQSM0008) to pre-populate the serial numbers when creating the deliveries in VL01n?

plz suggest me?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hello,

I would suggest you to gor for BADI's.

Follow the below steps to find out what all BADI's are called when you press any button in any transaction.

1) Goto se24 (Display class cl_exithandler)

2) Double click on the method GET_INSTANCE.

3) Put a break point at Line no.25 (CASE sy-subrc).

Now

4) Execute SAP standard transaction

5) Press the required button for which you need to write an exit logic, the execution will stop at the break point.

6) Check the values of variable 'exit_name', it will give you the BADI name called at that time.

7) This way you will find all the BADIs called on click of any button in any transaction.

Regs,

Venkat Ramanan N

2 REPLIES 2

Former Member
0 Kudos

I think you can try the FM EXIT_SAPLIE01_005 for serial number update.This FM is in enhancement IQSM0005.

Former Member
0 Kudos

Hello,

I would suggest you to gor for BADI's.

Follow the below steps to find out what all BADI's are called when you press any button in any transaction.

1) Goto se24 (Display class cl_exithandler)

2) Double click on the method GET_INSTANCE.

3) Put a break point at Line no.25 (CASE sy-subrc).

Now

4) Execute SAP standard transaction

5) Press the required button for which you need to write an exit logic, the execution will stop at the break point.

6) Check the values of variable 'exit_name', it will give you the BADI name called at that time.

7) This way you will find all the BADIs called on click of any button in any transaction.

Regs,

Venkat Ramanan N