Copyright © Cloud Software Group, Inc. All Rights Reserved |
The SW_GRAFT procedure grafts a sub procedure onto a graft step in a main procedure. The case data is added to the sub-procedure.SW_GRAFT (
proc_name in varchar2(8),
proc_maj_ver in number(5),
proc_min_ver in number(5),
case_number in integer,
graft_step_name in varchar2(8),
graft_proc_name in varchar2(8),
graft_proc_maj_ver in number(5),
graft_proc_min_ver in number(5),
graft_id in varchar(2))
• proc_name is the name of the parent procedure that you want to graft a sub-procedure to.
• 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_number is the number of the case that you want to graft a sub-procedure to.
• graft_step_name is the name of the graft step in the proc_name procedure that the sub-procedure is to be grafted to.
• graft_proc_name is the name of the sub-procedure that is to be grafted to the proc_name parent procedure.
• graft_proc_maj_ver is either the major version number of the graft_proc_name procedure, or -1. See the notes below
• graft_proc_min_ver is either the minor version number of the graft_proc_name procedure, or -1. See the notes below
• 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).
For more information about graft steps and how to use them, see TIBCO iProcess Modeler Integration Techniques.This example uses SW_GRAFT to graft the SUBPROC1 sub-procedure to step GRAFT01 of case 101 of the CUSTREQ procedure. It then uses SW_GRAFTCOUNT to specific that a single item is to be grafted to the UNIQUEID instance of the graft step.
Copyright © Cloud Software Group, Inc. All Rights Reserved |