FCOM_RULE_ADMIN_CL 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 FCOM_RULE_ADMIN_CL into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
FCOM_RULE_ADMIN_CL
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'FCOM_RULE_ADMIN_CL' "
EXPORTING
id_ruleid = " fpb_ruleid
id_ucomm = " syucomm
* id_monappl = " fpb_monappl
* TABLES
* it_uname = " fpb_s_uname
* it_ruleid = " fpb_s_ruleid
. " FCOM_RULE_ADMIN_CL
The ABAP code below is a full code listing to execute function module FCOM_RULE_ADMIN_CL 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_it_uname | TYPE STANDARD TABLE OF FPB_S_UNAME,"TABLES PARAM |
| wa_it_uname | LIKE LINE OF it_it_uname , |
| it_it_ruleid | TYPE STANDARD TABLE OF FPB_S_RULEID,"TABLES PARAM |
| wa_it_ruleid | LIKE LINE OF it_it_ruleid . |
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_id_ruleid | TYPE FPB_RULEID , |
| it_it_uname | TYPE STANDARD TABLE OF FPB_S_UNAME , |
| wa_it_uname | LIKE LINE OF it_it_uname, |
| ld_id_ucomm | TYPE SYUCOMM , |
| it_it_ruleid | TYPE STANDARD TABLE OF FPB_S_RULEID , |
| wa_it_ruleid | LIKE LINE OF it_it_ruleid, |
| ld_id_monappl | TYPE FPB_MONAPPL . |
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 FCOM_RULE_ADMIN_CL or its description.