I need to do a check on if field 1 - field 6 are blank, I need to have the user re-enter these fields. The form has 30 fields altogether.
What is the best way to have the user go back to the form and re-enter these values.
One idea as to have teh following:
miniloop:
repeat:
if (field1 = "" AND field2 = "") OR (field3 = "" and field4 = "") OR (field5 "" and field6 = "")THEN DO:
message "Please update the info correctly".
update sitef sitet routef routet devpcf devpct deppcf deppct with frame a.
if (field1 = "" AND field2 = "") OR (field3 = "" and field4 = "") OR (field5 = "" and field6 = "") then next miniloop. else leave.
end. /* if (field1 = "" ..... */
end. /* repeat */
I am looking for something that would be easier or more standard in terms of approach. For example, for single field validation, I can do next-prompt, what is the solution for multiple fields like in my situation.
Thanks
What is the best way to have the user go back to the form and re-enter these values.
One idea as to have teh following:
miniloop:
repeat:
if (field1 = "" AND field2 = "") OR (field3 = "" and field4 = "") OR (field5 "" and field6 = "")THEN DO:
message "Please update the info correctly".
update sitef sitet routef routet devpcf devpct deppcf deppct with frame a.
if (field1 = "" AND field2 = "") OR (field3 = "" and field4 = "") OR (field5 = "" and field6 = "") then next miniloop. else leave.
end. /* if (field1 = "" ..... */
end. /* repeat */
I am looking for something that would be easier or more standard in terms of approach. For example, for single field validation, I can do next-prompt, what is the solution for multiple fields like in my situation.
Thanks