-
Recently active
Is there anywhere we can download Appian Icons to be used in a wireframe or a UI/UX mock up? Thanks.
We are on Appian cloud version 21.4. Recently we started seeing the following message when process completes. We can't seem to find what's causing this or how to turn it off. The same process in a different environment with different Appian Version does not show the message. FYI: This is not an embedded interface. It all within the Appian Platform. Does anyone have any insight on this?
"
Hello, I was looking for differences between Start process smart service and User input task. Please help.
Hello everybody, I have the following snippet [View:/cfs-file/__key/communityserver-discussions-components-files/11/snippet.txt:93:126] that generates the following screen. I would that Fitnesse click on the second item generated (the link "Massive loading") so I wrote with following script !| script || click on link | Massive loading | but that did not work, it showed the following message: Timeout period reached: Wait for Link - Massive loading I tried then with !| script || click on link | COLUMN_ONE_TEXT[2] | but nothing again, it showed the following message: Timeout period reached: Wait for Link - COLUMN_ONE_TEXT[2] By the way, I have read all tips in cheat sheet but I did not find any effective suggestions. Could you please give me some help or useful hint? Where I am wrong?Thank you in advance, best regards.Paolo
Hi, Can we acheive auto tab fucntionality in appian? Once user enter 5 characters in current text box, automatically cursor should move to next text box in grid Please suggest Thanks,
Hello All, I have a XML generated and wanted to write the data in the xml format. But when I generate the document, To explain my xml is in the below format <Doc> {data <exp> {data <exp1> {data} } } </Doc> I have the attached the xml out and the template I'm using to generate the document. Can anyone guide where I have gone wrong since the data is written for each row . I need to show only the data how it is generated in the XML file. [View:/cfs-file/__key/communityserver-discussions-components-files/11/XML.xml:320:240] [View:/cfs-file/__key/communityserver-discussions-components-files/11/0728.Template.docx:320:240] [View:/cfs-file/__key/communityserver-discussions-components-files/11/2323231001-_2800_1_2900_.docx:320:240] Thanks
Hi, Is it possible to use a!pickerFieldCustom() for dynamic inputs? For example, while I type a word in a!pickerFieldCustom() component, it has to filter from the database and show the returned query in the a!pickerFieldCustom() component dropdown. Thankyou.
I am facing this error in UI when m trying to modify the UZ. Code which I used is below: a!localvariable( with( local!uzReadOnly: rule!TM_QR_getListUzById(UzIds:ri!formReportableSegment.UzId), a!sectionLayout( label: " Details", columns:{ a!textField( label: "UZ", labelPosition: "ADJACENT", value: local!uzReadOnly.UzCd & " - " & local!uzaReadOnly.UzName, readOnly: true )}, I tried indexing it but still throwing same error.
Hi, I am having 2 interfaces (Form A and Form B). Calling form B from form A through startprocesslink. If click cancel button then form A get refresh with new instance. Save click is working well. How to fix this? Regards, Khan
Hi All, Where can we find Appian Quarterly Release training. And if we complete the training, where can we find the new expiry date of certification. Will we get any notification on release of new training courses? Thanks in advance.
Hi Team, we have an on premise Appian 21.X setup. For some of our end users, who are external users of the application, are using VPN to access application. They are currently facing issue as below the files are dragged on the form (max 2 at a time, avg 5 MB file) Form is submitted user waits for the upload to happen but it fails to happen or sometimes take time for user to keep waiting for file to show While looking at File Upload component documentation, I see below. Temporary files When a file is uploaded, the component updates with a temporary Document representing the uploaded file. Between the upload and the form submission, the file on the server is an inactive temporary file and not accessible except through fv! variables described in the File Name, File Description, and Validations parameters. This is the only way to access file metadata before the form is submitted. If a file is uploaded to a form that is never subm
Hi All, I am using custom picker to select the account managers. So in the current screen, when the user selects the account manager it displays me the selected user in custom picker. But when it goes to the next screen(used the same UI as previous one),it is not showing me the selected users in custom picker. The reason is I am using local variable for value parameter in the custom picker since the field which i am trying to write in DB is of type varchar. Can you please help me to populate the data to the next screen and also to allow it for further selection. Thanks in Advance!!
Hello, I may be just overlooking but is there a way to have the record type * Feed list * displayed on an interface page. I normally use the grid list but would like the feed to condense space. Please let me know, Thank you!
Hello All, We have 21.4 version running on our server and have two languages locales enabled en_UK and en_US We have a requirement to set the Locale settings especially primary locale to en_GB for all the users on Appian one time ...Currently its not consistent across the users. how to do this one time for all users ? Regards Shiva
Hi, Suppose, I am adding some users to a group using an interface and when downloading that user names as Excel format I want the user names to be separated by comma in my excel sheet. Can anybody help me how to do it?
Hi team, I have scenario where I need to upload the excel documents, By using the excel data, I should get the data into my interface. example in the below format, 1.I should get the drop down to the Field type component (if i give the drop down field in the excel) Can you please guide me for this scenario.
If a variable does not have a value save into it how do you hide it in the interface? This was my attempt at it using the showWhen variable: a!dateField( label: "Tier 2 Findings", labelPosition: "ABOVE", value: ri!svcRequest.tier_two_date, saveInto: {}, showWhen: if (ri!svcRequest.tier_two_date, true, false) , readOnly: true, validations: {} ),
In our system a user can enter up to 3 studies but only one is required. My current work around is saving any studies not entered to "N/A" if( isnull(ri!svcRequest.study_two), { a!save(ri!svcRequest.study_two, "N/A") }, {} ), if( isnull(ri!svcRequest.study_three), { a!save(ri!svcRequest.study_three, "N/A ") }, {} ),Issues is In the follow up email it looks like this: We were pleased to support your review by performing additional analysis on studies: cat, N/A, N/A How do I show and hide variables with null values so the sentence above only shows studies that are entered? We were pleased to support your review by performing additional analysis on studies: cat Side note: this is what the email expression looks like: =pv!svcRequest.study_one & ", " & pv!svcRequest.study_two & ", " & pv!svcRequest.study_three
I have this requirement where at manager approval the form should have approve button for two task of the form .when its for approval(cons!TM_APPROVAL_TASK)) and assignment(cons!TM_ASSIGNMENT_TASK,) here is the code : local!isAnalystTeam:isusermemberofgroup(loggedInUser(),cons!TM_GROUPS_ANALYST_TEAM), local!isManagerteam: isusermemberofgroup(loggedInUser(), cons!NTD_GROUPS_MANAGER_TEAM), with( local!approveText: if( and(local!isManagerTeam,or(cons!TM_ASSIGNMENT_TASK,cons!TM_APPROVAL_TASK)), cons!TM_BUTTON_APPROVE, if( local!isAnalystTeam,cons!TM_BUTTON_ESCALATE,cons!TM_BUTTON_APPROVE)), . Manager group is also part of the analyst group.when ever i am trying , its giving the escalate button instead of approve.
Hi, Does appian provides the provision to create single application by using multiple applications in it? e.g. in visual studio we can create multiple projects in a single solution file.
In my Application I can't load files to appian regardless of formatting (ie. Excel, pdf or word files). When I upload a file. The file will start to load but right before it completes I get the error as "The file null could not be uploaded. Please try uploading it again". I didn't changed any code recently in my application but I don't know why it's occurring. Please help me to solve this.
I'm aware that given a starting and ending date/time and a calendar, it will calculate the business hours between those two days, not including weekends/off hours if indicated in your calendar. In our calendar, our business days are 12:03 AM to 11:59 PM (as per business requirement), which means there is 23.95 working hours per day. Are these working hours rounded when calworkhours() generates a value? Are they rounded up? Rounded down? Is each working day rounded first or rounding happens after all the working hours are added. Any help is greatly appreciated!
Hi readers, i want to know whether we can do this or not. A button which query data from database and store it in a read only grid which needs to updated when clicking on submit button Thank you
load( local!counter: 20, a!cardLayout( contents: { a!forEach( items: enumerate(local!counter)+1, expression: { a!cardLayout( contents: { a!richTextDisplayField( value: a!richTextHeader(text: "Counter" & fv!item) ) }, shape: "ROUNDED", padding: "STANDARD", marginBelow: "STANDARD" ) } ), a!cardLayout( contents: { a!richTextDisplayField( labelPosition: "COLLAPSED", value: { a!richTextIcon(icon: "repeat", size: "MEDIUM"), a!richTextItem(text: " Load More", style:"STRONG" ) }, align: "CENTER" ) }, link: a!dynamicLink( saveInto: {a!save(local!counter, local!counter+20)} ), height: "AUTO", style: "ACCENT", marginBelow: "NONE" ) }, showBorder: false(
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.