Limit the functionality of a robot

Hello everyone, I am developing a couple of robots for a client and was wondering if there is a way to program the robots in a way to only work until a determined date, after which it will request the user to contact me to extend the use of the robot. Anyone knows how to do this?

Just code in a date check at the beginning (either hard-code, or in a config - pros/cons of both methods for this use case). Very first thing the robot would do is check if today > YourEndDate. If True, perform activities to request user to contact you. If false, proceed as normal

@Jose_Esquivel,

Welcome to our community

In the start of the process you can compare the system’s current date and with your desired date. So after that it won’t run. This is a simple implementation.

But the user should not change the system date and run the process.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.