Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

sapscript-logo

Former Member
0 Likes
926

hi gurus,

is it possible to display different logos based on different company codes,displaying footer address based on the sales office and printing bank information based on company code.

if possible plz let me know ASAP with hints and code.

best solutions will be rewareded.

Thanks n regards,

Vinay Prakash

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
700

Hi vinay,

1. Ofcourse its possible.

2. In sapscript layout,

we can write IF condition,

IF BUKRS = '1000'

INCLUDE TEXT SDFJLSDFJ LOGOC

ENDIF.

IF BUKRS = '1100'

INCLUDE TEXT ABC LOGOC

ENDIF.

regards,

amit m.

5 REPLIES 5
Read only

Former Member
0 Likes
701

Hi vinay,

1. Ofcourse its possible.

2. In sapscript layout,

we can write IF condition,

IF BUKRS = '1000'

INCLUDE TEXT SDFJLSDFJ LOGOC

ENDIF.

IF BUKRS = '1100'

INCLUDE TEXT ABC LOGOC

ENDIF.

regards,

amit m.

Read only

Former Member
0 Likes
700

Logos are displayed using INCLUDE statemets..

Mostly this will be written in a seperate window(Eg MYLOGO).

1)You can go there and put condition to select the

respective include(logo) based on your company code.

INCLUDE my_logo OBJECT TEXT ID ST LANGUAGE EN

2) You can select the respective name in your print program itself and assign

it to a variable and use that variable in the include.

Eg : .

INCLUDE &my_logo_variable& OBJECT TEXT ID ST LANGUAGE EN

rgds,

TM

Read only

Former Member
0 Likes
700

Hi Vinay,

Yes it is possible you can write if condition in the sapscript text and display logo on condition of company code

Read only

Former Member
0 Likes
700

Vinay,

use IF conditions within sapscript u can display anything conditionalyy...

/: IF ---

/: ENDIF.

Read only

Former Member
0 Likes
700

Hi vinay,

As amit suggested you can use IF condition in the Logo Window. with that you can get what ever you are looking.

Regards

vijay