‎2006 Jun 22 1:03 PM
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>
‎2006 Jun 22 2:26 PM
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
‎2006 Jun 22 2:26 PM
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
‎2006 Jun 22 2:51 PM
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
‎2006 Jun 22 2:53 PM
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
‎2006 Jun 22 3:00 PM
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
‎2006 Jun 22 3:07 PM
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
‎2006 Jun 24 10:23 AM
thanks Karthik
you can position image using program RSTXLDMC,
instead of going for se78 ,where you don't have facility
for postioning your image
‎2006 Jun 22 3:16 PM
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
‎2006 Jun 22 3:54 PM
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.