DBA Data[Home] [Help]

APPS.PQH_WKS_BUS dependencies on PQH_BUDGET_VERSIONS

Line 111: from pqh_budget_versions a

107: l_dummy varchar2(1);
108: --
109: cursor c1 is
110: select null
111: from pqh_budget_versions a
112: where a.budget_version_id = p_budget_version_id;
113: --
114: Begin
115: --

Line 127: -- check if budget_version_id value exists in pqh_budget_versions table

123: and nvl(p_budget_version_id,hr_api.g_number)
124: <> nvl(pqh_wks_shd.g_old_rec.budget_version_id,hr_api.g_number)
125: or not l_api_updating) then
126: --
127: -- check if budget_version_id value exists in pqh_budget_versions table
128: --
129: open c1;
130: --
131: fetch c1 into l_dummy;

Line 136: -- raise error as FK does not relate to PK in pqh_budget_versions

132: if c1%notfound then
133: --
134: close c1;
135: --
136: -- raise error as FK does not relate to PK in pqh_budget_versions
137: -- table.
138: --
139: pqh_wks_shd.constraint_error('PQH_WORKSHEETS_FK2');
140: --

Line 469: from pqh_budget_versions a

465: l_dummy varchar2(1);
466: --
467: Cursor c1 is
468: Select null
469: from pqh_budget_versions a
470: where a.budget_id = p_budget_id
471: AND a.version_number = p_version_number;
472: Begin
473: --