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

adding field to std screen mm01

Former Member
0 Likes
417

Hi folks,

i want to add a feild( idnlf ) to mm01 transaction.iam able to add the feild, bt data is not updating in mara table.iam using enhancement mga00001.in enhancement i wrote code as:

Tables: Mara.

Data: idnlf type mara-idnlf.

if sy-ucomm = 'BU' or sy-ucomm = 'YES'.

import mara-idnlf from memory id 'IDNLF'.

move mara-idnlf to cmara-idnlf.

endif.

and in function group screen :

MODULE ASSIGN_DATA INPUT.

if sy-tcode = 'MM01' or

sy-tcode = 'MM02'.

export mara-idnlf to memory id 'IDNLF'.

endif.

ENDMODULE.

My question is if im adding custom field the data is updating.but if iam using standard field(idnlf) the data is not updating.please let me know can we add standard field and update if so how.

please do needful.

Thanks,

Neelima.N

2 REPLIES 2
Read only

Former Member
0 Likes
374

Hi,

Did you check

Hope this helps you

Raj

Read only

Former Member
0 Likes
374

solved myself..thanks for ur help.