DBA Data[Home] [Help]

APPS.AMW_NONSTANDARD_VARIATIONS_PKG dependencies on APP_EXCEPTION

Line 142: app_exception.raise_exception;

138: fetch c into recinfo;
139: if (c%notfound) then
140: close c;
141: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
142: app_exception.raise_exception;
143: end if;
144: close c;
145: if ( ((recinfo.STD_PROCESS_ID = X_STD_PROCESS_ID)
146: OR ((recinfo.STD_PROCESS_ID is null) AND (X_STD_PROCESS_ID is null)))

Line 166: app_exception.raise_exception;

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

Line 177: app_exception.raise_exception;

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