VP_CHECK_CONSISTENCY SAP Method Consistency Check
Below is documentation, parameters and attributes of ABAP Method VP_CHECK_CONSISTENCY within SAP class /DSD/BADI_IF_VC_BAPI. 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 /DSD/BADI_IF_VC_BAPI 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 VP_CHECK_CONSISTENCY can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method VP_CHECK_CONSISTENCY
.| Name | Type | Data Type | Description | Default Value |
| CT_RETURN | Changing | TYPE BAPIRET2_T | Message Table | |
| CT_VP_RULES | Changing | TYPE /DSD/VC_IT_VPRULES | Visit Schedule Rules | |
| CT_VP_TREE | Changing | TYPE /DSD/VC_VP_IT_TREE | Tree Display, Visit Schedule |
Exceptions of Method VP_CHECK_CONSISTENCY
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /DSD/BADI_IF_VC_BAPI.
DATA: lv_CT_RETURN TYPE BAPIRET2_T,
lv_CT_VP_RULES TYPE /DSD/VC_IT_VPRULES,
lv_CT_VP_TREE TYPE /DSD/VC_VP_IT_TREE,
lv_other TYPE c.
CALL METHOD lo_class=>VP_CHECK_CONSISTENCY(
CHANGING
CT_RETURN = lv_CT_RETURN
CT_VP_RULES = lv_CT_VP_RULES
CT_VP_TREE = lv_CT_VP_TREE ).
Links to Related Class(s)
/DSD/BAD...Full list of available SAP object classes
Search for further information about these or an SAP related objects