-
Recently active
Hi All I am working on the Appian portal and trying to upload more than 1 file at a single time, I used maxSelections in file upload field but its not working I am using record Type and local variable because we can't use rule inputs in the portal. Below is my interface code and CDT .
Hi everyone, I need to track my company distribution list (contact group) on outlook email. It should work this way: Sombody sends an email to my distribution list. Receiving the email to my inbox is an action that triggers appian process with parameters extracted from that email. The distribution list that I need to monitor has company domain and it is not on appian cloud. I checked the Receive Message Event documentation but I am still not sure how to approach this task. Thank you in advance,Marcin
Hello i'm just trying to get the name of the past month, im using this code: proper(text(today(), "MMMM")) But it only generates the name of the current month Thanks!
Hi All, I have the requirement to close the process task after clicking over the button in interface? Can anyone please help me out?
Hi all, I have use case where i need to separate the characters & integer value example- I/p: "ABCD1234" output: ABCD, 1234 , i/p "A22B45" o/p: AB , 2245 Thanks in advance
Hello community, can anyone suggest me how to get second highest number from an array. Thanks in advance
I have used nested foreach and cardlayout inside that im getting the below output. Below is my code. a!columnsLayout( marginBelow: "NONE", spacing: "NONE", columns: { a!forEach( items: 1+enumerate(2), &nb
We have an bug where: WHEN a user is in a user input task and allows the timer (1 hr) to terminate the task THEN they are stuck in this screen and not able to close out of the task with the EXCEPTION of closing out of the tab. My question is besides extending the timer is there any way to circumvent this error or allow users to exit out of the dialogue box without closing the tab?
HI, I have a requirement to display Week Calendar with Meeting conflicts., Used event time line with details pattern and managed to design below calendar Calendar timeline divided into 30 min sections as meeting possibility 1 or 1.30hr etc. the issue here is meeting one starts at 11 am and end at 11.30 , it should show meeting tag starts from 11 am and end at 11.30 but it showing two different tags for meeting1, one at 11 am and another at 11.30. if there is another meeting same time meeting2, it should show beside to that, and both should be in red. since i have divided timeline into 30 min blocks , i am not sure how to combine two meeting tags if meeting falls for more than 30 min? Below is the code: a!columnLayout( contents: { a!forEach( items: local!CalenderTime, expression: a!columnsLayout( columns: { a!columnLayout( contents: { a!richTextDisplayField( labelPosition: "COLLAPSED", value: fv!item.updatedTime, align: "CEN
Hi, We have a use case whereby we are looking to do some integration to DevOps and deploy certain packages as needed. Currently using an four on-prem, azure environments (Dev/Test/PreProd/Prod). What we are looking for is some sort of UI (which we can design and build) where we can select from a list of packages and send this to devops or network location which would then initiate a pipeline release in DevOops and any automated testing that is required. I've had a look and from what I can see, the information relating to packages i.e. names, objects within etc, is not something I can find. Is this because the information is within the Appian system database or is there a plugin or functions available that I can use to gather this information? UI would consist of a drop down with all packages on that environment. Option to group 1 or more into a bigger package, perform 4-eye review on it and then send to devops. I know this will need to be built etc but need to fig
How can we compare now() with the date for example dueDate if its ON TRACK or OVERDUE?
Hi there, Is there a way in Appian of searching all the application objects for the objects which contain certain function or string? just like search/find function of those code editor. it will return the files/or even the location in the file. Best regards, Lin
i have a requirement to generate the PDF through XSL-FO In table i have a text like 2000 characters in table cell without spaces i need to wrap that text XSL Code: PDF:
Hi Everyone, I am trying to execute this Stored Procedure in Appian Maria DB and unable to check how to declare variable in Maria DB. Please let me know if any thoughts, BEGIN DECLARE COUNT1 VARCHAR(1) DEFAULT 'S'; DECLARE CUR2 ROW TYPE OF SDP_TEST; DECLARE cur1 CURSOR FOR SELECT * FROM SDP_TEST; OPEN cur1; LOOP FETCH cur1 INTO CUR2; IF CUR2.id = 6 then UPDATE SDP_TEST SET id=8,name='Peter',address ='USA',job='Analyst'; SET COUNT1 ='Y'; END IF; &nbs
Hi, We are looking for a way to split a large document into small documents of size we want. Is there a way we can achieve this in Appian, please share if any Thank You
for certification exam, does it have exam fee? what and all we need to prepare for exam. because we will be working on some concepts some concepts, we have not touched while working
Hi Guys. Im trying to make a function where the string contains half-width and full-width spaces, the first and last spaces will be removed. When i used the trim() function in appian it only trim(beginning and trail) half width spaces but if the spaces are full width it will not trim. so i tried to trim and use the substitute function like this: trim(substitute(ri!value," "," " )). It does trim the value perfectly, but it will also substitute the spaces in between the value where it shouldnt be. Example process: "<full-wdith spaces>he<full-wdith spaces>ll<full-wdith spaces>" after executing the process: trim(substitute(ri!value," "," " )) result: "he<half wdith space>ll" expected output should be : "he<full-wdith spaces>ll" Do you have any other idea to perform the desired process? Thank You guys [emoticon:2e0881b394ea47039c4b7e5eed46a79e]
I have two interfaces and want to switch between them but my process variable doesn't interact. when I click the "Edit Mode" button in the interface, the process variable doesn't change and the process stays in view mode.
Zuuup, people ? So, I've created a releated action and added it to a interface. All following the usual, nothing exceptional. However (of course, otherwise this post wouldn't be necessary), the follwing message poped up when I tryied to click on it. I reviewed security settings for this action and releated items to it. All looks ok. Any suggestions ?
How can I add a row that calculates all the rows above: id number 1 20 2 30 sum 50 something like this. tnx
is it possible to change the cell background color when the value of the cell is null?
i have an requirement of optimising below grid column , in the value of grid Column i am fetching the required value from query rule.But i have to declare query rule in local variable first and then i have to use how shud i fetch the relevant value after using in local variable . a!gridColumn( label: "Data Type", value: index( rule!WFM_qeGetLookupRefDataByInput( isActive: true(), lookupRefId: fv!row['recordType!FWM_record.id] ), "label", {} ) )
Hi, I am getting data into a Process Variable like below inside a process model Name Type Multiple Value -------------------- ---------- ---------- ------------ listOfSubmitters Text Yes [addedby:AA1234]; [addedby:AA1235]; [addedby:AA1236] Now, when I try to access the index 1 value, nothing is coming out. Any guess what went wrong
Hi Guys, I have a query entity rule which is failing to retrieve data when I run for the first time in a day. If I run again, it's working as expected. This behavior has started happening recently(it was running fine from long). I looked into the logs and I am not finding the error. We use on-prem servers and DB is oracle. Thanks in advance
I need to know our Appian Instance IP's. where can i find it or do i need to raise support case to get it?
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.