GRMG_UPLOAD_CUSTOMIZING 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 GRMG_UPLOAD_CUSTOMIZING into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
GRMG
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'GRMG_UPLOAD_CUSTOMIZING' "GRMG: Upload customizing
* EXPORTING
* operation_mode = GRMG_FILE " int4 GRMG_FILE - Dialog upload, GRMG_DATA_TRANSFER --Agent upload
* destination = " rfcdest logische Destination (Wird bei Funktionsaufruf angegeben)
* filename = " text_512 Arbeitsbereich mit Groß-/Kleinschreibung
IMPORTING
fm_out_error = " flag General flag
TABLES
fm_chg_error_itab = " grmg_error_itab GRMG: Table type for error log
* agent_upload_tab = " ccmctltxt Struktur 256 Byte
* grmg_entry = " grmg_scenarios
* grmg_t_entry = " grmg_scenario_t GRMG: Tabelle für Szenariobeschreibungen
* grmg_comp_entries = " grmg_components GRMG: Komponententabelle
* grmg_comp_t_entries = " grmg_component_t GRMG: Komponententabelle
* grmg_props_entries = " grmg_properties
. " GRMG_UPLOAD_CUSTOMIZING
The ABAP code below is a full code listing to execute function module GRMG_UPLOAD_CUSTOMIZING 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).
| ld_fm_out_error | TYPE FLAG , |
| it_fm_chg_error_itab | TYPE STANDARD TABLE OF GRMG_ERROR_ITAB,"TABLES PARAM |
| wa_fm_chg_error_itab | LIKE LINE OF it_fm_chg_error_itab , |
| it_agent_upload_tab | TYPE STANDARD TABLE OF CCMCTLTXT,"TABLES PARAM |
| wa_agent_upload_tab | LIKE LINE OF it_agent_upload_tab , |
| it_grmg_entry | TYPE STANDARD TABLE OF GRMG_SCENARIOS,"TABLES PARAM |
| wa_grmg_entry | LIKE LINE OF it_grmg_entry , |
| it_grmg_t_entry | TYPE STANDARD TABLE OF GRMG_SCENARIO_T,"TABLES PARAM |
| wa_grmg_t_entry | LIKE LINE OF it_grmg_t_entry , |
| it_grmg_comp_entries | TYPE STANDARD TABLE OF GRMG_COMPONENTS,"TABLES PARAM |
| wa_grmg_comp_entries | LIKE LINE OF it_grmg_comp_entries , |
| it_grmg_comp_t_entries | TYPE STANDARD TABLE OF GRMG_COMPONENT_T,"TABLES PARAM |
| wa_grmg_comp_t_entries | LIKE LINE OF it_grmg_comp_t_entries , |
| it_grmg_props_entries | TYPE STANDARD TABLE OF GRMG_PROPERTIES,"TABLES PARAM |
| wa_grmg_props_entries | LIKE LINE OF it_grmg_props_entries . |
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:
| ld_fm_out_error | TYPE FLAG , |
| ld_operation_mode | TYPE INT4 , |
| it_fm_chg_error_itab | TYPE STANDARD TABLE OF GRMG_ERROR_ITAB , |
| wa_fm_chg_error_itab | LIKE LINE OF it_fm_chg_error_itab, |
| ld_destination | TYPE RFCDEST , |
| it_agent_upload_tab | TYPE STANDARD TABLE OF CCMCTLTXT , |
| wa_agent_upload_tab | LIKE LINE OF it_agent_upload_tab, |
| ld_filename | TYPE TEXT_512 , |
| it_grmg_entry | TYPE STANDARD TABLE OF GRMG_SCENARIOS , |
| wa_grmg_entry | LIKE LINE OF it_grmg_entry, |
| it_grmg_t_entry | TYPE STANDARD TABLE OF GRMG_SCENARIO_T , |
| wa_grmg_t_entry | LIKE LINE OF it_grmg_t_entry, |
| it_grmg_comp_entries | TYPE STANDARD TABLE OF GRMG_COMPONENTS , |
| wa_grmg_comp_entries | LIKE LINE OF it_grmg_comp_entries, |
| it_grmg_comp_t_entries | TYPE STANDARD TABLE OF GRMG_COMPONENT_T , |
| wa_grmg_comp_t_entries | LIKE LINE OF it_grmg_comp_t_entries, |
| it_grmg_props_entries | TYPE STANDARD TABLE OF GRMG_PROPERTIES , |
| wa_grmg_props_entries | LIKE LINE OF it_grmg_props_entries. |
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 GRMG_UPLOAD_CUSTOMIZING or its description.
GRMG_UPLOAD_CUSTOMIZING - GRMG: Upload customizing GRMG_SUBMIT_GRMG_GENERATOR - submit GRMG via a function module (for aRFC) GRMG_START_SCENARIOS_RFC - CCMS: Verschalung GRMG Start für A1S CTC GRMG_START_SCENARIOS - GRMG: Upload customizing GRMG_SEND_HTTP_REQUEST - GRMG: Send HTTP Request GRMG_SEND_HTTP_PING - Verfügbarkeit einer Seite mit HTTP HEAD überprüfen