SAP ISM_DM_FOLDER_CREATE_FOR_BO Function Module for IS-M DM: Create Folder
ISM_DM_FOLDER_CREATE_FOR_BO is a standard ism dm folder create for bo 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 Folder 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 folder create for bo FM, simply by entering the name ISM_DM_FOLDER_CREATE_FOR_BO 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_FOLDER_CREATE_FOR_BO 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_FOLDER_CREATE_FOR_BO'"IS-M DM: Create Folder.
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_NAME = "Folder Name
PV_DESCRIPTION = "Description of Folder
* PS_TARGET_FOLDER = "Higher-Level Folder
IMPORTING
PS_ERROR = "Return Parameters
IMPORTING Parameters details for ISM_DM_FOLDER_CREATE_FOR_BO
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_NAME - Folder Name
Data type: SDOK_PROPVOptional: No
Call by Reference: No ( called with pass by value option)
PV_DESCRIPTION - Description of Folder
Data type: SDOK_PROPVOptional: No
Call by Reference: No ( called with pass by value option)
PS_TARGET_FOLDER - Higher-Level Folder
Data type: SKWF_IOOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISM_DM_FOLDER_CREATE_FOR_BO
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_FOLDER_CREATE_FOR_BO 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_error | TYPE BAPIRET2, " | |||
| lv_pv_business_object_type | TYPE SIBFTYPEID, " | |||
| lv_pv_value_keyfield1 | TYPE CHAR70, " | |||
| lv_pv_value_keyfield2 | TYPE CHAR70, " | |||
| lv_pv_name | TYPE SDOK_PROPV, " | |||
| lv_pv_description | TYPE SDOK_PROPV, " | |||
| lv_ps_target_folder | TYPE SKWF_IO. " |
|   CALL FUNCTION 'ISM_DM_FOLDER_CREATE_FOR_BO' "IS-M DM: Create Folder |
| 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_NAME | = lv_pv_name | |
| PV_DESCRIPTION | = lv_pv_description | |
| PS_TARGET_FOLDER | = lv_ps_target_folder | |
| IMPORTING | ||
| PS_ERROR | = lv_ps_error | |
| . " ISM_DM_FOLDER_CREATE_FOR_BO | ||
ABAP code using 7.40 inline data declarations to call FM ISM_DM_FOLDER_CREATE_FOR_BO
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