-
Recently active
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(
Hi, I am a newbie to Appian and i have been exploring the various functionalities. I have an Interface (lets' call it Interface A) that uses "Dynamic Link" to add/remove rows in a editable grid. The interface works fine when i test it out in Design/Expression mode. I also have a record type with several views. I added the above Interface A as a view to this record type. I then opened the view by going to the site but for some reason i could not add any new rows. Not sure if i am missing anything. Thank you for the help.
Does Appian application support branching, labeling, merging features using Appian versioning Manager? For ex. we want to go to previous release and meanwhile we have added new artifacts into application, will it be possible to move to actual previous application while working with Application versioning manager with Git.
Hi Community, I have a case that I add new row (Add new Goal) to my grid as the image below shown: This action is work perfectly in the interface design as the image below shown: But when I open the application, the add button don't give result. Anybody know why this happens ? Thanks in advance.
I've a requirement to make available a number of PDF documents within our UI, that the users can download as and when they wish.Initially I sorted this by saving those docs in Appian KC, along with an associated DB table that stores amongst other things the docID. At run time I simply make a call to the db table, get the doc id's and then generate the list using a!documentlnk. a!richTextDisplayField( value:{ a!richTextIcon(icon:"newspaper-o", color:if(fv!item.priority="1","NEGATIVE",{}) ), a!richTextItem( text:" "&todate(fv!item.updatedon)&" "&fv!item.message, link:if(toboolean(fv!item.islink)=true(), {a!documentDownloadLink( label:"download",document:fv!item.doc) }Works great.However I want to expand this to capture which of the docs are being downloaded and are true FAQ's vs ones that simple dont need to be taking space. Ideally I thought to use an a!saveinto and write the pertinent into to another d
I have an app for site surveying equipment that produces a task which is going to be completed primarily on mobile, often offline. Since the task could take multiple days to complete I added the 'Save Draft' button to the interface from the process model. On desktop it works as expected, I can hit the save draft button, exit the task, then go back in and pick up where I left off with all the previous data still there. However, on the mobile Appian app, when I hit this button the data is saved properly, but the task then closes. Since I experience the occasional app crash with the Appian mobile app, I would like to be able to save my work periodically without having to exit the task each time. Is there a way to prevent the 'Save Draft' button from closing the task in the mobile app? Thanks in advance!
Hi Readers, Needed an insight regarding the below. I need a variable holding a single value, which can be updated through an action when a form is submitted; But it need to be visible in the form but as read only. What i have tried: I have kept a read only grid to make it as read only, instead of a temp variable i have queried the data from a table and made only single row is visible so that the last updated value is visible. But i do not want the value to save in a table and query it to make it visible on the form, instead i just need a temp variable which holds the last updated value as read only. Elaborated: I Am trying to create an application which has a read only variable on the form called wallet balance(); Application: There will be an interface/form which has wallet balance, current value and operation and a submit button; We enter the wallet balance by seeing it in the read only grid, we enter the value which need to be added/deducted from wallet and an operation(+ or
Hello, I am implementing an excel sheet to appian forms where the excel workbook is having two sheet (sheet1 and sheet2). To replicate this, I have created form1 and form2 with individual table for each form. I am passing 2 CDT as record input from form1 to form2 and then to form1. The Main form (Form1) have link to open Form2 where the user will input data on the fields and click on the "go back to form 1", then when submit is clicked on Form1, the data in both the CDT will be stored in to DB tables. I have kind of achieve this and the data is also saving as expected but the problem is it opening new session of form and the old is still opened in the background. I am using linkfield and startProcessLink to pass CDT data and open new forms. Please help me to close the form before calling the next form. Code and screenshots below. Current Scenario: Record type (Add Record Link) --> Form1 (Fill data and click Open form2) --> Form2 (Fill data and
Hi Readers, I have a normal form as an interface which when submitted the data need to be stored in a database. I have done everything and the form and database is also working fine now, but when i start the process debugging and initiate the process with the form which i created the data is getting inserted in to the database but the color of the nodes are not changing; but when i press cancel button the node colors are changing Could you please provide your insights or my mistakes or any checklist that is used to check and fix this issues NOTE: The application is working fine, i mean the data is inserted into the table and is queried for another report purposes. When clicked on submit/cancel while process debugging get below
how to give action to the Icon, such that onclick it should add the card layout above the icons column layout?
I have process with multiple approvals. Manager approval i had to give condition in XOR that the tasktype is modified and particular field is changed then it should go to Admin approval.Otherwise it should skip the Admin flow. i have given this condition in XOR: if = and(pv!approved,or(pv!tasktype=con!MODIFY_TASK,pv!segemnt.serviceDate - true -goto-AdminApproval, Else if =pv!approved-true-go to join else if no rules are true - go to - accontant. Thanks
Hello all, Is it possible to customize a dropdown list of values with Group name as some header values and group members listed seperately withi the dropdwonlist as shown below? In this eample, user will be selecting only the vehicle model(group member) and not the vehicle type(Group name). Appreciate any help in getting this solved, thank you! Select a Vehicle SUV RAV4 Model X CRV X5 GLA Sedan Model 3 Camry Civic E-Class Hybrid XSE GT-Class X5 PHEW
I am new to Appian. Still learning the basics. I have two tables 1. Attachments - for adding attachment relate details like fileId,fileName, fileExt, fileSize etc and 2. AttachmentDetails - for description, comments etc Below is the requirement - When i upload a document I save them to the attachment table with attachmentDetails primary key (attachmentDetailsId) After the documents are saved in the attachment table I need to save the attachment tables primary key (attachmentId) to the attachmentDetails table The problem is i am not sure how to update when there are multiple attachments. For Example - If i upload 2 attachments and update attachmentDetails Attachments Table attachmentId fileId attachmentDetailsId 1 123 1 2 234 2 Attachment Details Table attachmentDetailsId Description attachmentId 1 Evidence 1 2 Tracker 2 I will first save the 2 attachmentDetails (array) to the db first. (at this point attachmentId will be null and I will have the attachme
dependent and precedent errors in exporting application
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.