1、业务情景
今天接到的需求,在me22n进行修改后,点击检查能够根据条件判断,并返回警告的信息给用户。
好像很简单的一个需求,但实际上用最常见的message显示的方式,这种警告信息并没有能够显示出来。
METHOD if_ex_me_process_po_cust~check.
if cond.
* message e001(Z_MM_MSG). "we can show error message in me2xn check
message w001(Z_MM_MSG). "we cant show warning message in me2xn check
endif.
ENDMETHOD.
2、 解决方法
如下代码
METHOD if_ex_me_process_po_cust~check.
*if you want to show your warning message,you can use this code
if cond.
include mm_messages_mac. "useful macr