cancel
Showing results for 
Search instead for 
Did you mean: 

Purchase Requsition Delivery Date

Former Member
0 Kudos

In APO in which table i can find the field Delivery date for a purchase req number

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Anoop,

If you are creating PReq through Z program then there must be some Z table , in which you can get the Delivery date.

Else if you have the order id, you can use the bapi "BAPI_POSRVAPS_GETLIST3"

as

CONCATENATE sy-sysid 'CLNT' sy-mandt INTO w_sys.

data: i_receipts_check TYPE STANDARD TABLE OF bapi10502poouto,

i_extension TYPE STANDARD TABLE OF bapiparex,

i_ordid TYPE STANDARD TABLE OF bapiapoordid.

CALL FUNCTION 'BAPI_POSRVAPS_GETLIST3'

EXPORTING

logical_system = w_sys

TABLES

order_guids = i_ordid

receipts = i_receipts_check

extension_in = i_extension

extension_out = i_extension.

where i_ordid contains the order id.

All the details associated with that order you can get in the table i_receipts_check.

Regards

Satyam

Former Member
0 Kudos

i am using the t code /n/sapapo/rrp7

thru which purchase requsitions are converted into scheduling lines.

to avoid using rfc cals i hav to find the field delivery date inside APO.

is thr any table which holds delivery date for purchse requisitions

Former Member
0 Kudos

Hi Anoop,

There is no table which hold the delivery data it is direclty read from livecahce.

So you need to use Function module.

you can check below structure :

/SAPAPO/RRP_ORDREQ_STR

/SAPAPO/RRP_IOGRID_STR

/SAPAPO/RRPIO

Manish