‎2006 May 10 12:58 PM
Hi wise guys,
in a SapScript text include I found the comman line
/: BITMAP 'xyz' OBJECT GRAPHICS ID BMAP TYPE BMON
where xyz shall be a company logo. The logo is not on our new system so we have to to an upload. I searched almost all available SapScript documentation butv I can't find anything about BITMAP.
Can you tell me, how it works, where to upload in what format, and, possibly, if this has been replaced by anything more up-to-date.
TIA,
Clemens
‎2006 May 10 1:00 PM
Go to transaction SE78.
Follow the path given below (on the left windows box) :-
SAPSCRIPT GRAPHICS --> STORED ON DOCUMENT SERVER --> GRAPHICS --> BMAP
Enter the name of the graphics file on the right side and Go to the menu GRAPHIC --> IMPORT
The program is RSTXLDMC, the logo needs to be save in .TIF format.
Use transaction SE78 to inmport graphics to SAP.
In the form painter, you can either include directly to the form using menu Edit->Graphic->Create or using the INCLUDE statement in a window.
To use an INCLUDE stanment, goto into the woindow script editor and use menu Include->Graphic. The include can look like this for a bitmap:
/: BITMAP MYLOGO OBJECT GRAPHICS ID BMAP TYPE BMON
‎2006 May 10 1:00 PM
Go to transaction SE78.
Follow the path given below (on the left windows box) :-
SAPSCRIPT GRAPHICS --> STORED ON DOCUMENT SERVER --> GRAPHICS --> BMAP
Enter the name of the graphics file on the right side and Go to the menu GRAPHIC --> IMPORT
The program is RSTXLDMC, the logo needs to be save in .TIF format.
Use transaction SE78 to inmport graphics to SAP.
In the form painter, you can either include directly to the form using menu Edit->Graphic->Create or using the INCLUDE statement in a window.
To use an INCLUDE stanment, goto into the woindow script editor and use menu Include->Graphic. The include can look like this for a bitmap:
/: BITMAP MYLOGO OBJECT GRAPHICS ID BMAP TYPE BMON
‎2006 May 10 1:06 PM
Hi Clemens,
you can upload you BITMAP files using SE78 transaction.
while doing that you need to mention the name for it.with the same('xyz') you will call
/: BITMAP <b>'xyz'</b> OBJECT GRAPHICS ID BMAP TYPE BMON
Regards
vijay
‎2006 May 10 1:17 PM
HI
GOOD
FOLLOW THIS PROCESS
Command in your Sapscript
/: 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).
THANKS
MRUTYUN