cancel
Showing results for 
Search instead for 
Did you mean: 

Warning messages are not displayed in confirmation

Former Member
0 Kudos

Hi,

We are working with SRM 5.0 classic scenario. Our issue is warning messages are not displayed whenever we press the CONFIRM or DELETE button in the confirmation, however warning messages are displayed if we press CHECK button in the confirmation.

Please suggest the solution to display the warning messages while clicking CONFIRM or DELETE button in the confirmation.

Thank you

Natarajan

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member183819
Active Contributor
0 Kudos

Hi Nataraj

give us some examples.

WARNING :- just Ffor your information

ERROR:- for your action

however your question is valid

what warnig you get while checking and not geting them while CONFIRM/DELETE?

BR

MUTHU

Former Member
0 Kudos

Hi,

Thanks for your reply

We have an implementation of BBP_DOC_CHECK_BADI for the confirmation and we are appending warning messages to

ET_MESSAGES from BADI.

These warning messages donot appear when we click on CONFIRM or DELETE buttons.

Warning message " Invoice to be cleared this evening. Please re-create service entry next dayu201D to be displayed while deleting the

service confirmation. This warning message is not appeared while clicking the "DELETE" or "CONFIRM" button in the confirmation.

However the warning message is appeared when we click " CHECK" button only..

We need the solution to display the warning message in CONFIRM and DELETE buttons too.

Thank You

Natarajan

former_member183819
Active Contributor
0 Kudos

Hi Natarajan

Note 1440312 - Errors from DOC_CHECK_BADI are ignored in confirmation

discuss with Technical resource it could be possible

SWO1

BUS2203

METHOD

ProcConfirmationEC.ExistenceCheck

ProcConfirmationEC.Confirm

ProcConfirmationEC.DARGEDelete

---

ProcConfirmationEC.ExistenceCheck - Your doc check badi is called

ProcConfirmationEC.Confirm - you may require to call doc check badi

ProcConfirmationEC.DARGEDelete-you may require to call doc check badi

Former Member
0 Kudos

Hi Muthu,

Thanks for your reply. We raised the OSS message for this issue. As per the standard system behaviour, warning messages will not be diplayed when " DLETETE" button pressed.

In the DELETE mode, the system will display only the first EXPRESS

ERROR message and not WARNING messages.

Inorder to maintain an error message as EXPRESS, the FIELD_NAME

(i.e ls_message-field_name) has to be assigned with the value

EXPRESS.

For example,

ls_message-msgty = 'E'.

ls_message-msgid = 'ZF'.

ls_message-msgno = '000'.

ls_message-field_name = 'EXPRESS'

Kindly note that in the DELETE mode, the system does not display

EXPRESS message with msgty = 'W'.

Only EXPRESS message with msgty = 'E' is recognised and displayed.

The Warning messages will be displayed only during the CHECK mode.

Thank You

Natarajan