cancel
Showing results for 
Search instead for 
Did you mean: 

Print out logo as per country in sap script

Former Member
0 Kudos

Hi All,

I have a requirement in sap script , my customer want the logo should be print as per country i.e. If i select Singapore it will display the Singapore logo and if select India it will send Indian logo , can u plz help me how i will pass that one in graphic window in sap script

.

Regards,

Nihar.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

in sap script

if &country& = 'IN'

/: INCLUDE Z_YOUR_LOGO OBJECT TEXT ID ST LANGUAGE E --Here pass nast-spars.

elseif &country& = DE.

/: INCLUDE Z_YOUR_LOGO1 OBJECT TEXT ID ST LANGUAGE D --Here pass nast-spars.

endif.

Former Member
0 Kudos

Hi i am new to sap script could you please tell me step by step procedure how can i do coding and where.

regards.

Nihar

Former Member
0 Kudos

Hi chenna ,

could you please tell me step by step procedure plz , i am new to sap script.

Former Member
0 Kudos

goto SE71 give your script name and goto pagewindows then select you logo window and EDIT-- > text elements--> GOTO --> Chnage editor then yo have write code

Former Member
0 Kudos

Hi Z_YOUR_LOGO and Z_YOUR_LOGO 1 is the logo name which is already imported in se78 and need to create any OBJECT TEXT ID?

Former Member
0 Kudos

Z_YOUR_LOGO for india

Z_YOUR_LOGO1 for Germany like you need to upload in SE78

the below objects are created when you upload in SE78 tcode...

just you can use it...

OBJECT is 'GRAPHICS'

TEXT ID is BMAP

Former Member
0 Kudos

Menas i can write like this

/: INCLUDE Z_YOUR_LOGO 'GRAPHICS' BMAP ST LANGUAGE E

Former Member
0 Kudos

you can pass like below

/: INCLUDE Z_YOUR_LOGO OBJECT GRAPHICS ID BMON LANGUAGE EN

Answers (0)