2020 Sep 15 10:59 AM
Hello,
I'm creating a notification with the bapi BAPI_ALM_NOTIF_CREATE, but I don't know, in which structure of the bapi, I have to value the EFFECT field (QMIH-AUSWK).
Could you help me by indicating the structure and field of the bapi, where to insert the value of the EFFECT?
Thank you
Stephen
2020 Sep 16 10:34 AM
Call transaction SE11,
So you will get BAPI, parameter and field name yourself.
2020 Sep 16 10:34 AM
Call transaction SE11,
So you will get BAPI, parameter and field name yourself.
2020 Oct 01 2:21 PM
Hi Raymond,
I solved my problem in this way,before calling the bapi BAPI_ALM_NOTIF_CREATE I export the auswk value
EXPORT lv_auswk TO MEMORY ID 'EPAUSWK'.
and then I import the value into the EXIT_SAPLIQS0_017 checking that
IF sy-cprog = my program.
IMPORT lv_auswk FROM MEMORY ID 'EPAUSWK'.
e_viqmel-auswk = lv_auswk.
FREE MEMORY ID 'EPAUSWK'.
2021 Mar 31 5:43 PM
THANK YOU SIR! It was really helpful and worked for me this workaround either!!