-
Recently active
Do we have any console to see general Appian logs as we are not logging custom logs in Appian.For EX:When we are calling any external system it may give some 500 or 404 error.where do we see those errors?
Hi all, I am still confused in the pricing and plans offered by Appian. From the website, under APPLICATION plan, there's a price per user (Standard, Infrequent, and External Input User). Also, there are plans for PLATFORM and UNLIMITED. I am not quite sure if we will fall under Standard user. In our use case, we are a Service Provider/ Software Developers. You may refer to my use case below: As a software developer, we are looking into using Appian as a low-code platform where we can create our software/ applications. These created applications are being sold to our customers with different volume of end-users who will use our software/ application. Example the application is a Human Resource Information System with end-users such as the HR people, all company's employees, and on-boarding external applicants. My question right now is that, how's the Pricing in Appian? 1. We, as the provider with 20-30 developers, how much should we pay if we subscribe
We have Appian 17.3 and 21.1 environments - I am using a!pickerFieldUsersAndGroups() field inside editable grid to allow users to pick either a user or a group. No issue when picking a user, but when I pick any group then I got the following error "Error in a!forEach() expression during iteration 1: Expression evaluation error at function a!pickerFieldUsersAndGroups [line 100]: A user and group picker component [label=“Primary Assignee”] has an invalid value for “value”. All users and groups must be valid and visible to the viewer." When I use a!pickerFieldUsersAndGroups() outside of the editable grid, picking a user or a group works with no issue. Also, when using a!pickerFieldGroups() or a!pickerFieldUsers() inside editable grid works just fine. Appreciate any help on this issue.
It would be nice it it would be possible to allow a link to be configured inside a button. Currently a button only has a saveInto. If you want to launch a worklfow form a button you are limited to using a!startProcess(). This method only allows for headless processes to be launched.If you want to launch a process with a process startform, you need to used the a!startProcessLink(), but there is no way to configure this when using a button. Example usecase: Imagine you have a custom grid of objects.You want the users to be able to select one or more objects. Based on the selection you will show the possible actions to use above the grid. A nice way to display these actions is by using buttons. If one of these actions involves a process with a process start form, there is no way to configure this using a button. You can however just just a link, but it wil nog look as clean.
What are the process instances that we need to delete automatically as soon as we execute the process ? to improve DB performance.
Hello, Is it possible in an interface to detect in which position any component is ? It's required to UX mobile, the idea is when user clic a button the interface take the button position like initial position for others components... Thank you
in my application, I am repeating the interface by clicking on the add list button, In the process model, I want to repeat the audit fields. the length should be equal to the length of the loop, can you guys help me how to use a repeat function to satisfy the loop
Hi, In my process model, i have a node sub process which is having the MNI. When i am running the PM i getting the number of instances. but in every instance getting the same index (i.e 1). I am using tp!instanceIndex in my sub process.Why i am not getting the other indexes in subprocess? Any suggestions please.
Hi! Does anyone know, why in some mobile devices, some features of the graphical interface change? Example Requiered: * / "Obligatorio" - Mobile Xiaomi MIUI 12.0.2 - Redmi MIUI 12.0.7 Thanks!
I have a scenario where we have to export excel with 50 columns in its one tab. I am using "Export Datastore Entity To Excel" smart service. Is there any way we can export excel with more than 50 columns in a tab.
Hi We are sending email with attachment to external email id using send email smart service. It was working fine and suddenly stopped working. We tried changing the sender option to 'Process initiator' and 'Custom Sender'. Now it is working for few but not for all. There is no failure and send email node completed successfully. Please suggest a solution if you have faced this issue or any guess on this issue. Thanks in advance
Dear community, I have a start process web api, the process is updating the metadata table. My facing issue is that API response success even when write to data store entity error. The expected result should be when process executing error, we can expose the process instance error in web api response body. Therefore, how can I get the process instance error? then I can save it into process variable, and in the api, we can get it through ProcessInfo. Thanks in advance for your answers.
Good afternoon, We are consuming an external process that has a start timer configured as follows: The rule! Delay has this code if( totime(now()) < cons!START_TIME, datetime( year(today()), month(today()), day(today()), hour(cons!START_TIME), minute(cons!START_TIME) ), datetime( year(today()+1), month(today()+1), day(today()+1), hour(cons!START_TIME), minute(cons!START_TIME) ) ) The value of the constant is: The configuration of the user who starts the process is And the process has the overwrite option checked The problem we are having is that the process is running at 2:00 AM instead of 1:00 AM as we have in the configuration. Can you think of why this could be happening? A greeting and thanks in advance
Is it mandatory to give Appian Certified Associate Developer exam if someone is having L2 Credentials and wants to attempt Appian Certified Senior Developer exam ? Thanks, Gaurav Singh
Hi everyone, please can anyone guide me through RPA browser Selenium recording ? I have "Browser initialization failure" error after recording browser with Selenium " . I have no idea what steps to follow in the RPA to solve this issue. The screenshots are attached. Thank you in advance .
Hi, I have set up timer event in the escalations tab and selected Send Alert in what action to be taken section ? and gave my e-mail address, it's not working. Tried Send e-mail smart service, i can receive e-mail with this smart service, ONLY change i made is changed Timezone in process model properties to IST, which is my time zone, any help is much appreciated.
HI, Does appian takes care of Day-light saving when the time changes in winter?
Hi, can anyone help me with this error please An error occurred while trying to write to the entity "SHA_listing" [id=5e13a319-1194-43c0-8694-7083cec21cb0@26128, type=SHA_listing (id=6198)] (data store: SHA Tables and Views). Details: org.hibernate.PropertyValueException:
I am trying to build a simple application which allows users to log hours worked. In the summary page, there is a table of logged shifts, and the ID field has a link to a page with details about the shift with the particular ID. I have an Expression Rule called TST_getTimesheetSubmissions which returns an entity with specified a!queryFilter( field: "id", operator: "=" Currently, in my summary view, I have the following configuration: rule!TST_TimesheetSubission( TST_timesheetLog: rule!TST_getTimesheetSubmissions(rv!identifier).data[1], cancel: null, readOnly: true ) The page loads without any error. However, the hyperlink from each ID redirects to the same entity with ID=1. Can someone help me fetch the appropriate row of data from the table? Thank you!
I've been following a tutorial to build a simple system which allows users to record their work hours and date. When I try to edit record type using rf and rp, I receive an error message "Improper scoped variable". For example, I try to edit the "summary" view using the rules defined in an Expression Rule: rule!TST_TimesheetSubission(rule!TST_getTimesheetSubmissions(rp!id).data[1],null,true) I receive an error because I have rp!id, and and when I try to edit the List so that the ID of each row becomes a hyperlink to an individual page about the shift logged, I have: - Label: rf!id - Record Type: rp!type - Identifier: rp!id the above three get an error, so when I access the Site, I receive an error "The Requested Record Type Is Not Available". Before the edit, it is a Text field and uses fv. How do I access rf and rp, or alternatively, how do I use the rp equivalent with fv to fully display the page? I'm new to Appian and the forum, if I
I have an array where I would like to replace the zero values with the previous non-zero value. i.e. convert { 15, 0, 0, 23, 0, 0, 0 } to { 15, 15, 15, 23, 23, 23, 23 } Any ideas?
My requirement is to find out all the unused objects of the Application, unused rule inputs from of the Interface and unused Process variables from the Process Model. I know manual work is very lengthy so can someone suggest me any shortcut method or any plugin can help in this. Thanks in advance
We have a requirement where user wants to upload bulk data in Appian. A file upload option in an excel or CSV format is desired. Once uploaded, the file contents should be written to DB and later available for user to view data in a grid format. File can contain a maximum of 200+ columns & 10K rows. What is the best practice to address this requirement in Appian. Thanks in advance.
Hi All, i am getting following error on my summary view. Error Evaluating UI Expression Expression evaluation error [evaluation ID = EEBZL4J1] in rule!APN_qry_xyz at function a!recordBodyWrapper: An error occurred while retrieving the data. Details: Cannot open connection (APNX-1-4198-000) I can see rest of my code(expression rule, qry rule, interfaces, integration and all other objects) working fine except summary view. Kindly help me. Thanks in Advance.
In case that we developed an application system through Appian and have it delivered and implemented to our client, one of their documentation requirement is the full source code of the application/ system given to them. Is there an option or facility in the Appian that we can generate the full source code of the built application? 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.