SAP J_1A_CUSTOMIZING_CHECK Function Module for Checks the customizing of the inflation module









J_1A_CUSTOMIZING_CHECK is a standard j 1a customizing check SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Checks the customizing of the inflation module processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for j 1a customizing check FM, simply by entering the name J_1A_CUSTOMIZING_CHECK into the relevant SAP transaction such as SE37 or SE38.

Function Group: J1AB
Program Name: SAPLJ1AB
Main Program: SAPLJ1AB
Appliation area: A
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function J_1A_CUSTOMIZING_CHECK pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'J_1A_CUSTOMIZING_CHECK'"Checks the customizing of the inflation module
EXPORTING
I_BUKRS = "
* I_GJAHR = "

CHANGING
* C_AA_GJAHR = "Fiscal year derived from AA tables
* C_CC_INFL_DATA = "Inlfation data of the company code
* C_T001 = "General Company code information
* C_T093C = "AA Company code information

TABLES
* I_REV_AREAS = "Revaluation areas
* I_REV_KEYS = "Revaluation keys defined for company code
* I_CONTROL_METHODS = "Control methods
* I_TTY_AREAS = "Areas of the revaluation tty
* I_PAR_CUR_AREAS = "Parallel currency areas

EXCEPTIONS
NO_REVALUATION_AREA_ASSIGNED = 1 NO_DEPR_AREAS_FOR_COMP_CODE = 2 NO_INFLATION_FOR_COMP_CODE = 3 NO_REV_TTYS_FOR_COMP_CODE = 4 NO_CHART_OF_DEPR_ASSIGNED = 5 ERROR_TABLE = 6 FISCAL_YEAR_CLOSED = 7 NO_CONTROL_METHOD_DEFINED = 8 NO_REV_KEY_DEFINED = 9
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLJ1AB_001 User exit printing of AM waybills
EXIT_SAPLJ1AB_002 Differnet Base value for Revaluation of APC
EXIT_SAPLJ1AB_003 Different Base Value for Revaluation of accumulated depreciation

IMPORTING Parameters details for J_1A_CUSTOMIZING_CHECK

I_BUKRS -

Data type: T001-BUKRS
Optional: No
Call by Reference: No ( called with pass by value option)

I_GJAHR -

Data type: ANLC-GJAHR
Optional: Yes
Call by Reference: No ( called with pass by value option)

CHANGING Parameters details for J_1A_CUSTOMIZING_CHECK

C_AA_GJAHR - Fiscal year derived from AA tables

Data type:
Optional: Yes
Call by Reference: No ( called with pass by value option)

C_CC_INFL_DATA - Inlfation data of the company code

Data type: J_1AINFMET
Optional: Yes
Call by Reference: No ( called with pass by value option)

C_T001 - General Company code information

Data type: T001
Optional: Yes
Call by Reference: No ( called with pass by value option)

C_T093C - AA Company code information

Data type: T093C
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for J_1A_CUSTOMIZING_CHECK

I_REV_AREAS - Revaluation areas

Data type: J_1AAT089
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_REV_KEYS - Revaluation keys defined for company code

Data type: J_1AAA2
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_CONTROL_METHODS - Control methods

Data type: J_1AAA2M
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_TTY_AREAS - Areas of the revaluation tty

Data type:
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_PAR_CUR_AREAS - Parallel currency areas

Data type:
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

NO_REVALUATION_AREA_ASSIGNED - No revaluation areas defined in company code

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NO_DEPR_AREAS_FOR_COMP_CODE - No depreciation areas defined in company code

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NO_INFLATION_FOR_COMP_CODE - Inflation not customizid for company code

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NO_REV_TTYS_FOR_COMP_CODE - No revaluation transaction types assigned for CC

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NO_CHART_OF_DEPR_ASSIGNED - No chart of depr. assigned to company code

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

ERROR_TABLE - Error in reading a table

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

FISCAL_YEAR_CLOSED - Fiscal year of execution already closed

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NO_CONTROL_METHOD_DEFINED - No control method defined

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NO_REV_KEY_DEFINED - No revaluation keys defined

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for J_1A_CUSTOMIZING_CHECK Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.

DATA:
lv_i_bukrs  TYPE T001-BUKRS, "   
lv_c_aa_gjahr  TYPE T001, "   
lt_i_rev_areas  TYPE STANDARD TABLE OF J_1AAT089, "   
lv_no_revaluation_area_assigned  TYPE J_1AAT089, "   
lv_i_gjahr  TYPE ANLC-GJAHR, "   
lt_i_rev_keys  TYPE STANDARD TABLE OF J_1AAA2, "   
lv_c_cc_infl_data  TYPE J_1AINFMET, "   
lv_no_depr_areas_for_comp_code  TYPE J_1AINFMET, "   
lv_c_t001  TYPE T001, "   
lt_i_control_methods  TYPE STANDARD TABLE OF J_1AAA2M, "   
lv_no_inflation_for_comp_code  TYPE J_1AAA2M, "   
lv_c_t093c  TYPE T093C, "   
lt_i_tty_areas  TYPE STANDARD TABLE OF T093C, "   
lv_no_rev_ttys_for_comp_code  TYPE T093C, "   
lt_i_par_cur_areas  TYPE STANDARD TABLE OF T093C, "   
lv_no_chart_of_depr_assigned  TYPE T093C, "   
lv_error_table  TYPE T093C, "   
lv_fiscal_year_closed  TYPE T093C, "   
lv_no_control_method_defined  TYPE T093C, "   
lv_no_rev_key_defined  TYPE T093C. "   

  CALL FUNCTION 'J_1A_CUSTOMIZING_CHECK'  "Checks the customizing of the inflation module
    EXPORTING
         I_BUKRS = lv_i_bukrs
         I_GJAHR = lv_i_gjahr
    CHANGING
         C_AA_GJAHR = lv_c_aa_gjahr
         C_CC_INFL_DATA = lv_c_cc_infl_data
         C_T001 = lv_c_t001
         C_T093C = lv_c_t093c
    TABLES
         I_REV_AREAS = lt_i_rev_areas
         I_REV_KEYS = lt_i_rev_keys
         I_CONTROL_METHODS = lt_i_control_methods
         I_TTY_AREAS = lt_i_tty_areas
         I_PAR_CUR_AREAS = lt_i_par_cur_areas
    EXCEPTIONS
        NO_REVALUATION_AREA_ASSIGNED = 1
        NO_DEPR_AREAS_FOR_COMP_CODE = 2
        NO_INFLATION_FOR_COMP_CODE = 3
        NO_REV_TTYS_FOR_COMP_CODE = 4
        NO_CHART_OF_DEPR_ASSIGNED = 5
        ERROR_TABLE = 6
        FISCAL_YEAR_CLOSED = 7
        NO_CONTROL_METHOD_DEFINED = 8
        NO_REV_KEY_DEFINED = 9
. " J_1A_CUSTOMIZING_CHECK




ABAP code using 7.40 inline data declarations to call FM J_1A_CUSTOMIZING_CHECK

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

"SELECT single BUKRS FROM T001 INTO @DATA(ld_i_bukrs).
 
 
 
 
"SELECT single GJAHR FROM ANLC INTO @DATA(ld_i_gjahr).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!