Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Content Management (Extended ECM)
API, SDK, REST and Web Services
Copying a form template betwen servers
Jorge_Campos_(jacampos_-_(deleted))
Could someone please give pointer on how to copy form templates between Livelink servers? I have two templates with 40+ fields that I need move from our development server to a test server.
Find more posts tagged with
Comments
Krishnankutty_Nair
I was told that the XML Export/Import will work for all objects starting 9.2 by OT.Given my situation we are on 9.1.0.SP3 this is the crude approach I used but saved me a lot of time.Also my approach will work only on external file storage machinesWrite sql to find the path of the form template.I use TOAD.For simplicity's sake I will call Prod 'A' and Dev 'B'Run sql on 'A' like this replace the bdatid and docid relevantSELECT providerDataFROM ProviderDataWHERE (providerID IN(SELECT provideridFROM dversdataWHERE docid = 34959989 AND version =(SELECT versionnumFROM dtreeWHERE dataid = 34959989)))The docid and datid are the llobjID of the form templateOutput looks something like from A0035\310\35310614.dat0035\310\35310616.datNow thru XML export /import or some other means create the template in 'B".It will give you a form template object but there will be no fields in that.Create a dummy field in the template like 'test' or something.Run the same SQL in 'B' replacing the objid correspondingly with the dev server values.Output looks something like from B0053\103\5310314.dat0053\103\5310316.datNow replace these two dat files with the one from prod server.( I used a mount point to my prod server from dev server) The smaller one replaces the smaller and the larger replaces the larger.Test this one out in your case you are doing my reverse way from dev to prod.
Santosh_Nair_(sglcadmin7_-_(deleted))
https://knowledge.opentext.com/knowledge/llisapi.dll?func=ll&objId=3157887&objAction=view&show=2