DBA Data[Home] [Help]

APPS.FF_FFN_SHD dependencies on FF_FUNCTIONS

Line 32: If (p_constraint_name = 'FF_FUNCTIONS_PK') Then

28: l_proc varchar2(72) := g_package||'constraint_error';
29: --
30: Begin
31: --
32: If (p_constraint_name = 'FF_FUNCTIONS_PK') Then
33: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
34: fnd_message.set_token('PROCEDURE', l_proc);
35: fnd_message.set_token('STEP','5');
36: fnd_message.raise_error;

Line 80: from ff_functions

76: ,data_type
77: ,definition
78: ,description
79: ,object_version_number
80: from ff_functions
81: where function_id = p_function_id;
82: --
83: l_fct_ret boolean;
84: --

Line 155: from ff_functions

151: ,data_type
152: ,definition
153: ,description
154: ,object_version_number
155: from ff_functions
156: where function_id = p_function_id
157: for update nowait;
158: --
159: l_proc varchar2(72) := g_package||'lck';

Line 204: fnd_message.set_token('TABLE_NAME', 'ff_functions');

200: -- The object is locked therefore we need to supply a meaningful
201: -- error message.
202: --
203: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
204: fnd_message.set_token('TABLE_NAME', 'ff_functions');
205: fnd_message.raise_error;
206: End lck;
207: --
208: -- ----------------------------------------------------------------------------