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

MB1B

Former Member
0 Likes
798

hi. abap gurus ..

I need a user Exit which is trigger at time of Saving Mb1b transcation.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
760

Hi,

Try with these Exits.

MBCF0002 Customer function exit: Segment text in material doc. item

MBCF0005 Material document item for goods receipt/issue slip

MBCF0006 Customer function for WBS element

MBCF0007 Customer function exit: Updating a reservation

MBCF0009 Filling the storage location field

MBCF0010 Customer exit: Create reservation BAPI_RESERVATION_CREATE1

MBCF0011 Read from RESB and RKPF for print list in MB26

MB_CF001 Customer Function Exit in the Case of Updating a Mat. Doc.

Hope this helps u.

Thanks.

4 REPLIES 4
Read only

Former Member
0 Likes
760

Hi,

There are 8 user exits in MB1B Tcode.


NAME                   Description

MBCF0002            Customer function exit: Segment text in material doc. item 
MBCF0005            Material document item for goods receipt/issue slip        
MBCF0006            Customer function for WBS element                          
MBCF0007            Customer function exit: Updating a reservation             
MBCF0009            Filling the storage location field                         
MBCF0010            Customer exit: Create reservation BAPI_RESERVATION_CREATE1 
MBCF0011            Read from RESB and RKPF for print list in  MB26            
MB_CF001            Customer Function Exit in the Case of Updating a Mat. Doc.

Regards,

Anirban

Read only

Former Member
0 Likes
761

Hi,

Try with these Exits.

MBCF0002 Customer function exit: Segment text in material doc. item

MBCF0005 Material document item for goods receipt/issue slip

MBCF0006 Customer function for WBS element

MBCF0007 Customer function exit: Updating a reservation

MBCF0009 Filling the storage location field

MBCF0010 Customer exit: Create reservation BAPI_RESERVATION_CREATE1

MBCF0011 Read from RESB and RKPF for print list in MB26

MB_CF001 Customer Function Exit in the Case of Updating a Mat. Doc.

Hope this helps u.

Thanks.

Read only

0 Likes
760

Hi..

I have checked these Exit I want Exit o Badi or Enchancement Spot that is trigger at the time of Saving Mb1b transcation

Read only

0 Likes
760

Hi,

Just try these simple steps to find badi triggering which clicking 'SAVE' button.

1. Go to the TCode SE24 and enter CL_EXITHANDLER as object type.

2. In 'Display' mode, go to 'Methods' tab.

3. Double click the method 'Get Instance' to display it source code.

4. Set a breakpoint on 'CALL METHOD cl_exithandler => get_class_name_by_interface'.

5. Then run your transaction.

6. The screen will stop at this method.

7. Check the value of parameter 'EXIT_NAME'. It will show you the BADI for that transaction.

Hope this helps u.

Thanks.