J_3G_LOADING_COST_DEFAULT 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 J_3G_LOADING_COST_DEFAULT into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
J3GM
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'J_3G_LOADING_COST_DEFAULT' "Default Billing Indicator on Item Level
EXPORTING
i_atyp = " kna1-j_3getyp Recipient Type Sender
i_etyp = " kna1-j_3getyp Recipient Type Recipient
i_beweg = " j_3gbelk-j_3gbeweg Internal Indicator for Transaction Type
i_absdeb = " j_3gbelk-j_3gabsdeb Debtor of Sender
i_empdeb = " j_3gbelk-j_3gempdeb Debtor of Recipient
i_blart = " j_3gbelk-j_3gblart Document Type - ETM
* TABLES
* xbelp = " j_3gbelp_s Shipping Document Item (Equipment)
* xbelp_bal = " j_3gbelp_s Document Item (Material)
. " J_3G_LOADING_COST_DEFAULT
The ABAP code below is a full code listing to execute function module J_3G_LOADING_COST_DEFAULT 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_xbelp | TYPE STANDARD TABLE OF J_3GBELP_S,"TABLES PARAM |
| wa_xbelp | LIKE LINE OF it_xbelp , |
| it_xbelp_bal | TYPE STANDARD TABLE OF J_3GBELP_S,"TABLES PARAM |
| wa_xbelp_bal | LIKE LINE OF it_xbelp_bal . |
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_atyp | TYPE KNA1-J_3GETYP , |
| it_xbelp | TYPE STANDARD TABLE OF J_3GBELP_S , |
| wa_xbelp | LIKE LINE OF it_xbelp, |
| ld_i_etyp | TYPE KNA1-J_3GETYP , |
| it_xbelp_bal | TYPE STANDARD TABLE OF J_3GBELP_S , |
| wa_xbelp_bal | LIKE LINE OF it_xbelp_bal, |
| ld_i_beweg | TYPE J_3GBELK-J_3GBEWEG , |
| ld_i_absdeb | TYPE J_3GBELK-J_3GABSDEB , |
| ld_i_empdeb | TYPE J_3GBELK-J_3GEMPDEB , |
| ld_i_blart | TYPE J_3GBELK-J_3GBLART . |
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 J_3G_LOADING_COST_DEFAULT or its description.
J_3G_LOADING_COST_DEFAULT - Default Billing Indicator on Item Level J_3G_LIST_ARCHIV_SHOW - Display Saved Lists J_3G_LIST_ARCHIV_SELECTION - Selection Criteria of Archived Report J_3G_LIST_ARCHIV_HI - Archiving of Lists from Background Jobs J_3G_LIST_ARCHIV_DELETE - Delete Saved Lists J_3G_LIST_ARCHIV - Archiving of Lists