-
Recently active
Hi, I am trying to pass the timestamp value which is of type text in CDT from upstream through webapi. The milliseconds part is getting rounded off automatically Value from Upstream: 2022-11-21T09:00:56.998992Z Roundoff Value: 2022-11-21T09:00:57Z Expected format : %Y-%m-%dT%H:%M:%S.%fZ" But I need to send the same value from my upstream to my downstream system Any solution for the above please?
Hello, is there any way I can remove this window from the SITE and directly start from the Login Page? I also Removed the My Learning Journey Contact Appian (Sign-in Page Links) from the Admin console but it is not reflecting on the SITE.
Zup, people ? So, I'm trying to tigger a action after some task is reassigned, due my business rules. I have to change a record in database, for example. Is it possible ? thanks for ur attetion in advance!
Hi everyone, I am trying to reassigning task from one group to other group by using Reassign smart service but it is not working. As a Appian designer I have administration permission if I initiate the process model that time reassignment work properly, but the same process model if I use as sub process than its not working.
Hi Guys! I have these Data Store mapped on the appian cloud. And as shown on the picture below it was successfully verified. However when i checked on my appian cloud there are missing database table which are not visible. Only the highlighted items shown on the picture are visible on the appian cloud.(see below) I already save and published it many times, refreshed the browser on the appian cloud but still not working. Is anyone has any idea on how to fix this? Thank You!
expected output : textShouldBeInCamelCase
Hi, I have written down a code to calculate this, please let me know if it can be more refined. a!localVariables( /*rule inputs local!StartDate, local!EndDate*/ local!StartDate:todate(ri!StartDate), local!EndDate:todate(ri!EndDate), local!WorkStartTime:time(2,0,0,0), local!WorkEndTime:time(10,0,0,0), local!StartTime1:totime(ri!StartDate), local!EndTime1:totime(ri!EndDate), local!StartTime2:if(local!StartTime1local!WorkEndTime, local!WorkEndTime, local!EndTime1), local!EndTime: if(local!EndTime2local!WorkEndTime,local!WorkEndTime,local!StartTime2), local!StartDateTime:datetime(year(local!StartDate), month(local!StartDate), day(local!StartDate), hour(local!StartTime), minute(local!StartTime),second(local!StartTime),milli(local!StartTime)), local!EndDateTime:datetime(year(local!EndDate), month(local!EndDate), day(local!EndDate), hour(local!EndTime), minute(local!EndTime),second(local!EndTime),milli(local!EndTime)), local!ElapsedDays:elapseddays( local!
There are two column layout when you zoom out in the browser they move apart one to left another two right I want them to stick together Any solution for this
I have an application has a lot of objects I don't want to import. Most notably it has a data store which taking it will result in a massive amount of extra data types and baggage. All I care about is a process model I have copied. All of its dependents have been brought in to a new application I am using to package up and import. I am getting some cascading and normal errors that seem to stem from me being unable to import the datastore. What can I do to decouple this datastore from my application for importing? I already created a new datastore in my environment I am trying to move export it to and created any constants there that pointed to the data store entities inside it in the old application. In summary what do you do if you want to bring in portion of an app but don't want to bring in the data store entity it had?
If i delete tempo reports in lower environment same change should reflect in higher environment i.e auto deleted while deployment . Is this possible ? If not how to achieve this..Because I don't have production access to delete
20000000 is displaying as 2e+07.
Hi all, How can we embed External Interface into Appian, such as a Tableau dashboard which is Published on a Web Server. i have used webContentfield(). a!webContentField( label: "Tableau Dashboard", labelPosition: "ABOVE", height: "MEDIUM", source: "xxx" ), i am getting below error
The Appian Product Management team is prioritizing ways to make application design more efficient. Please consider helping that effort by taking this brief survey so we can learn more about which recent features have made your development faster and what is still slowing you down.
Hello,, using v22.3, there seems to be a limit of 10 documents that can be added to application documentation. Is this a configuration setting or simply a hardcoded value.
Hello, I am unable to save to data store using write to multiple DS smart service. For the context, I am trying to save data to 10 tables at once.
Hi Guys! I have this expression rule: { a!update( data: ri!holder.name, index: local!indexValue, value: "test" ) ), a!update( data: ri!holder.age, index: local!indexValue, value: 23 ) ), a!update( data: ri!holder.married, index: local!indexValue, value: true() ) )} This is my current process to update the CDT value of ri!holder.name, ri!holder.age, and ri!holder.marriedMy CDT holder contains: name(array of text), age(array of number), married(array of boolean). Expected ouput should be:[name="test",age=23married=TRUE] However Im getting a List of variant where all the values are stored in ri!holder.name:[name="test";20;TRUE] Do you have any ideas or suggestion on how to get the expected output?Thank You!
Hello Team, Please, do you know of a command in linux that can help grant a user account read,write,execute when configuring a linux box. When installing appian, I keep getting permission issues when executing the search server. Is there a way to fully grant a user full permission to a folder and sub folders in Appian - Linux? Thanks error when using root account: Future versions of Elasticsearch will require Java 11; your Java version from [/home/appian/java/jre] does not meet this requirement. Consider switching to a distribution of Elasticsearch with a bundled JDK. If you are already using a distribution with a bundled JDK, ensure the JAVA_HOME environment variable is not set.warning: no-jdk distributions that do not bundle a JDK are deprecated and will be removed in a future releasewarning: usage of JAVA_HOME is deprecated, use ES_JAVA_HOMEFuture versions of Elasticsearch will require Java 11; your Java version from [/home/appian/java/jre] does not meet this requirement. Consider s
Hello, Is there any workaround using Create User Smart Service. Non Administrator User to be able to create new users ?
Hi! We are currently passing in a folderId over a WebAPI call to Appian - from there we are using a!startProcess to run the Document Zipper smart service to zip the folder and output the resulting documentId. Is there a way to allow the resulting zip document to be downloaded via the WebAPI call, or will I have to use some workaround like using an additional GET method to pull the document after using POST to run the smart service? Thanks!
What are the challenges You people faced while developing ? How did you resolved it?
Just Installed Appian on Linux (Centos) But the site is not redirecting to /suite page. What am I missing? I get the error below when I load the site Any help will be appreciated. Thanks
a!formLayout( label: "View Document", contents: { a!sectionLayout( contents: { a!documentViewerField( label: "Document Viewer", labelPosition: "ABOVE", document: 5080, height: "MEDIUM" ) } ) }, buttons: a!buttonLayout( primaryButtons: { a!buttonWidget( label: "Submit", submit: true, value: "Submit", saveInto: ri!buttonvalue, style: "PRIMARY", loadingIndicator: true ) }, secondaryButtons: { a!buttonWidget( label: "Back", submit: true, value: "Back", saveInto: ri!buttonvalue, style: "NORMAL", validate: false ) } ) ) I want to see the document in the interface with the help of this code but I am not able to do this. Its directly download the document how can I see the document ?
Hi, i am getting this error but there is no further information on which expression rule might be causing this. Checked the tomcat logs but the stack trace does not show any further useful information either. Error evaluating UI expression Expression evaluation error [evaluation ID = 43f47:2469d] : Invalid index: Cannot update value of length 5 by assigning value of length 1 Anyone can advise on how to troubleshoot this error further?
Hii All, I have one dropdown field in my interface , which is consists of 12 items in those 12 for 5 items , if i select particular item one integer field should be visible . the thing is if anyone of the item selected in those 5 items the common integer field is to visible , if we select remaining 7 items in drop down the integer field should not visible note only single integer field is used in interface we need to map 5 items in the dropdown out of 12 to a single integer field to give visibility based on selection IN 12 ITEMS : 2 OR 3 OR 7 OR 8 OR 10 is selected then only the integer field should visible or else disable the visibility please help me on this thanks
Hi Team, I recently took Appian Associate Developer certification got my certificate. There is a name mismatch between the last name I provided in my Profile and the certificate I got. Could anyone please tell me how to correct this name or whom should I contact. I have contacted Examity support but they told that they doesn't have controls over it. Thanks in Advance
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.