‎2008 Feb 13 11:41 AM
Hi friends,
I wann one help I make one screen and which data i input i save it in Z table ok
Z table also i make but my problem is that I used check box in screen and its more so how can I maintain(save) that check box selection in my z table?
I hope u understand my pro plz repl me its urgent so.
Thnaks in advance,
Prashant.
‎2008 Feb 13 11:45 AM
yes... in the database table make a field for that checkbox
say check c(1)...
The entry will be saved as 'X' in the db table...
write coding like u always write for saving fields...
tk?
‎2008 Feb 13 12:24 PM
hi
good
If you assign a function code to the checkbox the PAI (and then PBO) will be triggered automatically without to press enter;
if you don't assign a function code the user'll have to press enter key after choosing the checkbox.
In the PBO insert a module like this:
codeMODULE MODIFY_SCREEN.
IF <CHECK BOX > = SPACE.
LOOP AT SCREEN.
IF SCREEN-NAME = '<TEXT BOX>'.
SCREEN-ACTIVE = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
ENDIF.
ENDMODULE.[/code]
thanks
mrutyun^