SAP ISU_EDM_STATUS_CONV_EXT_INT Function Module for Status Conversion Internal -> External Profile Values
ISU_EDM_STATUS_CONV_EXT_INT is a standard isu edm status conv ext int SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Status Conversion Internal -> External Profile Values 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 isu edm status conv ext int FM, simply by entering the name ISU_EDM_STATUS_CONV_EXT_INT into the relevant SAP transaction such as SE37 or SE38.
Function Group: EEDM_COM_TOOLS
Program Name: SAPLEEDM_COM_TOOLS
Main Program: SAPLEEDM_COM_TOOLS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_EDM_STATUS_CONV_EXT_INT 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 'ISU_EDM_STATUS_CONV_EXT_INT'"Status Conversion Internal -> External Profile Values.
EXPORTING
* X_EXT_STATUS = "External Status of a Measured Value in EDM
* X_BAPI = ' ' "
* X_OLE = ' ' "
* X_CHECK_EXT_STATUS = 'X' "Indicator
* X_READ_STATUS = ' ' "Indicator
IMPORTING
Y_INT_VORGANG = "Business Transaction in EDM
YT_STATUS = "Conversion of External Status to Internal Transaction
Y_CUST_STATUS = "
EXCEPTIONS
STATUS_NOT_ALLOWED = 1 NOT_QUALIFIED = 2
IMPORTING Parameters details for ISU_EDM_STATUS_CONV_EXT_INT
X_EXT_STATUS - External Status of a Measured Value in EDM
Data type: EDM_EXTSTATUSOptional: Yes
Call by Reference: Yes
X_BAPI -
Data type: EDM_STATUS_IMPBADefault: SPACE
Optional: No
Call by Reference: Yes
X_OLE -
Data type: EDM_STATUS_IMPOLEDefault: SPACE
Optional: No
Call by Reference: Yes
X_CHECK_EXT_STATUS - Indicator
Data type: KENNZXDefault: 'X'
Optional: No
Call by Reference: Yes
X_READ_STATUS - Indicator
Data type: KENNZXDefault: SPACE
Optional: No
Call by Reference: Yes
EXPORTING Parameters details for ISU_EDM_STATUS_CONV_EXT_INT
Y_INT_VORGANG - Business Transaction in EDM
Data type: EDM_INTVORGANGOptional: No
Call by Reference: Yes
YT_STATUS - Conversion of External Status to Internal Transaction
Data type: IEEDMSTATUS_EX_INOptional: No
Call by Reference: Yes
Y_CUST_STATUS -
Data type: EDM_CUSTSTATUSOptional: No
Call by Reference: Yes
EXCEPTIONS details
STATUS_NOT_ALLOWED - Status is not Permissible
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NOT_QUALIFIED -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISU_EDM_STATUS_CONV_EXT_INT 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_x_ext_status | TYPE EDM_EXTSTATUS, " | |||
| lv_y_int_vorgang | TYPE EDM_INTVORGANG, " | |||
| lv_status_not_allowed | TYPE EDM_INTVORGANG, " | |||
| lv_x_bapi | TYPE EDM_STATUS_IMPBA, " SPACE | |||
| lv_yt_status | TYPE IEEDMSTATUS_EX_IN, " | |||
| lv_not_qualified | TYPE IEEDMSTATUS_EX_IN, " | |||
| lv_x_ole | TYPE EDM_STATUS_IMPOLE, " SPACE | |||
| lv_y_cust_status | TYPE EDM_CUSTSTATUS, " | |||
| lv_x_check_ext_status | TYPE KENNZX, " 'X' | |||
| lv_x_read_status | TYPE KENNZX. " SPACE |
|   CALL FUNCTION 'ISU_EDM_STATUS_CONV_EXT_INT' "Status Conversion Internal -> External Profile Values |
| EXPORTING | ||
| X_EXT_STATUS | = lv_x_ext_status | |
| X_BAPI | = lv_x_bapi | |
| X_OLE | = lv_x_ole | |
| X_CHECK_EXT_STATUS | = lv_x_check_ext_status | |
| X_READ_STATUS | = lv_x_read_status | |
| IMPORTING | ||
| Y_INT_VORGANG | = lv_y_int_vorgang | |
| YT_STATUS | = lv_yt_status | |
| Y_CUST_STATUS | = lv_y_cust_status | |
| EXCEPTIONS | ||
| STATUS_NOT_ALLOWED = 1 | ||
| NOT_QUALIFIED = 2 | ||
| . " ISU_EDM_STATUS_CONV_EXT_INT | ||
ABAP code using 7.40 inline data declarations to call FM ISU_EDM_STATUS_CONV_EXT_INT
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.| DATA(ld_x_bapi) | = ' '. | |||
| DATA(ld_x_ole) | = ' '. | |||
| DATA(ld_x_check_ext_status) | = 'X'. | |||
| DATA(ld_x_read_status) | = ' '. | |||
Search for further information about these or an SAP related objects