cancel
Showing results for 
Search instead for 
Did you mean: 

Map BID line item to PO line item

Former Member
0 Kudos

I have to find out which bid line item , the particular PO line item corresponds to.

Suppose we have a Bid with multiple line item and we have created multiple POs from that bid, I have to find this link , between the particular line item of purchase order and the bid line item ,

I tried to look in terms of guid's but the PO line items guid's does not map with those of Bid line item guids.

Any inputs anybody ?

-With Thanks

Alok Pathak

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

In transaction BBP_PD, find your PO or BID and look out for Item and Header relation. In column OBJ_TYPE will be your PO or BID. Use GUID of OBJ_KEY to find relation.

Regards,

Marcin Gajewski

masa_139
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hello Alok,

You can find info from PO -> QUOT -> BIDINV via SRC_GUID field which has original item GUID. Try following function module.

1. FM BBP_PD_PO_GETDETAIL

E_ITEM-SRC_GUID <- Get QUIT item GUID

2. BBP_PD_QUOT_ITEM_GETDETAIL

ES_ITEM-SRC_GUID <- Get BIDINV item GUID

3. BBP_PD_BID_ITEM_GETDETAIL

ES_ITEM <- Get BIDINV item information.

Regards,

Masa