Hello Everyone,
In my program, I have a this kind section.
*----------------------------------------------------------------------*
* I N I T I A L I Z A T I O N *
*----------------------------------------------------------------------*
INITIALIZATION.
break tlise.
fkdat-sign = 'I'.
fkdat-option = 'BT'.
fkdat-low = '20120101'.
fkdat-high = '20121231'.
APPEND fkdat.
REFRESH : s_mblnr.
CLEAR : s_mblnr.
LOOP AT SCREEN.
CHECK screen-group1 = 'KUN'.
screen-input = '0'.
MODIFY SCREEN.
ENDLOOP.
LOOP AT SCREEN.
CHECK screen-group1 = 'PRO'.
screen-input = '0'.
MODIFY SCREEN.
ENDLOOP.
In Selection Screen, I am giving mblnr value. And then I am starting the code.
When I turned back this initialization screen, I want to refresh s_mblnr.
In fact, When I check this section, s_mblnr is initial.
But in first section, there is mblnr value.
How can I refresh mblnr value ?
Best Regards
Tanju