SAP DEVLOC_CAN_TEMP Function Module for Internal: Reversal of Provisional Allocation
DEVLOC_CAN_TEMP is a standard devloc can temp SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Internal: Reversal of Provisional Allocation processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for devloc can temp FM, simply by entering the name DEVLOC_CAN_TEMP into the relevant SAP transaction such as SE37 or SE38.
Function Group: EEWA_DEV_SERVICE
Program Name: SAPLEEWA_DEV_SERVICE
Main Program: SAPLEEWA_DEV_SERVICE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update: 1

Function DEVLOC_CAN_TEMP pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'DEVLOC_CAN_TEMP'"Internal: Reversal of Provisional Allocation.
EXPORTING
X_BEH_TYPE = "Container Category
* X_SERNR = "Serial Number
X_SERVLOC = "Device Location
* X_DEVGRP = "Device group
* X_IBASE = "IBase: Number of the Installed Base/IBase
TABLES
* X_T_OBJECT = "Generated Table for View V_EGER
EXCEPTIONS
FAILED = 1
IMPORTING Parameters details for DEVLOC_CAN_TEMP
X_BEH_TYPE - Container Category
Data type: BEH_TYPEOptional: No
Call by Reference: No ( called with pass by value option)
X_SERNR - Serial Number
Data type: GERNROptional: Yes
Call by Reference: No ( called with pass by value option)
X_SERVLOC - Device Location
Data type: DEVLOCOptional: No
Call by Reference: No ( called with pass by value option)
X_DEVGRP - Device group
Data type: DEVGRPOptional: Yes
Call by Reference: No ( called with pass by value option)
X_IBASE - IBase: Number of the Installed Base/IBase
Data type: IB_IBASEOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for DEVLOC_CAN_TEMP
X_T_OBJECT - Generated Table for View V_EGER
Data type: EWACONTAINEROptional: Yes
Call by Reference: Yes
EXCEPTIONS details
FAILED - Error During DB Change
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for DEVLOC_CAN_TEMP Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_failed | TYPE STRING, " | |||
| lv_x_beh_type | TYPE BEH_TYPE, " | |||
| lt_x_t_object | TYPE STANDARD TABLE OF EWACONTAINER, " | |||
| lv_x_sernr | TYPE GERNR, " | |||
| lv_x_servloc | TYPE DEVLOC, " | |||
| lv_x_devgrp | TYPE DEVGRP, " | |||
| lv_x_ibase | TYPE IB_IBASE. " |
|   CALL FUNCTION 'DEVLOC_CAN_TEMP' "Internal: Reversal of Provisional Allocation |
| EXPORTING | ||
| X_BEH_TYPE | = lv_x_beh_type | |
| X_SERNR | = lv_x_sernr | |
| X_SERVLOC | = lv_x_servloc | |
| X_DEVGRP | = lv_x_devgrp | |
| X_IBASE | = lv_x_ibase | |
| TABLES | ||
| X_T_OBJECT | = lt_x_t_object | |
| EXCEPTIONS | ||
| FAILED = 1 | ||
| . " DEVLOC_CAN_TEMP | ||
ABAP code using 7.40 inline data declarations to call FM DEVLOC_CAN_TEMP
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.Search for further information about these or an SAP related objects