DBA Data[Home] [Help]

APPS.OKC_WF dependencies on STANDARD

Line 75: -- pre-builds the plsql procedure call (pre-build means - there is no standard

71:
72: -- gets p_num'th parameter from the string returns it as varchar2
73: function Cvalue(p_num in number) return varchar2;
74:
75: -- pre-builds the plsql procedure call (pre-build means - there is no standard
76: -- trail for the call)
77: function prebuild_wf_plsql return varchar2;
78: function prebuild_wf_plsql(p_wf in varchar2) return varchar2;
79:

Line 81: -- parameter and adds standard trail and 'begin' ... 'end'

77: function prebuild_wf_plsql return varchar2;
78: function prebuild_wf_plsql(p_wf in varchar2) return varchar2;
79:
80: -- builds and returns the plsql call - uses prebuild_wf_plsql output as input
81: -- parameter and adds standard trail and 'begin' ... 'end'
82: function build_wf_plsql(p_prebuilt_wf_plsql in varchar2) return varchar2;
83:
84: -- executes the built plsql call (only for testing and debugging)
85: function exec_wf_plsql(p_proc in varchar2) return varchar2;