Anfang des Inhaltsbereichs

Prozessdokumentation Customizing: From Database to Graphic  Dokument im Navigationsbaum lokalisieren

Purpose

A group of display attributes for the graphic is created and then transferred to the graphic.

Process Flow

Diese Grafik wird im zugehörigen Text erklärt

The graphic shows what happens when customizing data is transferred from the database to the graphic. The order of events can be read vertically down the graphic:

  1. The application creates the customizing object. In this example it has the ID 4711.
  2. CREATE OBJECT <drawing area> EXPORTING

    INSTANCE_ID = "4711".

  3. The application loads the attribute values from the database.
  4. CALL METHOD <drawing area>IF_CUSTOMIZING~LOAD.

  5. Data is read from the database.
  6. Using the method ADD_CU_BUNDLE the application notifies the graphics proxy about the customizing object and at which port it is to be used.
  7. CALL METHOD <graphics proxy>IF_GRAPHIC_PROXY~ADD_CU_BUNDLE

    EXPORTING PORT = IF_GRAPHIC_PROXY => CO_PORT…

    BUNDLE = <drawing area>

    IMPORTING RETVAL = <return value>.

  8. After all the customizing steps have been completed the graphics proxy has to be activated.
  9. CALL METHOD <graphics proxy>ACTIVATE

    IMPORTING RETVAL = <return value>.

  10. The graphic is displayed with the display attributes specified in the customizing object. The label 6:#§&:-) is to indicate that the method call to the graphic is product-specific.