DBA Data[Home] [Help]

APPS.BEN_STARTUP_REGN_PKG dependencies on APP_EXCEPTION

Line 122: app_exception.raise_exception;

118: fetch c into recinfo;
119: if (c%notfound) then
120: close c;
121: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
122: app_exception.raise_exception;
123: end if;
124: close c;
125: if ( (recinfo.LEGISLATION_CODE = P_LEGISLATION_CODE)
126: ) then

Line 130: app_exception.raise_exception;

126: ) then
127: null;
128: else
129: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
130: app_exception.raise_exception;
131: end if;
132:
133: for tlinfo in c1 loop
134: if (tlinfo.BASELANG = 'Y') then

Line 140: app_exception.raise_exception;

136: ) then
137: null;
138: else
139: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
140: app_exception.raise_exception;
141: end if;
142: end if;
143: end loop;
144: return;