cancel
Showing results for 
Search instead for 
Did you mean: 

How to transfer SC custom fields to ECC in SRM 7.0

Former Member
0 Kudos

Hello SRM Gurus,

How to transfer SC custom fields to ECC in SRM 7.0

For create PR and Create PO im using the BADIS, BBP_CREATE_BE_RQ_NEW and BBP_CREATE_BE_PO_NEW.

Also how to transfer Item text (for Item Note in backend PR ) from SC

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos
Former Member
0 Kudos

Hey Neelima,

Thanks for your link. I got this link yesterday searching sdn and followed the steps to enhance ECC PR screen me53n and display the values too.

Could you please let me know how to transfer the text of Internal Note in ECC PR screen . from SC internal note fields.

I am awarding you points .

Thanks

Former Member
0 Kudos

hello,

In bbp_create_req_back~fill_req_interface try below code

DATA: t_text LIKE bbps_bapiebantx OCCURS 0 WITH HEADER LINE.

DATA: w_text LIKE bbps_bapiebantx.

REFRESH t_text.

t_text [ ] = req_item_text [ ].

REFRESH item_text.

  • Move internal note (B02) in the shopping cart to

  • item text (B01) in the purchase requisition

LOOP AT t_text WHERE text_id = 'B02'.

w_text-preq_no = t_text-preq_no.

w_text-preq_item = t_text-preq_item.

w_text-text_id = 'B01 '.

w_text-text_form = t_text-text_form.

w_text-text_line = t_text-text_line.

APPEND w_text TO req_item_text.

ENDLOOP.

Regards,

Neelima

Edited by: S Neelima on Dec 2, 2011 8:15 AM

Answers (1)

Answers (1)

vinita_kasliwal
Active Contributor
0 Kudos

Hi Santosh

Did you refer to the links below:

You would have to make changes in the BADI BBP_CREATE_BE_PO_NEW if you are in classic scenario to do so and also some changes in the ECC side to map these fields

The links below would be able to guide you well .

BBP_CREATE_BE_PO_NEW - Create PO in backend - Supplier Relationship Management - SCN Wiki

Transferring Purchase Requistion requestor name from ECC  to SRM in a Plan Driven Scenario - Supplie...

Regards

Vinita