‎2006 Jun 19 5:41 PM
I am trying to use RRMS_MESSAGE_HANDLING for a customer exit variable and I am really not sure how to use it. My question is:
How to define I_CLASS? The data element says this is Application Area. Can someone tell me wht this is? and how I can define it?
Any additional information about how to use this function for i_step = 3 would be very helpful. I need to popup a warning message for the user if they enter a wrong value for a user exit variable.
Thanks
Deepa
‎2006 Jun 19 5:45 PM
hi Deepthi,
CALL FUNCTION 'RRMS_MESSAGE_HANDLING'
EXPORTING
i_class = 'UPF'
i_type = 'E'
i_number = '001'
i_msgv1 = 'Cannot fill Bex variable'
i_msgv2 = l_varname_bw
i_msgv3 = 'based on Sem variable'
i_msgv4 = l_varname_sem.
For details Check this out
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/biw/g-i/how to variables of type exit.pdf
Reward if it helps,
Regards,
Santosh
‎2006 Jun 19 5:59 PM