Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

release strategy

Former Member
0 Likes
500

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
455

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.

2 REPLIES 2
Read only

Former Member
0 Likes
456

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.

Read only

0 Likes
455

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