cancel
Showing results for 
Search instead for 
Did you mean: 

Followon Documents does not display PO

Former Member
0 Kudos

Hi,

We use SRM 4.0 SP13 with classic scenario.

We recently upgraded backend to ECC 6.0 and ran into an issue where we do see PO replicated to SRM when viewed using BBP_PD but it does not display under Follow-On document---> History.

I looked at some notes, but not sure if they help as only I1113 is only active.

Note 729967 - Shoppng cart:Status I1111,no follow-on docs->analysis report

Also any other notes that could be useful.

Note this issues is consistent and not for a few SCs.

Thanks,

Nikhil

Accepted Solutions (1)

Accepted Solutions (1)

former_member183819
Active Contributor
0 Kudos

Hi Nikhil

you get detail via BBP_PD -BUS2121 and here you may get a status Follow on document created.

and when you view your cart via check status, you may find a folder Follow on documents.

hope clean req req up and get status jobs are running fine.

br

muthu

Former Member
0 Kudos

Hi Muthu,

Yes I do see the followon document in BBP_PD.

Jobs BBP_GET_STATUS_2 and CLEAN_REQREQ_2 are running fine.

As I said ...only difference is change in backend from R/3 to ECC 6.0 (SRM has not changed)

Thanks

Nikhil

Edited by: Nikhil on Jun 26, 2009 4:26 AM

former_member183819
Active Contributor
0 Kudos

Hi

Are you trying to see the backend Purchase Order in SRM via BBP_PD?

br

muthu

Former Member
0 Kudos

Hi Muthu, All

I can see the backend Purchase Order in SRM via BBP_PD.

But it is NOT visible via web/EBP to the user.

Nikhil

former_member183819
Active Contributor
0 Kudos

Hi Nikhil,

In Classic , The PO exists only in ECC system . not existss in SRM .

Classic Scenario: ERP backend is the leading system, all follow on docs created in the backend not locally.

br

muthu

Former Member
0 Kudos

Hi Nikhil,

Have a look at the following OSS Note:

Note 1005373 - BBPSC04: Purchase order details missing in history for STO

Thanks,

Pradeep

former_member206968
Active Contributor
0 Kudos

Hi,

Try to check/debug using fm-bbp_pd_sc_gethistory. See if you are able to get the PO history details.

Regards,

Sanjeev

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Did you ever resolve this problem? I think I have the same problem so I'd appreciate your help!

Thanks,

Rooty Roo

Former Member
0 Kudos

Hi

Not Yet ....still looking for a solution.

Opened a ticket with SAP.

Will keep you posted.

Nikhil

Former Member
0 Kudos

Hi

It turns out that SRM does not support "stock transfer", even though this may be supported by other SAP Applications.

SAP suggested In order to resolve this issue, you could enter the following codes:

We plan to try it later after our current release is implemented.

In MAP_ITEMS (LBBP_PDMAPF01) you can find this coding:

LOOP AT i_be_items WHERE ITEM_CAT EQ c_item_cat_mat OR

ITEM_CAT EQ c_item_cat_third.

In your case, we enter this coding with the following:

i_be_items[1]-item_cat = 7 -> Stock Transfer

I would suggest that you try a modification here:

LOOP AT i_be_items WHERE ITEM_CAT EQ c_item_cat_mat OR

ITEM_CAT EQ c_item_cat_third OR

ITEM_CAT EQ 7. " Modification for Stock Transfer

Thanks,

Nikhil