DBA Data[Home] [Help]

APPS.PQH_BGT_UPD dependencies on PQH_BUDGETS

Line 60: -- Update the pqh_budgets Row

56: --
57: p_rec.object_version_number := p_rec.object_version_number + 1;
58: --
59: --
60: -- Update the pqh_budgets Row
61: --
62: update pqh_budgets
63: set
64: budget_id = p_rec.budget_id,

Line 62: update pqh_budgets

58: --
59: --
60: -- Update the pqh_budgets Row
61: --
62: update pqh_budgets
63: set
64: budget_id = p_rec.budget_id,
65: business_group_id = p_rec.business_group_id,
66: start_organization_id = p_rec.start_organization_id,

Line 149: l_budgets_rec pqh_budgets%ROWTYPE;

145: Procedure pre_update(p_rec in pqh_bgt_shd.g_rec_type) is
146: --
147: l_proc varchar2(72) := g_package||'pre_update';
148: --
149: l_budgets_rec pqh_budgets%ROWTYPE;
150: --
151: cursor csr_budget(p_budget_id IN number) is
152: select *
153: from pqh_budgets

Line 153: from pqh_budgets

149: l_budgets_rec pqh_budgets%ROWTYPE;
150: --
151: cursor csr_budget(p_budget_id IN number) is
152: select *
153: from pqh_budgets
154: where budget_id = p_budget_id;
155:
156: Begin
157: hr_utility.set_location('Entering:'||l_proc, 5);

Line 288: (p_module_name => 'pqh_budgets'

284: --
285: when hr_api.cannot_find_prog_unit then
286: --
287: hr_api.cannot_find_prog_unit_error
288: (p_module_name => 'pqh_budgets'
289: ,p_hook_type => 'AU');
290: --
291: end;
292: --