‎2007 Jul 16 9:02 PM
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
‎2007 Jul 16 9:25 PM
John,
First question...
Is this custom prog - a dialog program OR an interactive report-style prog?
‎2007 Jul 16 9:40 PM
Its a custom reports, which displays data via write statements.
‎2007 Jul 16 9:47 PM
‎2007 Jul 16 9:47 PM
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