‎2009 Feb 05 12:01 PM
Hi,
I had to create report to update ENAME using Logical database PNPCE.
I found report RPuP0001 which work in that way but it works based on Logical database PNP. I made similar report using LD PNPCE but statement:
RP_UPDATE P0001 H0001 'A'.
doesn't work.
Can you help me? What statement I should use instate?
Thanks in advance
‎2009 Feb 05 12:04 PM
Hi,
Check this FM RH_UPDATE_INFTY
OR
RP-UPDATE P0001 H0001 'A'. it is hyphen not underscore.
CALL FUNCTION 'RH_UPDATE_INFTY'
EXPORTING
vtask = 'D'
commit_flg = l_commit_flg
TABLES
innnn = p_innnn
EXCEPTIONS
error_during_update = 1
no_authorization = 2
repid_form_initial = 3
corr_exit = 4
OTHERS = 5.
‎2009 Feb 05 12:04 PM
Hi,
Check this FM RH_UPDATE_INFTY
OR
RP-UPDATE P0001 H0001 'A'. it is hyphen not underscore.
CALL FUNCTION 'RH_UPDATE_INFTY'
EXPORTING
vtask = 'D'
commit_flg = l_commit_flg
TABLES
innnn = p_innnn
EXCEPTIONS
error_during_update = 1
no_authorization = 2
repid_form_initial = 3
corr_exit = 4
OTHERS = 5.
‎2009 Feb 05 12:20 PM
HI,
I use RP-UPDATE P0001 H0001 and it propably works.
I will check it again.
Thanks a lot
‎2009 Feb 05 12:43 PM
Hi Avinash Kodarapu,
Could you explain what is the role of this 'A' parameter?
I removed it and it works but I'm not sure if this is correct way
Thanks in advance,