Hello Sir,
As you said I changed EXIT-PARAM to C_EXIT_PARAM_CLASS, but after changing this debugger is not triggering. When I'm using CLASS my EXIT name is not coming in GGB1. Please suggest me where I've to make changes.
Below is my code....
exits-name = 'U197'.
exits-param = c_exit_param_class.
exits-title = 'Enhancement For Business Area In Miro'.
append exits.
form u197 using bool_data type gb002_015
changing b_result.
lt_data-bseg[] = bool_data-bseg[].
read table lt_data-bseg[] into ls_bseg with key koart = 'K'.
if sy-subrc eq 0.
v_gsber = ls_bseg-gsber.
endif.
if sy-tcode = 'MIRO'.
loop at lt_data-bseg[] into ls_bseg where koart ne 'K'.
if ls_bseg-gsber = v_gsber.
else.
b_result = b_false.
endif.
endloop.
clear ls_bseg.
endif.
Thanks in Advance.
Regards,
Hardik B