cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Shopping Cart No reference to PR

Former Member
0 Likes
801

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

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Likes

Hi ,

Yes.SC number gets updated in the ECC PR.

In ME53N, there is an field called tracking Number.

That is the Shopping cart number.

In EKPO table, there is a field Tracking Number, there you can find the Shopping cart number (BEDNR).

Thanks,

Ramakrishnan

Former Member
0 Likes

Hi Ramakrishnan,

The Tracking number field is blank in my case.

Is there any setting need to be done to get it updated.

Also EKPO is a PO table and cant be used for PR

Regards

IS

Former Member
0 Likes

Hi ,

Sorry i meant EBAN table.

Please find screenshot

I am trying to find if there needs to be any settings done for this tracking number to appear in PR.

Kindly refer to for some extra information on this matter.

Thanks,

Ramakrishnan

Former Member
0 Likes

Hi Indu Singh,

Curious to know if you found any solution for this issue.

Thanks,

Ramakrishnan

Former Member
0 Likes

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

Former Member
0 Likes

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