cancel
Showing results for 
Search instead for 
Did you mean: 

custom message error twice display

Former Member
0 Kudos
388

Hi all,

I have written one custom message in ME_PROCESS_PO_CUST - PROCESS_ITEM BADI implenetation .It is displayed as status error message for wrong line item but when I am taking check button same message is displayed twice .

how to solve this.

regards,

padmaja

Accepted Solutions (0)

Answers (4)

Answers (4)

madhu_vadlamani
Active Contributor
0 Kudos

Hi Padmaja,

check as Eduardo told. This i am using to display message at item level it is working fine for me. It will work .Check and post if need help.

Former Member
0 Kudos

Hi Padmajja,

try to use the Method - CHECK. I think it will work fine.

i think u r now in SPML project.

raymond_giuseppi
Active Contributor
0 Kudos

When you searched at sdn before posting , did you find

Regards,

Raymond

eduardo_hinojosa
Active Contributor
0 Kudos

Hi Padmaja,

For this requirement use the method CHECK (instead PROCESS_ITEM) in the same BADI.

For instance, use the macro MMPUR_MESSAGE


   
   IF condition IS TRUE.
       mmpur_message 'W' '00' '398'
              text1 text2 text3 text4.
   ENDIF.

Regards

Eduardo

Edited by: E_Hinojosa on Aug 25, 2011 10:44 AM

Edited by: E_Hinojosa on Aug 25, 2011 10:46 AM