-
Recently active
I am getting this error while i used refresh variable to refresh the value based in the variable change. Expression evaluation error [evaluation ID = c66ea:0543a] in rule 'mtc_griditemtotal' (called by rule 'mtc_formworkorderapproval') at function a!refreshVariable [line 31]: a!refreshVariable may only be used to define a local variable within the a!localVariables function. Please check the screenshot. Please let me know if you have solution for this..
I am receiving an alert mail saying "A task is unassigned". Does anyone know how to resolve this? This error email occurs only in the production environment and cannot be reproduced in the development environment, so I would like to get as many clues as possible.
Hi All I am using rule event in the exception tab of call integration smart service, I want the exception flow to be triggered if the integration fails. In rule event i added one condition if success = false then exception flow will trigger. It is going to exception flow but also flow going to the next node. So i want flow only go to the exception flow rather than next node.
In my gridColum, I am displaying an email link, with an envelope-o icon. However, if the value of the field is empty or null, it's still displaying the icon. How do I add the if logic to this code to not display the icon if the value of the field is empty or null? I've edited the code below to shorten the field recordtype! info. a!richTextDisplayField( value: { a!richTextItem( text: { a!richTextIcon( icon: "envelope-o" ), a!localVariables( local!fullString: fv!row['recordType!technicalPointOfContact'], extract( "--beginning--" & " " & local!fullString, "g--", "
My company has an application that has grown in size over the past few years. The main functionality is to create an estimate for a customer for work. When we create a new estimate, we kick off an orchestration process model that then chains through subsequent process models and directs the user from User Input task to User Input task. As sub processes start and end, they each have a 1 day deletion clean up. At the end of the business flow, once the estimate and work is done, the user closes the estimate and the orchestration model ends. Throughout the lifespan of the estimate, it is constantly going in and out of process models.I understand that Appian is moving towards and giving advice to move away from this type of architecture and move more to a record centric approach, but for us, that would be a large undertaking, and thought it may be on the radar down the road, I'm more so looking for feedback/answers regarding the currently situation. So my question is this, here'
Hi guys, the current EMEA ongoing release webinar for 24.1.- my stream is brokenany clues? No video just audio kind regards, Richard
a!localVariables( local!principalAmount:ri!loanAmount, local!totalMonths: ri!tenure * 12, local!interestForOneMonth: round(ri!interest / 12, 2), local!interest: ( local!interestForOneMonth * local!remainingAmount, ) / 100, local!remainingAmount:local!principalAmount-local!interest, a!forEach( items: enumerate(local!totalMonths) + 1, expression: { local!interest, local!principalAmount, local!remainingAmount, a!save(local!remainingAmount,local!principalAmount-local!interest,), a!save(local!principalAmount, local!remainingAmount), } ), ) For each iteration of the for loop i want to update the value of local!principalAmount and local!remainingAmount as shown above. Kindly let me know how we do this in Appian.
There are two applications Application A and Application B. Application A has Group A and Application B has Group B. First the task is assigned to Group A. When a user from Group A completes the task then the task should be assigned to Group B which is in Application B. How can we do that?
Hello, I want to implement the @tag user functionality in the conversation (comment section). I am new to Appian. Can you please help me with this?
Hey all, Please provide suggestions for below scenario 1st row is having a columv value 'GE | SP |US' 2nd row is having column value 'USA | CA' I need to query the row which is having US or SP in it . I tried the approach of looping(US,SP) the query filter using include parameter. But for US, we are getting both the rows. Can you please suggest an approach to query the expected result which is 1st row ? Thanks in advance!
Hi Folks,When i comparing objects with higher environment i am getting below issue as my all objects are part of application. JFYI:-NDC_REC_DEAL , NDC_DASH_SummaryV1 and NDC_FRM_pipcoAllocations are part of package.NDC_REC_DEAL :- Already Present at higher environment NDC_DASH_SummaryV1 and NDC_FRM_pipcoAllocations :- New Objects.Let me know if you need more info.
Hi I would like to ask a question. I want to cast multiple record type to custom data type. If possible how can i cast it. Here is my cast data.
Hi I got a error when using multiple sql statement on query database smart service. Is not possible to use multiple sql slect statement on one query database smart service.
I have a text field in an interface and I have defined a character limit of 40. I need to be able to type both English and Greek characters in the field. When I write in Greek, the character limit count shows the double number of characters I actually type, so even if I type one character it shows 2/40. In English, it works properly. I think it is caused by the encoding, but I don’t know and can’t find any documentation on how to fix it. Is there a way to fix this problem? Maybe to configure the app so it reads all Unicode characters with UTF-8? Or is the problem somewhere else?
Create group smart service is throwing an error which reads: Problem: An error occurred in executing an Activity Class. Details: A system error occurred while creating the group. Recommended Action: Examine the activity class to correct the error and then resume. What I have tried - I believe all parameters are correctly configured and values are being fetched correctly in the process variables. Also, the same process is running correctly in different environment with the same values. Checked the security of the process model. I checked the System Logs and it reads: 2024-06-11 10:28:24,162 [Appian Work Item - 572737 - WorkID 64 - execution00 - process 311873 - model 277 : UnattendedJavaActivityRequest] ERROR com.appiancorp.process.runtime.activities.CreateCustomGroupActivity - SignalException: Received signal InvalidCreatorException from GROUPS.createGroup on groups SignalException: Received signal InvalidCreatorException from GROUPS.createGroup on group
I need to add editable grid in intake form of Case Type in Case Management Studio, but the form builder does not have the option to add grid in the intake form.Does Appian have any plan to add editable grid in intake form in future?
Hello, I had faced the fallowing error when the user opened the transactions follow-up page in a transactions project: Unexpected token '<', "html><hea" __is not valid JSON Note that, I gave access to a user outside our Appian servers, and the user faced this error. we didn't use any authentication method for the user login. Did anyone see this error before or knows whats its problem.
I want to have a dropdown/picker field that allows use either select from options or input a value when it is not in options
Hello, I have a grid to populate with data from 2 different tables. Using the Id of countries from the first column I have to get the values for other 3 columns from a different table. Can Someone help how to approach this.
a!localVariables( local!startDate: date(ri!year,ri!month,1), local!daysInMonth: daysinmonth(ri!month,ri!year), local!startDateDay: weekday(local!startDate), local!endDateDay: weekday(eomonth(local!startDate,0)), local!days: {"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"}, local!dates: a!forEach( items: enumerate(local!daysInMonth) + 1, expression: local!startDate + fv!item - 1 ), local!datesWithDays: a!forEach( local!dates, { day: local!days[weekday(fv!item)], date: fv!item } ), { a!gridField( label: "Calendar", labelPosition: "ABOVE", data: local!datesWithDays, columns: { a!gridColumn( label: "Sunday", sortField: "sunday", value: if(fv!row.day="Sunday",fv!row.date,"") ), a!gridColumn( label: "Monday", sortField: "monday", value: if(fv!row.day="Monday",fv!row.date,"") ), a!gridColumn( label: &
I am performing a loop process in which I obtain process information using script task `有効なプロセスを取得` and cancel each process one by one using cancel process `プロセスを強制キャンセル`. If the number of script tasks processed exceeds 1000, a process error will occur. What should I do to avoid this error?
Hello everyone,We have a client requirement where we need to export Client and Employee data recieved from document extraction in a PM to an Excel template provided by the client, where client data should be inserted in their respective positions in sheet 1 and the multiple employee data should be inserted accordingly in its desginated cells in sheet 2. Attached are pictures of the Excel template formats for both sheets, as well as the format of the data we are receiving. We tried using the Export Data Store Entity to Excel smart service in the process model, but the results were unsatisfactory. We also used Appian RPA Excel operations, which provided a solution, but it took 25 minutes, which is not viable in all conditions. We are looking for a more efficient solution to export data into Excel. Any tips or assistance would be greatly appreciated.
Hi, I could not find any docs satisfying my requirement .Can anyone help me in designing a grid as below. Name textbox1 textbox2 textbox3 PersonA 10 1 100 PersonB 20 2 100 TOTAL 30 3 200 User will enter values in rows for textbox1, textbox2 and textbox3. Last row should display the total of the values entered in above rows.
I want to create new entity category and entity types in Case Management Studio. With "Create Entity" action I am able to create entity of type "Submitter" of category "Person", there no option available to create entity of other types. I did not find any feature in Case Management Studio that allows to create new Entity Category and Entity Types.Is there any way to create new Entity Category and Entity Types.
Hi Team, I have a requirement to execute an expression rule by retrieving the rule name from the database. To provide a background on the ask: We have a landing page where tasks from various other applications/line of business is displayed. So every application designer would have to create an expression rule to return their tasks and then plugin to our common or parent expression rule. The parent rule consolidates all the tasks data from various applications and then display it in the grid. But the problem here is, one application might be in DEV phase, one in QA and another in UAT, so during the deployment there is always a problem due to the missing precedents and we have to comment out that rule that's not present in higher env and then uncomment it back. So in order to resolve this the business wanted to save all the rule names pertaining to each application in the DB and dynamically retrieve the rule name from DB and execute it. I understand that we can pass the rule referenc
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.