SAP ISM_DM_IO_CREATE_WITH_FILE Function Module for IS-M DM: Create Document (Content in File)
ISM_DM_IO_CREATE_WITH_FILE is a standard ism dm io create with file SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-M DM: Create Document (Content in File) 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 ism dm io create with file FM, simply by entering the name ISM_DM_IO_CREATE_WITH_FILE into the relevant SAP transaction such as SE37 or SE38.
Function Group: ISM_DM_EXTERNAL_INTERFACE
Program Name: SAPLISM_DM_EXTERNAL_INTERFACE
Main Program: SAPLISM_DM_EXTERNAL_INTERFACE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function ISM_DM_IO_CREATE_WITH_FILE 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 'ISM_DM_IO_CREATE_WITH_FILE'"IS-M DM: Create Document (Content in File).
EXPORTING
PV_BUSINESS_OBJECT_TYPE = "Business Object Type
PV_VALUE_KEYFIELD1 = "Value of the First Key Field in the Business Object Instance
* PV_VALUE_KEYFIELD2 = "Value of the Second Key Field in the Business Object Instance
PV_FILE_NAME = "Path for Accessing Info Object Content: File Name
PV_DIRECTORY = "Path for Accessing Info Object Content: Directory Name
* PT_PROPERTIES = "Info Object Attributes
* PS_PARENT_FOLDER = "Higher-Level Folder
* PV_PACKAGE_ID = "KW Framework: Package ID
IMPORTING
PS_LOIO = "KW Framework: Object Key
PS_PHIO = "KW Framework: Object Key
PS_ERROR = "Return Parameters
IMPORTING Parameters details for ISM_DM_IO_CREATE_WITH_FILE
PV_BUSINESS_OBJECT_TYPE - Business Object Type
Data type: SIBFTYPEIDOptional: No
Call by Reference: No ( called with pass by value option)
PV_VALUE_KEYFIELD1 - Value of the First Key Field in the Business Object Instance
Data type: CHAR70Optional: No
Call by Reference: No ( called with pass by value option)
PV_VALUE_KEYFIELD2 - Value of the Second Key Field in the Business Object Instance
Data type: CHAR70Optional: Yes
Call by Reference: No ( called with pass by value option)
PV_FILE_NAME - Path for Accessing Info Object Content: File Name
Data type: SDOK_FILNMOptional: No
Call by Reference: No ( called with pass by value option)
PV_DIRECTORY - Path for Accessing Info Object Content: Directory Name
Data type: SDOK_CHTRDOptional: No
Call by Reference: No ( called with pass by value option)
PT_PROPERTIES - Info Object Attributes
Data type: SDOKPROPTYSOptional: Yes
Call by Reference: No ( called with pass by value option)
PS_PARENT_FOLDER - Higher-Level Folder
Data type: SKWF_IOOptional: Yes
Call by Reference: No ( called with pass by value option)
PV_PACKAGE_ID - KW Framework: Package ID
Data type: SKWF_PKGIDOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISM_DM_IO_CREATE_WITH_FILE
PS_LOIO - KW Framework: Object Key
Data type: SKWF_IOOptional: No
Call by Reference: No ( called with pass by value option)
PS_PHIO - KW Framework: Object Key
Data type: SKWF_IOOptional: No
Call by Reference: No ( called with pass by value option)
PS_ERROR - Return Parameters
Data type: BAPIRET2Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISM_DM_IO_CREATE_WITH_FILE 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_ps_loio | TYPE SKWF_IO, " | |||
| lv_pv_business_object_type | TYPE SIBFTYPEID, " | |||
| lv_ps_phio | TYPE SKWF_IO, " | |||
| lv_pv_value_keyfield1 | TYPE CHAR70, " | |||
| lv_ps_error | TYPE BAPIRET2, " | |||
| lv_pv_value_keyfield2 | TYPE CHAR70, " | |||
| lv_pv_file_name | TYPE SDOK_FILNM, " | |||
| lv_pv_directory | TYPE SDOK_CHTRD, " | |||
| lv_pt_properties | TYPE SDOKPROPTYS, " | |||
| lv_ps_parent_folder | TYPE SKWF_IO, " | |||
| lv_pv_package_id | TYPE SKWF_PKGID. " |
|   CALL FUNCTION 'ISM_DM_IO_CREATE_WITH_FILE' "IS-M DM: Create Document (Content in File) |
| EXPORTING | ||
| PV_BUSINESS_OBJECT_TYPE | = lv_pv_business_object_type | |
| PV_VALUE_KEYFIELD1 | = lv_pv_value_keyfield1 | |
| PV_VALUE_KEYFIELD2 | = lv_pv_value_keyfield2 | |
| PV_FILE_NAME | = lv_pv_file_name | |
| PV_DIRECTORY | = lv_pv_directory | |
| PT_PROPERTIES | = lv_pt_properties | |
| PS_PARENT_FOLDER | = lv_ps_parent_folder | |
| PV_PACKAGE_ID | = lv_pv_package_id | |
| IMPORTING | ||
| PS_LOIO | = lv_ps_loio | |
| PS_PHIO | = lv_ps_phio | |
| PS_ERROR | = lv_ps_error | |
| . " ISM_DM_IO_CREATE_WITH_FILE | ||
ABAP code using 7.40 inline data declarations to call FM ISM_DM_IO_CREATE_WITH_FILE
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