-
Recently active
Hi I have a Record Type on which I made a record action and I have a model process that opens from a grid. In my process I fill a form and at the end I update the sastus on that record, in the application it refreshes because I have set to refresh after the record action is done. My problem is that on one of the fields in the grid I need to send my Record to do some calculations and this is where the problem occurs. So my problem is how can I make to send data to an expression rule when the data in the localVariable is doing its refresh.
I am not able to select multiple options from the drop down menu.getting error getting below error if I select multiple options for franchise and country
Hi All, Is there a way to restrict incoming deployments in Appian?[Deployments should be restricted if the deployer is not admin] Thanks, udhaya
Hi all, I have a list that I need to display the fields dynamically for, and one of the fields are a list. Right now I am using a styledTextEditorField for users to input a list, and the output is in HTML format. The document template I use so far is this - «@before-row[#list doc.notes.note as n]»«${n.@title}» Reports(s): «${n.@reports}» «${n.@noteText}» «@after-row[/#list]» The noteText must be a list, and if I try to export with the noteText as is, it just exports the html directly like <ul><li><p>edit 1</p></li><li><p>edit 2</p></li><li><p>edit 3</p></li></ul> When I try to replace the special characters in the XML generation it throws an error "The value of attribute "noteText" associated with an element type "note" must not contain the '<' character."(Text)
Hi everyone, I'm struggled with the next case, we have a gridField, where we are showing a list of objetcs returned by an API. One of the columns in that gridField is desired to make able the user to download a file given a property of the object which is an url, lets say the "X" url, here is the issue that URL only responds with another url having a presigned URL for a file in s3 bucket, lets call it the "Y" URL We were wondering if it is possible to make the user reach the "Y" only clicking 1 button (or link) in order to make the presign only when the user request the files, because we know it would be easy to call every "Y" URL the presigned ones if we load all those at the start time, the thing is we dont want to do it, we just want to generate the presigned file when the user request one by one. By the way the X URL is already configured as an integration, and we dont want to use appian file system and try to avoid as much as w
Hello All, We are encountering the below error after upgrading to v24.2 on some of the interfaces. Has anyone else encountered something similar? If yes, do we have any workaround for this bug? The 500 errors were due to the error: Caused by: com.fasterxml.jackson.core.exc.StreamConstraintsException: String value length (20054016) exceeds the maximum allowed (20000000, from `StreamReadConstraints.getMaxStringLength()`) FYI: We assume that as part of v24.2 some restrictions were imposed on Max String Length and We have already raised a support case and Product team has identified this as a product bug and they are working on addressing this. However, we could not find any workaround for this. Any suggestions or ideas that any of you may have would be much appreciated. Thank you.
Hi Appian community, happy summer, I have a use case where there is an interface with buttons (Approve, Deny, and Back) on a site page. I initially set the Approve and Deny buttons up as button widgets and had a startProcess function inside. However, this approach will not display the "wait screen" after triggering the process that is towards the end of the process to "buy time" and to allow the previous request that the user clicked Approve or Deny to disappear when the user clicks FINISH on the wait screen and returns to the site interface. Therefore, the user experience is returning to the site too early to still see the original request on the screen after the user already chose Approve/Deny. Then, I tried using submitLink which allows startProcessLink and wrapped it in a cardLayout in lieu of button widgets. This approach allowed my chained process to display the wait screen. However, the drawback is there is no way for me to have a confirmation window pop up.
hi, I have two arrays,{"","1"} and {"2","3"} I want to merge them, but exclude null and have something like this {"1","2","3}. Any help is appreciated
Hello everyone, I'm trying to retrieve logs using the Log Reader plugin. I've encountered an issue. When the log file exceeds 10 MB, the previous log data is stored in a file named "xxx.csv.1," and the original log file ("xxx.csv") is initialized. I can successfully retrieve log data from "xxx.csv," but I'm unable to access the data in "xxx.csv.1." According to the Log Reader documentation, it should be able to read "xxx.csv.1." Is there something I'm doing wrong? Any advice would be greatly appreciated.
Under user Profile - > Academy Achievements -> Not all completed ones are reflected. Lock symbol is still on. community.appian.com/.../achievements
How to validate a uploaded file directory with a value in a text field
Hi all, I would like to use the styled text editor field in place of paragraph field to be able to use bulleted lists, but there is no refresh after keypress that we can set. How can I mimic this refresh functionality with a styledTextEditorField? I have something like this: a!localVariables( local!origNote, local!newNote, a!styledTextEditorField( label: "Edit Note", value: local!origNote, sizeLimit: cons!ERR_MAX_CHAR_NOTE, /*refreshAfter: "KEYPRESS",*/saveInto: a!save( local!newNote, ) ),)
I'm creating a line chart where I want to display a sum of transaction amounts per last 6 months. The expression for the linechart component is the following: a!lineChartField( data: 'recordType!{2e778cbc-bcd7-48a6-bda3-2f52ac5e15d0}W0592PF Transaction', config: a!lineChartConfig( primaryGrouping: a!grouping( field: 'recordType!{2e778cbc-bcd7-48a6-bda3-2f52ac5e15d0}W0592PF Transaction.fields.{012826cc-c147-43c8-8171-e9c1cc8990bd}date', alias: "date_month_primaryGrouping", interval: "MONTH_SHORT_TEXT" ), measures: { a!measure( function: "SUM", field: 'recordType!{2e778cbc-bcd7-48a6-bda3-2f52ac5e15d0}W0592PF Transaction.fields.{53db9671-69f5-4d88-b573-89f591e99754}amount', alias: "amount_sum_measure1", formatValue: "DOLLAR" ) }, sort: { a!sortInfo( field: "date_month_primaryGrouping", ascending: false ) }, dataLimit: 6, showIntervalsWithNoData: false )
Dear all, Imagine that I have a Cognito pool with identities. I would like to ask if there is a chance to expose a link to Appian login page and authenticate users through AWS Cognito? Could someone give me directions if Appian supports an authentication flow through Cognito? Did anyone accomplish that? Regards, Dimitrios
I am an trying to verify column type of each row in excel sheet against an array having type numbers TESTCASES: test1:{"1","abc"} passes test2:{"abc","abc"} also passes which should actually fail .Please let me know where it went wrong code used , local!error:a!forEach( items:index(ri!data,"values"), expression:{ a!localVariables( local!rowNumber:fv!index, a!forEach( items: fv!item, expression:{ if(a!isNotNullOrEmpty(fv!item), if(typeof(cast(local!types[fv!index],fv!item))=local!types[fv!index],{},"Type does not match at Row"&local!rowNumber&" and column"& fv!index), {} ) } ) ) } ),
I am getting this error "Could not display interface. Please check definition and inputs. Interface Definition: Expression evaluation error at function a!forEach [line 40]: Error in a!forEach() expression during iteration 1: Expression evaluation error at function a!dropdownField [line 65]: A dropdown component [label="roleName1"] has an invalid value for "value". All selected values must be present in the choiceValues array, but value was Role1 and choiceValues was Role1; Role2.".Could anyone please help me to resolve this error a!localVariables( local!jurisdictionTask:{ a!map(id:1,taskName:"Task1",taskDescription:"Upload Document1",jurisdictionName:"Arizona",roleName:"Role1",applicationType:"Application Type1" ), a!map(id:2,taskName:"Task2",taskDescription:"Upload Document2",jurisdictionName:"Arizona",roleName:"Role1",applicationType:"Application Type1"), a!m
Hi Everyone, I have one requirement whenever any new request/case created auto refresh the Appian site tab. Example initial my site tab name as "Cases (10)" and whenever another case created from different source (Ex:Email), would like auto to refresh the tab name as "Cases (11)". I have tried with refresh variable, but it is not working. Can you please share any other workaround to achieve this functionality. Please let us know, If any queries. Thanks!!
I have a excel file where there are too columns one is constant name and another is constant value .I need to upload a the file in an interface using file upload component and after clicking a submit button in the interface i need to fetch the data in the excel and update the constant values for respected constants . will anyone please guide me to achieve this scenario ?I have also given the snap of the excel sheet ,please find that below. Thanks in advance !
I have webAPI in Instance A expecting a small set of json payload(4-5 field), nothing crazy. I have Integration build on Instance B to call the WebApi of instance A. Passed the API keyfrom Instance A as needed to instance B. WebAPI --> API Key --> Integration etc. I am receiving weird error, looks like some authentication issue but is coming in HTML format and could not get more info from logs either. Saying JSON is invalid but JSON is valid. Can someone please help me on this? HTML error received: document.addEventListener('DOMContentLoaded', function () {document.forms[0].submit()}) Note: Since your browser does not support JavaScript, you must press the Continue button once to proceed.
[mention:c7afb0bb88314bb8a11cebc4007e5b18:6b577b8c04704e209d29b6772bf67243] This link is applied only to 17.1 through 19.1 using SAML authentication, not really helpful for 24.2. is anyone aware on how to fix this? If i pass ?signin=native as mentioned in above link, receiving 401.
I'm connected to Salesforce and have mapped fields to display in a list, but only a few of them are showing in the Record List. However, when I fetch the data, I'm able to retrieve all the fields. Why aren't all the fields appearing in the Record list?
Hi, at the beggining of this year I implemented an embedded interface with an external sistem and it was working fine (log in on the external site was with Appian native authentication by navigating to suite/?signin=native) but now we had to add OpenID Authentication for logins and those user who where on the SSO Group were not able to access trough the native url anymore. With this change, the users that access trough the external site with the embedded appian interface were not able to connect anymore. Only those who were not in the authentication group could. Does anyone know what could have happened? And how to solve it?
Hello, i needed some help regarding the mail i am currently logged in with, can i give the ACD100 exam using this mail id? I heard my friend saying you might require a company mail id for that purpose, can i know what's the which kind of mail id do i require and is it attainable?
Hi All, I have made my Appian Environment through appian community, but i am not able to see admin console and Appian cloud database. they are giving me the basic user permission not system Admin. earlier we are able to see Admin console and cloud database but for new version we are not able to see admin console. so how we can connect data source how we can see value in database if appian cloud database is not visible.
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.