MAINTAIN_DELIVERY SAP Method Change Made to an Existing Delivery
Below is documentation, parameters and attributes of ABAP Method MAINTAIN_DELIVERY within SAP class /DSD/IF_SL_FSR_DELIVERIES. 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 /DSD/IF_SL_FSR_DELIVERIES 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 MAINTAIN_DELIVERY can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method MAINTAIN_DELIVERY
.| Name | Type | Data Type | Description | Default Value |
| IF_CUSTOMER | Importing | TYPE KUNAG | Sold-To Party | |
| IF_PROCNO | Importing | TYPE /DSD/SL_FSR_PROCNO | DSD: Number of Final Settlement Run | |
| IT_DEL_DOC_EXT | Importing | TYPE /DSD/SL_FSR_DELFFMT_DOC_EXT_T | DSD Final Settlement Run Del. Entry: Docs to Be Extended | |
| IT_RADELCD | Importing | TYPE /DSD/HH_RADELCD_S_TT | Table Type Outbound Delivery Condition | |
| CF_GEN_FAULT | Changing | TYPE /DSD/HH_CHECKBOX | Checkbox | |
| CT_RADELHD_ERR | Changing | TYPE /DSD/HH_RADELHD_KEY_HSD_TT | DSD Route Settlement: Hashed Table Key Shipment Header |
Exceptions of Method MAINTAIN_DELIVERY
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /DSD/IF_SL_FSR_DELIVERIES.
DATA: lv_CF_GEN_FAULT TYPE /DSD/HH_CHECKBOX,
lv_CT_RADELHD_ERR TYPE /DSD/HH_RADELHD_KEY_HSD_TT,
lv_IF_CUSTOMER TYPE KUNAG,
lv_IF_PROCNO TYPE /DSD/SL_FSR_PROCNO,
lv_IT_DEL_DOC_EXT TYPE /DSD/SL_FSR_DELFFMT_DOC_EXT_T,
lv_IT_RADELCD TYPE /DSD/HH_RADELCD_S_TT,
lv_other TYPE c.
CALL METHOD lo_class=>MAINTAIN_DELIVERY(
EXPORTING
IF_CUSTOMER = lv_IF_CUSTOMER
IF_PROCNO = lv_IF_PROCNO
IT_DEL_DOC_EXT = lv_IT_DEL_DOC_EXT
IT_RADELCD = lv_IT_RADELCD
CHANGING
CF_GEN_FAULT = lv_CF_GEN_FAULT
CT_RADELHD_ERR = lv_CT_RADELHD_ERR ).
Links to Related Class(s)
/DSD/IF_...Full list of available SAP object classes
Search for further information about these or an SAP related objects