2008 Nov 04 7:45 AM
hi,
I want different logo in sap script with followin condition:
IF &T001-SPRAS& = 'E' (logo in english)
ELSE &T001-SPRAS& = 'F' (logo in french)
Thanks in Advance.
hi,
I want different logo in sap script with followin condition:
IF &T001-SPRAS& = 'E' (logo in english)
ELSE &T001-SPRAS& = 'F' (logo in french)
Thanks in Advance.
2008 Nov 04 7:49 AM
this is possible in the script :
/: IF &T001-SPRAS& = 'E'
/: INCLUDE <logo in english>
/: ELSE
/: INCLUDE <logo in french>
/: ENDIF
global workarea T001 should be defined and filled.
Both logo's should be in the system as standard texts.
regards,
Hans
2008 Nov 04 8:25 AM
hi,
what does it mean can u plz tel me.
"global workarea T001 should be defined and filled."
i have tried like this:
IF &T001-SPRAS& = 'E'
INCLUDE BITMAP 'ZPFRFI_043_LOGO_EN' OBJECT GRAPHICS ID BMAP TYPE BCOL
ELSE &T001-SPRAS& = 'F'
INCLUDE BITMAP 'ZPFRFI_043_LOGO_FR' OBJECT GRAPHICS ID BMAP TYPE BCOL
ENDIF
2008 Nov 04 7:52 AM
Upload language specific logos in SE78 and then in the sapscript layout use if ..elseif...endif statement.
IF &T001-SPRAS& = 'E'
Include logo for english
ELSEif &T001-SPRAS& = 'F'
Include logo for french
endif
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |