Transforming Risk Management: Taking a process-focused approach
FORUM POSTS AND DISCUSSIONS
Recently active
How can i inject huge JS into SmartForm? Datalabel length limitation is ridiculous.
Hi All,I am new in K2. I have designed two list views. one for Header (Parent) and another for Details (Child).Header view has a button. i would like to achive1. select one row of the Header view and on pressing the button, the Details view will open to display the details of the selcted parent.2. Validations : Pressing button will display an error message if no row is selected or more than one row is selected. Thanks with Regards,JD
Hi, Say i have an Authorisers table (Smartobejct) with 5 Authorisers in it with a department User 1 - SalesUser 2 - FinanceUser 3 - PPI Insurance sellersUser 4 - MarketingUser 5 - Dispatch I want to be able to say if a Requestor sends a request, the Authorisation will go to multiple Authorisers in different departments, based on a GroupID I have a Department Lookup table, which i've added a GroupingID column, so that i can tie Sales and PPI with the number 1 1) So using K2, i've created a form, added the fields and do an Initialize rule to get the AD attributes of the Locally logged in User (includes, name, userid, dept)2) Then i added another rule: Smartobject get List method of my Lookup table to return the GroupID off the Requesters Department3) Another Smartobject get list method on the Lookup with input as the GroupID, hoping to return all matches, but it's only returning the first Dept result... (output is a Data label on the form) Any ideas how i return multiple results and the
We have integrated docu sign and K2 , through the k2 process we are sending the attachment for digital signature . Is there a way we can save the file back in SQL once signature completed so this will help to show in k2 , signed copy of attchment ? Any lead ?
This is driving me nuts. I cannot drag and drop anything from Context Brower. All I see a list of users. I want to be able to remove permissions dynamically. Help document clearly says, you can do it.https://help.k2.com/onlinehelp/K2ForSharePoint/UserGuide/4.7/default.htm#Thin_Client_Wizards/Documents_Wizards/Remove_Doc_Perm/Remove_Doc_Perm.htm Please see attached. What I am missing? Or this is a bug?
Just wondering if anyone else has seen this problem.In K2Studio, as soon as I try to add my create new AD user to a Reference Field so I can use it later on in the workflow so I can to add to groups, etc. it crashes the Item Reference that starts the workflow.Everything seems to deploy and work OK except that I can't expand the Item Reference any more in the Object Browser.However, when I try to run the form I get an error:"An exception occurred. Exception: The Item Reference is missing (displayName) attribute."If I run the Smartforms integration wizard again the Item Reference is there and if I remove it and try re-adding it I get the same error.Even if I remove the Create AD User task from the workflow it doesn't make any difference, the entire workflow is completely busted and I have to start all over again.I tried it several times using clean workflows and different formssmartobjects but the same thing happens as soon as I tick the "Add User to this Reference field" check box in th
Hi All, is there a way to remove some spaces between the radiobutton list values? Thanks
Hello guys! Is there a way to add a button to the form in order to allow the user to see the workflow progress?Here's how I planned to do it: but is there a way to add a button to the form?Thanks in advance.
In my workflow on the server, I am calling Task.RedirectWorklistItem. That is causing the following error: User: K2:domaink2adminuser does not have administrator rights; ServiceName: K2_Management k2adminuser is the user that K2 is installed and running as. It has admin rights on all of the workflows within this process. It is able to execute K2 Management smart object calls from within the smart object tester.
http://community.k2.com/t5/K2-blackpearl/Why-does-an-escalation-goto-activity-still-need-a-line/td-p/61265 Using the answer from the post above; if I have a process escaltion that uses a go to activity outcome, where does the line go? I need this escaltion to kick in at the process level. For me this does not require a line because literally any activity could be hosting the workflow at the time of escaltion. In this instance do I just draw a line from "Start" activity or do I do a line from each activity to the failure activity? Thanks in advance
Hi All, I am very new in K2 Studio - Workflow. I have build one workflow, which originated from a View of a Smartform.View is for to enter entry for new product details.After entering the data, on click on 'Submit' button data will save to database (using SmartObject) and also initiate a workflow for approval/ rejection of the new product.On approval/ rejection originator will receive an approval/ rejection mail. I am able to do all the avobe mentioned activity, except showing the product name in e-mail setting.In body i would like to display say example for approved : "Your product <new product name> entry has been approved."But the body is displaing all except the <new product name>. It will be nice, if you can let me know how the value of the submitted record can access in workflow.
Hi Experts, I have a K2 Smart Form on which I have 36 views of response type singleCheckBox and lables. My requirnment is when user checked any one of the checkbox all other checkbox and Lable should be hided, I know we can write the hide/show on the onChange event of any checkbox but it would be very lengthy, is there any other smart way to handle this requirnment ? ThanksShubh
Hi, I am trying to get the serial number of the workflow using Process Instance ID and Activity Destination ID which should look like this ProcessID_ActivityDestinationID (2808_34), Unfortunatly I can't see neither of them in my workflow which makes it impossible for me to get the serial number using those two fields. However, I am able to get the Process ID from workflow context but not the Activity Destination ID. I read a lot online about how people get the Serial Number using two tabs Process Instance and Activity Destination Instance. Again, both of these I can't see! I attached a picture of what I can actually see, If any one can please help me get the Activity Desitination ID or have an idea why I can't the two tabs(Process Instance and Activity Destination Instance). I would really apperciate it. I am using K2 version: 4.7Thanks Saied
Hi All, I have gone thorugh below URL and I read like Case-sensitive databases are NOT supported. So I was curious to know, is it possible to integrate to case sensitive database from K2 BP? URL: https://help.k2.com/onlinehelp/k2five/icg/5.1/default.htm#Prepare/SCC/SQLServer.htm Regards,Sajna M
Hi guysI have a procedure that return start date and end date as follows: create procedure [GetWeekdays](@Date Date)AsAsDeclare @Fri datetime, @Mon datetimeset @Fri=(SELECT DATEADD(d, 6- DATEPART(dw, @Date), @Date))set @Mon= (SELECT DATEADD(wk, DATEDIFF(wk,0,@Date), 0) MondayOfCurrentWeek)DECLARE @StartDate DATE = @Mon, @EndDate DATE = @FriSELECT date FROM ( SELECT DATE = DATEADD(DAY, rn - 1, @StartDate) FROM (SELECT TOP (DATEDIFF(DAY, @StartDate, DATEADD(DAY,1,@EndDate)))rn = ROW_NUMBER() OVER (ORDER BY s1.[object_id])FROM sys.all_objects AS s1CROSS JOIN sys.all_objects AS s2ORDER BY s1.[object_id] ) AS x ) AS y inputed: 2017/12/04Results:2017/12/042017/12/052017/12/062017/12/072017/12/08 How can I implement this procedure in such a way that when I press the Button from a Itemview a subview show up with this results. TIA.
Has anyone found a clever way (via javascript etc) of hiding the approval actions from the drop down options selector on the Worklist webpart? We show users their list of tasks to action but we want them 'Always' to open the form to view it first before selecting 'approval etc' but users keep accidentally selecting the approval options from the dropdown 'before' opening the form and that closes the worklist item and so thisis causing a major issue in us being able to use tasks inside a workflow. I have out the webpart into a view so that I can customise it but there are no options for deselcting these options :-(
Hi, I have to validate user's name and if user is valid AD user pre-populate some fields (email, user full name, phone ). I tried Lookup control but for some reason control does not see "AD User K2" SmartObject.I can execute GetUserDetails method from SmartObjects teter but for some reason that SmartObject is not accessible from SmartFroms designer.How to make GetUserDetails availabel from SmartForms? Regards, Oleg