Open
Check procedures - Control procedure has been taken
Within applications developped with the Software Factory, there are several area's where data or a formula needs to be checked.
Imagine a task that will confirm an order.
Usually, you want to check the current status of the order, so that for example, current orders cannot be confirmed twice.
Also, you want to help the user, have the right task buttons available, so you apply the same logic to hide the task button, based on current status.
Unfortunately, these checks need to be put into two seperate control procedures, once for the task, once for the context procedure.
In the worst case, the developer decides to write these checks twice.
If he is a bit smarter he writes a specific function in order to test this case and handle the situation accordingly.
This would be, for now, also the advice I'd give to people; write a function to test and use this function in both task and context procedure.
Bad thing about this approach, is that a developer can forget to do one or the other.
I think the Software Factory can enforce these rules, on both context and task procedure. (Could also work for reports)
Setup would be quitte easy.
1. Define the rule (i.e. Order needs to be open when confirming)
2. Define input parameters (i.e. sales_order_id)
3. Link rule to tasks (The given rule applies to the linked task)
4. Link message to tasks (This message needs to be sent to the client when failing the check)
When this has been set-up, it would lead to automatically generated SQL code in both Task and Context procedure.
Task example:
if dbo.test_order_open_when_confirming(@sales_order_id) = 0
begin
exec tsf_send_message order_not_open, null, 1;
end;
Context procedure example
if dbo.test_order_open_when_confirming(@sales_order_id) = 0
begin
set @task_confirm_order_type = 1;
end;
Please feel free to critisise or elaborate on this idea. I'm curious to what we can come up with!
Imagine a task that will confirm an order.
Usually, you want to check the current status of the order, so that for example, current orders cannot be confirmed twice.
Also, you want to help the user, have the right task buttons available, so you apply the same logic to hide the task button, based on current status.
Unfortunately, these checks need to be put into two seperate control procedures, once for the task, once for the context procedure.
In the worst case, the developer decides to write these checks twice.
If he is a bit smarter he writes a specific function in order to test this case and handle the situation accordingly.
This would be, for now, also the advice I'd give to people; write a function to test and use this function in both task and context procedure.
Bad thing about this approach, is that a developer can forget to do one or the other.
I think the Software Factory can enforce these rules, on both context and task procedure. (Could also work for reports)
Setup would be quitte easy.
1. Define the rule (i.e. Order needs to be open when confirming)
2. Define input parameters (i.e. sales_order_id)
3. Link rule to tasks (The given rule applies to the linked task)
4. Link message to tasks (This message needs to be sent to the client when failing the check)
When this has been set-up, it would lead to automatically generated SQL code in both Task and Context procedure.
Task example:
if dbo.test_order_open_when_confirming(@sales_order_id) = 0
begin
exec tsf_send_message order_not_open, null, 1;
end;
Context procedure example
if dbo.test_order_open_when_confirming(@sales_order_id) = 0
begin
set @task_confirm_order_type = 1;
end;
Please feel free to critisise or elaborate on this idea. I'm curious to what we can come up with!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.