‎2008 Jul 10 11:43 AM
hi experts
i have a problem in getting into EXIT_SAPLEBND_002 when i try to save po the function before this part never return a right value that i can enter to this part. here is the code:
DATA: l_active LIKE sy-calld.
CALL FUNCTION 'MODX_FUNCTION_ACTIVE_CHECK'
EXPORTING
cprogname = 'SAPLEBND'
funcnumber = '002'
IMPORTING
active = l_active
EXCEPTIONS
OTHERS = 1.
IF sy-subrc EQ 0 AND NOT l_active IS INITIAL.
CALL FUNCTION 'EXIT_SAPLEBND_002'
EXPORTING
i_cekko = cekko
it_bekpo = pot[]
it_beket = ett[]
it_ekknu = knt[]
IMPORTING
e_cekko = cekko.
ENDIF.
my question is what the first function do and when i can enter the exit
thanks
Amit
‎2008 Jul 10 11:51 AM
It checks whether the exit function module is active . Make surte that your project , exit function module & FM include program all are active . Then this will allow you to enter into the exit.
RB.
‎2008 Jul 10 11:51 AM
It checks whether the exit function module is active . Make surte that your project , exit function module & FM include program all are active . Then this will allow you to enter into the exit.
RB.
‎2008 Jul 10 12:54 PM
Hi RB
i did what you said and activated the include inside the exit and still in the program flow it didn't entered to
the function.
do you have any solution for this
thanks
Amit