DBA Data[Home] [Help]

APPS.CN_EVENTS_ALL_PKG dependencies on APP_EXCEPTION

Line 116: app_exception.raise_exception;

112: fetch c into recinfo;
113: if (c%notfound) then
114: close c;
115: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
116: app_exception.raise_exception;
117: end if;
118: close c;
119: if ( (recinfo.APPLICATION_REPOSITORY_ID = X_APPLICATION_REPOSITORY_ID)
120: AND ((recinfo.DESCRIPTION = X_DESCRIPTION)

Line 126: app_exception.raise_exception;

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

Line 136: app_exception.raise_exception;

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