FILL_INTERNAL_ADDDATA SAP Method Fill internal settlement additional data.
Below is documentation, parameters and attributes of ABAP Method FILL_INTERNAL_ADDDATA within SAP class /SCMTMS/CL_CFIR_CRT_REQ_ASSIST. 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 /SCMTMS/CL_CFIR_CRT_REQ_ASSIST 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_INTERNAL_ADDDATA can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method FILL_INTERNAL_ADDDATA
.| Name | Type | Data Type | Description | Default Value |
| IS_CFIR_ROOT | Importing | TYPE /SCMTMS/S_CFIR_ROOT_NODE_K | Root Node | |
| IS_CFIR_SALES_AREA | Importing | TYPE /SCMTMS/CPX_CFIR_SUITE_SLSAREA | CustFrtInvcReqReqSlsSrvcBusArea | |
| IS_PURCH_ORG | Importing | TYPE /SCMTMS/S_ORG_UNIT_PURCH | Organizational Unit - Purchasing - Include Structure | |
| IS_SALES_ORG | Importing | TYPE /SCMTMS/S_ORG_UNIT_SALES | Organizational Unit - Purchasing - Include Structure | |
| IS_TOR_ROOT | Importing | TYPE /SCMTMS/S_TOR_ROOT_K | Root Node | |
| IV_RECEIVER_PARTNER_ID | Importing | TYPE BU_PARTNER | Business Partner Number | |
| CS_ATTACHEMENT | Changing | TYPE /SCMTMS/CPX_DOCUMENT | Proxy Structure (generated) |
Exceptions of Method FILL_INTERNAL_ADDDATA
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMTMS/CL_CFIR_CRT_REQ_ASSIST.
DATA: lv_CS_ATTACHEMENT TYPE /SCMTMS/CPX_DOCUMENT,
lv_IS_CFIR_ROOT TYPE /SCMTMS/S_CFIR_ROOT_NODE_K,
lv_IS_CFIR_SALES_AREA TYPE /SCMTMS/CPX_CFIR_SUITE_SLSAREA,
lv_IS_PURCH_ORG TYPE /SCMTMS/S_ORG_UNIT_PURCH,
lv_IS_SALES_ORG TYPE /SCMTMS/S_ORG_UNIT_SALES,
lv_IS_TOR_ROOT TYPE /SCMTMS/S_TOR_ROOT_K,
lv_IV_RECEIVER_PARTNER_ID TYPE BU_PARTNER,
lv_other TYPE c.
CALL METHOD lo_class=>FILL_INTERNAL_ADDDATA(
EXPORTING
IS_CFIR_ROOT = lv_IS_CFIR_ROOT
IS_CFIR_SALES_AREA = lv_IS_CFIR_SALES_AREA
IS_PURCH_ORG = lv_IS_PURCH_ORG
IS_SALES_ORG = lv_IS_SALES_ORG
IS_TOR_ROOT = lv_IS_TOR_ROOT
IV_RECEIVER_PARTNER_ID = lv_IV_RECEIVER_PARTNER_ID
CHANGING
CS_ATTACHEMENT = lv_CS_ATTACHEMENT ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects