-
Recently active
Hi All, I made a new channel in IDP, submitted training documents for specific type. But even after many hours, IDP did not got trained to auto classify my documents. Neither I got any error email. I did this multiple times with different training documents, but every time IDP just shows a message that docs are submitted for training, and I will get an email once they are trained. But I never get any email about that. I just want to ask, is the feature to train documents for auto-classification even available for Appian community edition users? Note: This question was asked about a year ago and did not get any answer yet.
I have to local variables as input 1. List of dictionary : [ [ id:1,value:"abc" ] , [ id:2,value:"bbb" ] , [ id:4,value:"ccc" ] ] 2. List of integers: [1,4] I want to create 3rd local variable (List of values) by selection value from dictionary where id is present in the List of integers example : result -> List of values : [ "abc","ccc" ]
Hi I need to display multiple input integer fields within one integer field based on multiple dropdown selection means i have a multiple dropdown which has 11 options if i select one option from dropdown the input integer field related to that need to display likewise if i select three options from dropdown three input integer input field has to display. I have defined 11 integer field individually like below but need to know the best approach to define in one integer field please suggest on this contents: { a!integerField( label: "Organization Hierarchy", value: ri!selectedHierarchies, saveInto: ri!selectedHierarchies, showWhen:contains(tointeger(ri!impactedHierarchyList),1) ), a!integerField( label: "Location Hierarchy", value: ri!selectedHierarchies, saveInto: ri!selectedHierarchies, showWhen:contains(tointeger(ri!impactedHierarchyList),2) ), a!integerField( label: "Account Hierarchy", value: ri!selectedHierarchies, saveInto: ri!selectedHierarchies, sho
How can I populate the database with a single form on multiple dates field?Let's say I am creating a Vacation form and when an employee wants to apply for leave from 1st Jan till 5th Jan, they open the form select FROM and TO date, fill other form fields such as reason of leave, informed manager etc. Now when the employee hit submit I should see 5 entries on Database with 5 dates but the rest form details should be same.
I am getting error as below on calling Oracle's stored procedure using a!executeStoredProcedureForQuery. Stored procedure and expression are attached below. Help is much appreciated.
I am trying to add JSON object inside a JSON object but the generated JSON is not in the correct format. The child json is in double quotes. How can I get rid of these double quotes? Can someone help me with a correct substitute() function command?
Hello everyone, I wanted to share a little advice with you, and hopefully, maybe Appian will also take note and resolve what an abysmal design decision is.Problem Statement:Appian has created the teardown method as a step that runs in the feature file. This is a terrible design. The reason it's a bad design is that the teardown method is what closes the browser and also kills the background Chrome/Firefox driver process. Since it's being invoked as a feature step, this means that if your test fails, the teardown step/method will not be reached. In addition, if you end a test early, it will not be called. The implication of this is that you end up with lots of browsers you have to close manually, and even worse, every time it happens, you have a driver process running in your PC/Mac background, and the more times you do it, the more they add up, eating away at your memory until you have to reboot your PC/Mac. I will show a screenshot of the step I am referring to. Sol
I have a grid with dynamic column names and static columns. Ex : Here EmpSub's will varies on each instance.Need the word document format to get the dynamic columns syntax in word document. Able to get the rows data from the CreateDictinoary function but need the exact format to write in the word document. Thanks in Advance.
Hi techie, I'm getting following error while using writeToMultipleDataStoreEntities. Input Parameters - Entity - cons!DSE,Data - Record Type_______________________________________________________________ While I'm using writeToDataStoreEntity with same parameters then I'm not getting any error.
Hi, I need to find out if a given date is in the last week of the month. For example 27th of March 2023 is in the last week of the March month. How can I achieve this? Please give me the suggestions. Thanks and Regards, Brinda Sateesh
Hello everyone,We are trying to make sure SAML users, if idle, logout after 60 minutes. But for some reason the timeout is set to 20 minutes. After going through the documentation I have seen Admin console> Appian >session time out is suppose to fix it but it doesn't seem to work in my case. Any idea where to start?
Hi, I have a process model where I am using writeToDataStoreEntity smart service to save the data into a database. I am using an interface in the start node. If I hit a submit button, system is flashing "Action Completed" message automatically. Whereas when I implement same functionality in the SaveInto and a!writeToDataStoreEntity , system is not returning any such message after hitting a "Submit" button even though data getting saved. Can someone advise me how to show such a message "Action Completed" after submit button clicked.
I have a scenerio.The below mentioned example rule should repat based on the local variable local!a each input. localvariablesa( local!a: {"A","B","C"}, local!b : {"X","Y","Z"}, a!forEach(items: local!b, expression : rule!getTestData(input1 : ri!employee, input2 : local!a[1])[fvIndex], rule!getTestData(input1 : ri!employee, input2 : local!a[2])[fvIndex], . . . . rule!getTestData(input1 : ri!employee, input2 : local!a[n])[fvIndex], ) )
In the main interface we have a toggle icon, We the default value for this is null. When user clicked on that we are setting a local variable value as true. Below this toggle icon we have a link, When user clicked on that link it will initiate a process model using a!startprocesslink smart service. That process model has interface rule in the startform, when user perform some action on that screen and submit the form he will again land on the main interface rule. Now again this toggle value going back to the default value null. But, the requirement is to have that toggle value as true after user submit the form. Please suggest your thoughts on how to achieve this. Any help is greatly appreciated. I have attached screenshots, please refer them for more information. [View:/cfs-file/__key/communityserver-discussions-components-files/13/Issue_5F00_details.docx:320:240]
Hi, I have a scheduled process that executes multiple SQL scripts.The final of these scripts recreates triggers dropped in the first script. Since triggers can't be created in a Stored Procedure; I am unable to use the Execute Stored Procedure smart service and, due to the scripts complexity, use the Query Database smart service. Is there another way this can be executed from the process model? Thanks
I'm trying to extract a big amount of question from a PDF file that has around 1000 pages and the section where we find all those questions. The program is doing it we can run the process an everiything is fine but suddenly the appian server shows the 503 error even though we are not running the process i split the pdf in batches of 30 pages every time a 30 page batch is evalueated and the questions are extracted we save the questions found in this variables and this sub process die and go to the main process and do the same thing till we get to have all the questions and sections the time for this process is about 10 minutes in doing all of this operations. how can we minimize the high load of the site ? the Appian team told us that the aplication server was killed by their automation. After
In a pipeline : as an input I have a parquet file I'd like to do row by row of the parquet file (foreach ?): make a call to a soap xml api according to result call : = if ok store the result (xml file) in a blob container. = if not ok store the result in an azure storage table. I've already done such a thing with an azure webjob would it be makable (rather simply) with azure synapse analytics ?
I have an expense CDT . It has fields like base charges, fuel charges, taxes. I have a pie chart and on each slice of a pie i need to display the sum of base charges, fuel charges and taxes for a vehicle . I am unable to use secondary grouping. Kindly please help.
We have a n export scheduled to ran daily for billing , when Microsoft has outages and task fail we do not get any alert for the failed export job and we cannot even see event logs. How can we create alert for any failed export or job not received in the billing export container We haven't tried anything as yet , since MIcrosoft Engineers couldn't help us .
Hello Community, Does anyone knows how to read data from a docx file in the same way we can do for PDF files? I read that is possible to convert docx files to pdf and maybe accomplish this, but not sure. Please let me know if you have some ideas how to accomplish this. Thank you
I'm facing two issues:1. Warning is coming in process instance - Some referenced items could not be found. Please check the model and correct any problems.2. Action Complete banner flashes out..
I was trying out this plugin called "Timer Component". It basically provides us with a stopwatch functionality. We can also stop it automatically at some given time interval. I just tried to create a functionality where this plugin can be used to refresh a variable automatically in custom time intervals ( also less than 30 sec). Is it a good way to do it? a!localVariables( local!total: 50, local!bool: false, local!refreshAfter: 5, { stopWatchField( /*label: "Stopwatch Timer",*/ labelPosition: "ABOVE", validations: {}, height: "AUTO", action: "START", size: null, align: null, expiredMessage: null, color: "#FFF", style: null, timerDirection: null, enableReverseTimer: null, reverseTimerColor: null, secondsValue: local!total, secondsSaveInto: { a!save( local!bool, not(local!bool) ), a!save( local!total, local!total-l
Hi, I would like to send error details to an email DL when there is an issue with process model functionality. The below option is allowing me to create a reference to an Appian group and specify at this place. But, I would like to provide an email DL so that all the people who are the part of the email DL should receive the email with error details.
Hi, I have a big user interface form where I am using multiple controls. Now when I try to submit a form data by clicking "Submit" button it is taking few seconds to complete the submission and it between it is allowing use to click on different form elements and it is creating an issue. So, when the user clicks on the "Submit" button, I would like to show a rotate/progress bar so that user can't click on any other elements of the form. Is this possible in Appian 22.4? Can someone advise please. Thanks in advance.
Hi, is it possible to receive multiple messages on one Receive Message Event? I need to use Receive Message Event to stop the process flow until all the fields of multiple entities are populated, so I have a Send Message Event on each asynch subprocess that sends a message to my main one that the fields have been populated. There is also an Expression Condition on Receive Message Event that checks if all entities have populated values. If it's possible to receive multiple messages, does the condition get validated each time it receives a message? Thanks!
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.