on 2014 Jun 24 11:25 AM
Hi,
In plan driven Procurement, can we see the Shopping Cart number created for the PR in ECC.
I want to know if the SC number gets updated in the ECC PR.
How to get the SC number created from the PR in ECC.
Regards
IS
Request clarification before answering.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Ram
I think this is Standard Process in SAP .
Also I gone through some links and concluded that to achieve this functionality we need to link it up.
Similar to use BADI BBP_CREATE_BE_PO_NEW and fill structure CS_PO1-IT_POITEM[1]-TRACKINGNO with cart number to transfer it to backend system in the case of refrencing the SC number in the ECC PO.
This is what I can acquire.
Do share your thoughts.
Regards
IS
Yes correct I also achieved in same way.
" To get the object id from SRM and update the tracking number for PR line items .
READ TABLE is_sc_document-header INTO wa_header_ext INDEX 1.
IF sy-subrc EQ 0.
LOOP AT cs_rq_document-it_requisition_items ASSIGNING <fs>.
IF <fs> IS ASSIGNED .
<fs>-trackingno = wa_header_ext-object_id.
<fs>-po_price = '1' .
ENDIF.
ENDLOOP.
ENDIF.
Thanks
Ankit Jain
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.