CREATE_CARRIER_INVOICE SAP Method Create Carrier Invoice
Below is documentation, parameters and attributes of ABAP Method CREATE_CARRIER_INVOICE within SAP class /SCMTMS/IF_CARR_INV_NOTIINBND. 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/IF_CARR_INV_NOTIINBND 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 CREATE_CARRIER_INVOICE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CREATE_CARRIER_INVOICE
.| Name | Type | Data Type | Description | Default Value |
| IS_INV_PARAM | Importing | TYPE /SCMTMS/S_INV_CREATION_DATA | Data required to create an Invoice | |
| IT_TOR_KEYS | Importing | TYPE /BOBF/T_FRW_KEY | Key Table | |
| IV_PARTY_UUID | Importing | TYPE /BOBF/CONF_KEY | Party UUID | |
| EO_CHANGE | Exporting | TYPE REF TO /BOBF/IF_TRA_CHANGE | Interface for transaction change objects | |
| EO_MESSAGE | Exporting | TYPE REF TO /BOBF/IF_FRW_MESSAGE | Interface of Message Object | |
| ET_FAILED_KEY | Exporting | TYPE /BOBF/T_FRW_KEY | Key Table | |
| ET_FCI_KEYS | Exporting | TYPE /BOBF/T_FRW_KEY | Key Table |
Exceptions of Method CREATE_CARRIER_INVOICE
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMTMS/IF_CARR_INV_NOTIINBND.
DATA: lv_EO_CHANGE TYPE /BOBF/IF_TRA_CHANGE,
lv_EO_MESSAGE TYPE /BOBF/IF_FRW_MESSAGE,
lv_ET_FAILED_KEY TYPE /BOBF/T_FRW_KEY,
lv_ET_FCI_KEYS TYPE /BOBF/T_FRW_KEY,
lv_IS_INV_PARAM TYPE /SCMTMS/S_INV_CREATION_DATA,
lv_IT_TOR_KEYS TYPE /BOBF/T_FRW_KEY,
lv_IV_PARTY_UUID TYPE /BOBF/CONF_KEY,
lv_other TYPE c.
CALL METHOD lo_class=>CREATE_CARRIER_INVOICE(
EXPORTING
IS_INV_PARAM = lv_IS_INV_PARAM
IT_TOR_KEYS = lv_IT_TOR_KEYS
IV_PARTY_UUID = lv_IV_PARTY_UUID
IMPORTING
EO_CHANGE = lv_EO_CHANGE
EO_MESSAGE = lv_EO_MESSAGE
ET_FAILED_KEY = lv_ET_FAILED_KEY
ET_FCI_KEYS = lv_ET_FCI_KEYS ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects