cancel
Showing results for 
Search instead for 
Did you mean: 

Colour logo in sap script

Former Member
0 Kudos

Hi All,

I have a requirement to include both picture type BMON and BCOL (Dynamic selection BMON or BCOL) in my script.

Can anyone suggest how to write this in command line of the script?

Like in Graphic window->

/: BITMAP 'name' OBJECT GRAPHICS ID BMAP TYPE BMON

I wnat to include BCOL as well in this.

If I write :

/: BITMAP 'name' OBJECT GRAPHICS ID BMAP TYPE BMON BCOL-> it is trowing an error

Kindly suggest on this.

Regards,

Ashwini

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

I would expect to have two different logos stored, one in color and one in Black & white. I would expect to determine which to use via /: IF....THEN...ELSE commands in the SAPScript window, or perhaps by inserting a PERFORM, or you could have an statement with the logo name created dynamically, in a variable passed to the SAPScript from the entry routine, something like:

/: BITMAP &LOGO_NAME& OBJECT GRAPHICS ID BMAP TYPE &LOGO_TYPE&

Answers (0)