-
Recently active
I have few active receive message(cancel_process) event with a condition to match a request id and then proceed. A different process executes and send message(cancel_request) with request id to all receivers, this call does not have destination process ids. After this, all active receive message node moved further even though the condition was false. The receive message executes even when the condition evaluated to false, has anyone faced this issue? Thanks in advance!
Hi team, I am Looking for an API that provides Services to fetch Cibil score by sending PAN Number. Can anyone Help me in finding the API for this Thank you J Vinay
Hello All, As per the link https://docs.appian.com/suite/help/21.2/Custom_Mobile_Applications.html, it seems that Appian Provide Custom Mobile development. Where can we get more information regarding how to develop a custom mobile applications. Does Appian provide some IDE and SDK for custom mobile application development. I am aware of the fact that applications created on the web using the Appian Designer platform can be view on Appian App available on Play Store, but what about if some want to create the only app for Mobile applications. Additionally, can we create our own apk and IPA for Android and iPhone, later can we publish this to app stores.
Hi all, I want to learn how to upload document on a REST webAPI. What I want first is to fetch the document from POSTMAN to Appian ( for Test purposes only ). However, I'm getting 500 internal server just by including a document from my body. Without including a document, it works fine. my Body is a "Form-data", My issue probably is on my Web API Object of Appian ( request ), can you advice on this one on fetching request data from POSTMAN? Thanks rule!REST_Route( request: http!request, handlers: { rule!REST_Route( path: "/test", handlers: rule!TEST_PostTestAPIHandler(request: _) ) })
Hi, I need to copy an existing application with cdt and data source in the same server environment with a different application name. Kindly let me know the best practice for this and the easiest way of doing this. I also need to create a copy of the table structures used in the DB. Thanks in advance, Swetha.
Hi Team, I have a parent process model calling another process model using "Sub-Process" service. Here we have input as well as output data configured. If the child sub-process has any error in it, then the parent process model is in Active status at the sub-process node. We do not get any alert emails neither with regards to the parent process nor with child process model. I have another parent process model calling another process model using "Sub-Process" service. Here we have only input data configured. If the child sub-process has any error in it, then the parent process model is in canceled by exception status at the sub-process node. We receive alerts stating that there is an error in task "child sub-process node name". I concluded that if output data is configured and the child sub-process fails then the parent process model stays in active status and in such cases we don't get system default alert emails or any kind of alert mails stating that
How to find the wrong email address when we are fetching data from the DB? (I am fetching employe's Data from DB, after fetching the data I need to send the mail notification to those Employ's, but "I don't want to send the email notification whose gave me the wrong email format or wrong email in process model Also I need to find the invalid email id") Can Anyone help me for this,
I want to display cards as rows and columns of each 15 displaying as a grid together. After this i want to apply condition to display the numbers in order and display the cards that numbers are divisible by 7 , 8 and 9 only without rearranging. I display the rows and columns using cards. Can some on help me please?
I want to make UI where two grid will be shown grid 1 will have all data and grid 2 will be initially empty. In grid 1 we have checkbox where we can select different row and when we click add button then all selected items will be transferred to the second grid and selected item will be deleted from grid 1.
When there is prolonged user inactivity, a popup comes from Appian stating that session is about to expire. We are not able to click on any of them. The screen freezes until we refresh the browser. I am looking for guidance if anyone has encountered this in their projects. Any pointers are appreciated.
Hi, local!initProvidersSegment.ServiceLocation.Addresses is my CDT where Addresses is a list of array. In the grid selection i have selection value in local!selection i want to find local!selection in Addresses except one field in local!selection.Action field which is updated and CDT values remains untouched.. Suggest an expression.
Hello,I'm trying to create a POST method WebAPI that waits for its process model to end.I need to receive a JSON data type, process this data, and return an XML generated with the process model as the WebAPI response, is it possible to process the JSON information received and make the WebAPI wait for the process model to end ?I know that by the own definition of this method, the process model runs asynchronously, but I don't know any other way of approaching this case.Any idea will be welcome.Thanks in advance !
Hi Techies, We have a requirement where we want to show a particular site page when a particular user logs in. We have provided the site page url directly to the users but the problem is they want to see different site page for different users on log in. Is there any way we can change the default page that opens after logging in for different set of users? Thanks
Hello Everyone, I am trying to append data into a nested cdt in the order i enter data in the tabs, but unable to do so. Currently i am saving the data like this saveInto:{local!info,a!save(ri!userData.UserInfo.field1,append(ri!userData.UserInfo.field1,local!info)) I have a big multi section form and each section has multiple tabs. The section (form) i am working has 4 tabs and each tab has almost same fields. I have a rule input called users data which is of the type usersData cdt. usersData cdt has nested cdt's. My use case is - users should be able to enter data in multiple tabs in the form and after entering the data it should be appended into one of the nested cdt's of the rule input. The nested cdt is an array. I want the data from tabs to be saved in the order user enters them. Ex - Tab 1 - Fields A, B, C &nb
I have this querydelete from PLSM_note where noteId in (fn!substitute(fn!joinarray(ac!selectedRecordIds, ";"),";",","))as shown in the below image. This query should translate to: delete from PLSM_note where noteId in (1,2,4,50)A) This is all on a single rowB) This is a single queryWhat's the solution to this?
Dear Team, Could someone help me to understand the below issue please. I am trying to fetch the total count of the records from DB view. When I give fetchTotalCount=true it's throwing an error 'Expression evaluation error at function a!queryEntity [line 2]: An error occurred while retrieving the data. Details: Unexpected error executing query'. If I change the fetchTotalCount=false, it's working fine. Sample code is below: a!queryEntity( entity: cons!DB_VIEWS_DSE, query: a!query( selection: a!querySelection( columns: a!queryColumn( field: "id" ) ), pagingInfo: a!pagingInfo( startIndex: 1, batchSize: 1, sort: { a!sortInfo(field: "id", ascending: false()) } ) ), fetchtotalcount: true )
I'm making an interface form with Appian. I'm making the form interactive. A textbox should only appear when specific variables are true. Appian offers a wonderful feature for this where you can add an expression to a "only show when" function. It presently holds the following expression: edate(today(), -804) >= ri!GeboorteDatum The variable on the form is ri!geboortedatum. Another statement that says: only show when the date value is not null is required. I tried everything but nothing worked. Is there a solution? The programming language appears to be similar to Microsoft Excel. Perhaps something like edate(today(), -804) >= ri!GeboorteDatum & isnull(ri!Geboortedatum)
Hi, We have defined the list of file extensions which are to be allowed via admin console as shown below. When we try to load any file which has an extension(png) that is not present in the admin console, it prompts an error message to the user as shown below which is expected.Had anyone faced similar issue, or any inputs to overcome this?Code snippet:a!localVariables( local!files, a!fileUploadField( label: "Upload Document", value: local!files, saveInto: local!files, target: cons!TEST_UPLOAD_FOLDER ))
Hi, I have CDT which is created from a View. The view takes around 8 sec. I have process model which uses Export DSE to Excel smart service to export the content of view to an excel. The process model executes fine and generates the excel when run in debug mode (Start process for debugging). When the process triggers on a timer ( timer event) it fails to execute Export DSE to Excel node and raises error " Error accessing data store entity: <<xxx_V_xxxxx>>. Please contact a system administrator for additional details. (APNX-1-4505-026)) I have checked the system error logs, following logs are logged. Error accessing data store entity: <<xxx_V_xxxx>>. Please contact a system administrator for additional details. An error occurred while retrieving the data. Details: Unexpected error executing query (type: [xxxxxx], query: [queryentity expression], order by: [[Sort[id asc]]] Caused by: org.hibernate.QueryTimeoutException: could not execute que
Hi All, Recently we have upgraded the Appian version to 22.4.455.0 from 21.3 . after the upgrade process models are not opening and its keep on loading , But for some people its opeing in incognito mode , we have tried in both edge and chrome. I have attached the image below can somebody please help me on this Thanks in advance
why i cant add a button widget in a column component , it says that the column component cant take button widget
Hi, I am having a dropdown component that has choice labels which are sentences up to 25 words long. Is there any option in Appian to display it in a word-wrapped form? Currently it displays upto 20 words (in one choice label) and adds "..." beyond that. Thanks in advance.
Difference between load, with, local variables, refresh variables
Hi All, I am facing one challenge to implement one behaviour in appian interface. My interface presents the read only data to the user and user will take action based on his findings by selecting a dropdown value. Finally user hits a "SUBMIT" button whose implemetation is as below. where we call an integration which will update the data and returns an error if an exception found. So my requirement is when user clicks "SUBMIT" button if error occured then form should not submit and close and error message should be displayed. If data updated successfully form should close. I tried below submit condition as well but it didnt work. suggest something. a!buttonArrayLayout( buttons: { a!buttonWidget( label: "Update", saveInto: { rule!PM06_PortalApprove( tenantId: "77b50320-5f06-5740-84f4-18d4a8cda51d", identifierId: "s57", portalTransactionId: property(local!jsonData, "PortalTransactionId", null), comments: "test", on
How can I temporarily disable any of the processes that I drew a green box around Something is generating an JSON input error and I'd know which one.
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.