DBA Data[Home] [Help]

APPS.CLN_NOTIFICATION_CODES_PKG dependencies on APP_EXCEPTION

Line 105: app_exception.raise_exception;

101: fetch c into recinfo;
102: if (c%notfound) then
103: close c;
104: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
105: app_exception.raise_exception;
106: end if;
107: close c;
108: if ( ((recinfo.COLLABORATION_POINT = X_COLLABORATION_POINT)
109: OR ((recinfo.COLLABORATION_POINT is null) AND (X_COLLABORATION_POINT is null)))

Line 116: app_exception.raise_exception;

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

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: end if;
130: end loop;
131: return;