cancel
Showing results for 
Search instead for 
Did you mean: 

SAPSCRIPT Position Window Command

Former Member
0 Kudos

I use the followiing command statement in mt SAPSCRIPT:

POSITION XORIGIN '0' CM YORIGIN 8.0 IN

When I try to increase TORIGIN by increasing the decimal value (needed for final tuning of the Y position of the placement of the window) SDAPSCRIPT seems to ignore the decimal values. Can decimals be used? Why is SAPSCRIPT ignoring an increase in decimal values for the YORIGiN?

Thank-You.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

HI,

Try This

POSITION XORIGIN '0' CM YORIGIN '8.75' CM

Regards

Krishna

Former Member
0 Kudos

I just did my quotes were not set properly. It is working now...Thank-You.

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Give YORIGIN in CM

POSITION XORIGIN '0' CM YORIGIN 8.0 CM

Regards

Krishna

Former Member
0 Kudos

Krishna, I'd be glad to try that but what difference if I use IN or CH. SAPSCRIPT still ignoring my decimal values for fine tuning the position of either one. I also tried putting quotes around the value, like

POSITION XORIGIN '0' CM YORIGIN '8.75 IN'

Thank-You.