Application Development and Automation 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: 
Read only

reports

Former Member
0 Likes
1,077

hi all,

i want create checkbox in output display n numbers and allowed user to select the checkbox ..based checkbox user click it as to go to next screen and display ........ then i want hide that check that has been

checked by user .......................... it in normal report r interactive reports

or alv reports

thanks advance

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,055

Hi,

Try using interactive alv reports with events.

Sharin.

10 REPLIES 10
Read only

Former Member
0 Likes
1,056

Hi,

Try using interactive alv reports with events.

Sharin.

Read only

0 Likes
1,055

how to do it send me code................

and then when user gets back checkbokx must be hide

Read only

0 Likes
1,055

how to do it send me code................

and then when user gets back checkbokx must be hide

Read only

0 Likes
1,055

Hi...

Try to understand the logic....

and you write this for your program...

>DATA: check1 TYPE c LENGTH 1 VALUE 'X'.

>

>INITIALIZATION.

>

>START-OF-SELECTION.

>set PF-STATUS 'ZEX'.

> WRITE: / check1 AS CHECKBOX.

>

>at user-command.

>CASE SY-UCOMM.

> WHEN 'DISPLAY'.

> IF CHECK1 = 'X'.

> WRITE:/ 'YOUR CHECK BOX IS ACTIVE'.

> CLEAR: CHECK1.

> ELSE.

> WRITE:/ 'YOUR CHECK BOX IS INACTIVE'.

> ENDIF.

> ENDCASE.

Thanks,

Naveen.I

Read only

madan_ullasa
Contributor
0 Likes
1,055

Hi,

Please frame your question properly. What i understand is that, you have to clear the check box in the next screen...

just use ... 'Clear (checkbox variable)'...

Regards,

Madan.

Read only

0 Likes
1,055

how to do it send me code................

and then when user gets back checkbokx must be hide

Read only

0 Likes
1,055

how to do it send me code................

and then when user gets back checkbokx must be hide

Read only

0 Likes
1,055

how to do it send me code................

and then when user gets back checkbokx must be hide

Read only

naveen_inuganti2
Active Contributor
0 Likes
1,055

Hi.. Santh....

You can do it with Normal Interactive, or ALV interactive.

Thanks,

Naveen.I

Read only

Former Member
0 Likes
1,055