-
Recently active
Hello! My issue is as follows: The app serves the purpose of office desks' management, where desks can be booked by users for periods of time. For this case we have two recordTypes: "Desk" and "Booking", and a foreign key that connects them. The "Book this Desk" record action saves the "bookingNumber" to the Desk recordType, but the data for the booking itself is stored in the "Booking" recordType. One of the requirements is that a priviliged user shall be able to book multiple desks for a group of users. We figured that these priviliged users will create groups through the Create Group Smart Service and therefore the Booking will be assigned to a group. That should work fine for assigning multiple users to one Desk, but is there a way to take action on multiple recordsTypes? In this case, to assign one group of users to multiple "Booking" recordTypes, each of which will in turn be assigned to multiple desks (one "B
Hi, To get a value from a memory CDT list (not a table) on a single field condition, I use Index(CDT, whereContains(value, CDT.field2)). In SQL : SELECT * FROM table WHERE field2 = value Is there any way to do the same thing with Appian fonctions when we need to make a lookup with an AND condition ? Ex : SELECT field1 FROM table WHERE field2 = value AND field3 = value Otherwise, I would do it with a simple foreach(). (PS : My question, is "not" about how to query a table with multiple logical conditions of queryEntity [emoticon:bfea11b94cc048458ee2c01f963db38d] )
Hi there, I have database table, one field "matnr" configured as varchar, can be NULL, but when setting it to null or NULL in the process model, then writing to database (pic 1), the field value is not NULL, while kind like empty (pic 2) . I am trying to create a expression rule searching the information with this field "matnr" without value, set "matnr is null" is not working. what's the way to do this? why Appian condition "is null" in Query editor does not work for empty field as other languages? regards,Lin
I deleted some rows in DB and the data in record type was not updated accordingly. I've checked the tab Sync Options in record type and there is a button Start Full Sync. I'm wondering if it will affect the DB when I click that button to sync data manually, as this record type is scheduled for full sync at another time, and I want my record type data to be updated immediately. Thanks for any advise!
Hello, I'm not quite sure if I'm working with this pickerFieldRecord correctly (it is not saving any value in the rule input) and I don't understand why it says that "idSkill" is type Text because it isn't... a!localVariables( local!Skill, (...) a!pickerFieldRecords( label: "Competências", labelPosition: "ABOVE", placeholder: "-- selecione uma ou mais competências --", maxSelections: 3, recordType: 'recordType!{b10f5f28-725c-4c8b-a211-776386be5222}RM_ref_Skill', value: ri!recordCandidateSkills.idSkill, saveInto: {local!Skill, a!save( ri!recordCandidateSkills.idSkill, if( a!isNullOrEmpty(local!Skill), {}, a!forEach( local
Hello, The following error appears when I try to excecute the function fn!executestoredprocedure() LOG TomCat: ERROR com.appiancorp.ps.function.ExecuteStoredProcedureFunction - Error executing What can be happening?
Hi All, I am new to Appian programming, and here I need your help; I have CDT, and based on the below screenshot, I need to remove the 5th record based on the following conditions. The Person id duplicates, and ChildCustodialTypeId is NULL. In this scenario 5 the record I want to get rid of when I call the CDT, so please let me know how I could do this successfully.
Hi, Does Appian have the functionality to store when a user logs in, what are the reports he downloads, how much time he spends on a particular tab? Does Appian maintain an Audit trail of users? If yes, how can we get access to that?
Hi guys, why when I try to create a rule input in expression rules editor, it told me could not find the variable?
Hello Appian Comunity, Can you pls let me know and explain which is the proper expression rule when configuring the visibility field for the " only show when " option on the record type object? What I´d like to do is to show the image of the car when available. As I have it right now it doesn´t show the image on the record list. also, can you pls help me understand why if I have the following configuration on the display value, and on the visibility, field selected " always show " I get the error? Thanks a lot.
I Have a Form in wich I upload documents. It works well.When using Update action, I need to see what documents have been uploaded, keeping the possibility to add more documents.How to?
Hi everyone, I'm filtering this record to only query cases with completed date within nearest 5 days. My query code is as below: a!queryFilter( field: recordType!Record.completedDateTime, operator: ">", value: datetime( year(now()), month(now()), day(now()) - 5, 00, 00, 00, 00 ) ) The code worked well last week, but this morning it suddenly showed this error: The Requested Record Type Is Not Available The default filters expression for record type failed to evaluate. Details: [Expression evaluation error at function a!queryFilter [line 4]: Date out of range: Invalid day]. (APNX-1-4205-018) I've checked the DB and data for this column was the same structure as last week: datetime /* mariadb-5.3 */ . For example: 2022-08-01 04:14:49. Any one has faced the same error code? Please give me some suggestion if possible... Thank you!
unexpected end of json input while trying to view summary view from record list can anyone explain why it has occured
Hello We have recently upgraded to 22.3 on-premise installation and using SQL server as data source. In the new release of 22.3 its mentioned you can create New Data Model in Record page and design the columns within the Record itself. However, this option isn't available in our environment (link below). see attachment/resized-image/__size/320x240/__key/communityserver-discussions-components-files/16/Screenshot-2022_2D00_08_2D00_29-105432.jpg My question is, is such feature is available only for Cloud customers or there additional configuration is required to see such option. Best regards, Khaled
How to save a value of local variable to rule input.
How to implement while or do while logic in expression rule?
I am trying to display a read only grid by using expression rule which is basically a query. But I am getting some error when I'm trying to do.This is the error."Could not display interface. Please check definition and inputs. Interface Definition: Expression evaluation error at function a!gridField [line 5]: A grid component [label="Read-only Grid"] has an invalid value for "columns". A grid column [label="A Id"] has encountered an error. Expression evaluation error: RTA Customer Data can only be indexed into using square brackets or the index function"Can someone please help me how to solve this?
Help please I want to store a multipledropdownfield into my cloud database I add the multipledropdownfield, if i pick only value, it works great (see the image bellow) If i pick or select TWO or more values, an ERROR appears (see the image bellow) This is the expression of the multipleDropdownField { a!multipleDropdownField( label: "Acceso a servicios basicos?", labelPosition: "ABOVE", placeholder: "--- Seleccione ---", choiceLabels: { "Agua", "Luz", "Teléfono", "Internet" }, choiceValues: { "Agua", "Luz", "Teléfono", "Internet" }, value: ri!CWA_OECClient.coecaccesoservicionbasicos, saveInto: ri!CWA_OECClient.coecaccesoservicionbasicos, required: true, validations: {} )}
I was going through the article, https://community.appian.com/w/the-appian-playbook/2500/data-migration-to-new-schema while moving the data from source table to target table getting the below error #1100 - Table 'tablename' was not locked with LOCK TABLES Locking the target tables allowing the code to work smoothly. Please make the correction in the article.
Hi team, I am trying to save data in Appian db. I am using the records to fetch the data. I have created a record action for data creation too but that is not working fine. When I click on the above create suite option, it opens up a form like below:- The expression rule for the above form is given below- [At line 16th, If I put value: local!UUID, it does not works but if I put value: ri!record.uuid, I am able to save the data in db. But I want to save a auto generated UUID and hence used local variable] a!localVariables( local!UUID: rule!BTUA_GenerateUUID_Expression(), a!formLayout( label: "Create Suite", contents: { a!columnsLayout( columns: { a!columnLayout( contents: { a!textField( readOnly: true, label: "Uuid", labelPosition: "ABOVE", required: true, value: local!UUID, saveInto: ri!record.uuid, charac
Hello All, I am having a requirement to import lakhs of rows data into the Appian database by using the smart services as we need to give the file upload functionality to the user. Can anyone suggest the best way to achieve with the best performance. Thanks in advance.
I want to compare the different time zone applied all possible functions but not getting the actual output: "2022-08-19T12:33:52.4670000Z" <= now() I applied gmt function but getting output like this Date out of range (2147483647)
Hi Team, We have a grid which shows data from record type where we pull data from DB table. We have a column which is integer in DB table but in the grid we have shown the value with a text prefix. We want to search the grid with the value shown in grid. Example -- In table the value is stored as 123, we are showing in grid as TXT123. I want to search the grid with the value "TXT123". While searching it does not show any value but with 123 it returns me the row. Please let me know if we can search the grid with value TXT123 and how to do it. We would want inbulit feature of Appian grid search. Thanks in advance
Hi All, I am using an existing table which is having around 61 lakh something data as a source to my record. There is no particular source filter to add so I have added filter to my primary key to display record within appian's sync limit. But while I am using search Text in record I am not getting the value which is beyond the source filter limit. Is there any solution to overcome this issue. Thanks & Regards, Kavya
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.