Hello,
We have a requirement to send some documents for post processing in FP09 (clarification list) when certain criteria is met. I found FQevent 259 useful for this requirement. But the problem is the message (probably an application log text) that comes up once FP09 processing is complete is very technical in nature and wont be useful for end users.
the message is : Item set according to event 0259 in clarification worklist.
FQevent 259 doesnt have any parameters where I could set my custom message. Any way out ?
Thanks!
AM
Hi Ankit,
You can show custom message by using the FQevent 259, just before the raising the exception DONT_POST, please set the below:
sy-msgid = <your custom message ID>
sy-msgno = <your custom message number>
sy-msgty = 'E'
This will ensure that the item will get into clarification list with your custom message displayed under 'Last message'. I have quickly checked this in my system here and it works fine. Please implement and test your case.
Hope this helps!
Thanks,
Srini
Hi Ankit,
Rather than doing the enhancement in event 259, try it in doing event 960.
In this event, item records are transferred to T_FKKRP table which can be modified.
In here based on the Business rules, you can set the field, XKLAE as X, to route the item to return clarification.
Hope it helps.
Thanks,
Amlan
Add a comment