What is the correct way to specify the name of the application in the where clause?
Also, will this export enough for the client to be able to import the application with all components and workflows?
Hi, the export works perfectly, but the import doesn't work:
C:\Automic\Release.Manager\Utilities\ImportExportCLI>Importexportcli.exe DeepImport -con http://172.26.28.22/webui -usr AUTOMIC/200/ADMIN200/CDA -pwd xxxxx -format xml -mt Application -where "system_name eq 'SAT BAN'" -fi exports/testapp.zip
Reference property "system_owner.system_name" = "200/ADMIN100/CDA" not found
Reference property "system_application.system_name" = "SAT BAN" not found
Reference property "system_application.system_name" = "SAT BAN" not found
Reference property "system_owner.system_name" = "200/ADMIN100/CDA" not found
Workflow 'Deploy' of Application 'SAT BAN' not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
Reference property "system_on_entity" = "Backend" not found
................
Thanks
I saw This link
Requirements for Importing an ARA Application into - CA Knowledge
But, I'm trying to export User, folder, etc, with AdminCLi
do anyone has an example? please.
if you just want to export the application without any additional information (Components, Dynamic Properties, ...), you can do this:
ImportExportCLI.exe export -con https://araserver/ara -usr 100/USR/DEPTM -pwd **** -mt Application -format csv -where "system_name eq 'myApp'" -fi myApp.csv
(instead of csv, you might want to use xml).
If you want to export an application as a whole, including
- All components
- All component links
- All deployment target filters
- Dynamic properties of the application
- Dynamic properties of the components
- All workflows
- All workflow definitions
- Dynamic properties of the workflow
use the following syntax:ImportExportCLI.exe deepexport -con https://araserver/ara -usr 100/USR/DEPTM -pwd **** -mt Application -format xml -where "system_name eq 'myApp'" -fi myApp.zip
and then import it with:
ImportExportCLI.exe deepimport -con https://araserver/ara -usr 100/USR/DEPTM -pwd **** -mt Application -format xml -where "system_name eq 'myApp'" -fi myApp.zip
HTH,
Martin