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