DBA Data[Home] [Help]

APPS.PQH_VLD_SHD dependencies on PQH_FR_VALIDATIONS

Line 67: from pqh_fr_validations

63: ,deduction_per_period
64: ,deduction_currency_code
65: ,percent_of_salary
66: ,object_version_number
67: from pqh_fr_validations
68: where validation_id = p_validation_id;
69: --
70: l_fct_ret boolean;
71: --

Line 150: from pqh_fr_validations

146: ,deduction_per_period
147: ,deduction_currency_code
148: ,percent_of_salary
149: ,object_version_number
150: from pqh_fr_validations
151: where validation_id = p_validation_id
152: for update nowait;
153: --
154: l_proc varchar2(72) := g_package||'lck';

Line 199: fnd_message.set_token('TABLE_NAME', 'pqh_fr_validations');

195: -- The object is locked therefore we need to supply a meaningful
196: -- error message.
197: --
198: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
199: fnd_message.set_token('TABLE_NAME', 'pqh_fr_validations');
200: fnd_message.raise_error;
201: End lck;
202: --
203: -- ----------------------------------------------------------------------------