JV_INTERCOMP_MAPPING_CHECK 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 JV_INTERCOMP_MAPPING_CHECK into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
GJV_RECONC_MASTER
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'JV_INTERCOMP_MAPPING_CHECK' "Reconciliation of intercompany settings
EXPORTING
bukrs = " bukrs Company Code
date = " datum Date (Cost Center and Equity groups are dependent on the date)
cost_type = 1 " i check cost center (1)/or internal order(2) or workbreakdown structure(3)
type_of_call = ' ' " xfeld Is caller RGJV_ICMAP_CHECK_ALL_TOP then = 'X' or online check ' '
* mtype = 'I' " jv_cb_btc Not optional for TYPE_OF_CALL =' '. Customizable messages. Default mesage type
* cc_from = " kostl Range Cost Center 'from'
* cc_to = " kostl Range Cost Center 'to'
* intcocd = " jv_intcocd Intercompany Code
* cc_cut = " jv_cccut Cutback cost center
* order_from = " jv_ordfrom Order 'From' Range
* order_to = " jv_ordto Order 'To' Range
* order_cut = " jv_ordcut Cutback Order
* wbs_from = " jv_projfro Work breakdown structure element 'from'
* wbs_to = " jv_projto WBS element 'to' Range
* wbs_cut = " jv_projcut Cutback WBS
* call_fm_count = 1 " i How often is FunctionModule called ? Has to start at 1. Which row is checked
* dispv = ' ' " xfeld Display also valid entries of check(for RGJV_ICMAP_CKECK_ALL)
IMPORTING
int_messagealv = " jv_icmap_check contains reconciliation results of T8JI with T8J1*
disp_range_co_obj = " xfeld For RGJV_ICMAP_CHECK_ALL to hide the column cost_object_to if no message 871
. " JV_INTERCOMP_MAPPING_CHECK
The ABAP code below is a full code listing to execute function module JV_INTERCOMP_MAPPING_CHECK 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_int_messagealv | TYPE JV_ICMAP_CHECK , |
| ld_disp_range_co_obj | TYPE XFELD . |
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_int_messagealv | TYPE JV_ICMAP_CHECK , |
| ld_bukrs | TYPE BUKRS , |
| ld_disp_range_co_obj | TYPE XFELD , |
| ld_date | TYPE DATUM , |
| ld_cost_type | TYPE I , |
| ld_type_of_call | TYPE XFELD , |
| ld_mtype | TYPE JV_CB_BTC , |
| ld_cc_from | TYPE KOSTL , |
| ld_cc_to | TYPE KOSTL , |
| ld_intcocd | TYPE JV_INTCOCD , |
| ld_cc_cut | TYPE JV_CCCUT , |
| ld_order_from | TYPE JV_ORDFROM , |
| ld_order_to | TYPE JV_ORDTO , |
| ld_order_cut | TYPE JV_ORDCUT , |
| ld_wbs_from | TYPE JV_PROJFRO , |
| ld_wbs_to | TYPE JV_PROJTO , |
| ld_wbs_cut | TYPE JV_PROJCUT , |
| ld_call_fm_count | TYPE I , |
| ld_dispv | TYPE XFELD . |
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 JV_INTERCOMP_MAPPING_CHECK or its description.
JV_INTERCOMP_MAPPING_CHECK - Reconciliation of intercompany settings JV_INSTALLED - JV_INSERT_T8JVBA - Insert records in t8jvba JV_INSERT_ERROR_LOG - Write the information for reposting a document into the error log JV_INSERT - Insert internal table into DB table JV_INITIALISE_MESSAGE - JV Error Message Handling Initialisation