COMPARE_HEADER SAP Method Compares for changes on header level
Below is documentation, parameters and attributes of ABAP Method COMPARE_HEADER within SAP class /CBAD/CL_CONTRACT. 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 /CBAD/CL_CONTRACT 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 COMPARE_HEADER can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method COMPARE_HEADER
.| Name | Type | Data Type | Description | Default Value |
| IS_HEADER | Importing | TYPE /CBAD/CONTRACT_H | Contract and Billing: additional header information | |
| EV_CHANGE | Exporting | TYPE BOOLEAN | Flag is set to 'X' if sth changed ... | |
| EV_MOD_CHANGE | Exporting | TYPE BOOLEAN | Flag is set to 'X' if modification id is needed |
Exceptions of Method COMPARE_HEADER
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /CBAD/CL_CONTRACT.
DATA: lv_EV_CHANGE TYPE BOOLEAN,
lv_EV_MOD_CHANGE TYPE BOOLEAN,
lv_IS_HEADER TYPE /CBAD/CONTRACT_H,
lv_other TYPE c.
CALL METHOD lo_class=>COMPARE_HEADER(
EXPORTING
IS_HEADER = lv_IS_HEADER
IMPORTING
EV_CHANGE = lv_EV_CHANGE
EV_MOD_CHANGE = lv_EV_MOD_CHANGE ).
Links to Related Class(s)
/CBAD/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects