GROUP_CONSISTENCY_CHECK SAP Method Method for consistency checks
Below is documentation, parameters and attributes of ABAP Method GROUP_CONSISTENCY_CHECK within SAP class /INCMD/IF_EX_CONSIST_CHK. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /INCMD/IF_EX_CONSIST_CHK into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method GROUP_CONSISTENCY_CHECK can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GROUP_CONSISTENCY_CHECK
.| Name | Type | Data Type | Description | Default Value |
| IS_HDR_DATA | Importing | TYPE /INCMD/GROUP_HDR_DATA | Group Header data | |
| IS_TVGM | Importing | TYPE /INCMD/TVGM_V | Generated Table for View /INCMD/TVGM_V | |
| IT_FLDNAMES | Importing | TYPE /INCMD/TFLDETL_TAB | Table type for field catalog fields | |
| IT_LOCID | Importing | TYPE /INCMD/GROUP_LOCID_TAB | Table for location ids | |
| IT_PHASB_COMP_DATA | Importing | TYPE /INCMD/INT_PHASB_COMP_DATA_TAB | ||
| IT_PRODUCT_DATA | Importing | TYPE /INCMD/INT_PROD_DATA_TAB | Internal table for product details | |
| IT_REL_DATA | Importing | TYPE /INCMD/INT_REL_DATA_TAB | Internal table for relation data | |
| IT_REL_LOC_DATA | Importing | TYPE /INCMD/REL_LOC_DATA_TAB | ||
| IT_VALIDS | Importing | TYPE /INCMD/CONS_VALIDATIONS_TAB | Table for consistency validations | |
| ET_ANALYSIS_LOG | Exporting | TYPE PVS_BAL_T_MSG | Application Log: Table with Messages | |
| ET_RETURN | Exporting | TYPE PVS_BAL_T_MSG | Application Log: Table with Messages |
Exceptions of Method GROUP_CONSISTENCY_CHECK
DATA_CONSISTENCY_ERROR - Data consistency errorExample ABAP coding
DATA: lo_class TYPE REF TO /INCMD/IF_EX_CONSIST_CHK.
DATA: lv_ET_ANALYSIS_LOG TYPE PVS_BAL_T_MSG,
lv_ET_RETURN TYPE PVS_BAL_T_MSG,
lv_IS_HDR_DATA TYPE /INCMD/GROUP_HDR_DATA,
lv_IS_TVGM TYPE /INCMD/TVGM_V,
lv_IT_FLDNAMES TYPE /INCMD/TFLDETL_TAB,
lv_IT_LOCID TYPE /INCMD/GROUP_LOCID_TAB,
lv_IT_PHASB_COMP_DATA TYPE /INCMD/INT_PHASB_COMP_DATA_TAB,
lv_IT_PRODUCT_DATA TYPE /INCMD/INT_PROD_DATA_TAB,
lv_IT_REL_DATA TYPE /INCMD/INT_REL_DATA_TAB,
lv_IT_REL_LOC_DATA TYPE /INCMD/REL_LOC_DATA_TAB,
lv_IT_VALIDS TYPE /INCMD/CONS_VALIDATIONS_TAB,
lv_other TYPE c.
CALL METHOD lo_class=>GROUP_CONSISTENCY_CHECK(
EXPORTING
IS_HDR_DATA = lv_IS_HDR_DATA
IS_TVGM = lv_IS_TVGM
IT_FLDNAMES = lv_IT_FLDNAMES
IT_LOCID = lv_IT_LOCID
IT_PHASB_COMP_DATA = lv_IT_PHASB_COMP_DATA
IT_PRODUCT_DATA = lv_IT_PRODUCT_DATA
IT_REL_DATA = lv_IT_REL_DATA
IT_REL_LOC_DATA = lv_IT_REL_LOC_DATA
IT_VALIDS = lv_IT_VALIDS
IMPORTING
ET_ANALYSIS_LOG = lv_ET_ANALYSIS_LOG
ET_RETURN = lv_ET_RETURN ).
Links to Related Class(s)
/INCMD/I...Full list of available SAP object classes
Search for further information about these or an SAP related objects