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

sap-script logo issue

Former Member
0 Likes
928

Guy's

I have uploaded logo(signature) in my sap script,i want that logo to be appeared on top of one text,but problem is ,that i cannot create separarte window for having that logo,since text position can change ,but window cannot,

so i went for other option of putting BITMAP code at

top of where there text is called,again the problem

text is at right end corner and BITMAP is comming at left,

<b>can anybody help me to position my bitmap to left,without

creating new window</b>

1 ACCEPTED SOLUTION
Read only

former_member189629
Active Contributor
0 Likes
881

Hi Sanju

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).

If you find it useful, please reward me for the same.

Good luck

Karthik Potharaju

8 REPLIES 8
Read only

former_member189629
Active Contributor
0 Likes
882

Hi Sanju

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).

If you find it useful, please reward me for the same.

Good luck

Karthik Potharaju

Read only

0 Likes
881

Hi Karthik

i think i din't explain my issue properly,i just asked

how to postion BITMAP image on left side of the window,

default is right

Read only

0 Likes
881

hi sanju,

may be u can use paragraph settings for the element ..

in paragraph settings u can allign the it to right...

hope this helps to u

cnu

Read only

0 Likes
881

U CAN'T USE PARAGRAP WITH BITMAP image,i think

XPOS and YPOS will help me,but don't know

how to use XPOS and ypos with

/: INCLUDE SIGNAT1 OBJECT GRAPHICS ID BMON LANGUAGE EN

Read only

0 Likes
881

use position:

Position <xorigin> <yorigin> <window> <page>

or try Position and size

/: POSITION XORIGIN '11.21' YORIGIN '5.31' MM

/: SIZE HEIGHT '2' MM WIDTH '76' MM

Read only

0 Likes
881

thanks Karthik

you can position image using program RSTXLDMC,

instead of going for se78 ,where you don't have facility

for postioning your image

Read only

sridhar_k1
Active Contributor
0 Likes
881

Don't know how your commands look like in the window, but commands:

/: BITMAP .... ......

  • text text

should place the bitmap on the left side and text right below it.

Regards

Sridhar

Read only

0 Likes
881

if u can fetch the current position of the cursor in layout then u can use position command to place graphic window where ever u want...

but i am not sure how to fetch the current position or line in layout...

its just an idea.