For the complete documentation index, see llms.txt. This page is also available as Markdown.

Upload FLPCA data

Import Fiori Launchpad (FLPCA) catalog data per RFC. Required for Fiori before search_testrepo; optional enrichment for non-Fiori landscapes.

FLPCA is the Fiori Launchpad Content Administrator export (/UI2/FLPCA). Importing FLPCA data enriches test-repository matching by adding launchpad titles and keywords to business contexts.

The import is dispatched as a server task and the results are stored in a per-RFC SQLite database under %ProgramData%.

Import FLPCA data

slabapcli upload_flpca import

Imports a FLPCA data file for an RFC Destination. The import runs as a server task. Use upload_flpca status to monitor the result after the command returns.

The imported data is written to:

%ProgramData%\Tricentis\SeaLights\ABAP Agent\private\flpca\{rfc-name-lowercase}.db

For example, for RFC Destination S21, the database is written to private\flpca\s21.db.

Syntax
slabapcli.exe upload_flpca import --rfc <rfc> --file <path>
Syntax
.\slabapcli.exe upload_flpca import --rfc <rfc> --file <path>
Parameter
Short flag
Required
Description

--rfc

Yes

The RFC Destination name (must match a [[rfc]].name value in config.toml, e.g. S21).

--file

Yes

Full path to the FLPCA data file on the agent host. The file must exist.

Example

Command
slabapcli.exe upload_flpca import --rfc "S21" --file "C:\data\flpca_s21_export.bin"
Command
.\slabapcli.exe upload_flpca import --rfc 'S21' --file 'C:\data\flpca_s21_export.bin'

The command returns quickly after submitting the import task. The actual import runs asynchronously on the server. Use upload_flpca status --rfc S21 to check the outcome.


Check import status

slabapcli upload_flpca status

Shows the result of the last upload_flpca import run for an RFC Destination. Reports the process state, upload state, and any server error messages.

Parameter
Short flag
Required
Description

--rfc

Yes

The RFC Destination name whose last import result you want to check.

Example

The status output reports:

Field
Values
Meaning

Process status

Running, Done, Error

Current state of the server-side import task.

Upload status

Pending, Done, Error

Whether the FLPCA data was uploaded to the SeaLights platform.

If no import has been run yet, the command prints: No import has been run for RFC 'S21' - run 'upload_flpca import' first.

Last updated

Was this helpful?