Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Checking initiality of the check box

Former Member
0 Kudos

Hi Experts,

requirement--->If the check box is not initial then filter only employees with IT0900, otherwise drop all the other employees and if check box is initial proceed as the usual way before it was doing.

thanks in advance.

harish

1 ACCEPTED SOLUTION

sathyags
Active Participant
0 Kudos

Hello Harish,

IF check_box_name = 'X'.

logic for IT0900 records.

ELSE.

the existing code.

ENDIF.

Hope this helps.

Sathya

3 REPLIES 3

sathyags
Active Participant
0 Kudos

Hello Harish,

IF check_box_name = 'X'.

logic for IT0900 records.

ELSE.

the existing code.

ENDIF.

Hope this helps.

Sathya

Former Member
0 Kudos

Hi Harish ,

Please refer the Link [http://www.kodyaz.com/articles/sap-abap-checkbox-selection-screen-example.aspx]

you might have declared the Checkbox in the selection screen as below

Parameter : cbEmp AS CHECKBOX.

if cbEmp = 'X' .

    • Write your selection logic with IT0900.

else.

Endif.

Hope it will be helpful.

Former Member
0 Kudos

solved by self