DBA Data[Home] [Help]

APPS.WF_LOOKUPS_PKG dependencies on WF_CORE

Line 55: wf_core.context('Wf_Lookups_Pkg', 'Insert_Row',

51: close c;
52:
53: exception
54: when others then
55: wf_core.context('Wf_Lookups_Pkg', 'Insert_Row',
56: x_lookup_type, x_lookup_code);
57: raise;
58: end INSERT_ROW;
59:

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

81: open c1;
82: fetch c1 into tlinfo;
83: if (c1%notfound) then
84: close c1;
85: wf_core.raise('WF_RECORD_DELETED');
86: end if;
87: close c1;
88:
89: if ( (tlinfo.MEANING = X_MEANING)

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

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

Line 103: wf_core.context('Wf_Lookups_Pkg', 'Lock_Row',

99: return;
100:
101: exception
102: when others then
103: wf_core.context('Wf_Lookups_Pkg', 'Lock_Row',
104: x_lookup_type, x_lookup_code);
105: raise;
106: end LOCK_ROW;
107:

Line 133: wf_core.context('Wf_Lookups_Pkg', 'Update_Row',

129: end if;
130:
131: exception
132: when others then
133: wf_core.context('Wf_Lookups_Pkg', 'Update_Row',
134: x_lookup_type, x_lookup_code);
135: raise;
136: end UPDATE_ROW;
137:

Line 153: wf_core.context('Wf_Lookups_Pkg', 'Delete_Row',

149: end if;
150:
151: exception
152: when others then
153: wf_core.context('Wf_Lookups_Pkg', 'Delete_Row',
154: x_lookup_type, x_lookup_code);
155: raise;
156: end DELETE_ROW;
157: