KL_UTILSII_GLOBAL_COLLAT_GET 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 KL_UTILSII_GLOBAL_COLLAT_GET into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
KLUTILSII
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'KL_UTILSII_GLOBAL_COLLAT_GET' "Gets the global collateral and derived limit characteristics
EXPORTING
it_ev = " kl2_ev_tab
* i_auswdat = SY-DATUM " sy-datum
* i_prot_level = 1 " sprot-level
* i_merkmale = " vtblm0a
* i_it_sid = " klsi_sid_tab
IMPORTING
it_gs_anbetrout = " klanbetrout_tab Output Structure for Attributable Amount Determination
TABLES
c_si_error_itab = " bapierr
. " KL_UTILSII_GLOBAL_COLLAT_GET
The ABAP code below is a full code listing to execute function module KL_UTILSII_GLOBAL_COLLAT_GET 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_it_gs_anbetrout | TYPE KLANBETROUT_TAB , |
| it_c_si_error_itab | TYPE STANDARD TABLE OF BAPIERR,"TABLES PARAM |
| wa_c_si_error_itab | LIKE LINE OF it_c_si_error_itab . |
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_it_gs_anbetrout | TYPE KLANBETROUT_TAB , |
| ld_it_ev | TYPE KL2_EV_TAB , |
| it_c_si_error_itab | TYPE STANDARD TABLE OF BAPIERR , |
| wa_c_si_error_itab | LIKE LINE OF it_c_si_error_itab, |
| ld_i_auswdat | TYPE SY-DATUM , |
| ld_i_prot_level | TYPE SPROT-LEVEL , |
| ld_i_merkmale | TYPE VTBLM0A , |
| ld_i_it_sid | TYPE KLSI_SID_TAB . |
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 KL_UTILSII_GLOBAL_COLLAT_GET or its description.
KL_UTILSII_GLOBAL_COLLAT_GET - Gets the global collateral and derived limit characteristics KL_UTILSII_DATA_FOR_RESERVE - All Relevant Data for Reservations KL_UTILSII_COLLATERALS_DISPLAY - Display Collateral KL_TZ_LIMIT_TCURC_CHECK - Check whether currency exists KL_TZ_LIMIT_T006_CHECK - Check whether unit of quantity exists KL_TZ_LIMIT_PRODGRP_CHECK - Check whether the limit product group exists