ABAP-BITMAP的命令引數的使用說明

JackWu發表於2018-06-28


Documentation on the SAPscript graphic administration is available in the system.
There are two ways of accessing it:
1. Create a graphic directly on the form painter page, for example, using the context menu.
2. Within a text/text element you can use the BITMAP command with the following syntax:

/: BITMAP <name> OBJECT <obj> ID <id> TYPE <typ> [XPOS <xpos>] [YPOS <ypos>] [DPI <dpi>]

<name> = name from SE78

<obj> = normally GRAPHICS

<id> = usually BMAP

<typ> = BMON (Black/white) or BCOL (Colored)

<xpos>= optional

<ypos> = optional

<dpi> = optional (have a look at the F4-help, just a few are valid)

You must set the <name>, <obj>, and <typ> as defined in Transaction SE78, example:
BITMAP logo OBJECT graphics ID BMAP TYPE BCOL

The XPOS,YPOS and DPI parameters are optional.
To achieve a certain scaling, you can use XPOS to specify a horizontal shift and DPI to change the resolution.
You can choose any unit for XPOS, for example, XPOS 3 CM or XPOS 10 MM.

相關文章