Hello,
I need to use user exit CONFPP05, because I need to trigger a printout when there is a specific operation number entered in CO11n.
My question now: how can I use the operation number I enter in CO11n in the user exit CONFPP05 ?
I tried to use table AFRUD and field VORNR, but when testing it with a break point, the field was just empty.
*& Include ZXCOFU15 *
&----
TABLES: AFRUD.
CALL FUNCTION 'POPUP_TO_DISPLAY_TEXT'
EXPORTING
TEXTLINE1 = 'hallo'
EXCEPTIONS
OTHERS = 1.
So what do I have to do to use this field here?
Thanks