-
Recently active
Hi Friends, Whenever I am trying to check process history, the paging details not getting displayed correctly. PFAs for your reference. Total count is 453 when page number is 1; No. of pages: 5 Total count is 183 when page number is 2; No. of pages: 2. Is anyone facing the similar issue? How to fix it? Thanks in advance!
Hi All, I am using a!queryrecordtype() function to retrieve data from records but every time it also calculates the fetchtotalcount parameter even if I gave it as false. Can anyone please help me out how to remove the totalcount calculation.
i'll get list of data from one query, to that query data i have to map few fields value ex query1 gives : id :54, class: B, owner :xyz id:54, class: A, owner :test from second query from another table will get id:54, owner :abc this second query owner data needs to update/show in query1 how can i achieve this update for id:54, class:A , owner: abc
Hi All, We have a requirement where external system wants to embed Appian interface. But the problem is we need information from the external system so that we can show up on Appian embedded interface. I have gone through documentation (https://docs.appian.com/suite/help/23.4/Embedded_Interfaces.html) but couldn't find anything on how to get parameters from external website. Appreciate your response.
I was unable to upload the images
I want to create a report with bar/pie charts, however whenever I attempt to do so I get an error stating that I have to utilize a synced record type or one that is backed by a datastore, is there no workaround for this issue? Or does my data have to be stored in an external database in order for me to establish reports?
Is there a way to obtain these metadata and others, such as the version of an object in our application, from an expression rule? I cannot use it due to technical limitations of the Content Tools plug-in, but I do have access to the appian primary database. Any help or suggestion on the way forward would be welcome.
Based upon the previous approval and reject status we need to predict and make the process autoapproval. We have three forms which user has to be filled and submit based upon this data the reviewer will approve or reject. Based on the previous data and approval& reject status the flow has to be automated. How do I achieve this..??
Hi, Do anyone know why I am not seeing the number of results instead its showing of results.
a!gridLayout( labelPosition: "COLLAPSED", headerCells: { a!gridLayoutHeaderCell( label: cons!CR_APP_LAB_STAND_VS_NONSTANDARD_FIELDS[2] ), a!gridLayoutHeaderCell( label: cons!CR_APP_LAB_STAND_VS_NONSTANDARD_FIELDS[3], align: "CENTER" ), a!gridLayoutHeaderCell( label: cons!CR_APP_LAB_STAND_VS_NONSTANDARD_FIELDS[4], align: "CENTER" ), a!gridLayoutHeaderCell( label: cons!CR_APP_LAB_STAND_VS_NONSTANDARD_FIELDS[5] ) }, columnConfigs: { a!gridLayoutColumnConfig(weight: 5), a!gridLayoutColumnConfig(weight: "NARROW"), a!gridLayoutColumnConfig(weight: "NARROW"), a!gridLayoutColumnConfig(weight: 8) }, rows: { a!forEach( items: ri!crAppStandVsNonStand_cdt, expression: a!localVariables( local!choiceValue, local!SingleREFStandardVsNonStand_cdt: index( ri!crRefStandVsNonStand_cdt, wherecontains( fv!item.questionId_int, tointeger(
hi Team, How to change the background color of the coding screen into black or dark theme?
I got this error when none of the interfaces or expression rules mentioned use the load() function, they all use a!localVariables(). Does anyone know why this error could still be appearing? "Interface Definition: Expression evaluation error ... The load() function cannot be used within rules called by looping functions other than a!forEach(). Pass the necessary variables via rule inputs or use a!forEach()."
Hi Everyone, Requirement: We need to segregate the process model based on the app name in the process task reports. We are creating the process reports based on all task, we need to fetch the app name based on the Process model ID.Any suggestions would be appreciated, Thanks in advance.
I am facing an issue where i am getting expression evaluation error during file upload (line number 688)
Hi Recently i genereate the health check report in that it showing one finding in perticular interface like (InvalidGroupException) for getdistinctusers function but when go to that perticulat interface there is no error it's woriking fine but i don't no why we get this issues, somebody help me why we got this finding in that report
How we will covert ("INDIA") TO {"I","N","D","I","A"}. How we will write in expression rule?
Hi, I have a record action which shows "Add Artwork Milestones" and after completing/adding the artwork details the record action should get updated to "Edit Artwork Milestones". But it is showing to Edit Artwork Milestones Action only after page refresh but not immediately after the action submission. I used a local variable to call the record action with a!refreshvariable() but still it is not getting updated dynamically without refreshing the screen. PFA code and help me resolving this issue.a!localVariables( local!recordAction: a!refreshVariable( value: a!recordActionField( actions: { a!recordActionItem( action: 'recordType!{d1de8e89-4208-44d3-bb27-0306902c0671}RGRACSLBL Label Change Country.actions.{9cb9fc4e-57ad-4aaf-b21b-6dabf15c4a55}addOrUpdateArtworkDetails', identifier: ri!labelChangeCountry['recordType!{d1de8e89-4208-44d3-bb27-0306902c0671}RGRACSLBL Label Change Country.fields.{6c137b66-e39e-49a
Hi Team, I'm using API Key approach to access web api, is there a automated way to disable the web API to show error between 4pm to 8pm. Is there a approach to do that?
I have a requirement to generate a PPT files from Appian. Did anyone come across similar requirement. Will appreciate any suggestions.
I had written some logic that queried a record (expecting, and getting a single record, by passing a unique filter value) The query actually could return multiple records, so returns a List of the relevant cdt Then I tested a boolean field in that record is true or false, and returns one of two lists of items, for example something like this: if ( index(my_cdt, "booleanField",false), list_one, list_other ) My list was being returned but only with the first item in it! The issue is that the query returns a list of records, so the if statement parameter 1 is on a list type. An example of the logic I was actually executing was therefore: if( {true}, {1,2,3}, {4,5,6} ) This actually returns {1}, not {1,2,3} if( true, {1,2,3} {4,5,6} ) will return {1,2,3} as expected. Further example to show what's actually happening: if( {true,false,true}, {1,2,3}, {4,5,6} ) This returns {1,5,3} !! An easy mistake to make, so hopefully some one wil
Hello, I'm currently building an audit history for my job. The way our client wants the history displayed is grouped by the date that the history action is created on. So that the list sometimes displays 1 action per timestamp and sometimes 2 or 3 actions by timestamp. We have found a way to do this but it is complicated. I get all the values in the histActionOn, then I uses union() to get only the unique values. From this point I can do more complex indexing to organize all the actions by date, or I can throw a a!queryRecordType() in a for loop and filter it by the histActionOn field. This gets exactly what I need. A record list with actions separated by date and time, but it's incredibly inefficient as it puts a query in a for loop. I'm sure there's a way to group all the actions by unique dates, but I don't know a way at this point. Any thoughts?Thank you Jason
Hey, I try to find components through Object View search that still uses 23.3 version as we updated to 23.4. But, when I searched(in the expression), nothing showed up and there are no of objects with what I searched. Searched for 'buttonWidget_23r3' and no object is available: Just one of the component that uses 23.3 version component.
Hello, I am currently working on an application for training purposes. I have a process for adding a record and editing it. I had a sub-process for both, where I am sending an email to a user group whenever a record has been added or edited. I was able to make parts of the email dynamic (e.g. "Information about [dynamicName] has been [changed/added]), but I would like to embed a record summary view link in that email, so that users can navigate straight to the updated record from that email. Now, the urlforrecord() function generates a working URL, but it links to Tempo, and not the summary view of my record. I have been trying a few things, but nothing seems to work. I would be very much obliged if someone helps me figure this out. To sum up: I need to dynamically generate a URL to a record summary view on my site to embed it within the email body. Thanks!
I want to complete my L1 exam but the account I'm using is created by company's mail Id ,is it possible to merge 2 id's to same account so that i can have my certification linked to my personal account as well
Hi there, I hope the title makes it a bit clear what I am currently struggling with. I would like to set up a process that is triggered by inbound e-mails. As part of the process some information of the mail shall be written into the database via the "Write to Data Store entity" smart service. When I tried it first I encountered the error 'Details: An error occurred while trying to retrieve the data store entity [id=]. Verify that the data store and entity have not been deleted, and have the correct security settings. Details: User Does Not Have Rights to Perform this Operation '. After I adjusted the Data Store security settings to Viewer rights for ALL users, the process ran successfully and the data entry was written to the database. However, I have some concerns about keeping the security settings of the Data Store set up like this. Except for the handling of the inbound mails only dedicated users of the company shall/need access to the application
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.