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: 

table which stores the history of changes by condition types for po item

Former Member
0 Kudos

hi experts,

can u tell which table contains all the changes made to the amount and condition values based on condition type for a po item.i see that the table konv has only the recent values based on condition type but i need all the changes that where made earlier too.Please help me out to find it.

8 REPLIES 8

Former Member
0 Kudos

Hi,

Please check in CDHDR and CDPOS tables.

thanks,

Former Member
0 Kudos

Hello

CDHDR with OBJECTCLAS = 'EINKBELEG' and OBJECTID = number of PO

then

CDPOS with OBJECTCLAS = 'EINKBELEG' and OBJECTID = number of PO and CHANGENR = CDHDR-CHANGENR.

0 Kudos

thanks for ur replys,

but by this i get the recent condition type values but i need all the history of changes of values.

0 Kudos

more over i need the changes in values bsed on condition types.Each condition type what is the onld values and the current value

0 Kudos

Hello

Not quite so

The table CDHDR contains ALL changes.

You must do SELECT * FROM CDHDR WHERE ....

And then in LOOP/ENDLOOP you SELECT SINGLE * FROM CDPOS WHERE ...

So get all changes.

0 Kudos

thanks for ur reply,

but here we dont get the values for each condition type,we see gross and net changes in a group of conditions.but i need for each condition type

Former Member
0 Kudos

Hi Kiran,

check the tables MSEG EINE EINA

Regards,

Chinna

Former Member
0 Kudos

THANKS FOR UR HELP