CreateFolderFromProcessOrJob Method
- Last UpdatedNov 06, 2025
- 1 minute read
The CreateFolderFromProcessOrJob() method opens the Create Folder dialog to allow a folder to be created from an existing process or job. The process ID is optional, but all other values must be supplied.
public static bool CreateFolderFromProcessOrJob(
string processID,
string itemID,
string operID,
string operDesc,
int entID
)
Parameters
- processID
- Required. Holds the process ID. A process ID is required when creating a folder for a process, but this parameter must be set to null when creating a folder for a job.
- itemID
- Required. Holds the ID of the item for which the folder is being created.
- operID
- Required. Holds the ID of the operation for which the folder is being created.
- operDesc
- Required. Holds the description of the operation for which the folder is being created.
- entID
- Required. Holds the ID of the entity for which the folder is being created.
Return Value
Returns true if the user creates a folder, or false if the user cancel the
creation of the folder.