DBA Data[Home] [Help]

APPS.BEN_COP_BUS dependencies on BEN_PL_PCP

Line 1754: -- a ben_pl_pcp row attached to it.

1750: --
1751: -- Description
1752: -- This procedure is used to check that an oipl cannot have its pcp_dsgn_cd
1753: -- nor its pcp_dpnt_dsgn_cd set to not null until the corresponding plan has
1754: -- a ben_pl_pcp row attached to it.
1755: --
1756: -- Pre Conditions
1757: -- None.
1758: --

Line 1792: from ben_pl_pcp a

1788: l_dummy varchar2(1);
1789: --
1790: cursor c1 is
1791: select null
1792: from ben_pl_pcp a
1793: where a.pl_id = p_pl_id
1794: and a.business_group_id = p_business_group_id;
1795: --
1796: Begin

Line 1815: -- raise an error as there is no ben_pl_pcp row for the corresponding plan.

1811: if c1%notfound then
1812: --
1813: close c1;
1814: --
1815: -- raise an error as there is no ben_pl_pcp row for the corresponding plan.
1816: --
1817: fnd_message.set_name('BEN','BEN_92592_NO_PL_PCP_ROW');
1818: fnd_message.raise_error;
1819: --