Free cookie consent management tool by TermsFeed a!cmiGetRepoInfo() Function
a!cmiGetRepoInfo() Function

Function

a!cmiGetRepoInfo( scsExternalSystemKey, usePerUserCredentials, atomPubUrl, repositoryId )

Retrieves information about the target CMIS target system repository.

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.

Returns

The function returns the standard connector result dictionary described in the main Connectors page.

If successful, the result field contains the dictionary representation of the CMIS repository information.

Usage considerations

If called multiple times in the same expression with the same parameters, only one query is made when the expression is evaluated and the result is reused for each identical call. This caching only applies within a single expression evaluation. Return values are not cached in separate expressions, or in separate evaluations of the same expression.

Examples

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

Get CMIS repository information

This example returns the CMIS object repository information. Otherwise, it returns a message with the error encountered.

1
2
3
4
5
6
7
8
9
10
11
12
=a!localVariables(
  local!cmisResult: a!cmiGetRepoInfo(
    scsExternalSystemKey: cons!CMIS_SCS_KEY,
    usePerUserCredentials: true,
    atomPubUrl: cons!CMIS_URL,
    repositoryId: cons!CMIS_REPO_ID
  ), 
  if(local!cmisResult.success,
    local!cmisResult.result,
    local!cmisResult.error
  )
)

Feature compatibility

The table below lists this function's compatibility with various features in Appian.
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.

Custom Record Field Expressions Incompatible
Process Reports Incompatible

You cannot use this function to configure a process report.

Process Events Incompatible

You cannot use this function to configure a process event node, such as a start event or timer event.

Open in Github Built: Fri, Feb 23, 2024 (09:12:49 PM)

a!cmiGetRepoInfo() Function

FEEDBACK