READ_ACTUALS_ISPS_W_RNGS_HDB 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 READ_ACTUALS_ISPS_W_RNGS_HDB into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
FMRE
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'READ_ACTUALS_ISPS_W_RNGS_HDB' "
EXPORTING
i_fikrs = " fm01-fikrs
g_dbcon = " dbcon_name
TABLES
* t_fictr = " range_c16
* t_fipex = " range_c24
* t_geber = " range_c10
* t_gjahr = " range_n4
* t_perio = " range_n3
* t_perio7 = " range_n7
* t_wrttp = " rsn2range
* t_twaer = " range_cuky
* t_btart = " range_c4
* t_rrcty = " range_c1
* t_bukrs = " range_c4
* t_rstat = " range_c1
* t_hkont = " range_c10
* t_cflev = " range_c1
* t_rgjhr = " range_n4
* t_rvers = " range_c3
* t_vrgng = " range_c4
* t_farea = " range_c16
* t_objnrz = " range_c22
* t_rudim = " range_c10
t_actuals = " fmfmit1
t_all_fields = " cedst
* t_addresses = " fmia
. " READ_ACTUALS_ISPS_W_RNGS_HDB
The ABAP code below is a full code listing to execute function module READ_ACTUALS_ISPS_W_RNGS_HDB 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_fictr | TYPE STANDARD TABLE OF RANGE_C16,"TABLES PARAM |
| wa_t_fictr | LIKE LINE OF it_t_fictr , |
| it_t_fipex | TYPE STANDARD TABLE OF RANGE_C24,"TABLES PARAM |
| wa_t_fipex | LIKE LINE OF it_t_fipex , |
| it_t_geber | TYPE STANDARD TABLE OF RANGE_C10,"TABLES PARAM |
| wa_t_geber | LIKE LINE OF it_t_geber , |
| it_t_gjahr | TYPE STANDARD TABLE OF RANGE_N4,"TABLES PARAM |
| wa_t_gjahr | LIKE LINE OF it_t_gjahr , |
| it_t_perio | TYPE STANDARD TABLE OF RANGE_N3,"TABLES PARAM |
| wa_t_perio | LIKE LINE OF it_t_perio , |
| it_t_perio7 | TYPE STANDARD TABLE OF RANGE_N7,"TABLES PARAM |
| wa_t_perio7 | LIKE LINE OF it_t_perio7 , |
| it_t_wrttp | TYPE STANDARD TABLE OF RSN2RANGE,"TABLES PARAM |
| wa_t_wrttp | LIKE LINE OF it_t_wrttp , |
| it_t_twaer | TYPE STANDARD TABLE OF RANGE_CUKY,"TABLES PARAM |
| wa_t_twaer | LIKE LINE OF it_t_twaer , |
| it_t_btart | TYPE STANDARD TABLE OF RANGE_C4,"TABLES PARAM |
| wa_t_btart | LIKE LINE OF it_t_btart , |
| it_t_rrcty | TYPE STANDARD TABLE OF RANGE_C1,"TABLES PARAM |
| wa_t_rrcty | LIKE LINE OF it_t_rrcty , |
| it_t_bukrs | TYPE STANDARD TABLE OF RANGE_C4,"TABLES PARAM |
| wa_t_bukrs | LIKE LINE OF it_t_bukrs , |
| it_t_rstat | TYPE STANDARD TABLE OF RANGE_C1,"TABLES PARAM |
| wa_t_rstat | LIKE LINE OF it_t_rstat , |
| it_t_hkont | TYPE STANDARD TABLE OF RANGE_C10,"TABLES PARAM |
| wa_t_hkont | LIKE LINE OF it_t_hkont , |
| it_t_cflev | TYPE STANDARD TABLE OF RANGE_C1,"TABLES PARAM |
| wa_t_cflev | LIKE LINE OF it_t_cflev , |
| it_t_rgjhr | TYPE STANDARD TABLE OF RANGE_N4,"TABLES PARAM |
| wa_t_rgjhr | LIKE LINE OF it_t_rgjhr , |
| it_t_rvers | TYPE STANDARD TABLE OF RANGE_C3,"TABLES PARAM |
| wa_t_rvers | LIKE LINE OF it_t_rvers , |
| it_t_vrgng | TYPE STANDARD TABLE OF RANGE_C4,"TABLES PARAM |
| wa_t_vrgng | LIKE LINE OF it_t_vrgng , |
| it_t_farea | TYPE STANDARD TABLE OF RANGE_C16,"TABLES PARAM |
| wa_t_farea | LIKE LINE OF it_t_farea , |
| it_t_objnrz | TYPE STANDARD TABLE OF RANGE_C22,"TABLES PARAM |
| wa_t_objnrz | LIKE LINE OF it_t_objnrz , |
| it_t_rudim | TYPE STANDARD TABLE OF RANGE_C10,"TABLES PARAM |
| wa_t_rudim | LIKE LINE OF it_t_rudim , |
| it_t_actuals | TYPE STANDARD TABLE OF FMFMIT1,"TABLES PARAM |
| wa_t_actuals | LIKE LINE OF it_t_actuals , |
| it_t_all_fields | TYPE STANDARD TABLE OF CEDST,"TABLES PARAM |
| wa_t_all_fields | LIKE LINE OF it_t_all_fields , |
| it_t_addresses | TYPE STANDARD TABLE OF FMIA,"TABLES PARAM |
| wa_t_addresses | LIKE LINE OF it_t_addresses . |
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_fikrs | TYPE FM01-FIKRS , |
| it_t_fictr | TYPE STANDARD TABLE OF RANGE_C16 , |
| wa_t_fictr | LIKE LINE OF it_t_fictr, |
| ld_g_dbcon | TYPE DBCON_NAME , |
| it_t_fipex | TYPE STANDARD TABLE OF RANGE_C24 , |
| wa_t_fipex | LIKE LINE OF it_t_fipex, |
| it_t_geber | TYPE STANDARD TABLE OF RANGE_C10 , |
| wa_t_geber | LIKE LINE OF it_t_geber, |
| it_t_gjahr | TYPE STANDARD TABLE OF RANGE_N4 , |
| wa_t_gjahr | LIKE LINE OF it_t_gjahr, |
| it_t_perio | TYPE STANDARD TABLE OF RANGE_N3 , |
| wa_t_perio | LIKE LINE OF it_t_perio, |
| it_t_perio7 | TYPE STANDARD TABLE OF RANGE_N7 , |
| wa_t_perio7 | LIKE LINE OF it_t_perio7, |
| it_t_wrttp | TYPE STANDARD TABLE OF RSN2RANGE , |
| wa_t_wrttp | LIKE LINE OF it_t_wrttp, |
| it_t_twaer | TYPE STANDARD TABLE OF RANGE_CUKY , |
| wa_t_twaer | LIKE LINE OF it_t_twaer, |
| it_t_btart | TYPE STANDARD TABLE OF RANGE_C4 , |
| wa_t_btart | LIKE LINE OF it_t_btart, |
| it_t_rrcty | TYPE STANDARD TABLE OF RANGE_C1 , |
| wa_t_rrcty | LIKE LINE OF it_t_rrcty, |
| it_t_bukrs | TYPE STANDARD TABLE OF RANGE_C4 , |
| wa_t_bukrs | LIKE LINE OF it_t_bukrs, |
| it_t_rstat | TYPE STANDARD TABLE OF RANGE_C1 , |
| wa_t_rstat | LIKE LINE OF it_t_rstat, |
| it_t_hkont | TYPE STANDARD TABLE OF RANGE_C10 , |
| wa_t_hkont | LIKE LINE OF it_t_hkont, |
| it_t_cflev | TYPE STANDARD TABLE OF RANGE_C1 , |
| wa_t_cflev | LIKE LINE OF it_t_cflev, |
| it_t_rgjhr | TYPE STANDARD TABLE OF RANGE_N4 , |
| wa_t_rgjhr | LIKE LINE OF it_t_rgjhr, |
| it_t_rvers | TYPE STANDARD TABLE OF RANGE_C3 , |
| wa_t_rvers | LIKE LINE OF it_t_rvers, |
| it_t_vrgng | TYPE STANDARD TABLE OF RANGE_C4 , |
| wa_t_vrgng | LIKE LINE OF it_t_vrgng, |
| it_t_farea | TYPE STANDARD TABLE OF RANGE_C16 , |
| wa_t_farea | LIKE LINE OF it_t_farea, |
| it_t_objnrz | TYPE STANDARD TABLE OF RANGE_C22 , |
| wa_t_objnrz | LIKE LINE OF it_t_objnrz, |
| it_t_rudim | TYPE STANDARD TABLE OF RANGE_C10 , |
| wa_t_rudim | LIKE LINE OF it_t_rudim, |
| it_t_actuals | TYPE STANDARD TABLE OF FMFMIT1 , |
| wa_t_actuals | LIKE LINE OF it_t_actuals, |
| it_t_all_fields | TYPE STANDARD TABLE OF CEDST , |
| wa_t_all_fields | LIKE LINE OF it_t_all_fields, |
| it_t_addresses | TYPE STANDARD TABLE OF FMIA , |
| wa_t_addresses | LIKE LINE OF it_t_addresses. |
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 READ_ACTUALS_ISPS_W_RNGS_HDB or its description.