cancel
Showing results for 
Search instead for 
Did you mean: 

Internal note text(SRM) to Material PO text(ECC)

Former Member
0 Kudos

Hi Experts,

we have requirement like this, when we create a SC users enter some text in internal note and save.the same text will appear in follow on document at item level under item note.But we have requirement that the internal note text has to come in Material PO text of corresponding follow on document.

Is there any setting in SRM or ECC to complete this task

kindly suggest

regards

subbu

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

You can do this thing with the help of BADI.

BADI : BBP_CREATE_PO_BACK

Sample code is below :

LOOP AT po_item_text INTO wa_item_text WHERE text_id = 'F06'.

wa_item_text-text_id = 'F03'.

MODIFY po_item_text FROM wa_item_text TRANSPORTING text_id.

ENDLOOP.

So in the above code, while creating the back end document , we are changing the text id from Internal note to Material Text.

Then it will transfer.

Thanks

Venkatesh P

Former Member
0 Kudos

Hi Venkatesh,

Thanks for quick reply.can i use the same BADI for Purchase requistion also?

regards

subbu

Former Member
0 Kudos

for PR you have BADI

BBP_CREATE_PR_BACK (in SRM 4.0)

in 5.0 the syntax is changed for newer version

BR

Dinesh

Former Member
0 Kudos

Thanks dinesh,

From SRM 5.0 BBP_CREATE_BE_RQ_NEW is the one for PR

regards

subbu

Former Member
0 Kudos

Hi ,

You can use BBP_CREATE_REQ_BACK also in SRM 5.0.

Or you can use new one..as you are said..

Thanks

Venkatesh P