DBA Data[Home] [Help]

APPS.CUG_SR_TASK_ATTR_VALS_PKG dependencies on APP_EXCEPTION

Line 109: app_exception.raise_exception;

105: fetch c into recinfo;
106: if (c%notfound) then
107: close c;
108: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
109: app_exception.raise_exception;
110: end if;
111: close c;
112: if ( ((recinfo.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER)
113: OR ((recinfo.OBJECT_VERSION_NUMBER is null) AND (X_OBJECT_VERSION_NUMBER is null)))

Line 120: app_exception.raise_exception;

116: ) then
117: null;
118: else
119: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
120: app_exception.raise_exception;
121: end if;
122:
123: for tlinfo in c1 loop
124: if (tlinfo.BASELANG = 'Y') then

Line 131: app_exception.raise_exception;

127: ) then
128: null;
129: else
130: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
131: app_exception.raise_exception;
132: end if;
133: end if;
134: end loop;
135: return;