DBA Data[Home] [Help]

APPS.AMW_OPINION_COMPONTS_PKG dependencies on APP_EXCEPTION

Line 111: app_exception.raise_exception;

107: fetch c into recinfo;
108: if (c%notfound) then
109: close c;
110: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
111: app_exception.raise_exception;
112: end if;
113: close c;
114: if ( (recinfo.OPINION_COMPONENT_CODE = X_OPINION_COMPONENT_CODE)
115: AND (recinfo.OBJECT_OPINION_TYPE_ID = X_OBJECT_OPINION_TYPE_ID)

Line 125: app_exception.raise_exception;

121: ) then
122: null;
123: else
124: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
125: app_exception.raise_exception;
126: end if;
127:
128: for tlinfo in c1 loop
129: 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;