‎2007 Jun 13 5:45 AM
Hi guys,
i created dropdown list box in Module pool programming but its not triggering for that i have write the code here... when it trigger screen will Refresh and disable some fields... is there any another way.....to do plz send me the code...
Case save_ok.
WHEN 'SEL_ARCHIVE'. ( this the function code of Dropdown)
IF NOT v_find IS INITIAL.
LOOP AT SCREEN.
IF screen-group1 = 'MOD'.
screen-input = '0'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
ENDIF.
Endcase.
‎2007 Jun 13 5:48 AM
Hi,
Try changing your code and see if works
IF NOT v_find IS INITIAL.
LOOP AT SCREEN.
IF screen-group1 = 'MOD'.
<b>screen-input = 0.</b>
MODIFY SCREEN.
ENDIF.
ENDLOOP.
ENDIF.
Endcase.
Regards,
Atish
‎2007 Jun 13 5:48 AM
‎2007 Jun 13 6:02 AM
As said in your previous post, this can be done only in PBO Proces Before Output. just copy the same code in ur PBO. Since that it is in User_Command it will not work at all.
Please do the same in PBO only
Regards
Gopi
‎2007 Jun 13 6:05 AM
hi,
write this in PBO
Case save_ok.
WHEN 'SEL_ARCHIVE'. ( this the function code of Dropdown)
IF NOT v_find IS INITIAL.
LOOP AT SCREEN.
IF screen-group1 = 'MOD'.
screen-input = '0'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
ENDIF.
Endcase.