-
Recently active
Hi, Do we have any method available to change the queue status as "Pending" when the Bot starts. I don't wan't to update the queue status manually on each run specially when bot triggers from scheduler automatically. Regards, Mukesh
Case: I have Process model which has two task assignment nodes. I have a database field called Status--(Dropdown Options: Analysis, Approver, Complete) When the task is added by the admin then Status field should be defaulted to "Analysis" --> Now the task goes to Analyst (when Analyst Submits the task the field should changes to "Approver"--> Lastly, the task goes to Approver (when approver completes the task then the Status field should change to "Complete" How can I achieve this?
Hi Guys, We are planning to install the agents in a Virtual Machine as part of our solution. However, we are unsure about the virtual Machine requirements. Can somebody please help me out with the below query, Can we use Windows server 2019 as part of VM configuration? if yes, Can you please let me know the recommended vCPU capacity. Please do the needful Many thanks,
Hello community members, I am working on an assignment in a Appian learning path: Skills Practice Solution: Appian as a Service.A part of the assignment is calling a report from the webapi. code: a!localVariables(local!query: a!queryProcessAnalytics( report: cons!COLOUR_REPORT, contextProcessModels: cons!COLOUR_PROCESS_MODEL),a!toJson(local!query) a!toJson(local!query) is used in the body. But I get error Converting PortalReportDataSubset to JSON is not supported. It works fine with local!query.data Has this something to do with the Appian version I am using (19.4) because I followed the directions in the assignment. Kind Regards, Erik
Here is my code. I have one editable grid in which one priority field is there: a!integerField(label: "Priority",labelPosition: "ABOVE",value: if(not(isnull(fv!item.priority)),int(fv!item.priority)-rule!CRP_CheckPriority(fv!item.priority,fv!item.contentdomain),fv!item.priority),/*saveInto: a!save(fv!item.priority,if(rule!CRP_CheckPriority(fv!item.priority,fv!item.contentdomain)>0,a!save(save!value,int(fv!item.priority)-rule!CRP_CheckPriority(fv!item.priority,fv!item.contentdomain)),save!value)), */saveInto: {a!save(fv!item.priority,save!value)/*if(rule!CRP_CheckPriority(fv!item.priority,fv!item.contentdomain)>0,a!save(fv!item.priority,int(fv!item.priority)-rule!CRP_CheckPriority(fv!item.priority,fv!item.contentdomain)),a!save(fv!item.priority,save!value))*/},refreshAfter: "UNFOCUS",readOnly: if(local!gridreadonly="Edit",true,false),validations: {if(and(local!gridreadonly="Save",not (isnull(fv!item.priority))),{if(count(rule!CRP_Ge
i written code : with( local!prioritylist:{1,2,3,4,5,6,7,8,9,10}, local!missinglist{}:{}, local!newmissing, local!count:0,local!temp: a!forEach( items:local!prioritylist, expression: if(fv!item <ri!priority,if(rule!CRP_Checkdepartmentwisepriority(fv!item,ri!department)=0,append(local!missinglist{},fv!item),local!missinglist{}),local!missinglist{}), local!newmissing:if(count(local!missinglist{})>0,count(local!missinglist{}),local!newmissing) ), local!temp ) i got the output like this: List of Variant - 10 items List of Variant - 0 items List of Variant - 0 items List of Number (Integer) - 1 item 3(Number (Integer)) List of Variant - 0 items List of Variant - 0 items List of Variant - 0 items List of Variant - 0 items List of Variant - 0 items List of Variant - 0 items List of Variant - 0 items Here i want sum of count of each list of this list . Answer should be 1 So, How to add the count of each list in one variable??
I have a CDT (say CDTA) which contains a field for doc id that represents document in appian. CDTB would contain the bad doc ids doesn't exist in appian anymore that i need to delete using delete datastore smartsvc CDTC would contain the ones with doc ids that exist that i need to update using write to datastore smart svc in simple terms, CDTC = CDTA (all records) - CDTB (bad records) How can that be accomplished without having to loop twice ? I am using following to filter out the bad records (CDTB) a!localvariables( local!data : ri!docsdata, local!docstodelete: a!foreach( items: local!data, expression : if(isobjectexists("Document", fv!item.Doc_id), fv!item, {} ), local!docstodelete.data ) ) Then i tried using difference(CDTA,CDTB) but that doesn't work .. ;-(
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.