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

BADI

Former Member
0 Likes
360

hi experts,

i want to add new field for serial number of material(SERNP) in MIGO Transaction and i want to updata that field which mathods i have to sellect in "mb_migo_badi" BADI.

please help me

thanks

Rags

hi experts,

i want to add new field for serial number of material(SERNP) in MIGO Transaction and i want to updata that field which mathods i have to sellect in "mb_migo_badi" BADI.

please help me

thanks

Rags

1 REPLY 1
Read only

Former Member
0 Likes
333

Hi Naveen,

If you are thinking of putting the field in header use the following methods

PBO_HEADER PBO of Header Screen

PAI_HEADER PAI of Header Screen

CHECK_HEADER Check Header Data of Goods Movement

for item level try the following

PBO_DETAIL PBO of Detail Screen

PAI_DETAIL PAI of Detail Screen

LINE_MODIFY Add / Change a Line (GOITEM)

LINE_DELETE Delete a Line (GOITEM)

The field we need to create should be present in a program as a screen field(not a selection screen) and call it in the PBO part of header or item by passing

E_CPROG -> program name

E_DYNNR -> screen number

so that it will be visible on the MIGO screen

For updation we need post document(POST_DOCUMENT) or similar methos..which gets triggered towards the end

Please explore the above mentioned and revert back,and do reward if useful

Regards

Byju