DBA Data[Home] [Help]

APPS.FA_LOOKUP_TYPES_PKG dependencies on APP_EXCEPTION

Line 104: app_exception.raise_exception;

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

Line 111: app_exception.raise_exception;

107: if ( (recinfo.USER_MAINTAINABLE = X_USER_MAINTAINABLE)) then
108: null;
109: else
110: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
111: app_exception.raise_exception;
112: end if;
113:
114: for tlinfo in c1 loop
115: if (tlinfo.BASELANG = 'Y') then

Line 121: app_exception.raise_exception;

117: AND (tlinfo.DESCRIPTION = X_DESCRIPTION)) then
118: null;
119: else
120: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
121: app_exception.raise_exception;
122: end if;
123: end if;
124: end loop;
125: return;