cancel
Showing results for 
Search instead for 
Did you mean: 

Logo based on the divission and company code

Former Member
0 Kudos

hi to all,

I need to place a logo based on the divission and as well the company code.can any one provide me the logic.coz i have 10 logo's so how could i proceed with this...urgent

thanx and regards,

loki

Edited by: Alvaro Tejada Galindo on Feb 19, 2008 11:16 AM

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

You could include the company code and division in the name of the logo, for example;

Z_LOGO_1000_250

Z_LOGO_1000_300

Z_LOGO_company code_division

Then in your script

/: DEFINE &LOGO_NAME& = 'Z_LOGO_'&BUKRS&'_'&DIVISION&

Then

/: INCLUDE &LOGO_NAME&

So when your company adds new company codes or divisions you don't need to change the script, just upload the new logo.

Regards,

Nick

former_member199351
Active Participant
0 Kudos

Just add if conditions within text element.

/: IF &BKPF-BUKRS& = 'US01'

/: INCLUDE LOGO1

/:ELSEIF &BKPF-BUKRS& = 'US02'

/: INCLUDE LOGO2

....

/:ENDIF