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

Regarding Adding BOX'es Dynamically to SAP SCRIPT LAYOUT

Former Member
0 Likes
334

Hi All,

I have a issue regarding placing boxes in SAP Script Layout set.

Can any body tell me how can i place boxes in sap script output dynamically.

Thanks in advance.

Thanks & Regards,

Rayeez.

1 REPLY 1
Read only

Former Member
0 Likes
304

You can add Boxes dynamically to SAPScript Like this. But you can specify this in the print program.

<b>DATA COM(100).
com = 'BOX WIDTH ''17.5'' CM HEIGHT 5 CM FRAME 10 TW INTENSITY 15'.

CALL FUNCTION 'CONTROL_FORM'
EXPORTING
COMMAND = COM
* EXCEPTIONS
* UNOPENED = 1
* UNSTARTED = 2
* OTHERS = 3
.</b>

Ps: Reward points if helpful.