cancel
Showing results for 
Search instead for 
Did you mean: 

columns in sapscript form in main window

Former Member
0 Kudos

Hi,

In the script for packing list, i want to display columns for the item details for the item details in main window.

can any budy tell regarding how to write the box statement for the itrem details.

regards,

vamsykrishna.

reward point for good answers

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

For that U have to create box.

Like

/: BOX XPOS 79 MM YPOS 210 MM WIDTH 119 MM HEIGHT 15 MM FRAME 10 TW

But for displaying column in line item you have to create box for every Column.

Here the XPOS shold be different but YPOS Should be Same

Like if u want to Create 4 columns Then Code will be


/: BOX XPOS  79 MM YPOS 210 MM WIDTH 119 MM HEIGHT 15 MM FRAME 10 TW
/: BOX XPOS  90 MM YPOS 210 MM WIDTH 119 MM HEIGHT 15 MM FRAME 10 TW
/: BOX XPOS 100 MM YPOS 210 MM WIDTH 119 MM HEIGHT 15 MM FRAME 10 TW
/: BOX XPOS 120 MM YPOS 210 MM WIDTH 119 MM HEIGHT 15 MM FRAME 10 TW

Regards

sandipan

Former Member
0 Kudos

hi vamsy,

try this:

Goto the text elements of main window spcify the following command.

/: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]

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 %.

Default: 100 (full black)

EXAMPLE:

/: BOX WIDTH '17.5' CM HEIGHT 1 CM FRAME 10 TW INTENSITY 15

thanks,

raji

reward if helpful