DBA Data[Home] [Help]

APPS.PQH_OPL_SHD dependencies on PQH_DE_OPERATIONS

Line 21: If (p_constraint_name = 'PQH_DE_OPERATIONS_PK') Then

17: l_proc varchar2(72) := g_package||'constraint_error';
18: --
19: Begin
20: --
21: If (p_constraint_name = 'PQH_DE_OPERATIONS_PK') Then
22: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
23: fnd_message.set_token('PROCEDURE', l_proc);
24: fnd_message.set_token('STEP','5');
25: fnd_message.raise_error;

Line 53: from pqh_de_operations

49: operation_id
50: ,operation_number
51: ,description
52: ,object_version_number
53: from pqh_de_operations
54: where operation_id = p_operation_id;
55: --
56: l_fct_ret boolean;
57: --

Line 122: from pqh_de_operations

118: operation_id
119: ,operation_number
120: ,description
121: ,object_version_number
122: from pqh_de_operations
123: where operation_id = p_operation_id
124: for update nowait;
125: --
126: l_proc varchar2(72) := g_package||'lck';

Line 171: fnd_message.set_token('TABLE_NAME', 'pqh_de_operations');

167: -- The object is locked therefore we need to supply a meaningful
168: -- error message.
169: --
170: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
171: fnd_message.set_token('TABLE_NAME', 'pqh_de_operations');
172: fnd_message.raise_error;
173: End lck;
174: --
175: -- ----------------------------------------------------------------------------