DBA Data[Home] [Help]

APPS.BEN_EXT_FLD_PKG dependencies on APP_EXCEPTION

Line 147: app_exception.raise_exception;

143: fetch c into recinfo;
144: if (c%notfound) then
145: close c;
146: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
147: app_exception.raise_exception;
148: end if;
149: close c;
150: if ( (recinfo.DECD_FLAG = P_DECD_FLAG)
151: AND ((recinfo.SHORT_NAME = P_SHORT_NAME)

Line 169: app_exception.raise_exception;

165: ) then
166: null;
167: else
168: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
169: app_exception.raise_exception;
170: end if;
171:
172: for tlinfo in c1 loop
173: if (tlinfo.BASELANG = 'Y') then

Line 180: app_exception.raise_exception;

176: ) then
177: null;
178: else
179: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
180: app_exception.raise_exception;
181: end if;
182: end if;
183: end loop;
184: return;