cancel
Showing results for 
Search instead for 
Did you mean: 

PO Item Delivery Date Change Report

former_member693168
Participant
0 Kudos

Hi to all I need a standard report that brings the lists of PO items with:

  1. First set delivery date;
  2. Last set delivery date;
  3. How many times the delivery date was changed.

If theresn't a standard report for this, please give a open sql that I can use for get this information by ABAP program.

Thanks best regards.

Accepted Solutions (1)

Accepted Solutions (1)

DominikTylczyn
Active Contributor

Hello mrrjesus

I don't think you'll find a suitable report in standard. However all the data you need is in the purchase order change documents, in CDHDR and CDPOS tables, where:
  • OBJECTCLAS = EINKBELEG
  • OBJECTID - purchase order number
Delivery date is kept on the PO schedule line level in the EINDT field. Therefore you need to read the change documents where
  • TABNAME = EKET
  • FNAME = EINDT
Best regardsDominik Tylczynski
former_member693168
Participant

Perfect. Thank you.

Answers (0)