cancel
Showing results for 
Search instead for 
Did you mean: 

Sap script window

anupam_srivastava2
Participant
0 Kudos

Hi All

Is it possible to print the outer line of the window in SAP script like address window, I want to print the whole address in a block. IF any body can guide me that would be great.

thanks

C

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

You can achieve that using BOX statement in the sapscript window. check this

There was plenty answers to your question on this forum already, please use search engine next time......

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi

This will help you.

/: BOX XPOS YPOS WIDTH HEIGHT FRAME INTENSITY
/: POSITION XORIGIN YORIGIN WINDOW PAGE
/: SIZE WIDTH HEIGHT WINDOW PAGE
 
BOX:
 
WIDTH
Width of the box. Default: WIDTH value of the SIZE command.
 
HEIGHT
Height of the box. Default: HEIGHT value of the SIZE command.
 
FRAME
Thickness of frame. Default: 0 (no frame).
 
INTENSITY
Grayscale of box contents as %.
 
Example:
 
/: BOX WIDTH '17.5' CM HEIGHT 1 CM FRAME 10 TW INTENSITY 15
/: BOX WIDTH '17.5' CM HEIGHT '13.5' CM FRAME 10 TW
/: BOX XPOS '10.0' CM WIDTH 0 TW HEIGHT '13.5' CM FRAME 10 TW
/: BOX XPOS '13.5' CM WIDTH 0 TW HEIGHT '13.5' CM FRAME 10 TW

Regards

Anshul

Former Member
0 Kudos

This message was moderated.