An RA Solution like Oracle EBS needs to be loaded into an Automic SaaS system. How can this be accomplished?
Automic SaaS
Loading the solution is something that should be done from your end with a curl command which will use the system's REST endpoint. Here are the steps to do so:
Download the RA solution from downloads.automic.com
Unzip the zip file and move the [agent_type]Agent_solution.jar file to a server that has a white-listed IP and can reach the REST API endpoint (this was sent in the initial email and should have a URL like https://rest-[tenant_id].example.com)
From the server where the *_solution.jar file now resides, run a curl command like:
curl --request POST --data-binary "@[agent_type]Agent_solution.jar" -u "0/{Client 0 username}/{Client 0 user department}" --header "Content-Type:application/octet-stream" {REST API URL}/ae/api/v1/0/system/ra-solutions/upload
Please note that you will need to replace {Client 0 username}/{Client 0 user department} with the username and department used to log in to client 0 like: USERNAME/SAAS and you'll need to replace the {REST API URL} with the URL from the initial email.
This should load the solution into client 0 and allow for that type of agent to be created.