Application Development 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: 

print logo

Former Member
0 Kudos

Guys,

I want to print the logo in to the window with the condition.

i wrote like this in se71.

IF &EKPO-WERKS& ='0982' AND &EKPO-WERKS& ='1029'

-


what i need to write here.

endif.

i have only standard text name for the logo.

reg,

vijay

1 ACCEPTED SOLUTION

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

You should write....

/:  INCLUDE YLOGO_NAME OBJECT TEXT ID ADRS

Also make sure you check your IF statement, WERKS can never be 0982 and 1029 at the same time.

Regards,

Rich Heilman

6 REPLIES 6

Former Member
0 Kudos

hi,

Insert this line.

ZDUNNV_HEADER is the name of standard text

/: INCLUDE ZDUNNV_HEADER OBJECT 'TEXT' ID 'ST' PARAGRAPH 'TH'

Regards,

Sailaja.

Former Member
0 Kudos

IF &EKPO-WERKS& ='0982' OR &EKPO-WERKS& ='1029'

INCLUDE ZHEX-MACRO-ASDC LANGUAGE EN OBJECT TEXT ID ST

or

BITMAP 'AFJP' OBJECT GRAPHICS ID BMAP TYPE BCOL DPI 100

endif.

Regards

Prabhu

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

You should write....

/:  INCLUDE YLOGO_NAME OBJECT TEXT ID ADRS

Also make sure you check your IF statement, WERKS can never be 0982 and 1029 at the same time.

Regards,

Rich Heilman

Former Member
0 Kudos

Hi,

It depends how you have uploaded the logo in SAP.

It can be For eg:

<b>/: BITMAP 'Z_STNEW_CAN' OBJECT GRAPHICS ID BMAP TYPE

BMON DPI 150</b>

Guess it is <b>OR</b> instead of AND in the If statement.

Regards,

Raj

Message was edited by: Rajasekhar Dinavahi

Former Member
0 Kudos

/: INCLUDE Z_YOUR_LOGO OBJECT TEXT ID ST LANGUAGE E

These are the steps to be followed for uploading graphics in R/3 system

1. First save the file as BMP

2. Open the BMP file in IMaging (Goto -> Programs -> Accessories -> Imaging) and

make it Zoom as 100% and save as *.TIFF

3. Open SE38 and execute program RSTXLDMC

4. Give your TIFF file path name

5. Select Bcol (for Color)

6. TEXT ID will be ZHEX-MACRO-*.

7. Inplace of * write your own logo name (ZCOMPANYLOGO)

8. Execute the program

9. Now Goto SE71 create your ZFORM

10. Create logo window

11. Goto text element of logo window

or

In 4.6x :-

1. Goto SE71 Change the mode to GRAPHICAL

2. Choose the Graph Tabstrips

3. Now type in some name for the LOGO WINDOW

4. Press the IMPORT BUTTON and then IMPORT the BMP file from your DESKTOP

5. The code will be written automatically. You just need to drag and drop wherever you want

the graphics to be.

Please note that in 4.6c onwards, you can also used Windows Bitmap file ( .BMP).