-
RE: Get array from rest webservice in workflow designer
Hi Gerardo,
is it possible to also write on a Table field? -
RE: Concurrent workflow
Hi Steve,
You can run multiple Workflows on a single document.
The only thing to keep in mind is that when a user opens the activity in the web client he blocks the document.
So if the activity of the second workflow is opened it cannot be confirmed until the first user has unlocked the document.
Regards -
Create WebBasket via Platform SDK
Hi All,
Does anyone know if it is possible to create webbasket via sdk?
In DWSettings, you can create a default web basket during user creation.
I was wondering if it was possible also through platform commands (maybe even assigning rights)
Thanks -
RE: Find a value in a keyword field
Hi Seth,
have you tried to use KeywordAsString?
by using it you do not need to create a variable that could be truncated and you can search for values..
INSTR(1,KeywordAsString(GV_Kw__SystemAccess),"Evident") =0
Regards -
Desktop Apps distribution
Dear Ingo,
I need to perform DesktopApps Silent installation.
since the FAQ site doesn't work, can you provide me the guide?
Thanks in advance
-
Hi Denholm,
Hi Denholm,
I do not know what your goal is, but if you have to count in sql you can use count(field).
If you need to get data from keyword field via workflow manager you have to write a subquery in your where clause.
I cannot provide you an example because i don't know exactly exactly you need.
Below a screenshot of my data assignment from file cabinet where i get data from a field joining with keyword_field table
Hope it helps
https://www.docuware.com/sites/default/files/forums-images/Image.PNG
-
You can the code below:
You can the code below:
Ubound(Split(KeywordAsString(DW_KEYWORDFIELD), " ")) +1
but it counts up to a maximum of 100 entries.