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

Append MIBC with additional field

coolio_7
Participant
0 Likes
681

Gurus,

My requirement is to append transaction MIBC for additional parameter.

Can transaction MIBC (ABC analysis for cycle counting) be appended for additional field in the selection screen (Plant specific material status- Material master/ Purchasing view- MMSTA).

thanks in advance.

Gurus,

My requirement is to append transaction MIBC for additional parameter.

Can transaction MIBC (ABC analysis for cycle counting) be appended for additional field in the selection screen (Plant specific material status- Material master/ Purchasing view- MMSTA).

thanks in advance.

2 REPLIES 2
Read only

rajkumarnarasimman
Active Contributor
0 Likes
564

Hi Sachin,

I hope the screen exit is not available for T-code MIBC.

If the requirement is to add the additional field means, you can get the value from user using Popup window and store the same in the table which is created using append structure. you can try the below exit which may trigger.

Steps:

  1. Create an append structure with the new field in the standard table at where the value need to be stored
  2. Find the exit which is triggering in MIBC
  3. Write the code to show the popup window to user and get the value from the user
  4. After that assign the value to the appropriate field in the structure which need to be updated same as normal updating.

Exit name Short text

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

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

Regards

Rajkumar Narasimman

Read only

0 Likes
564

thanks Raj!

let me work around that corners to see if it meets my requirements.