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

Change Pointer to Load IDOC data issue

Former Member
0 Likes
445

Hi Gurus

I have used change pointer HRMD_A to load the date from PA0001,PA0105.

When i am changing data in Infotype 0001 (Org. Assignment) using PA30,

change pointer is pulling only PA0001 data.

Is there any way so that change pointer should pull all the other infotype data

for example..it should pull the data for PA0001,PA0105 and other infotype data which is related in PA30 transaction.

Thanks in advance.

Regards,

Gajanan

1 REPLY 1
Read only

former_member194669
Active Contributor
0 Likes
397

The concept of change pointer is used to send only data changed.

First check the database view BDCPV, in which you can able find change pointer entries for info type PA0105.

and also you can check the output of the function module


    call function 'CHANGE_POINTERS_READ'
      exporting
        message_type                = v_mestyp
        read_not_processed_pointers = c_mark
      tables
        change_pointers             = i_chgptrs
      exceptions
        error_in_date_interval      = 1
        error_in_time_interval      = 2
        others                      = 3.

aRs