Hi,Some time back we launched Task Delegation for NAC so that a task assignee, or somebody given the Business Owner role for a given Workflow could change who tasks are allocated to without updating the workflow design. A natural progression from this is to allow users to set themselves as out of office, or have an administrator do it for them, which will delegate all tasks present and future to another user.While we don’t have that feature out of the box yet it’s easy enough to build!There are many ways to skin this particular cat, but let me share one approach.ProblemWe want to enable users to set themselves out of office for a particular time duration.ApproachWe can use a Workflow with a Start Form to populate a Nintex Table with the following structure:Form: The workflow uses the new Nintex Tables Create a Row action to populate a table like this: We can then use a scheduled workflow that runs everyday to delegate tasks.This approach uses the Nintex APIs, and requires an Applicatio
TopicWhile executing sql query for Mysql, getting error :[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specifiedInstructions While building connection string using builder it shows like below:Provider=MSDASQL.1;Persist Security Info=False;User ID=root;Data Source=MySQL8.2_64Bit;Initial Catalog=kryontestWith above you will get the error which is mentioned in subject line.To avoid this add DSN which you defined in ODBC 64bit : Provider=MSDASQL.1;Persist Security Info=False;User ID=root;DSN=MySQL8.2_64BitUnicode;Data Source=MySQL8.2_64Bit;Initial Catalog=kryontestThat's it, now you can run sql query using robot or studio.
I am creating a task assigning it to our IT group so that anyone in that group can complete the task. I have to send the notification to our Helpdesk application via Email. I created a parallel action. One branch creates the task, the other branch waits for a minute and then sends the notification to the Helpdesk. In the notification, I would like to reference the task created. How do I get the value of the task created? The “Store Task Id” in variable isn’t populated until the task has been completed. How else can we get the value of the task ID?
Earlier this year, Microsoft announced that SharePoint 2013 workflows will be deprecated in Microsoft Office 365 as of April 2026. As we communicated then, this deprecation affects our Nintex Workflow for Office 365 product, which utilizes the SharePoint 2013 workflow engine.We are now announcing End of Life for our Nintex Workflow for Office 365 product. Per our standard support policies found at www.nintex.com/legal, we will make support available to active customers for two years, with our anticipated End of Support date in December 2025.Our Nintex Workflow for O365 customers can upgrade to Nintex Automation Cloud to continue utilizing their Nintex-based workflows. To help our customers with this transition, we introduced the Nintex Upgrade Program to provide no-cost migration tools, services, and dedicated support from Nintex process experts. Many of our customers have already engaged with our Upgrade experts, but if you have not, and would like to learn more, please visit the Prog
In other words, the TODO would show up on two or more people’s dashboards: One dashboard where TODO shows is on the originator-of-the-TODO, and the other dashboard(s) the TODO shows is on any other user the originator specifiedThank you in advance for helping with this question!
Hello There! I need to transfer data label value from Form to variable in the workflow, I used two different form in this workflow (Submit Form & Review Form), So I transferred data from the submitted form successfully by using (On submitted button clicked) rule > then use (start a workflow) rule inside it and pass the value by (workflow fields) as shown here. But the problem is when I need to transfer data from (Review Form) to the workflow and since I cannot use (start a workflow) rule I tried to use (Action a worklist item) rule to transfer the data to the workflow as shown here. the data did not transfer to the workflow because I always get (Not Cancel) Action in the workflow which means the variable here is empty.I’m pretty sure that the data label in (Review Form) contains value and it’s not empty. I hope to find someone who can help me find a solution to my problem.Many Thanks.
TopicUpdating an existing Exchange Online instance fails on the OAuth Token step with the following error:Error issuing app only token.You will also see this error message in the logs around the same timestamp:"Error","General","1","GeneralErrorMessage","SourceCode.Security.OAuth.Extensions.MicrosoftOnlineAppOnly.IssueAppOnlyToken","1 One or more errors occurred. at System.Threading.Tasks.Task`1.GetResultCore(Boolean waitCompletionNotification) at SourceCode.Security.OAuth.Extensions.MicrosoftOnlineAppOnly.IssueAppOnlyToken(OAuthResource oAuthResource, String resourceAudience) InnerException: An internal server error has occurred. Retry the request. Instructions Please perform the steps below during a scheduled downtime or after office hours to avoid any form of disruption the K2 service restart may cause.Restart the K2 service. Clear the browser cache on the machine where you are running the wizard on. Re-open the browser. Update the Exchange Online instance
I have a choice field (multi-select checkboxes) in SharePoint list. I am using a New Responsive Designer as my list form and I want to clear the selected options in this field using Rules. How can I achieve this?
Hi,We are creating a PDF using Document Generator in NAC. The problem is when we add a Rich Text field from the SharePoint item all the HTML is printed as well. I know we will need to use a regex to remove the HTML. Does anyone have any idea on what the pattern should be or if there is a different approach I should follow? Thanks Chris
Currently it's very hard to keep component workflow tokens expiration dates on track. Expired tokens will certainly cause downtime with Nintex integration.Since there's no current API for:- 1) retrieving when the workflow tokens will expire- 2) regenerate the token for a specific workflowIt's impossible to automatize the process of refreshing the tokens.Given that, a simpler solution would be a configuration where we can define that a token should *never expire*Please, everybody: Vote for this: Add option so workflow component tokens will not expire | Nintex IdeasThanks Bruno for bringing this up.
Please DISREGARD, found answer.
I am attempting to reuse a simple template more than once with different values for a Fixed Text JotBlock via the Submit API. I would like to have multiple pages of the template attached to the root template with different input data per attachment via the template. When I attempt to send a second new version of the template all of the send input values from the initial template are displayed in every subsequent use of the template even thought the sent values are different from the initial use of the template. I am including a simple version of the JSON data that is being sent below as an example.Basically, I am attempting to include the same template multiple times with varying values for the fixed text JotBlock to show as additional pages.I am also including a sample of the C# code that is sending the request.The end result is that the values from the first use of the template are used for all additional uses regardless of what is sent.
Hi all, Hoping someone can help me. I am trying to design an email using some HTML code. I am using a WYSIWYG HTML editor to create an email (since I dont have the 100% HTML knowledge). In the WYSIWYG editor, my email looks like the below (information blurred for privacy). So I copy the code into Nintex, and it looks the same. However, when the email gets sent, some of the background colours disappear. I am so confused. (again information blurred for privacy) Does anyone have any tips on how to fix this? Thanks!
I am using Xtensions to call an internal web API that returns data in JSON format, and I now want to parse through that JSON to get the value I want. The workflow action that calls the API will store the result in a collection variable. I have to use a “Get item from collection” action to make it readable by the “Query JSON” action. I do this all time for the easy stuff. Now I have an issue because now the value I want is within an array of values in the JSON. If I did a Query JSON action, I would have to use something like [0] or [1] in the JSON expression to obtain the first entry, or the second entry, etc. I want to loop through all the entries.My idea is that I can “Query JSON” to obtain the portion of JSON that contains that array, then I can do a loop action or For Each action. However, when I use “Count items in collection” it only returns a count of 1. This is incorrect. In my test data, there should be 5 items. Is there another method of counting these items?Another t
I've just started the workflow designer and got this error message in a red highlighted banner on the top of the workspace: Error connecting to the workflow manager. Would it be possible that because it's in a private channel, sharepoint site? Anybody have any ideas on how to fix this?
I have been trying to reach the development team and account manager for months with no response. The only email I have seen is they want us to renew our subscription.
View the Community Sitemap and descriptions of all our products.Click email us to contact your Community Managers.
Already have an account? Login
Enter your username or e-mail address. We'll send you an e-mail with instructions to reset your password.
Sorry, we're still checking this file's contents to make sure it's safe to download. Please try again in a few minutes.
Sorry, our virus scanner detected that this file isn't safe to download.