Application Development 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: 

Modifying the EKPO internal table with CDPOS

Former Member
0 Kudos

Hi Experts,

Help required in modifying the EKPO internal table values with CDPOS internal table values.

I have a requirement that populate the data from EKPO and get the change pointers data from CDHDR/CDPOS , then modify the EKPO internal table with CDPOS-NEW_VALUE .

Please help me with logic .

I tried some logic but it is not working..

ex: EKPO-MENGE , the value is right justified in the CDPOS-new_value . and there might be different changes for diff fields .

Problem is : How to match the EKPO internal table with the CDPOS field name and NEW_value.

1 REPLY 1

andreas_mann3
Active Contributor
0 Kudos

Hi,

1) use field-symbols:

assign (field) to <f>.

2) check whether <f> is char or P

with describe field

3) eventually convert data from CDPOS into p

use help-variables

A.