cancel
Showing results for 
Search instead for 
Did you mean: 

Reminder to fill internal notes in SC

Former Member
0 Kudos

Hi everyone,

I have been coming up with a lot of shopping carts that have no internal notes. Is there a way to remind all the requestors to make sure they fill in the internal notes section as its very important for us is trying to identify what is happening on the PO’s

regards,

IGA

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

If you need to put a check for this field internal note,then you will have to use the badi "BBP_DOC_CEHCK_BADI".

In this badi You can use FM BBP_PD_SC_GETDETAIL.

Example:

call function 'BBP_PD_SC_GETDETAIL'

exporting

i_guid = iv_doc_guid

importing

e_header = wa_e_header

tables

e_item = e_item

e_account = e_account

e_longtext = e_longtext

e_messages = e_messages.

This FM show You all longtext attached in document in the table e_longtext .Then you can check whether the INTERNAL NOTE field is filled or not and acc display the error message and prompt the user to fill the field.

BR,

Disha.

Do reward points for useful answers.

Former Member
0 Kudos

correction to the previous post by Disha. D

BADI is BBP_DOC_CHECK_BADI;

Answers (1)

Answers (1)

Former Member
0 Kudos

thank you