Hello,
I am looking for some guidance on how to implement a view which is based on the API results of another internal application.
To give you some context, we have a Document Management System (DMS) which offers an API layer. Based on a selected record in Universal, a query parameter is filled and the corresponsing documents are returned in the response. I want to show these filenames in a grid as a detail of the selected record.
I tried the following:
- In a tree menu, add a task instead of a table/view
- This task is a start task of a process flow:
- Calls the API endpoint and writes the result in a table
- Opens a document (a view which is based on the most recent call to the endpoint)
This method works for my basic example, with a slightly longer loading time than a normal view (because of the API call).
However, we would like to implement this solution in the menu where it belongs. This menu has the following structure:

In Tab 1, a record is selected. Tab 2 is a detail of this. 1 Of the subtabs should be the view which lists all of the files. As far as I know, I cannot implement my basic example in this menu structure, because I cannot activate a task when clicking the subtab in this menu. I don’t think a background system flow which syncs the files to the database is a nice solutions for this usecase, but I do not think I have an alternative solution?
All suggestions are welcome, thanks in advance!