on 2007 Mar 12 7:34 AM
Hi all
I have a reqmnt to update the inforecord with Pruchasing group.
After searching this community i found that FM
ME_UPDATE_INFORECORD can be used.
But It is not working.
I am providing inforecord number in YEINA
and in YEINE i am providing info num, pur org, plant, esokz and purch grp.
but this doesnot change the purch grp in the info rec.
am i missing anything?
thanks
and points will be awarded for useful ans
I think you need to include information in both YEINE & XEINE. It uses old and new values so if you use READ_INFO FM and then use UPDATE FM then it should work...Check where-used list of these FM in SAP programs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Pass the following values to the fm;
DATA: BEGIN OF reg_eina.
INCLUDE STRUCTURE eina.
DATA: END OF reg_eina.
Others all Tables:
eina, eine, *eine.
CALL FUNCTION 'ME_UPDATE_INFORECORD' IN UPDATE TASK
EXPORTING
xeina = eina
xeine = eine
yeina = *eina
yeine = *eine
reg_eina = reg_eina.
Regards,
Anji
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
111 | |
8 | |
8 | |
6 | |
6 | |
5 | |
4 | |
3 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.