cancel
Showing results for 
Search instead for 
Did you mean: 

SAP Script- Intensity of the box

Former Member
0 Kudos

Hello Gurus,

Can we change the intensity of the box dynamically in reports? For example, if the data is in an internal table, depending on some conditions, it should be displayed in different intensity boxes in output of the script.

Thank you ,

nishi

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hello,

Syntax:

/: BOX FRAME 10 TW

Intensity

Default: 100 (full black)

So based on ur rquirement u can chnage the intensity.

For more information check this link:

http://help.sap.com/saphelp_40b/helpdata/en/d1/803293454211d189710000e8322d00/content.htm

Regards

Answers (2)

Answers (2)

Former Member
0 Kudos

Hello,

Thank you Max and Ravindranath for your replies.

I want to control the intensity of the box in the report. Is it possible to assign a variable to intensity of the box in the sap script, and control it in the report?

Thank you,

Regards,

nishi

Former Member
0 Kudos

Hello,

I did not try this but u can do this i think.

Keep a varible for intensity in report and pass the value into this varible based on ur condition in the report.

Use this varible in the Script form.

Try this way and let me know.

Regards

Former Member
0 Kudos

Hi

I don't believe It can use a variable for a dimension of a box.

The command for thickness of the frame and geyscale of box contents are FRAME and INTENSITY, so yuo could decide certains value a decide which has to be used by IF statament:

/: IF .........

/: BOX FRAME 10 INTENSITY 10

/: ENDIF

/: IF ......

/: BOX FRAME 10 INTENSITY 20

/: ENDIF

Max