SAP IF_GUI_AQQGRAPHIC OO Class - General Network Control Methods
IF_GUI_AQQGRAPHIC is a standard SAP object class available within R/3 SAP systems depending on your version and release level. You can view/maintain the class details by entering its name into the relevant SAP transactions such as SE24, SE80 or even SE84. Below is the documentation available for class IF_GUI_AQQGRAPHIC including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Method list of IF_GUI_AQQGRAPHIC SAP class
A method is a coding block that performs a certain procedure (i.e. ABAP functionality) on an object within the overall SAP class. In simple terms if the object is an SAP database table a method could be the procedure to add a record or to delete a record. If you are new to OO in many respects, the implementation of a method is similar to a function module and can be called in a very similar way using CALL METHOD.
Instead of "CALL FUNCTION", Methods are referenced using the following syntax: CALL METHOD =>methodname EXPORTING/IMPORTING...
| Method Name | Description | Visability |
| ADD_COLOR | Add Frog Color to Color Pallet | Public |
| CALL METHOD if_gui_aqqgraphic=>ADD_COLOR...more details | ||
| ADD_LINK | Add Link | Public |
| CALL METHOD if_gui_aqqgraphic=>ADD_LINK...more details | ||
| ADD_TABLE | Add Table | Public |
| CALL METHOD if_gui_aqqgraphic=>ADD_TABLE...more details | ||
| ARRANGE_OBJECTS | Refresh Objects | Public |
| CALL METHOD if_gui_aqqgraphic=>ARRANGE_OBJECTS...more details | ||
| ARRANGE_SINGLE_TABLE | Allocate Table to Network without Overlaps | Public |
| CALL METHOD if_gui_aqqgraphic=>ARRANGE_SINGLE_TABLE...more details | ||
| CREATE_NEW_LINK_STYLE | Generates a New Link Style | Public |
| CALL METHOD if_gui_aqqgraphic=>CREATE_NEW_LINK_STYLE...more details | ||
|
| ||
| DELETE_OBJECTS | Delete Objects | Public |
| CALL METHOD if_gui_aqqgraphic=>DELETE_OBJECTS...more details | ||
| ENSURE_VISIBLE | Table Moved to Visible Area | Public |
| CALL METHOD if_gui_aqqgraphic=>ENSURE_VISIBLE...more details | ||
| FREE_IT | Delete Attributes and Exit | Public |
| CALL METHOD if_gui_aqqgraphic=>FREE_IT...more details | ||
| GET_CENTRAL_OBJECT | Delivers Table Nearest to the Center | Public |
| CALL METHOD if_gui_aqqgraphic=>GET_CENTRAL_OBJECT...more details | ||
| GET_NEW_LINK | Delivers New Link | Public |
| CALL METHOD if_gui_aqqgraphic=>GET_NEW_LINK...more details | ||
| GET_NEW_TABLE | Delivers New Table Object | Public |
| CALL METHOD if_gui_aqqgraphic=>GET_NEW_TABLE...more details | ||
| GET_POSITION_OF_OBJECTS | Delivers Position of all Objects | Public |
| CALL METHOD if_gui_aqqgraphic=>GET_POSITION_OF_OBJECTS...more details | ||
| GET_SELECTED_OBJECTS | Delivers Selected Objects | Public |
| CALL METHOD if_gui_aqqgraphic=>GET_SELECTED_OBJECTS...more details | ||
| GET_ZOOM | Delivers zoom | Public |
| CALL METHOD if_gui_aqqgraphic=>GET_ZOOM...more details | ||
| Print Network | Public | |
| CALL METHOD if_gui_aqqgraphic=>PRINT...more details | ||
| SAVE_AS_JPG | Save as jpg | Public |
| CALL METHOD if_gui_aqqgraphic=>SAVE_AS_JPG...more details | ||
| SEND_DATA_TO_FRONTEND | Newly Added Objects Sent to Frontend | Public |
| CALL METHOD if_gui_aqqgraphic=>SEND_DATA_TO_FRONTEND...more details | ||
| SET_ACTIVEMODE | Set Mode for Generating Links | Public |
| CALL METHOD if_gui_aqqgraphic=>SET_ACTIVEMODE...more details | ||
| SET_BACKGROUNDCOLOR | Set background color | Public |
| CALL METHOD if_gui_aqqgraphic=>SET_BACKGROUNDCOLOR...more details | ||
| SET_DISPLAYONLY | Switch on/off Display Mode | Public |
| CALL METHOD if_gui_aqqgraphic=>SET_DISPLAYONLY...more details | ||
| SET_DRAGDROP_HANDLE | Set D&D Handle for Network Control | Public |
| CALL METHOD if_gui_aqqgraphic=>SET_DRAGDROP_HANDLE...more details | ||
| SET_NAVIGATION_VISIBLE | Set Naviagtor Visibility | Public |
| CALL METHOD if_gui_aqqgraphic=>SET_NAVIGATION_VISIBLE...more details | ||
| SET_ROTATION | Set Network Configuration (0-3) | Public |
| CALL METHOD if_gui_aqqgraphic=>SET_ROTATION...more details | ||
| SET_SELECTED_OBJECTS | Mark Objects as Selected | Public |
| CALL METHOD if_gui_aqqgraphic=>SET_SELECTED_OBJECTS...more details | ||
| SET_TABLEDISTANCE | Set Distance Between Tables | Public |
| CALL METHOD if_gui_aqqgraphic=>SET_TABLEDISTANCE...more details | ||
| SET_TITLE | Set Title for Network | Public |
| CALL METHOD if_gui_aqqgraphic=>SET_TITLE...more details | ||
| SET_VISIBILITY | Set Visibility of Objects | Public |
| CALL METHOD if_gui_aqqgraphic=>SET_VISIBILITY...more details | ||
| SET_ZOOM | Set Zoom (1-200%) | Public |
| CALL METHOD if_gui_aqqgraphic=>SET_ZOOM...more details | ||
Events of Class IF_GUI_AQQGRAPHIC
Events are created within your class using special event handler methods. These must be registered at runtime for the event and can then be triggered using the ABAP syntax: RAISE EVENT EXPOTING... CHECKBOXCLICK - Klick on CheckboxCTXMNUFCODESEL - F-Code Selected in Context Menu
CTXMNUREQUEST - Request Context Menu
LINK_CREATED - New Link
LINK_PRED_CHANGED - Link: New Predecessor
LINK_SUCC_CHANGED - Link: New Successor
OBJECT_DOUBLE_CLICK - Double-Click on Network Object
ONDROP - Object Dropped on Network ( on Object or Background)
Links to Related Class(s)
IF_GUI_A...Full list of available SAP object classes
Search for further information about these or an SAP related objects