ISU_AR_INIT_MASSIVE_SELECTION 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 ISU_AR_INIT_MASSIVE_SELECTION into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
EAR_REPORT_SELECTION
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ISU_AR_INIT_MASSIVE_SELECTION' "Global data initialization for legal report massive selection
EXPORTING
i_bukrs = " dfkkrep06-bukrs Company code
i_from_date = " dfkkrep06-vmdat Date and time, current (application server) date
i_to_date = " dfkkrep06-vmdat Date and time, current (application server) date
i_limit = " sy-dbcnt DB operations, number of table lines processed
i_report_type = " char2 Report type
* i_process_way = " j_1adrver-j_1aproc Processing way
i_sorting_type = " char1 Sorting type
* i_tearsalestax = " tearsalestax ARGENTINA: Legal report sales tax parameters
* i_earsort = " tearsortdef-earsort ARGENTINA: Legal report sorting for output and subtotals
TABLES
* t_ktosl = " ear_ktosl ARGENTINA: Legal report KTOSL transfer structure
t_xblnr_range = " fkkr_xblnr Range Structure for Reference Doc No. (FI-CA)
* t_varidef = " tearvaridef ARGENTINA: Legal report selection variant definition
* t_gityp = " ear_gityp ARGENTINA: Legal reporting interface structure for function
EXCEPTIONS
INVALID_PARAMETERS = 1 "
. " ISU_AR_INIT_MASSIVE_SELECTION
The ABAP code below is a full code listing to execute function module ISU_AR_INIT_MASSIVE_SELECTION 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_ktosl | TYPE STANDARD TABLE OF EAR_KTOSL,"TABLES PARAM |
| wa_t_ktosl | LIKE LINE OF it_t_ktosl , |
| it_t_xblnr_range | TYPE STANDARD TABLE OF FKKR_XBLNR,"TABLES PARAM |
| wa_t_xblnr_range | LIKE LINE OF it_t_xblnr_range , |
| it_t_varidef | TYPE STANDARD TABLE OF TEARVARIDEF,"TABLES PARAM |
| wa_t_varidef | LIKE LINE OF it_t_varidef , |
| it_t_gityp | TYPE STANDARD TABLE OF EAR_GITYP,"TABLES PARAM |
| wa_t_gityp | LIKE LINE OF it_t_gityp . |
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_bukrs | TYPE DFKKREP06-BUKRS , |
| it_t_ktosl | TYPE STANDARD TABLE OF EAR_KTOSL , |
| wa_t_ktosl | LIKE LINE OF it_t_ktosl, |
| ld_i_from_date | TYPE DFKKREP06-VMDAT , |
| it_t_xblnr_range | TYPE STANDARD TABLE OF FKKR_XBLNR , |
| wa_t_xblnr_range | LIKE LINE OF it_t_xblnr_range, |
| ld_i_to_date | TYPE DFKKREP06-VMDAT , |
| it_t_varidef | TYPE STANDARD TABLE OF TEARVARIDEF , |
| wa_t_varidef | LIKE LINE OF it_t_varidef, |
| ld_i_limit | TYPE SY-DBCNT , |
| it_t_gityp | TYPE STANDARD TABLE OF EAR_GITYP , |
| wa_t_gityp | LIKE LINE OF it_t_gityp, |
| ld_i_report_type | TYPE CHAR2 , |
| ld_i_process_way | TYPE J_1ADRVER-J_1APROC , |
| ld_i_sorting_type | TYPE CHAR1 , |
| ld_i_tearsalestax | TYPE TEARSALESTAX , |
| ld_i_earsort | TYPE TEARSORTDEF-EARSORT . |
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 ISU_AR_INIT_MASSIVE_SELECTION or its description.
ISU_AR_INIT_MASSIVE_SELECTION - Global data initialization for legal report massive selection ISU_AR_GROUPING_GET - Get grouping code by classification. ISU_AR_GROUPING_DESCRIP_GET - Get description for given grouping ISU_AR_GET_REV_GLOBAL_DATA - ARGENTINA: Get global data for revenue reports event processing ISU_AR_GET_PROCESSING_KEYS - Gets processing keys relevant for tax reports ISU_AR_GET_OTHER_DOC_TAXES - Additional data selection for legal reports