P0100_GET_SV_CAPEX SAP Method Allow Adjustments to SV-CAPEX field in Payroll Func. P0100
Below is documentation, parameters and attributes of ABAP Method P0100_GET_SV_CAPEX within SAP class IF_EX_HRPAYBE_CAPELO. 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 IF_EX_HRPAYBE_CAPELO 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 P0100_GET_SV_CAPEX can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method P0100_GET_SV_CAPEX
.| Name | Type | Data Type | Description | Default Value |
| IS_SV | Importing | TYPE PC280 | Social Insurance payroll Belgium | |
| IV_BEGDA | Importing | TYPE BEGDA | ||
| IV_ENDDA | Importing | TYPE ENDDA | ||
| IV_PERNR | Importing | TYPE P_PERNR | Personnel Number | |
| CT_ERROR | Changing | TYPE P99SF_TAB_ERROR | ||
| CV_APPLY_CHANGE | Changing | TYPE BOOLEAN | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| CV_CAPEX | Changing | TYPE P12_CAPELO_EXEMPTED | Capelo Eligibility (01012) | |
| CV_RETURN_CODE | Changing | TYPE SYSUBRC | Return Value of ABAP Statements |
Exceptions of Method P0100_GET_SV_CAPEX
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_HRPAYBE_CAPELO.
DATA: lv_CT_ERROR TYPE P99SF_TAB_ERROR,
lv_CV_APPLY_CHANGE TYPE BOOLEAN,
lv_CV_CAPEX TYPE P12_CAPELO_EXEMPTED,
lv_CV_RETURN_CODE TYPE SYSUBRC,
lv_IS_SV TYPE PC280,
lv_IV_BEGDA TYPE BEGDA,
lv_IV_ENDDA TYPE ENDDA,
lv_IV_PERNR TYPE P_PERNR,
lv_other TYPE c.
CALL METHOD lo_class=>P0100_GET_SV_CAPEX(
EXPORTING
IS_SV = lv_IS_SV
IV_BEGDA = lv_IV_BEGDA
IV_ENDDA = lv_IV_ENDDA
IV_PERNR = lv_IV_PERNR
CHANGING
CT_ERROR = lv_CT_ERROR
CV_APPLY_CHANGE = lv_CV_APPLY_CHANGE
CV_CAPEX = lv_CV_CAPEX
CV_RETURN_CODE = lv_CV_RETURN_CODE ).
Links to Related Class(s)
IF_EX_HR...Full list of available SAP object classes
Search for further information about these or an SAP related objects