DBA Data[Home] [Help]

APPS.BEN_CQB_BUS dependencies on BEN_PGM_F

Line 111: from ben_pgm_f a

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

Line 127: -- check if pgm_id value exists in ben_pgm_f table

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

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

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