cancel
Showing results for 
Search instead for 
Did you mean: 

CDPOS-TABKEY, -OBJECTCLAS, -OBJECTID for Sales order items

Peter_Inotai
Active Contributor
0 Kudos

I need the original delivery date for Sales order item, if the delivery date was changed.

I made some test and I found table CDPOS, which holds the data.

Based on my test the CDPOS-OBJECTCLAS is always 'VERKBELEG' and the OBJECTID is the Sales order number.

TABKEY seems to be generated based on client, sales order number, Sales order item and Schedule line.

Can anyone confirm this info?

Can anyone show me a SAP source code where the TABKEY is generated this way?

I debugged RVSCD100 and in line 290 (release 46C) something similar happens, but not exactly, what I was looking for:

Code:

WHEN OTHERS.

MOVE ICDSHW-TABKEY+3(10) TO AUSG-VBELN.

MOVE ICDSHW-TABKEY+13(6) TO AUSG-POSNR.

MOVE ICDSHW-TABKEY+19(4) TO AUSG-ETENR.

ENDCASE.

Any comments?

Thanks in advance,

Incho

Accepted Solutions (0)

Answers (3)

Answers (3)

ssimsekler
Active Contributor
0 Kudos

Hi Peter

A recent discussion around the same topic which might help:

Hope it helps...

*--Serdar

Peter_Inotai
Active Contributor
0 Kudos

Hi Serdar,

Thanks for the info. I don't even remember anymore for what it was needed

Peter

former_member235395
Contributor
0 Kudos

Hi Peter,

Check this link:

Regards,

Peter_Inotai
Active Contributor
0 Kudos

Thanks for the info.

Actually this question is more than 11 years old

sergey_korolev
Active Contributor
0 Kudos

Yes, Peter, you are right. CDPOS table is part of the change documents mechanism of SAP. You can find customizing tools for change documents under ABAP Workbench -> Other tools folder.

Peter_Inotai
Active Contributor
0 Kudos

Thanks!

Fortunately I've found some documentation about it in the Online help:

http://help.sap.com/saphelp_46c/helpdata/en/2a/fa0b1a493111d182b70000e829fbfe/frameset.htm

Incho