DBA Data[Home] [Help]

APPS.PQH_DFS_UPD dependencies on PQH_DFLT_FUND_SRCS

Line 60: -- Update the pqh_dflt_fund_srcs Row

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

Line 62: update pqh_dflt_fund_srcs

58: --
59: --
60: -- Update the pqh_dflt_fund_srcs Row
61: --
62: update pqh_dflt_fund_srcs
63: set
64: dflt_fund_src_id = p_rec.dflt_fund_src_id,
65: dflt_budget_element_id = p_rec.dflt_budget_element_id,
66: dflt_dist_percentage = p_rec.dflt_dist_percentage,

Line 180: from pqh_dflt_fund_srcs

176: l_sum number(15,2) := 0;
177:
178: cursor csr_element(p_dflt_budget_element_id in number) is
179: select SUM(NVL(dflt_dist_percentage,0))
180: from pqh_dflt_fund_srcs
181: where dflt_budget_element_id = p_dflt_budget_element_id;
182:
183:
184: Begin

Line 232: (p_module_name => 'pqh_dflt_fund_srcs'

228: --
229: when hr_api.cannot_find_prog_unit then
230: --
231: hr_api.cannot_find_prog_unit_error
232: (p_module_name => 'pqh_dflt_fund_srcs'
233: ,p_hook_type => 'AU');
234: --
235: end;
236: --