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

Logical database PNPCE

Former Member
0 Likes
792

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
695

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.

3 REPLIES 3
Read only

Former Member
0 Likes
696

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.

Read only

0 Likes
695

HI,

I use RP-UPDATE P0001 H0001 and it propably works.

I will check it again.

Thanks a lot

Read only

0 Likes
695

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,