-
Recently active
Hello, I have a requirement where the text field should get auto-populated based on the previous action. Once the text field is auto populated I have 2 possibilities. 1. the user can click on submit without making any changes to the text field. In this case, since there is no user interaction, the value is not storing to the saveinto local variable. 2. the user can change the text field value as per their choice. In this case, the value is saving to the local variable, but it's not reflecting in the text field, since in value parameter there is another local variable. a!textField( label: "File Name", labelPosition: "ABOVE", value: local!prepopulatedName, saveInto: local!docName, refreshAfter: "UNFOCUS", ), Here, local!docName is the variable created for storing the value for this text field. local!prepopulatedName is the field from where it's getting auto populated. Can someone please guide me here?
if( ri!valueType_txt = "Ratio", if( and( like(ri!inputValue_txt, "*:*"), isnull( stripwith(ri!inputValue_txt, "1234567890:.") ), not( isnull(stripwith(ri!inputValue_txt, ":.")) ), left(ri!inputValue_txt) ":", right(ri!inputValue_txt) ":" ), "", cons!CR_APP_COV_THRESHOLD_VALIDATION_MSG[1] ), if( ri!valueType_txt = "Ratio:1", if( and( like(ri!inputValue_txt, "*:1"), isnull( stripwith(ri!inputValue_txt, "1234567890:.") ), not( isnull(stripwith(ri!inputValue_txt, ":.")) ), left(ri!inputValue_txt) ":", right(ri!inputValue_txt) ":" ), "", "Value is not in the format of m:1." ), if( ri!valueType_txt = cons!CR_APP_FIN_COV_VALUE_TYPES[3], if( and( len( stripwith(ri!inputValue_txt, "0123456789.") ) = 0, len(cleanwith(ri!inputValue_txt,
NOTE: PLEASE SEE MY LATEST UPDATES ON MY ISSUE ON THE COMMENT SECTION. Hi every one, not sure if you have experienced this before: The given requirement is to create an interface with a file upload field. With that file,check if the file format is csv, and if all the columns's header name are the right name and are in the right order). My code is attached below. The issue is that when the basic user's account is given viewer permission in my document folder, the file was not uploaded succesfully to the folder. If you have any recommendation please reach out. Thank you [emoticon:c4563cd7d5574777a71c318021cbbcc8] a!localVariables( local!document, local!uploadSuccess, local!correctFileFormat, a!fileUploadField( label: "File", target: cons!INCOMMing_DOCUMENTS, maxSelections: 1, value: local!document, saveInto: { a!save(local!uploadSuccess, false), local!document, if( a!isNullOrEmpty(local!document), {},
hello I have a question about Header content layout. now, I have the top of the page frozen with header Content Layout ( top red rectangle ) and i want to freeze the right panel too (right blue rectangle) the whole page has now the scroll only with the top part frozen, and i want to scroll only the left panel. Is it possible to freeze the top and right panel without freezing the left panel and be able to scroll it? Image: Thank you!
hello everyone , can anyone here help me please , i have develloped an interface and i configiured the save button in this interface to do the update of a record field this is my code : a!buttonWidget( saveInto: { /*a!save(*/ /*target: local!currentUserAccount,*/ /*value: a!update(local!currentUserAccount , 'recordType!{b37748b2-8103-41ea-8028-2b358e4f229c}PBY account.fields.{4a9de4b2-f127-44f1-86d2-21c2a6b2ee2d}Solde', local!newBalance), */ /*),*/ a!writeRecords( records: local!currentUserAccount, onSuccess: a!save( target: local!currentUserAccount, value: a!update(local!currentUserAccount , 'recordType!{b37748b2-8103-41ea-8028-2b358e4f229c}PBY account.fields.{4a9de4b2-f127-44f1-86d2-21c2a6b2ee2d}Solde', local!newBalance), ), ) }, label: if(ri!isUpdate, "Save", "Create"), submit: true,
Hi Team, In my process one of the process triggered unwanted scenarios and if I want to check parent process for the process. But I am unable to find it due to start process triggered the process. Do you know any other way to find the parent process Id or process name. (only for start process). Subprocess we can do by parentprocessid function. Thanks, Pradeep Sridharan
We have a requirement to have a Drag-Drop feature in Appian UI, where user should be able drag a document from Appian to an external system (document download feature), looking for ideas and options to implement this in Appian.
A single user is not receiving notification emails for new tasks assigned to them. It is not in their spam. They do receive emails from the Send E-Mail Smart Service though. This has been tested against multiple other users with the same email notification settings group assignments and all of them received the task emails. Outbound emails is also enabled in the Appian console. Is there logs tracking the outbound emails? I couldn't find it in the Appian Docs - System Logs page.
Hi Community, I created a AL model and am using classify documents smart service but I need to show that data in interface. with out classify document smart service do we have any function in the Interface
Hi team, I have a use case where I need to create tasks for users, but there is a parent-child relationship between tasks. In one interface, I will collect the details of the task, and users can add additional tasks to an already existing task. So, a parent task will have N number of child/related tasks, which will be stored in a table called "task details". Daily, once I trigger a process, it will query the task details and create the tasks. The thing I need is for the parent task to be created first, followed by related tasks in the order the user gave them. It would be simple to achieve this using a subprocess and looping the task creation by sorting the data using datetime. However, I wish to use the startprocess MNI, as it won't affect performance and to avoid instances paused by errors (subprocess will stop in this case). I don't know how to order the data or loop the data to achieve this. Any suggestions? Thanks in advance [mention:a11f77a729fb4db2af76
Hey everyone ! can anyone here help me , i have a record named "compte" that contain a field named " solde" and an other record named "transaction" that contian a field named "montant de transaction" i want that the solde field be updated awith the value " solde + transaction" how can i do this please ( i tried this in the create or update transaction page and it gives me error : a!buttonWidget( saveInto: { a!save( target: ri!account['recordType!{b37748b2-8103-41ea-8028-2b358e4f229c}projet account.fields.{4a9de4b2-f127-44f1-86d2-21c2a6b2ee2d}Solde'], value: ( ifnull( if( ri!record['recordType!{ad2b45c4-cbc3-4de4-a189-c5593ad5032b}projet transaction.fields.{e57ce205-d18d-4eb2-83ee-f669e5c56ab1}somme'] >= 0, local!currentBalance + ri!record['recordType!{ad2b45c4-cbc3-4de4-a189-c5593ad5032b}projet transaction.fields.{e57ce205-d18d-4eb2-83ee-f669e5c56ab1}somme'], local!currentBalance + ri!record['recordType!{ad2b45c4
Hey developers! Can anyone here help me? I want to change the text displayed here from "search" to "chercher". This button is created automatically when I create a filter."
a!localVariables( local!refreshVar:1, local!loggedInUser: loggedInUser(), local!now: now(), local!isLevelOneApproval: /*if(a!isUserMemberOfGroup( username: local!loggedInUser, groups: cons!AMS_DG_GP_ADMINISTRATORS, ),true(),false()),*/ false(), local!departmentId: if( a!isUserMemberOfGroup( username: local!loggedInUser, groups: { cons!AMS_DG_GP_SURGICAL_DEPARTMENT, cons!AMS_DG_GP_GENERAL_DEPARTMENT }, matchAllGroups: true() ), { cons!AMS_DG_DB_DEPARTMENT_ID[1], cons!AMS_DG_DB_DEPARTMENT_ID[2] }, if( a!isUserMemberOfGroup( username: local!loggedInUser, groups: cons!AMS_DG_GP_SURGICAL_DEPARTMENT, ), cons!AMS_DG_DB_DEPARTMENT_ID[1], cons!AMS_DG_DB_DEPARTMENT_ID[2] ) ), local!appointmentInfo: a!refreshVariable( value: if( or(local!isLevelOneApproval), rule!AMS_DG_GetAppointmentInfo( isDS: false, fields: { {
The requirement is as follows; I need to start a process and it requires two information, a ID and the user data. Now after users scan a QR code it will open a URL in the browser and landed to page then click on a start process button it starts a process. The QR code has the ID and URL that should open APPIAN interface on WEB Browser and on the landing interface I can capture the user data. Now on start process click it will start the process model with necessary data. How can I achieve this?
Is it possible to change the background of the summary view? Not the header color, which I know I can set, but the content background.
Hi, I am trying to understand the non functional requirements for Appian applications. Can some one suggest the ideal time to render the application from your experience. 1. Full screen with buttons and images 2. ideal response time to bring data from Appian db 3. ideal response time to bring data from integrations 4. ideal response time for the button click Thanks
Hi All, I am preparing for the Appian Analyst Certification and I will need to dive into a number of documents in order to understand all topics. Can you recommend the most helpful documents/sources for me to study (I am not a developer) ? Also, are they any previous exams/examples I can refer to in order to practice ? Thank you in advance
Hello, I have a column layout at the bottom of the page. In one column I display folders which I get from an integration of a sharepoint folder. The next column are the files located inside the selected folder. The final column gets the selected document and displays the preview. All good until I added a button which is supposed to hide the first two columns and sets the document preview height to "TALL". The functionality is meant to enlarge the preview and it does, however every time I click on this button the screen jumps to the top of the page. When preview is enlarged I also have the "back" button which reverses this action and again the screen jumps to the top. What is going on here?One more thing: Even if I scroll up after clicking (which is easily done since Appian+Sharepoint is so slow) so none of the columns are on my screen it still jumps to the top.
Hi Team, I have a scenario, where I need to add multiple assignees. To do this, I have created a user picker field and initially saving the inputs to a local variable. I want to save this data to a assignees record. where assignees record is in one to many relationship with meeting data record. This mean, the relationship record is multiple in my case and I was not able to save the list of assignees to the record. Can anyone help me? Attaching the code for reference.
Hi Experts, Is there any way to generate and download an Excel file in a single click. Thanks, Gaurav Singh
Hi Everyone, I was trying to trigger a Process model by sending email in ON PREMISE. Could you please help me on what will be the email address to trigger process model. Normally for cloud its pretty easy, the email address will be (processmodeluuid@******.appiancloud.com) Like the same , what will be email address ( domain & subdomain ) for a process model in ON PREMISE to trigger?? My current environment URL for Appian is like this -- https://********.corp.local/suite/ Any help would be appreciated Thanks In Advance
I knew Activity Chaining is configured when same user have to perform multiple user input tasks without navigating to tasks list . Can some one let me know where other places we can use Activity chaining and uses of it .Can we stop using Activity chaining in middle of PM where we have Start Process Smart Service (MNI)( the intention of start process smart service is to just trigger another Pm and no data needed from that PM into parent) and then continue after that node?
I am always indebted. We would like to consult with you all.Currently, the line graph in the interface represents the change in amount.Is there a way to express the amount (numeric value) on the Y-axis in 3-digit increments?I would like to express it like "10000" → "10,000" on the Y axis as well. You can see detailed amounts in 3-digit increments by hovering over the graph, this is Appian's default feature.The Y-axis value is linked to the displayed data. Even if I passed the display data separated by 3 digits, there was no change on the Y axis. Is it not possible? If anyone knows, I would appreciate your advice.Thank you. いつもお世話になっています。皆様にご相談があります。現在、インターフェースの折れ線グラフで、金額の推移を表現しています。Y軸の金額(数値)を3桁区切りで表現する方法はありますでしょうか?Y軸にも「10000」→「10,000」のように表現したいです。 グラフをマウスオーバーすると3桁区切りで詳細金額を見ることができます、これはAppianのデフォルト機能です。Y軸の値は表示データに連動しています。表示データを3桁区切りにした状態で渡してもY軸に変化はありませんでした。実現不可能なのでしょうか? もしご存じの方が居られましたら、ご助言いただきたく存じます。よろしくお願いいたします。
Hi, i have an array of numbers like this{ 10, 5, 6, 9, 8, 11, 7, 4, 2, 13, 16, 1, 5 }I want split this array in several arrays in wich the sum of all element must be maximum 20.There is any snippet for doing this easily?Thanks
I am attempting to debug an error that's popping up in a record list action that involves copying an externalized string representing a record, then writing the record to the database, either for a new record or an update to an existing one. The error below appears as soon as I copy the externalized string into the paragraph field, but only when I run the list action from my site. When I attempted to debug the issue in the interface editor, the saveIntos on the paragraph field run as intended. Normally when I run into an issue like this I assume that the variables being passed into the process start form are different than the test values in the interface editor, but this process model only occurs as a record list action, so there is no context being passed into the process, and no process variables have a default value. I can't figure out where in the application there would be any changes to the process variables that would cause this difference. For reference I've also i
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.