How to implement "Convert base64 values to Appian documents" without using an integration object

Certified Associate Developer

I want to know how to implement "Convert base64 values to Appian documents" without using an integration object.

I have implemented a process that retrieves attachment information from an external database via HTTP connection and converts it into an Appian document.
The process is as follows:

1. On the interface, execute an API request (an integration object) without "Convert base64 values to Appian documents", obtain information on 10 attachments, and store it in "local!fileList."

2. Perform a check: "If any of attachments 1 to 10 is not null, then the result is true; if it is null, then the result is false" and store the result in "local!notNullFile".

3. Press the "Get File (ファイル取得)" button.
  If the 10 file information items are judged to be false in "2.", nothing will be done.
  Only if the result is true will an API request be made with "Convert base64 values to Appian documents" enabled.

4. When the request in "3." is made, an API request is made again within the integration without "Convert base64 values to Appian documents".
  Using the file name and extension information obtained, the file is converted to an Appian document and stored in "local!file1" (to "local!file10") in the interface.

5. Display as a file download link on the interface.

In the current process, attachment information is obtained once in "1.", but then obtained again in "4.".
Because the information obtained on the interface cannot be used in an integrated manner, it is difficult to reuse the information in "1." in "4.", so it is unavoidable that the file information is obtained again in "4.".

However, this would be a double effort.
I am wondering if it is possible to "Convert base64 values to Appian documents" without integration object (without making an API request) and store it in "local!file1" (to "local!file10") in the interface.

  Discussion posts and replies are publicly visible