PROCESS_EXTENSIONIN SAP Method Population of Customers' Own Fields from ExtensionIn
Below is documentation, parameters and attributes of ABAP Method PROCESS_EXTENSIONIN within SAP class IF_EX_BADI_MATPHYSINV_COUNT. 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_BADI_MATPHYSINV_COUNT 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 PROCESS_EXTENSIONIN can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method PROCESS_EXTENSIONIN
.| Name | Type | Data Type | Description | Default Value |
| IT_EXTENSIONIN | Importing | TYPE BAPIPAREX_T | BAPI Extension | |
| CS_IIKPF | Changing | TYPE IIKPF | Import of IKPF for FM Physical Inventory | |
| CT_IISEG | Changing | TYPE TY_T_IISEG | Table Type for IISEG | |
| CT_RETURN | Changing | TYPE TY_T_BAPIRET2 | Table Type with Structure BAPIRET2 |
Exceptions of Method PROCESS_EXTENSIONIN
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_MATPHYSINV_COUNT.
DATA: lv_CS_IIKPF TYPE IIKPF,
lv_CT_IISEG TYPE TY_T_IISEG,
lv_CT_RETURN TYPE TY_T_BAPIRET2,
lv_IT_EXTENSIONIN TYPE BAPIPAREX_T,
lv_other TYPE c.
CALL METHOD lo_class=>PROCESS_EXTENSIONIN(
EXPORTING
IT_EXTENSIONIN = lv_IT_EXTENSIONIN
CHANGING
CS_IIKPF = lv_CS_IIKPF
CT_IISEG = lv_CT_IISEG
CT_RETURN = lv_CT_RETURN ).
Links to Related Class(s)
IF_EX_BA...Full list of available SAP object classes
Search for further information about these or an SAP related objects