I’m from a big company from austria and i have a problem.
We have a Ticketing System in our IT department where we get problems from users and workorders, which must be checke daily.
There is a Ticket i have to check it daily, if it comes between 2 and 3 o clock am. I also have to check, if the status of the ticket is “Ok” or not.
i tried something but it doesnt works. maybesomeone can help me.
Hi
Welcome to UiPath community
Is that ticket is named same in all days
If so we can use get text position and choose that text as region and get its position as uielement variable
Now use a Anchor base activity and use Find element in the left where pass the above variable as input to Element property as input and in the right side of the anchor base we can get the text of the timing
If I’m wrong with the question kindly elaborate a bit more in this pls
Hello i tried the data scraping activity but how can i automatically check every day if there is this ticket or not?
data scraping must take all new tickets, which comes daily
Hi @alii_ylc
I addition to the thoughts of @bcorrea if you use DataScraping activites it will return a datatable and you can do a lot of logic of your desire.
You can use Data Scraping where it outputs a Data table of all your tickets. You can then filter the datatable by date (Filter Datatable contains datetime - #3 by Mateus_Cruz) and status. You’ll get the tickets that you need.
i know how Data Scraping works. But we have to check daily, if there is a new ticket with the new Date (for example today 11.12.2019). And i want that UiPath should check out daily, if there is a new ticket with the date of today.
I hope you understand me now
So you need the process to perform the filter on a regular basis right? Without human intervention? Is that’s the problem? Is the problem is in data level or process level (scheduler)?
first of all, i want to know how i can get the field where the Date in my Ticketing System is to UiPath. i do it with GetText.
So then i want that UiPath should check from this GetText that is a date and not a string.
Using Get Text might introduce time complexity. Please check if you can extract the entire table using Data Scraping so that you can have a structured data to work with. After that the data can be manipulated easily.