Copyright © Cloud Software Group, Inc. All Rights Reserved |
The SW_CLOSE_WITHOUT_EVENT procedure closes an active case of a procedure without triggering the events that are set for the OnBeforeClose event or the OnAfterClose event.SW_CLOSE_WITHOUT_EVENT (
proc_name varchar(8),
proc_maj_ver integer,
proc_min_ver integer,
case_number numeric(20),
user_id varchar(24))
• proc_name is the name of the procedure that you want to close a case of.
• proc_maj_ver is either the major version number of the proc_name procedure, or -1. See the notes below.
• proc_min_ver is either the minor version number of the proc_name procedure, or -1. See the notes below.
• case_num is the number of the case that is to be closed.
• user_id is the name of the iProcess user who is closing the case.Instead of using the specific major and/or minor version number of the procedure, you can specify both the proc_maj_ver and proc_min_ver parameters as -1. If you do this, iProcess will use the version number of the procedure that the case was originally started with or, that it has subsequently been migrated to (if a subsequent version has been released while the case is still in progress).
Copyright © Cloud Software Group, Inc. All Rights Reserved |