DBA Data[Home] [Help]

APPS.PQH_FYN_SHD dependencies on PQH_FYI_NOTIFY

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

17: --
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20: --
21: If (p_constraint_name = 'PQH_FYI_NOTIFY_PK') Then
22: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
23: hr_utility.set_message_token('PROCEDURE', l_proc);
24: hr_utility.set_message_token('STEP','5');
25: hr_utility.raise_error;

Line 59: from pqh_fyi_notify

55: notified_name,
56: notification_date,
57: status,
58: object_version_number
59: from pqh_fyi_notify
60: where fyi_notified_id = p_fyi_notified_id;
61: --
62: l_proc varchar2(72) := g_package||'api_updating';
63: l_fct_ret boolean;

Line 137: from pqh_fyi_notify

133: notified_name,
134: notification_date,
135: status,
136: object_version_number
137: from pqh_fyi_notify
138: where fyi_notified_id = p_fyi_notified_id
139: for update nowait;
140: --
141: l_proc varchar2(72) := g_package||'lck';

Line 180: hr_utility.set_message_token('TABLE_NAME', 'pqh_fyi_notify');

176: -- The object is locked therefore we need to supply a meaningful
177: -- error message.
178: --
179: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
180: hr_utility.set_message_token('TABLE_NAME', 'pqh_fyi_notify');
181: hr_utility.raise_error;
182: End lck;
183: --
184: -- ----------------------------------------------------------------------------