DBA Data[Home] [Help]

APPS.FA_LOOKUP_TYPES_PKG dependencies on APP_EXCEPTION

Line 106: app_exception.raise_exception;

102: fetch c into recinfo;
103: if (c%notfound) then
104: close c;
105: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
106: app_exception.raise_exception;
107: end if;
108: close c;
109: if ( (recinfo.USER_MAINTAINABLE = X_USER_MAINTAINABLE)
110: ) then

Line 114: app_exception.raise_exception;

110: ) then
111: null;
112: else
113: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
114: app_exception.raise_exception;
115: end if;
116:
117: for tlinfo in c1 loop
118: if (tlinfo.BASELANG = 'Y') then

Line 125: app_exception.raise_exception;

121: ) then
122: null;
123: else
124: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
125: app_exception.raise_exception;
126: end if;
127: end if;
128: end loop;
129: return;