WELCOME TO THE COMMUNITY
find what you are looking for or ask a new question
Home > Forum > User profile Jacek Wojnar > Forum messages

Jacek Wojnar

User

Execution timeout expired
22.11.2024 09:26

Hi, in sharepoint it is also possible if I remember correctly you have to add in the url: "&debug=1" or "?debug=1" (if it is the first parameter)

Hi, you can use SetValue function (screenshot) in form rule (javascript mode)

Execution timeout expired
22.11.2024 07:53

Hi, did you try debug mode? https://community.webcon.com/posts/post/diagnostics-and-form-behavior-registration-mechanism/215/40

Hi Marcin, you can use powershell to browse folder contents and add attachments using REST API https://developer.webcon.com/docs/attachment-operations/

Process checked out
04.11.2024 16:57

Hi, as far as I know, force check out will not undo any changes. according to https://docs.webcon.com/docs/2023R2/Studio/Process/module_2_4_6_3#force-check-out "Remember that the check-out system serves only to inform users that someone else is currently working on a process. It has no way of f

Filtering in the dictionary
04.11.2024 15:08

Hi, you can try adding in the filter field "Product category" condition "OR group = EMPTY"

Hi, here you have a very similar case: https://community.webcon.com/forum/thread/6080

Hi, maybe this is a stupid question but do you have the Domain/Organizational unit filled in? And did you reload the configuration of services afterwards?

Hi, you can achieve this by using the default value and filling it from the last document of the same author (last seems better than first because some data may have changed over time). Below is an example query that returns the email from the last document of the same type, same author. The se

Hi Wojtek, in your case you should indicate in the mapping the list (not specific columns)

Hi, if you want to add break line to the word document (and you concat two fields) you can use "Data row" and add CHAR(10) between your fields

If you want to check if exists the same fullname in the form of the same type, you can use bellow SQL. xxxx is the ID of the FullName field SELECT CASE WHEN NOT EXISTS ( SELECT 1 FROM WFElements WHERE WFD_DTYPEID = {DTYPE_ID} AND WFD_ID != {WFD_ID} AND {WFCONCOL:xxxx} = '{xxxx

Attributes in Tabs
25.10.2024 14:24

Hi, attributes can be set horizontally inside a group. If you add an attribute UNDER the group in the tab, you should be able to achieve what you are talking about.

hello, you can achieve this by changing styles to "Global CSS styles" example in attachment

Hi, the first problem is that you have some numbers as ID in the 'Odpowiedzialny' field (I would expect logins or BPS_ID here ;))? what do these numbers mean and where do you have the logins of these users?

hi, you can use standard functionalities and import Excel to Item list and based on the list start workflows with the action "Start a subworkflow (SQL)"

Hi, you can replace this "COS_BpsID = SUBSTRING('{S:642}', 1, CHARINDEX('#', '{S:642}') - 1)" with this "COS_BpsID IN (SELECT dbo.ClearWFElemID(item) from dbo.SplitToTable('{S:642}',';'))" this will support multiple values ​​in your column and you won't need to use SUBSTRING

Hi, you can use a Data Row type field and check the "Indicator field" option. If the query returns 2 it will be green, if 0 it will be red. https://docs.webcon.com/docs/2023R2/Studio/Process/Attribute/DataPres/SelectField In the "WHEN" condition (marked on the screen) you can check if a full

Hi, it depends ;) if queries to different tables can return the same column names (using aliases) then YES. Just do UNION ALL and in WHERE give conditions specifying which tables are to be displayed. e.g. SELECT col1 as name, col2 as age FROM Table1 WHERE condition1 UNION ALL SELECT col3 as

show id of item list
09.10.2024 10:17

Hi, you can achieve this by making a column of type "Data row" for example: SELECT {S:DET_ID} as DET_ID