DBA Data[Home] [Help]

APPS.WF_LOOKUP_TYPES_PKG dependencies on WF_CORE

Line 53: wf_core.context('Wf_Lookup_Types_Pkg', 'Insert_Row', x_lookup_type);

49: close c;
50:
51: exception
52: when others then
53: wf_core.context('Wf_Lookup_Types_Pkg', 'Insert_Row', x_lookup_type);
54: raise;
55: end INSERT_ROW;
56:
57: procedure LOCK_ROW (

Line 82: wf_core.raise('WF_RECORD_DELETED');

78: open c1;
79: fetch c1 into tlinfo;
80: if (c1%notfound) then
81: close c1;
82: wf_core.raise('WF_RECORD_DELETED');
83: end if;
84: close c1;
85:
86: if ( (tlinfo.DISPLAY_NAME = X_DISPLAY_NAME)

Line 95: wf_core.raise('WF_RECORD_CHANGED');

91: AND (tlinfo.CUSTOM_LEVEL = X_CUSTOM_LEVEL)
92: ) then
93: null;
94: else
95: wf_core.raise('WF_RECORD_CHANGED');
96: end if;
97: return;
98:
99: exception

Line 101: wf_core.context('Wf_Lookup_Types_Pkg', 'Lock_Row', x_lookup_type);

97: return;
98:
99: exception
100: when others then
101: wf_core.context('Wf_Lookup_Types_Pkg', 'Lock_Row', x_lookup_type);
102: raise;
103: end LOCK_ROW;
104:
105: procedure UPDATE_ROW (

Line 130: wf_core.context('Wf_Lookup_Types_Pkg', 'Update_Row', x_lookup_type);

126: end if;
127:
128: exception
129: when others then
130: wf_core.context('Wf_Lookup_Types_Pkg', 'Update_Row', x_lookup_type);
131: raise;
132: end UPDATE_ROW;
133:
134: procedure DELETE_ROW (

Line 147: wf_core.context('Wf_Lookup_Types_Pkg', 'Delete_Row', x_lookup_type);

143: end if;
144:
145: exception
146: when others then
147: wf_core.context('Wf_Lookup_Types_Pkg', 'Delete_Row', x_lookup_type);
148: raise;
149: end DELETE_ROW;
150:
151: procedure ADD_LANGUAGE