a!cmiCopyDocumentToAppian( scsExternalSystemKey, usePerUserCredentials, atomPubUrl, repositoryId, objectId, appianDocument )
Copies a document from the CMIS target system to Appian, creating a new version of an existing Appian document.
Keyword | Type | Description |
---|---|---|
|
Text |
The key from the Third Party Credentials admin console page that corresponds to the set of credentials that should be used to authenticate. |
|
Boolean |
If |
|
Text |
The Atom Pub URL of the CMIS target system. |
|
Text |
The repository id on the CMIS target system. |
|
Text |
The object id of the CMIS document that will be copied to Appian. |
|
Document |
The Appian document to which the document from the CMIS system will be copied as a new version. |
Writer
This function returns a writer and must be used with the bind()
function.
Copy and paste an example into an Appian Expression Editor to experiment with it.
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!appianDocument,
local!cmiCopyDocumentToAppianWriter: bind(
null,
a!cmiCopyDocumentToAppian(
scsExternalSystemKey: cons!CMIS_SCS_KEY,
usePerUserCredentials: true,
atomPubUrl: cons!CMIS_URL,
repositoryId: cons!CMIS_REPO_ID,
objectId: local!cmisDocId,
appianDocument: _
)
),
{
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!pickerFieldDocuments(
label: "Target Appian Document",
instructions: "The document from the CMIS site will be copied as a new version of this document",
maxSelections: 1,
value: local!appianDocument,
saveInto: local!appianDocument
),
a!buttonArrayLayout(
buttons: {
a!buttonWidget(
label: "Copy Document to Appian",
value: local!appianDocument,
saveInto: local!cmiCopyDocumentToAppianWriter
)
}
)
}
)
}
)
}
)
Feature | Compatibility | Note |
---|---|---|
Portals | Partially compatible | Can be used with Appian Portals if it is connected using an integration and web API. |
Offline Mobile | Partially compatible | Can be used with offline mobile if it is loaded at the top of the form. |
Sync-Time Custom Record Fields | Incompatible | |
Real-Time Custom Record Fields | Incompatible | Custom record fields that evaluate in real time must be configured using one or more Custom Field functions. |
Process Reports | Incompatible | Cannot be used to configure a process report. |
Process Events | Incompatible | Cannot be used to configure a process event node, such as a start event or timer event. |
a!cmiCopyDocumentToAppian() Function