-
Recently active
Hi , Requirement : I want to download a file using RPA but when the bot click download the file, The file is saving in download folder by default but we need (save as popup) so the we can save the downloaded file in specific location when i am trying to download manually save as pop-up is showing and i can save in specific location but its not showing when RPA bot download's the file I have tried changing settings of chrome but its not working , please suggest with some solutions Thanks & Regards Shashank
Hi All, I have to check whether the current time(irrespective of any user time zone) is between 7pm EST to 9am EST. So we tried to convert the current time to EST first and then to compare it with "7:00 PM" & "9:00 AM" EST (by creating text constant). We just tested with below code to check whether comparison works fine by changing the constant value, but it fails totime( gmt( local(now(), "EST" ) ) ) > totime(cons!xyz) where cons!xyz = "7:00 PM" (a text constant) So please help me how to make this work. Thanks in advance.
How much data we can retrieve from database in expression rule?
I would like my AppianRPAagent to connect to resource. So, I refered to URL Below. docs.appian.com/.../agents.html After I created a new resource "TestResource", I downloaded AppianRPAagent.exe and run it.However, "TestResource" didn't get online. ■Resource detail Could you tell me what makes this error arise?
Dear I am setting up an environment to evaluate Appian RPA, referring to the URL below.https://docs.appian.com/suite/help/22.4/rpa-8.3/custom_code/configurator.html I have a question. I clicked the button "download" to install Maven,but an error message popped up. Could you tell me what prevented me from installing Maven? Thank you.
hi, my query is if i want to read xsl document details in expression rule is any function for this
My requirement is to fetch the correct option for the respective question which is there in the database. So what condition i need to apply in choiceLabels() as am getting questions in the correct order only but only the option from the first row is getting repeated for all the questions. so i want first 4 data to go for 1st checkboxField() , next 4 to second checkboxField() & so on. local!data:rule!MWJ_qe_forQuestions(), local!option:split(rule!MWJ_qe_fetchQuizOptions(),";"), local!choose:{1,2,3,4}, contents: { a!forEach( items:split(local!data,";"), expression: a!checkboxField( label:fv!item, labelPosition: "ABOVE", choiceLabels:{ a!forEach( items:index(split(local!option,","),{local!choose},0), expression:fv!item,)}, choiceValues: { a!forEach( items:index(split(local!option,","),{local!choose},0), expression:fv!item, )},
I have created a RPA process to log into a software on our internal network and take screenshots of a machines status and then sends those screenshots to a user outside of the network. The bot is running unattended on a Virtual Machine. When I have the remote desktop open, the screenshots take the image of the entire screen. However, when I allow the bot to run unattended the screen resolution is too small to capture the whole screen (see attached images as examples). The virtual machine is managed via VMware. Does anyone know how to increase the screen resolution of the bot on the unattended Virtual Machine?
Hi Guys, is there any way to increase the expression rule timeout which is pulling data from a view . As now its getting timeout because of the complex logic in view so i just need to increase the timeout of a expression rule to check it Thanks in advance
hyperlinks can be included in the body of the notification display Understand if the below edit text options can be included so we can underline text/change colour etc need to be shown an option how it shows in word document to underline and make it color to text for the text which we are showin in notifications in this way need to be shown on the screen to make text to color or underline
Hi Everyone, I am trying to run A360 bot through Appian 22.4 . I have created connected system and then integration. I am trying to run a operation deploy Bot. Can anybody help me on how to get File ID, Name OR how we can run A360 bot through Appian Thanks in Advance
Bubble sort starts with very first two elements, comparing them to check which one is greater. ( 5 1 4 2 8 ) –> ( 1 5 4 2 8 ), Here, algorithm compares the first two elements, and swaps since 5 > 1. ( 1 5 4 2 8 ) –> ( 1 4 5 2 8 ), Swap since 5 > 4 ( 1 4 5 2 8 ) –> ( 1 4 2 5 8 ), Swap since 5 > 2 ( 1 4 2 5 8 ) –> ( 1 4 2 5 8 ), Now, since these elements are already in order (8 > 5), algorithm does not swap them.
.
I have created a single interface that is being called by two separate interface but the text in richtext display should be different only. Everything else will be as it is. How to do that?
Hello everyone, I have a local variable that query data from data table.The data looks like below: local!cases: { (clientId: 234,group: 55), (clientId: 600, group: 66), (clientId:234, group: 77), (clientId: 600, group: 88), (clientId: 234, group: 99) } I want to get the group name of only client number 600. Below is my code: index(local!cases.group,wherecontains(600,tointeger(local!cases.clientId)),null), And got this error: Invalid index: Cannot index property 'group' of type Text into type List of Number (Integer) Any one got an idea what the reason is? Thanks a lot!
Hi, Is there any function or a recipe to get all the basic users. Please help
Dear Sir/Madam, I'm a newcomer with Appian RPA. And I'm trying to build a very simple process with steps for studying like this: Open a Google Chrome -> Search a keyword ex: 'World Cup' -> Then click a hyperlink or something like that. I have tried to find a document that similar guided end-to-end steps but not found so far. Could anyone have or suggest me anything else for newcomer? Thanks so much in advance.
Hi, Can Someone help in writing a rule which gives me a list of users whose last login date was a year back. I wrote this rule but it is pulling users with the lastlogin date as null. Please correct me a!forEach( expression: if(todatetime(getuserlastlogin(fv!item)) < ri!datetime,fv!item,""), items: getdistinctusers(cons!PDS_USERS_TYPE) ) Thanks in Advance
Hi, I want to have a ri!startDate, I will use the a!isNotNull function to display some warning message if the ri!startDate is null else will retrieve the weekday(ri!startDate) but I keep encountering the error message such as Cannot sub incompatible operands of type Date and type Text. below here is my code for the interface a!localVariables( local!weeknum:if(a!isNotNullOrEmpty(ri!startDate),weeknum(ri!startDate),{}), local!day:if(a!isNotNullOrEmpty(ri!startDate),day(ri!startDate),{}), local!month:if(a!isNotNullOrEmpty(ri!startDate),month(ri!startDate),{}), local!year:if(a!isNotNullOrEmpty(ri!startDate),year(ri!startDate),{}), local!dayofWeek:if(ri!startDate=null(),"Please Select a Date ", weekday(ri!startDate)-1), local!startWeekDay:if(local!dayofWeek1,ri!startDate-local!dayofWeek+1,{}), local!endWeekDay:local!startWeekDay+4, local!monday:local!startWeekDay, local!tuesday:local!startWeekDay+1, local!wednesday:local!startWeekDay+2, local!thursday:local!
Hi, can anyone teach me how to retrieve the week range based on the weeknumber and year. For example, the user selects a date. I use the weeknum(ri!startDate) already retrieve the weeknumber and the year(ri!startDate), so I already have the weeknumber and the year already, how to retrieve the date range from the week number and year ? such as 11/11/2022, week number is 47 and the year is 2022, how to we retrieve the date range like " 7/11/2022 - 11/11/2022 ? anyone can help or assist me [emoticon:c4563cd7d5574777a71c318021cbbcc8]
How can we generate a series of random numbers like 23434 56767 89789 34355 56307 Please suggest me or an example without any table connection
Hi, I have a requirement where I have to schedule a task i.e to activate RPA agent from the server on each day when server comes online, I have used task scheduler to trigger the agent but its not being stable as it is activating and deactivating the next minute, which is leading all the RPA processes to be in queued. Please update with any solution.
I want to roundup below result to ...upto two places like 3.13....how could i achieve that please help
Hii all, we have 3 teams in my building portal they are 1vendor , 2buyer and 3internal team and the intrnal teams have 3 other sub teams called IT1 and IT2 and IT3, normally when a vendor raised a request for pricing change for a product then it will goes to buyer team , he has the power to reject or accept or send it to internal teams , now the 1)rule is if the current product price is 10% more than previous price then this should get approval from all the teams from internal teams called IT1 and IT2 and IT3 2) if the the current product price is 10% less than previous price then this should get approval from teams IT1 and IT3 only 3) if retail price is more than cost price then it will get approval from IT2 only note: when buyer forward the request to internal teams above mentioned actions should take place could you please tell me how to achieve this decision mapping and business rules i
Please share any example to write HTML code into the Expression rule
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.