As far I understand windows and form identifiers must be unique in the scope of the program:
"The form identifier does not need to match the name of the form specification files, but it must be unique
among form names in the program. Its scope of reference is the entire program."
Suppose I have a CRUD in clients and, while inputting an client, I need to call that same CRUD to get another client (for instance the partner).
This will be solvable if the window/form identifier is local to the function.
Has anybody already faced this issue? What will be the solution for that?
PS: I think the same reasoning can be applied to cursors, which I think are also global identifiers.