ISU_BI_SMDATA_DOWN_CUST_TAB 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_BI_SMDATA_DOWN_CUST_TAB into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
ERATE_TRANS
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ISU_BI_SMDATA_DOWN_CUST_TAB' "User Exit: Download for Customer Tables
* EXPORTING
* xr_sparte = " isu_ranges_sparte Selection criteria table: Division
* xr_aklasse = " isu_ranges_aklasse Selection criteria table: Billing class
* xt_tariftyp = " isu_tariftyp_htab Hashed table of rate category keys
* xt_schemanr = " isu_schemanr_htab Hashed table of billing schema keys
* xt_tarifnr = " isu_tarifnr_htab Hashed table of rate keys
TABLES
yt_tab = "
EXCEPTIONS
GENERAL_FAULT = 1 "
. " ISU_BI_SMDATA_DOWN_CUST_TAB
The ABAP code below is a full code listing to execute function module ISU_BI_SMDATA_DOWN_CUST_TAB 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_yt_tab | TYPE STANDARD TABLE OF STRING,"TABLES PARAM |
| wa_yt_tab | LIKE LINE OF it_yt_tab . |
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_xr_sparte | TYPE ISU_RANGES_SPARTE , |
| it_yt_tab | TYPE STANDARD TABLE OF STRING , |
| wa_yt_tab | LIKE LINE OF it_yt_tab, |
| ld_xr_aklasse | TYPE ISU_RANGES_AKLASSE , |
| ld_xt_tariftyp | TYPE ISU_TARIFTYP_HTAB , |
| ld_xt_schemanr | TYPE ISU_SCHEMANR_HTAB , |
| ld_xt_tarifnr | TYPE ISU_TARIFNR_HTAB . |
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_BI_SMDATA_DOWN_CUST_TAB or its description.
ISU_BI_SMDATA_DOWN_CUST_TAB - User Exit: Download for Customer Tables ISU_BI_SMDATA_DOWN_ADMIN_GET - Determination of Administration Data ISU_BI_SMDATA_DOWN_ACTION - SMDATA Written to File ISU_BI_SMDATA_DEQUEUE_ALL - IS-U: Generic Lock During Update of Rate Transport ISU_BI_SMDATA_CHECKING_STATE - IS-U: Determination of Check Results ISU_BI_SMDATA_CHECKING - Consistency Check for Master Data