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

latest posts

Is there any ID or sign tha you can use to recognize the type? If not you can try to read documents and use scripts (ex. python) that recognize languages, or try to use AI libraries. You can also try to use chat GPT modules to recognize language. Possible solution make.com with chat gpt. In all of those cases it is necessary to work on outside BPS. BPS can be used to trigger OCR scripts on your virtual machine, using powershell action.

In reply to: User

Cześć
Niestety nie działa mi to za bardzo :).
Mam takie założenia:
Mam do wyboru 4 miejsca postojowe: M1, M2, M3, M4 i dla każdego miejsca jest status wolny lub zajęty. Pytanie jak mam zrobić walidację która sprawdzi czy dla wybranego miejsca i wskazanej daty jest wolny status rezerwacji.
Zrobiłem coś takiego ale nie działa:

The rule that you showed below uses the information from the form directly. To walidate you need to get information already saved in database. You need do add action with SQL on the path. The action has to take range of dates and places as conditions in your SQL. Notice that action that walidates subelements not always works on path, so you may need to save the list firstly. One of the ways is that You can do this for example by adding branch on your path. Additionally you can add SQL row attribute on the form to show information if certain place is free or not and show alert.

Probably you will need also to check every single day in that range. You can do that by joing with dbo.calendars, so tha you will be able to get the list of days from your range and chec for instance if the day is a working day.