DBA Data[Home] [Help]

APPS.PQH_RLT_BUS dependencies on PQH_ROUTING_LISTS

Line 56: pqh_rlt_shd.constraint_error('PQH_ROUTING_LISTS_PK');

52: <> pqh_rlt_shd.g_old_rec.routing_list_id) then
53: --
54: -- raise error as PK has changed
55: --
56: pqh_rlt_shd.constraint_error('PQH_ROUTING_LISTS_PK');
57: --
58: elsif not l_api_updating then
59: --
60: -- check if PK is null

Line 66: pqh_rlt_shd.constraint_error('PQH_ROUTING_LISTS_PK');

62: if p_routing_list_id is not null then
63: --
64: -- raise error as PK is not null
65: --
66: pqh_rlt_shd.constraint_error('PQH_ROUTING_LISTS_PK');
67: --
68: end if;
69: --
70: end if;

Line 113: from pqh_routing_lists

109: l_dummy varchar2(10);
110: --
111: cursor c1 is
112: select 'x'
113: from pqh_routing_lists
114: where nvl(routing_list_name,hr_api.g_varchar2) = nvl(p_routing_list_name,hr_api.g_varchar2);
115: Begin
116: --
117: hr_utility.set_location('Entering:'||l_proc, 5);

Line 135: -- pqh_rlt_shd.constraint_error('PQH_ROUTING_LISTS_PK');

131: if c1%found then
132: close c1;
133: hr_utility.set_message(8302,'PQH_ROUTING_LIST_NAME_EXISTS');
134: hr_utility.raise_error;
135: -- pqh_rlt_shd.constraint_error('PQH_ROUTING_LISTS_PK');
136: end if;
137: close c1;
138: --
139: end if;