DBA Data[Home] [Help]

APPS.FEM_VALUE_SETS_PKG dependencies on APP_EXCEPTION

Line 134: app_exception.raise_exception;

130: fetch c into recinfo;
131: if (c%notfound) then
132: close c;
133: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
134: app_exception.raise_exception;
135: end if;
136: close c;
137: if ( ((recinfo.DEFAULT_LOAD_MEMBER_ID = X_DEFAULT_LOAD_MEMBER_ID)
138: OR ((recinfo.DEFAULT_LOAD_MEMBER_ID is null) AND (X_DEFAULT_LOAD_MEMBER_ID is null)))

Line 151: app_exception.raise_exception;

147: ) then
148: null;
149: else
150: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
151: app_exception.raise_exception;
152: end if;
153:
154: for tlinfo in c1 loop
155: if (tlinfo.BASELANG = 'Y') then

Line 163: app_exception.raise_exception;

159: ) then
160: null;
161: else
162: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
163: app_exception.raise_exception;
164: end if;
165: end if;
166: end loop;
167: return;