‎2007 May 07 4:37 PM
Hi Guys,
I want to add 2 check boxes in existing selection screen of the Query.
Please let me know the step by step.
Reward is compulsary
regards,
vijay
‎2007 May 07 5:29 PM
Well, you can declare a variables like this:
parameter x as checkbox.
And then you can name this x anything you want in the selection text.
Regards,
Raman
‎2007 May 07 5:29 PM
Well, you can declare a variables like this:
parameter x as checkbox.
And then you can name this x anything you want in the selection text.
Regards,
Raman
‎2007 May 07 5:34 PM
Hi
declare the two checkboxes as:
PARAMETERS: C_CHK1 AS CHECKBOX,
C_CHK2 AS CHECKBOX.
IN THE CODE
if c_chk1 = 'X'.
< write the logic>
else.
< write the logic>
endif.
Reward Points if useful
Regards
Anji
‎2007 May 07 6:45 PM
Is this for a usual ABAP program... or u talkin abt ABAP Query ??
‎2007 May 08 7:00 AM
‎2007 May 08 7:08 AM
Hi Vijay,
Refer this code :
Parameters: C1 as chkbox,
C2. as chkbox.
start of selection.
If c1 = 'X'.
do this.........
elseif c2 = 'X'.
do this
endif.
Reward points if helpful.
Regards,
Hemant
‎2007 May 08 7:14 AM
selection-screen : begin of block blk1 with frame title text-001.
parameters : chk1 as checkbox,
chk2 as checkbox.
selection-screen : end of block blk1.
reward with points if helpful
‎2007 May 08 7:28 AM
I have to declare these statements in SE38 or SQ02.
In se38 it is not allowing.
regards,
vijay
‎2007 May 08 7:30 AM
Hi vijay
so do one thing post ur code give ur requirement we will try to develop according to ur requirement
Regards
Pavan
‎2007 May 08 7:37 AM
u have to declare there statements in SE38.
reward if useful.
‎2007 May 08 7:54 AM
As per my exp with SQ02, whenever you change some thing a program gets generated (which will something like A***, and you cannot change that).
if you want to create a checkbox in your query in SQ02 then you need to do in SQ02 and not se38. I have no idea how to do that... i just added a condition to my existing query last time when i worked with SQ02.
Regards,
Raman