DBA Data[Home] [Help]

APPS.PQH_BPL_INS dependencies on PQH_BUDGET_POOLS

Line 87: -- Insert the row into: pqh_budget_pools

83: p_rec.object_version_number := 1; -- Initialise the object version
84: --
85: pqh_bpl_shd.g_api_dml := true; -- Set the api dml status
86: --
87: -- Insert the row into: pqh_budget_pools
88: --
89: insert into pqh_budget_pools
90: (pool_id
91: ,name

Line 89: insert into pqh_budget_pools

85: pqh_bpl_shd.g_api_dml := true; -- Set the api dml status
86: --
87: -- Insert the row into: pqh_budget_pools
88: --
89: insert into pqh_budget_pools
90: (pool_id
91: ,name
92: ,budget_version_id
93: ,budget_unit_id

Line 182: Cursor C_Sel1 is select pqh_budget_pools_s.nextval from sys.dual;

178: Procedure pre_insert
179: (p_rec in out nocopy pqh_bpl_shd.g_rec_type
180: ) is
181: --
182: Cursor C_Sel1 is select pqh_budget_pools_s.nextval from sys.dual;
183: --
184: Cursor C_Sel2 is
185: Select null
186: from pqh_budget_pools

Line 186: from pqh_budget_pools

182: Cursor C_Sel1 is select pqh_budget_pools_s.nextval from sys.dual;
183: --
184: Cursor C_Sel2 is
185: Select null
186: from pqh_budget_pools
187: where pool_id =
188: pqh_bpl_ins.g_pool_id_i;
189: --
190: l_proc varchar2(72) := g_package||'pre_insert';

Line 208: fnd_message.set_token('TABLE_NAME','pqh_budget_pools');

204: --
205: -- The primary key values are already in use.
206: --
207: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
208: fnd_message.set_token('TABLE_NAME','pqh_budget_pools');
209: fnd_message.raise_error;
210: End If;
211: Close C_Sel2;
212: --

Line 305: (p_module_name => 'PQH_BUDGET_POOLS'

301: --
302: when hr_api.cannot_find_prog_unit then
303: --
304: hr_api.cannot_find_prog_unit_error
305: (p_module_name => 'PQH_BUDGET_POOLS'
306: ,p_hook_type => 'AI');
307: --
308: end;
309: --