Free cookie consent management tool by TermsFeed a!cmiCopyDocumentToAppianFolder() Function
a!cmiCopyDocumentToAppianFolder() 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!cmiCopyDocumentToAppianFolder( scsExternalSystemKey, usePerUserCredentials, atomPubUrl, repositoryId, objectId, appianFolder )

Copies a document from the CMIS target system to an Appian folder, creating a new document.

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.

objectId

Text

The object id of the CMIS document that will be copied to Appian.

appianFolder

Folder

The Appian folder to which the document from the CMIS system will be copied.

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.

Copy a document from CMIS as a new document in an Appian folder

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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
=load(
  local!cmisDocId,
  local!appianFolder,
  local!cmiCopyDocumentToAppianFolderWriter: bind(
    null,
    a!cmiCopyDocumentToAppianFolder(
      scsExternalSystemKey: cons!CMIS_SCS_KEY,
      usePerUserCredentials: true,
      atomPubUrl: cons!CMIS_URL,
      repositoryId: cons!CMIS_REPO_ID,
      objectId: local!cmisDocId,
      appianFolder: _
    )
  ),
  {
      a!columnsLayout(
        columns: {
          a!columnLayout(
            contents: {
              a!textField(
                label: "Object ID of CMIS Document",
                instructions: "The CMIS document to copy",
                value: local!cmisDocId,
                saveInto: local!cmisDocId
              )
            }
          ),
          a!columnLayout(
            contents: {
              a!pickerFieldFolders(
                label: "Target Appian Folder",
                instructions: "The document from the CMIS site will be copied as a new document in this folder",
                maxSelections: 1,
                value: local!appianFolder,
                saveInto: local!appianFolder
              ),
              a!buttonArrayLayout(
                buttons: {
                  a!buttonWidget(
                    label: "Copy Document to Appian",
                    value: local!appianFolder,
                    saveInto: local!cmiCopyDocumentToAppianFolderWriter
                  )
                }
              )
            }
          )
        }
      )
  }
)
Open in Github Built: Fri, Nov 10, 2023 (03:42:48 PM)

a!cmiCopyDocumentToAppianFolder() Function

FEEDBACK