-
Recently active
Hi All, I need to have a drop down where the values are shown in group by category with a headings as below: Any idea whether this is feasible in Appian or not?
Hi Team, I need to show icons beside to the Section Layout Label field and that is a custom icon. How can I achieve the same. I can see a parameter called Label icon in section layout ; but I am not sure how to insert a custom icon to it. Regards, Ghanashyam
Hi there, I have created two interface which are MedicalRequestForm and EquipmentRequestForm, then I created third interface as RequestForm where I took a radio button and shown the value as RequesType (Medical and Equipment). I want that MedicalRequestForm or EquipmentRequestForm must be shown on the basis of radio button selection which is working. But In my first both interfaces, I have one dropdown, so whenever I am selecting a value from the dropdown, then whole Interface (RequestForm) is getting reload/refresh. Note: I took the rule input as ZMS_Requests in all the interfaces separately. Please see the below screenshots: 1. MedicalRequestForm: 2. EquipmentRequestForm: 3. RequestForm (without selection): 4. RequestForm (with selection of Medical): 5. RequestForm is getting back as screenshot no.3 when I select a value from dropdown Animal Name as above screenshot. Could anyone of you help me to resolve this issue? Please let me know if you need code.
Is there any function from which we can count no. of rows present in read only Grid??
Hi All, We are facing this strange issue of Cannot interpret context for UI Expression reason unauthorized. Could you please help us what is the issue and how to resolve it. TIA Harsha [emoticon:c4563cd7d5574777a71c318021cbbcc8]
Hi there, I have created an Interface, and I have used a!fileUploadField component which is taking 79.15% loading time. Please see the screeshot. Could anyone of you please help to reduce it? or any alternate solution to this? Thank you in advance!
Hi Everyone, My requirement is - I am showing an Admin Form, When The user enters data in the fields, they get stored in the database and I am showing the details in a selectable grid. The user can add a row or update/remove any row by clicking on the particular row from the selectable grid which will show the data for that specific row in the form. It is working fine for text box control to fetch and show as well as be blank while entering a new data row(event).But when it comes to a dropdown(year), I am facing an issue with the below code to fetch and show the field for selected row but be blank and mapped to rule input or local variable while adding a new row, for that control. The data is not getting getting populated into a dropdown. I have added a default value "2022" to avoid the error but, I actually need "ri!HolidayDetails.year" in place of "2022". Kindly help Thank in advance.{ a!localVariables( /* This variable is used to persist the check
Hey Guys, I have a database table that contains teams that have applied to the competition. I want to check the validation, if I insert team and competition to apply that already exists in the table displays as "Already applied.a!formLayout( label: "Apply Team to Competition", contents: { a!sectionLayout( label: "", contents: { a!columnsLayout( columns: { a!columnLayout( contents: { a!pickerFieldRecords( label: "Choose a Team", recordType: 'recordType!{9590f767-061f-48ac-850e-63e14f7db91d}SGDC Dance Team', value: ri!map.teamId, saveInto: ri!map.teamId, showRecordLinks: false, maxSelections: 1, required: true ) } ), a!columnLayout( contents: { a!picker
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?
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 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!
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.
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
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.
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
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
Hi we have a textfield where we perform validation by calling a webservice query. validations are working fine when i test it from interface in designer mode. When i test from site, it throws below error. An error occurred while executing a save: Expression evaluation error in rule at function 'webservicequery' [line 13]: Could not parse WSDL inside saveinto of the textfield a!save(local!result, webservicecall), validation:if(local!result,"","Please enter valid date") CAn we call webservice query in saveinto? Please advice
As you can see on this attachment a scroll bar is appearing when displaying a rich text edited field. If I go in and remove a couple of lines of text the scroll bar goes away. Does anyone know why this scroll bar is showing up? It does not matter how big the area field is in it always shows up. For example, I can remove the last sentence and the bar goes away. So it seems to be tied to a character count.
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.