Free cookie consent management tool by TermsFeed a!cmiCreateFolder() Function
a!cmiCreateFolder() Function
This function cannot be used with Custom Record Field Expressions. It can only be used with Offline Mobile if it is loaded at the top of the form.
For a full list of functions and their feature compatibility, explore the Appian Functions table.

Function

a!cmiCreateFolder( scsExternalSystemKey, usePerUserCredentials, atomPubUrl, repositoryId, parentId, properties )

Creates a folder in the CMIS target system.

See also: Writer, bind().

Parameters

Keyword Type Description

scsExternalSystemKey

Text

The key from the Third Party Credentials admin console page that corresponds to the set of credentials that should be used to authenticate.

usePerUserCredentials

Boolean

If true the credentials set in the Third-Party Credentials settings page by the current user running the expression will be used. If false the site-wide credential values will be used.

atomPubUrl

Text

The Atom Pub URL of the CMIS target system.

repositoryId

Text

The repository id on the CMIS target system.

parentId

Text

The object id of the CMIS folder which will be the parent of the new folder. Use null for root.

properties

Any Type

The CMIS folder properties, given as a dictionary. The string "cmis:" will automatically be included in the key name if no colon is present in key name. Example: {name: "test name", description: "test description"}

Returns

Writer

This function returns a writer and must be used with the bind() function.

Examples

Copy and paste an example into an Appian Expression Editor to experiment with it.

Create a new folder in CMIS

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
=load(
  local!folderName,
  local!cmiCreateFolderWriter: bind(
    null,
    a!cmiCreateFolder(
      scsExternalSystemKey: cons!CMIS_SCS_KEY,
      usePerUserCredentials: true,
      atomPubUrl: cons!CMIS_URL,
      repositoryId: cons!CMIS_REPO_ID,
      /* Creates the folder in the root directory */
      /* Replace with the parent folder's id to create under a different folder */
      parentId: null,
      properties: _
    )
  ),
  {
      a!textField(
        label: "Folder Name",
        value: local!folderName,
        saveInto: local!folderName
      ),
      a!buttonArrayLayout(
        buttons: {
          a!buttonWidget(
            label: "Create Folder",
            value: {name: local!folderName},
            saveInto: local!cmiCreateFolderWriter
          )
        }
      )
  }
)
Open in Github Built: Fri, Nov 10, 2023 (03:42:48 PM)

a!cmiCreateFolder() Function

FEEDBACK