RM_RC_DELETE_DB_TABLES_XFGET is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name RM_RC_DELETE_DB_TABLES_XFGET into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
RMY1A
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'RM_RC_DELETE_DB_TABLES_XFGET' "RM: Löschen der DB-Tabellen, die die xFGET-Daten enthalten
TABLES
i_it_koet = " jbrdbkoet
i_it_opti = " jbrdbopti
i_it_beweg = " jbrdbbeweg
* i_it_combeweg = " jbrdbcombeweg RM: DB Table BEWEG Extended Category of Primary Transaction
i_it_fml = " jbrdbfml
. " RM_RC_DELETE_DB_TABLES_XFGET
The ABAP code below is a full code listing to execute function module RM_RC_DELETE_DB_TABLES_XFGET including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).
| it_i_it_koet | TYPE STANDARD TABLE OF JBRDBKOET,"TABLES PARAM |
| wa_i_it_koet | LIKE LINE OF it_i_it_koet , |
| it_i_it_opti | TYPE STANDARD TABLE OF JBRDBOPTI,"TABLES PARAM |
| wa_i_it_opti | LIKE LINE OF it_i_it_opti , |
| it_i_it_beweg | TYPE STANDARD TABLE OF JBRDBBEWEG,"TABLES PARAM |
| wa_i_it_beweg | LIKE LINE OF it_i_it_beweg , |
| it_i_it_combeweg | TYPE STANDARD TABLE OF JBRDBCOMBEWEG,"TABLES PARAM |
| wa_i_it_combeweg | LIKE LINE OF it_i_it_combeweg , |
| it_i_it_fml | TYPE STANDARD TABLE OF JBRDBFML,"TABLES PARAM |
| wa_i_it_fml | LIKE LINE OF it_i_it_fml . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| it_i_it_koet | TYPE STANDARD TABLE OF JBRDBKOET , |
| wa_i_it_koet | LIKE LINE OF it_i_it_koet, |
| it_i_it_opti | TYPE STANDARD TABLE OF JBRDBOPTI , |
| wa_i_it_opti | LIKE LINE OF it_i_it_opti, |
| it_i_it_beweg | TYPE STANDARD TABLE OF JBRDBBEWEG , |
| wa_i_it_beweg | LIKE LINE OF it_i_it_beweg, |
| it_i_it_combeweg | TYPE STANDARD TABLE OF JBRDBCOMBEWEG , |
| wa_i_it_combeweg | LIKE LINE OF it_i_it_combeweg, |
| it_i_it_fml | TYPE STANDARD TABLE OF JBRDBFML , |
| wa_i_it_fml | LIKE LINE OF it_i_it_fml. |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name RM_RC_DELETE_DB_TABLES_XFGET or its description.
RM_RC_DELETE_DB_TABLES_XFGET - RM: Löschen der DB-Tabellen, die die xFGET-Daten enthalten RM_RC_DELETE_DB_TABLES - RM: Löschen der DB-Tabellen, die die xSFGDT-Daten enthalten RM_RC_DECIDE_CHANGE_OF_GROUP - RM: Entscheidung über Gruppenwechsel in der FDÜ xSFGDT RM_RC_CREATE_H_FROM_DB_TABLES - RM: Erzeugen der Versionstabellen (H-Tabellen) aus den DB-Tabellen RM_RC_CONV_REM_HIER_FGET_T - RM: Bildung Teilbaum und Auflösung Hierarchie (bzgl. Tabelle von FGETs RM_RC_CONV_BRNCH_REM_HIER - RM: Bildung Teilbaum und Auflösung Hierarchie (bzgl. SFGDT)