-
Recently active
Hello, I am new to Appian. We currently have a process model that generates a completed PDF contract based on Data Inputs mapped from an interface. We would now like that generated PDF to automatically be read only so a user can't change values in the form after the fact. Can I please get your thoughts on how to get the PDF to be generated as a read only instead of fillable form? Thanks!
Hi all, I have the following code: it runs up until fixture = new SitesFixture(); than i get this error: it says something about log4j manager missing but i didn't implement that. also i tried adding the log4j jar files from apache but still got the same error. any help is greatly appreciated. Thank You! package sampleProject; import java.awt.AWTException; import java.awt.Robot; import org.openqa.selenium.By; import org.openqa.selenium.Keys; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.chrome.ChromeDriver; import com.appiancorp.ps.automatedtest.fixture.SitesFixture; public class helloWorld { public static SitesFixture fixture; public static void main(String[] args) throws AWTException { // TODO Auto-generated method stub System.setProperty("webdriver.chrome.driver", "removed path name"); WebDriver driver = new ChromeDriver(); Robot robot = new Robot(); int three = 3000; driver.get("s
I am trying to keep the submit button disabled if they have not selected a file and if the file is not a CSV extension. The button disable works fine for check for no file but the file extension checking is not working and can not figure out why. In the below code the first if is working fine but the second one it gets this error Could not display interface. Please check definition and inputs. Interface Definition: Expression evaluation error at function 'document' [line 45]: The passed parameter(s) are of the wrong type. Received the type Text. and can not figure out why. Is there a better way to check this? Thank you for any help on this, also the ri!csvFile_txt it saves into show this [Document: 383603] as the value for it. The upload also works fine with the csv file as well, just having the issue on the disabled validation part. primaryButtons: { a!buttonWidge
Hi All, Could you pls answer the below questions 1.I have a List of numbers (0 to 9) , Which function will use to print the number Thanks in Advance!.
Hi, Please see the below interface If you see in the left pane, there are three sections, Suites, Scripts and Cases. In every section, there are some hyperlinks. Also, if you see in the right pane, There are three tabs which I want to be dynamic. Every tab will render the data for 3 sections shown in the left pane but when clicked on any link in the subsequent section. It means, initially there will not be any data in the tabs. Now requirements are as follows:- 1. If user clicks on any of the link in the suites section, I want to open a grid in Tab 1 which can show the data from db. 2. If user clicks on any of the link in the scripts section, I want to open a grid in Tab 2 which can show the data from db. 3. If user clicks on any of the link in the scripts section, I want to open a grid in Tab 3 which can show the data from db. Can you pls help in achieving this functionality ? Below is the code for the same interface. a!localVariables( local!suites: rule!BTFU_G
Is it possible to download a document through documentDownloadLink and save on a local (better if writing on db) at the same time? With one click? The need is to know if a document has been downloaded or not.
Hi all, I hope you all are doing well and safe. Today I am going to tell my experience on Appian training. As I see there are so much button clicks while completing any Appian trainings which personally I don't like and it's just annoying. It maybe the good for some folks, so I am sorry in advance if it is wrong according to your opinion. For example: 1. If I started any Appian training and completed a video, then I see a pop-up with 2 buttons as below screenshot which is completely useless. It must be closed automatically and should not ask these questions. If I am ready to start the next activity that I can do manually. 2. In every quiz it asking to proceed with message "Time to check your knowledge! ..." it's ok to warn but each time for each quiz, if a person seriously want to pass the quiz definitely he/she will read the questions carefully. 3. If I turned off the caption for one video then it should not ask for next video or for entire traini
Hi everyone, CDT with 6 columns and database with 5 columns, Can we map that CDT to database table without adding 6th column in database? Thank you all in advance! Regards, Kiran Sajjan
Hi All, I am using a simple gridfield where I am constructing its data . I can't able to sort the columns. Label and data for the grid is based on a condition. I am attaching the code snippet and the inputs. a!localVariables( local!unrecognizedPaging:a!pagingInfo(startIndex:1,batchSize:20), local!searchIdValuesUnrecognized:ri!searchIdValue, local!searchIdValuesUnrecognizedDs:todatasubset(ri!searchIdValue,local!unrecognizedPaging), a!gridField( data:todatasubset(local!searchIdValuesUnrecognizedDs,fv!pagingInfo), columns:{ a!gridColumn( label: if(ri!searchIdField = cons!GOS_CPD_IDENTIFIER_TEXT, "Compound ID", if(ri!searchIdField = cons!GOS_BAT_IDENTIFIER_TEXT, "Batch ID", "Batch Reference")), sortField:"cpdIdentifier", value:fv!row ) }, pageSize:2, pagingSaveInto:{fv!pagingInfo, a!save(local!unrecognizedPaging,fv!pagingInfo)}, selectionSaveInto: { local!unrecognizedPaging, a!save(local!searchIdValu
I have a requirement where i need to disable buttons once the user submit the form. I tried using buttonaction rule input but its not working . Any suggestions?
Hi, am showing list of tasks in read only grid. which is showing data in grid for all users in DEV,UAT and STG but in Production users are not able to see it only few users (belongs to some grp) are able to see the grid how can i find solution for it any suggestions.
Hi Team, I am facing below issue while executing jar file of Cucmber from command line prompt. could you please help me on this.
i need to add a signature image to a random pdf that could be uploaded to my app is there any way to achieve this ?
{a!localVariables(local!item:0,a!forEach( items: enumerate(2), expression: a!columnsLayout( columns: a!localVariables( local!outerIndex: fv!item, local!item:1, a!forEach( items: 1+enumerate(3), expression: a!columnLayout( contents: a!cardLayout( style: "INFO", contents: { a!textField( value:local!item, saveInto:a!save(local!item,tointeger(local!item)+1), ), a!richTextDisplayField( labelPosition: "COLLAPSED", align: "CENTER", value: a!richTextItem( text:local!item, color: "#1a1a00", size: "MEDIUM", ), ), }, height: "MEDIUM", shape: "ROUNDED", ), ) ) ) )),)} The above code will have 2 columns and 3 rows. it is giving the below output. but i want to display 1 2 3 4 5 6. If i apply some logic , i will get 1 2 3
Reading through the Query Database Smart Service documentation, it appears that an explicit transaction wraps every execution: https://docs.appian.com/suite/help/22.2/Query_Database_Smart_Service.html#:~:text=Activity%20execution,by%20the%20node Is there a way to shut this behavior off? We have created a logging framework with all of our procedures, and can even get the error messages we're producing out of the process flows via the Outputs tab, but when all is said and done our logging messages are missing. If I'm interpreting the above correctly, it's because the overall transaction is rolling back our logging inserts too. I'd really prefer to let errors be errors and just stop this behavior, but if that's not possible my catches will have to swallow the error and return my messaging through OUTPUT variables instead (an idea if anyone else is facing this same issue). Thanks! -Eric Rubeck
I have a local variable which gets it data from an expression rule which in turn fetches data from a record. I am using this local variable within an editable grid in foreach to populate data for each rows in the grid. When a particular value of the local variable is edited, I am enabling a Save button in the interface (The interface being displayed to user is an user input task present within a process model) and when clicked on this save button, the process gets navigated to appropriate write to data store entity smart services and then routes back to the same interface. Now when the process stops at the same user input task again, the changed value is not reflecting and I have to do a hard refresh by pressing F5 in order for the change to reflect or I have to exit the process model and enter again. I tried using refresh variable but it is not working as expected. Am I missing something?
how to print fv!index in reverse order in foreach loop. E.g 5,4,3,2,1
Hi. I am attempting to make a reusable grid using a passed ri! of type Any with a cdt type being passed into it. Optionally I am thinking about passing in a list of column names so I can specify the order the grid displays columns in. From there I wanted to do a foreach generating the N grid columns using field names and types grabbed from the passed cdt.. 1.I don't know if there is a way to get a list of all the fields a cdt type has. 2. I am unsure if there is a way to get their types. Any tips?
Hi Team, My page on site is auto taking the space on left and right and moving my interface at center in the 24 inch desktops , It works fine in laptops , Can we have any suggestion on this The red lines are the empty space users are facing , if this can be adjusted then , Users no need to scroll the below grid from left to right always Attached the screenshot
Hi, In welcome to query data after following the below steps: Sign in to Community, and head to the My Learning Journey page. Click Get My Site in the My Community Edition Site card I Am not getting this option: Select your Cloud Region dialog, select a region for the instance and agree to the terms and conditions. Click Get My Site. can anyone help me with this?
Is there any solution or idea how to populate a rich text editor with some text?
Is there a limit for the number of objects in an appian application ? will there be performance decrement if the number of object is increased from 100 to 500 ?
Hey Community can u plzz suggest me the solution of this type of error in process model
Hi Team, I want to calculate time in hours between two date time like on 18th 8am to 18th 10am :- 2 hours 18th 12pm to 18th 8pm :- 8 hours total :- 10 hours Can anyone please help calworkhours is not working properly.
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.