WELCOME TO THE COMMUNITY
find what you are looking for or ask a new question
Home > Forum > Latest posts

latest posts

Hi,
I am trying to configure an OCR action. For my configuration I have followed various instructions in the webcon community, especially: https://community.webcon.com/posts/post/the-ocr-verification-view-for-the-modern-form/71/3.
I have seen in the text layer queue report that the status of my documents is "ProcessingPending". I don't see anywhere what is the reason why the status is not changing or that anything is happening with this document.
(FineReader is installed and license key is entered).

I also wanted to ask if there are any tips for the configuration. In my use case, PDF files are uploaded on which there is an image of an ID card. I want to check if there is a certain text sequence on the badge. If the text is not on it then nothing should happen, but if it is on it there should be an alert and another document should be added.

In reply to: User

Hi
I need something like this:
I have 4 places: M_1, M_2, M_3, M_4,
I need the user to be able to make a reservation for any free place.
So: I enter the date and the system checks which place is free on a given day and then I can reserve it. And when the reservation date ends, the place remains free.
Can you help me?
Thanks in advance

Hi,
after selecting the dates, you can limit the list of places to only those that are available in the specified range (i.e. have no reservations made).

the query could look something like this:

SELECT dbo.clearwfelem([column "Miejsce parkingowe"])
FROM WFElements as places
WHERE
places.WFD_DTYPEID = {DT:places}
AND NOT EXISTS (
SELECT 1
FROM WFElement as reservation
WHERE
reservation.WFD_DTYPEID = {DT:reservation}
AND dbo.clearwfelemid( reservation.[column "Miejsce parkingowe"] )= places.[place id]
AND reservation.end_date >= [new reservation start date]
AND reservation.start_date <= [new reservation end date] )

Of course, this query needs to be adapted to your process (e.g. I don't know how you have your places dictionary made) and you can also add a condition that the reservation should be approved (not canceled, etc.).

Additionally, you need to validate the "Zarezerwuj" path because someone could have made the same reservation in the meantime.


Regards

In reply to: Paweł Tołoczko

Not enough input data ...

BTW:
did you try
https://community.webcon.com/online-store/app/car/3
?

Hi
I need something like this:
I have 4 places: M_1, M_2, M_3, M_4,
I need the user to be able to make a reservation for any free place.
So: I enter the date and the system checks which place is free on a given day and then I can reserve it. And when the reservation date ends, the place remains free.
Can you help me?
Thanks in advance

MVP

Hi Agnieszka,
I'm currently trying to set up WEBCON with containers, and it seems like webcon is using SOLR to index those*:
BPS_Activities, BPS_AI, BPS_ChangeRequests, BPS_Elements, BPS_Navigations.

So, I'm afraid that SOLR doesn't store any data from wfelementtasks, although I'm still playing with. In case of any findings I'll update here :)

* https://community.webcon.com/posts/post/solr-ha-infrastucture/180/4

MVP

Hej,
Webcon nie ma wbudowanego natywnego rozwiązania do integracji ze Slackiem, natomiast scenariusze typu wysyłania powiadomień po przejściu np. ścieżką powinny być do zrealizowania bez SDK.
Akcje REST'owe powinny tutaj rozwiązać sytuację :)

Podrzucam linki, z ich połączenia wychodzi rozwiązanie:
* https://api.slack.com/messaging/sending
* https://docs.webcon.com/docs/2024R1/Studio/Action/Integration/Action_RESTWebServiceInvoke


Powiadomienia push pojawiły się ostatnio w aplikacji mobilnej, zawsze można zostawić user voice o dodanie ich w przeglądarkach ;)