DBA Data[Home] [Help]

APPS.FND_NATURAL_LANGUAGES_PKG dependencies on APP_EXCEPTION

Line 115: app_exception.raise_exception;

111: fetch c into recinfo;
112: if (c%notfound) then
113: close c;
114: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
115: app_exception.raise_exception;
116: end if;
117: close c;
118: if ( ((recinfo.ISO_LANGUAGE_3 = X_ISO_LANGUAGE_3)
119: OR ((recinfo.ISO_LANGUAGE_3 is null) AND (X_ISO_LANGUAGE_3 is null)))

Line 127: app_exception.raise_exception;

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

Line 138: app_exception.raise_exception;

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