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

Checkboxes in output

Former Member
0 Likes
634

Hi,

One of the customer programs that needs to be changed currently shows all sales order with delivery blocks.

The output shows 7 fields per record, showing the sales order details.

I need to create an 8th field that only has checkboxes.

Once the user has selected all of the specific/desired checkboxes, they will press a button that will trigger a bapi (inside a loop.)

How do I work with checkboxes? How do I make them the 8th field? How do I put all of the checks records into an internal table?

Thanks,

John

4 REPLIES 4
Read only

Former Member
0 Likes
608

John,

First question...

Is this custom prog - a dialog program OR an interactive report-style prog?

Read only

0 Likes
608

Its a custom reports, which displays data via write statements.

Read only

0 Likes
608

HI,

Use this..

data char.

write char as checkbox.

Thanks

Mahesh

Read only

Former Member
0 Likes
608

Hi,

Please try something like this.


DATA: CHECK1 TYPE C VALUE 'X',
      CHECK2 TYPE C VALUE ' '.
                                                                        
START-OF-SELECTION.
  WRITE: / CHECK1 AS CHECKBOX, 'Checkbox 1',
         / CHECK2 AS CHECKBOX, 'Checkbox 2'.

Regards,

Ferry Lianto