FILL_CTRACPARTNER_LOCK_DETAIL SAP Method Update Contract Partner Lock Details
Below is documentation, parameters and attributes of ABAP Method FILL_CTRACPARTNER_LOCK_DETAIL within SAP class IF_BADI_CONTRACLOCK_DETAIL. 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_BADI_CONTRACLOCK_DETAIL 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 FILL_CTRACPARTNER_LOCK_DETAIL can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method FILL_CTRACPARTNER_LOCK_DETAIL
.| Name | Type | Data Type | Description | Default Value |
| I_TAB_BORROWERDETAIL | Importing | TYPE BCA_TTY_DIM_FKKVKPI1 | Borrower Details | |
| E_TAB_CTRACLOCKDETAIL | Changing | TYPE BCA_TTY_DIM_BAPIFKKVKLOCKSI1 | Contract Account: Lock Data |
Exceptions of Method FILL_CTRACPARTNER_LOCK_DETAIL
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_BADI_CONTRACLOCK_DETAIL.
DATA: lv_E_TAB_CTRACLOCKDETAIL TYPE BCA_TTY_DIM_BAPIFKKVKLOCKSI1,
lv_I_TAB_BORROWERDETAIL TYPE BCA_TTY_DIM_FKKVKPI1,
lv_other TYPE c.
CALL METHOD lo_class=>FILL_CTRACPARTNER_LOCK_DETAIL(
EXPORTING
I_TAB_BORROWERDETAIL = lv_I_TAB_BORROWERDETAIL
CHANGING
E_TAB_CTRACLOCKDETAIL = lv_E_TAB_CTRACLOCKDETAIL ).
Links to Related Class(s)
IF_BADI_...Full list of available SAP object classes
Search for further information about these or an SAP related objects