Questions tagged [opentext]

Open Text is a company based out of Waterloo, Ontario, Canada. It offers software for Enterprise Information Management.

Open Text provides products to organize and maintain storage of information on an enterprise scale.

The core product is Content Server 2010 (formerly Livelink). The system is implemented in a proprietary language called OScript (which is similar to JavaScript, LISP, SELF, Smalltalk-80). Content Server offers a SOAP and a limited ReSTful/JSON interface. Integrations exist with SAP, MSExchange, Lotus Notes, a variety of storage systems.

A complete list of opentext products can be found here: http://www.opentext.com/2/global/products.htm

143 questions
0
votes
2 answers

Outlook new email is not being populated

In Opentext team developer 7.0 when I try to use QuickMail it does not populate Outlook new email msg. If tblQuickMail.ExecNew( ) Set tblQuickMail.Recipients = 'testemail@yahoo.com' Set tblQuickMail.Subject = 'test' Set tblQuickMail.Text…
MTMDev
  • 181
  • 1
  • 7
0
votes
1 answer

OpenText Content Server how to get folder ID with path using REST API?

I'm trying to get the folder ID that I want to create a file at. I have this folder's path (eg: root/folder1/folder2/folder3), so in this case, I wanted to get folder's 3 ID in order to make a POST call to create the new file. My solution right now…
0
votes
2 answers

Livelink - OpenText : Call to rmclassifications to update status via API

Is there anyone who has succesfully implemented an API call to update the RM Status for a Node ? I keep getting Bad Request when PUT-ting a request to this url: https://myopentexturl/OTCS/CS.exe/api/v1/nodes/908816/rmclassifications This is my…
Rob Joosen
  • 127
  • 1
  • 9
0
votes
2 answers

How to separate lines of data read from a textfile? Customers with their orders

I have this data in a text file. (Doesn't have the spacing I added for clarity) I am using Python3: orders = open('orders.txt', 'r') lines = orders.readlines() I need to loop through the lines variable that contains all the lines of the data and…
Faisal Malik
  • 77
  • 1
  • 9
0
votes
1 answer

Tenable shows vulnerabilities to upgrade tomcat to 8.5.60 though the upgrade has been done in Archive Server

My Version of Archive Server is 16.2.0 and I was using tomcat version 8.5.39. Security team has found the vulnerabilities and asked to upgrade the tomcat version to 8.5.60. I have used below steps to upgrade the tomcat to newer minor version. To…
Fouzan Khan
  • 5
  • 1
  • 4
0
votes
0 answers

generate an xml file from multiple nodes

on content server, I'm running this content script (groovy): List var1 = docman.getFolder(129335).getChildren() log.error("start") for(CSNode x : var1){ sendFile(admin.exportXml(x).content) } I would like it to create as many xml as there…
Antilope
  • 443
  • 2
  • 6
  • 17
0
votes
1 answer

Documentum REST API (dm_audittrail)

For user creation ,I am getting the data in attribute_list of dm_audittrail but when I am adding the user in some group then dm_audittrail is not populating with dm_save event . I am using cara as front end so whenever I am clicking on save button…
0
votes
1 answer

How to get number only values from a specific row from different text file

I am trying to get only numbers from a particular row from 10 different text files. As an output, I want those numbers appended as a list. I'm a new learner. I would appreciate your help. tried this one but not working import os import…
0
votes
1 answer

How to fix "color depth (32 bits per pixel) is not supported" error in Captiva recognition?

I am trying to configure a classification in Captiva Recognition. Whenever I am trying to take a tiff file(created from ms paint) for classification, its says "color depth (32 bits per pixel) is not supported". On checking, I noticed that all the MS…
Ritter7
  • 166
  • 2
  • 14
0
votes
0 answers

Can some one give example or resource on Dynamic Case Management in OpenText Appworks

I just started learning OpentText AppWorks. Please, Help me in understanding dynamic case management using workflow in OpenText AppWorks with any screenshots (please provide Sample workflow).
0
votes
1 answer

Jogging Use in EXTream

I am new to EXTream development. I am trying to use Jogging for the first time. Can you help me in knowing the purpose of "Jogging" option in output queue level in OpenTextExtream?
0
votes
0 answers

xquery failed basic join on medical record number

declare variable $mRec := "010155-00"; for $pi in /NTSFP10/dbo_PatRefInfo/ROW for $pa in /NTSFP10/dbo_Patient/ROW where $pi/PatientID = $pa/PATID and $pa/PATID = $mRec return ($pa/PATID) Nothing is returned, but I have verified the mRec exists in…
Anthony
  • 1
  • 1
0
votes
1 answer

Use S3 cloud storage, like Amazon or another, to store data, instead of OpenText Archive Center

The question is about storing data in cloud (not Amazon but it has S3 in title), which has simple API with post request for saving and get request for fetching data/files. The problem is that I also have 5Tb of files which are storing using OpenText…
0
votes
2 answers

dotNet/C#: Check if a variable was declared

I can't find an answer to my problem. In dotNet/C#, is it possible to check if a variable was declared to some type and if not, declare it? Thanks [Edit] In this case, C# is used as a preexecute language in Open Text CMS. C# code can be used in any…
thomas
  • 2,297
  • 2
  • 22
  • 23
0
votes
0 answers

Using Third Party control DocumentView from OpenText in C# Windows Application

The purpose of DocumentView control is to display images. From a C# Form, this DocumentView control is added. This DocumentView Control has a menu item where we can select document number from a dropdown so that it changes the image by document…
Ch.
  • 77
  • 1
  • 10