DBA Data[Home] [Help]

APPS.FND_DOCUMENT_ENTITIES_PKG dependencies on APP_EXCEPTION

Line 140: app_exception.raise_exception;

136: fetch c into recinfo;
137: if (c%notfound) then
138: close c;
139: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
140: app_exception.raise_exception;
141: end if;
142: close c;
143: if (NOT( (recinfo.APPLICATION_ID = X_APPLICATION_ID)
144: AND (recinfo.TABLE_NAME = X_TABLE_NAME)

Line 162: app_exception.raise_exception;

158: OR ((recinfo.PK5_COLUMN is null)
159: AND (X_PK5_COLUMN is null)))
160: )) then
161: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
162: app_exception.raise_exception;
163: end if;
164:
165: open c1;
166: fetch c1 into tlinfo;

Line 177: app_exception.raise_exception;

173: if (NOT( (tlinfo.USER_ENTITY_NAME = X_USER_ENTITY_NAME)
174: AND (tlinfo.USER_ENTITY_PROMPT = X_USER_ENTITY_PROMPT)
175: )) then
176: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
177: app_exception.raise_exception;
178: end if;
179: return;
180: end LOCK_ROW;
181: