cancel
Showing results for 
Search instead for 
Did you mean: 

Window form Sapscript

Former Member
0 Kudos

Hi,

i need to draw a window like the following is it possible:

                        • TEXT ******************

  • *

  • *

  • *

                        • TEXT ******************

  • *

  • *

  • *

***************************************

is it possible to draw a simple line?

thx,

Regards

Soufiane.

Accepted Solutions (1)

Accepted Solutions (1)

former_member181962
Active Contributor
0 Kudos

Hi,

You can use &syst-uline& for drawing a line.

Also see:

http://help.sap.com/saphelp_47x200/helpdata/en/d1/80318f454211d189710000e8322d00/frameset.htm

Regards,

Ravi

Answers (2)

Answers (2)

Former Member
0 Kudos

hi,

/: BOX FRAME 10 TW

draws a box

/: BOX INTENSITY 10

Fills the window background with shading having a gray scale of 10 %.

<b>/: BOX HEIGHT 0 TW FRAME 10 TW

Draws a horizontal line</b>

<b>/: BOX WIDTH 0 TW FRAME 10 TW

Draws a vertical line</b>

/: BOX WIDTH 5 CM HEIGHT 5 CM FRAME 10 TW INTENSITY 10

draws a box and fills the box with shading

/:BOX WIDTH 5 CM HEIGHT 5 CM FRAME 10 TW

no intensity

BOX XPOS 10 CM WIDTH 5 CM HEIGHT 5 CM FRAME 10 TW

specifying the position for the box

or

this is another way to create a box specifiying all the positions

POSITION WINDOW

POSITION XORIGIN 5 CM YORIGIN 5 CM

SIZE WIDTH 5 CM HEIGHT 5 CM

BOX FRAME 30 TW

regards

Former Member
0 Kudos

Hai,

You can use &uline(length)& option to print simple line.

For eg, <b>&uline(60)&</b> .

Regards,

Sandhya