You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/core/types/ut_executable.tps
+8-5Lines changed: 8 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,13 @@
1
1
create or replace type ut_executable force as object
2
2
(
3
-
executable_type varchar2(250 char),
4
-
owner_name varchar2(250 char),
5
-
object_name varchar2(250 char),
6
-
procedure_name varchar2(250 char),
7
-
constructor function ut_executable( self in out nocopy ut_executable, a_context ut_suite_item, a_procedure_name varchar2, a_executable_type varchar2) return self as result,
3
+
/**
4
+
* The name of the event to be executed before and after the executable is invoked
5
+
*/
6
+
associated_event_name varchar2(250 char),
7
+
owner_name varchar2(250 char),
8
+
object_name varchar2(250 char),
9
+
procedure_name varchar2(250 char),
10
+
constructor function ut_executable( self in out nocopy ut_executable, a_context ut_suite_item, a_procedure_name varchar2, a_associated_event_name varchar2) return self as result,
0 commit comments