DBA Data[Home] [Help]

APPS.PQH_DFS_BUS dependencies on PQH_DFLT_FUND_SRCS

Line 56: pqh_dfs_shd.constraint_error('PQH_DFLT_FUND_SRCS_PK');

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

Line 66: pqh_dfs_shd.constraint_error('PQH_DFLT_FUND_SRCS_PK');

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

Line 140: pqh_dfs_shd.constraint_error('PQH_DFLT_FUND_SRCS_FK2');

136: --
137: -- raise error as FK does not relate to PK in pay_cost_allocation_keyflex
138: -- table.
139: --
140: pqh_dfs_shd.constraint_error('PQH_DFLT_FUND_SRCS_FK2');
141: --
142: end if;
143: --
144: close c1;

Line 215: pqh_dfs_shd.constraint_error('PQH_DFLT_FUND_SRCS_FK1');

211: --
212: -- raise error as FK does not relate to PK in pqh_dflt_budget_elements
213: -- table.
214: --
215: pqh_dfs_shd.constraint_error('PQH_DFLT_FUND_SRCS_FK1');
216: --
217: end if;
218: --
219: close c1;

Line 245: from pqh_dflt_fund_srcs

241: l_dummy varchar2(1) ;
242:
243: cursor csr_src is
244: select 'X'
245: from pqh_dflt_fund_srcs
246: where dflt_budget_element_id = p_dflt_budget_element_id
247: and dflt_fund_src_id <> nvl(p_dflt_fund_src_id,0)
248: and nvl(cost_allocation_keyflex_id,0) = nvl(p_cost_allocation_keyflex_id,0)
249: and nvl(project_id,0) = nvl(p_project_id,0)

Line 306: from pqh_dflt_fund_srcs

302: l_sum number(15,2) := 0;
303:
304: cursor csr_element is
305: select SUM(NVL(dflt_dist_percentage,0))
306: from pqh_dflt_fund_srcs
307: where dflt_budget_element_id = p_dflt_budget_element_id;
308:
309: Begin
310: --