ICLC_IF_TICL005_GET_ALL 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 ICLC_IF_TICL005_GET_ALL into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
ICL_IF2
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ICLC_IF_TICL005_GET_ALL' "Determines Permitted Subclaim Types for Internal Claim Type incl. Add.Info
* EXPORTING
* i_langu = SY-LANGU " ticl004t-langu Language Key
* i_claimtype = " ticl005-cltype Internal Claim Type
* i_generat = " ticl005-generat Generation of Internal Claim Type
* i_version = " ticl005-version Version of Internal Claim Type That is Valid on Claim Date
TABLES
t_ticl005_004t = " v_ticl005_004 Return Structure with Permitted Subclaim Types and Text
. " ICLC_IF_TICL005_GET_ALL
The ABAP code below is a full code listing to execute function module ICLC_IF_TICL005_GET_ALL 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_t_ticl005_004t | TYPE STANDARD TABLE OF V_TICL005_004,"TABLES PARAM |
| wa_t_ticl005_004t | LIKE LINE OF it_t_ticl005_004t . |
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_i_langu | TYPE TICL004T-LANGU , |
| it_t_ticl005_004t | TYPE STANDARD TABLE OF V_TICL005_004 , |
| wa_t_ticl005_004t | LIKE LINE OF it_t_ticl005_004t, |
| ld_i_claimtype | TYPE TICL005-CLTYPE , |
| ld_i_generat | TYPE TICL005-GENERAT , |
| ld_i_version | TYPE TICL005-VERSION . |
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 ICLC_IF_TICL005_GET_ALL or its description.
ICLC_IF_TICL005_GET_ALL - Determines Permitted Subclaim Types for Internal Claim Type incl. Add. ICLC_IF_ICL_ITEM_CONV_GUI2DB - Fill Structure ICL_ITEMLIST ICLC_IF_ICL_IS_DELETING_ALLOW - Checks if Claim Item is Allowed to be Deleted ICLC_IF_ICL_EVENT_FCODE_CORR - BDT Function Code Editing for Correspondence in a Case ICLC_IF_ICL_EVENT_FCODE_CDC - Process the Function Codes of the Data Entry ICLC_IF_CLAIMOWNER_NAME_GET - Find Claim Handler