How to find mapping between asset and which UiPath process is using it?
Asset : Creds_Login , is utilised by which process ?
How to find mapping between asset and which UiPath process is using it?
Asset : Creds_Login , is utilised by which process ?
Hi @divyamatta.hello I don’t think it’s possible. Assets are mapped in the config file which is an internal file of the project
There is no direct option to get this information but you can try these workaround.
To find the mapping between an asset (e.g., Creds_Login) and the UiPath process utilizing it, you can follow these steps:
Go to Orchestrator → Monitoring → Audit Logs.
Filter by the asset name (Creds_Login).
Look for entries that indicate asset retrievals by specific processes.
Use the Assets and Jobs endpoints in the Orchestrator API.
Get asset details using the endpoint /odata/Assets.
Cross-reference with job logs or triggers that reference this asset.
Code Search: Search for the asset name (Creds_Login) in the process source code in UiPath Studio. If you have access to the process repositories, use Studio’s Find in Files feature to search for Get Asset or Get Credential activities referencing Creds_Login.
Organizational Knowledge: Maintain documentation of asset usage in your UiPath solution, linking assets to the processes that use them. This helps create a reference for future audits or troubleshooting.
LLM helped me to write this but it’s validated by me