2007 Oct 25 8:54 PM
Hi,
I have requirement like the following but it is giving me error.
"NO-DISPLAY" and "AS CHECKBOX" can only be specified together."
I need it as checkbox and not as parameter.
report zars no standard page heading
line-size 170
line-count 65(4).
parameters : v_chk as checkbox default 'X' no-display.
Please don't suggest to me use like the following.
parameter v_chk(1) type c no-display.
Any help.?
a®
2007 Oct 25 8:59 PM
Hello ARS,
Try this ..
parameters : v_chk as checkbox default 'X' MODIF ID GP1.
at selection-screen output.
loop at screen.
if screen-group1 = 'GP1'.
screen-active = 0.
endif.
modify screen.
endloop.regards,
Naimesh Patel
2007 Oct 25 9:04 PM
Hi,
Please try this.
REPORT ZARS NO STANDARD PAGE HEADING
LINE-SIZE 170
LINE-COUNT 65(4).
PARAMETERS : V_CHK AS CHECKBOX DEFAULT 'X',
V_CHK2 AS CHECKBOX DEFAULT 'X'.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF SCREEN-NAME = 'V_CHK'.
SCREEN-INVISIBLE = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
Regards,
Ferry Lianto
2007 Oct 25 9:07 PM