Business Partner (Contact Information)
We are migrating to new servers, and I need to copy the information from Business Partner's over to the new server. Is this information in a Global or SQL table somewhere that I can export and import into the new IRIS environment?
Thanks
Scott
Product version: Caché 2018.1
Discussion (2)0
Comments
Should be Ens.Conf.BusinessPartnerD.GBL
You can export and import the Business Partners from terminal.
To export you can use the command where FileName is a file where you want the data to be exported to. I usually save it to a .xml file.
do##class(Ens.Config.BusinessPartner).%ExportAll(FileName)Then you can move that file to the other server and import it using the import command. The parameters are:
- File to import
- Replace anything with the same name.
- Verbose logging
- Delete all entries before importing.
do##class(Ens.Conifg.BusinessPartner).%Import(FileName,1,0,1)