Hi!
I am new to abap and I have a 'basic' question.
I have an include where different 'I' messages are listed that will pop up according to certain action, of course.
I want that these error messages do not appear more than once. For example,
'when 'I32'
message i015(pn) with 'days exceeded' into tablex.
when 'I33'
message i015(pn) with 'holidays' into tablex.'....
The messages are in the payroll area of SAP.
When a worker do a correction in past payrolls a message appears. But in the further corrections, I would like to supress it.
It is possible to use the SELECT single APLID
FROM TCMF6
INTO @DATA(ld_aplid).
DATA(ld_arbgb) = some text here
DATA(ld_msgnr) = some text here
CM_F_SUPPRESS_MESSAGE'
EXPORTING
aplid = ld_aplid
arbgb = ld_arbgb
msgnr = ld_msgnr
EXCEPTIONS
NOT_ACTIVE = 1