2006 Nov 02 6:44 AM
hi abapers,
i hav to print a check box on the left side of the selection screen and need a text like
i want to print "" Show billing without output""
this one as check box frnds.
can anyone throw some light for the following issue.
thnks for ur nice ,help replies made by u all earlier.
with regards,
sanjay
2006 Nov 02 6:52 AM
Hi sanjay,
for [text] [checkbox]
try with this
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(55) text-001.
PARAMETER: p_chk AS CHECKBOX.
SELECTION-SCREEN END OF LINE.
If i am not clear reply back.
Regards,
Santhosh
2006 Nov 02 6:46 AM
parameters : P_01 as checkbox.
and then follow the menu path GOTO - > Text Elements - > Selection Texts and maintain the text for P_01.
<b>by default it comes on left only
please be more clear if i am wrong</b>
Regards
- Gopi
2006 Nov 02 6:48 AM
hi gopi,
thnks.
i need the text yaar, that to it shuld be in the left side yaar.
can u hlp me.
with regards,
sanjay
2006 Nov 02 6:52 AM
selection-screen begin of line.
selection-screen comment 1(10) text-001.
parameter: P_01 as checkbox.
selection-screen end of line.
for teh comment accordingly use the length on the screen.
Regards
- Gopi
2006 Nov 02 6:47 AM
2006 Nov 02 6:49 AM
Hi,
According to me. u need checkbox as shown below
[A check box] [Show billing without output]
If so then try with this.
SELECTION-SCREEN BEGIN OF LINE.
PARAMETER: p_chk AS CHECKBOX.
SELECTION-SCREEN COMMENT 3(55) text-001.
SELECTION-SCREEN END OF LINE.
assign 'Show billing without output' to text-001 in the selection text.
Regards,
Sathosh
2006 Nov 02 6:52 AM
Hi sanjay,
for [text] [checkbox]
try with this
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(55) text-001.
PARAMETER: p_chk AS CHECKBOX.
SELECTION-SCREEN END OF LINE.
If i am not clear reply back.
Regards,
Santhosh