DBA Data[Home] [Help]

APPS.CSD_RETURN_TYPES_PKG dependencies on APP_EXCEPTION

Line 124: app_exception.raise_exception;

120: fetch c into recinfo;
121: if (c%notfound) then
122: close c;
123: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
124: app_exception.raise_exception;
125: end if;
126: close c;
127: if ( ((recinfo.ACTIVE_START_DATE = X_ACTIVE_START_DATE)
128: OR ((recinfo.ACTIVE_START_DATE is null) AND (X_ACTIVE_START_DATE is null)))

Line 137: app_exception.raise_exception;

133: ) then
134: null;
135: else
136: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
137: app_exception.raise_exception;
138: end if;
139:
140: for tlinfo in c1 loop
141: if (tlinfo.BASELANG = 'Y') then

Line 151: app_exception.raise_exception;

147: ) then
148: null;
149: else
150: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
151: app_exception.raise_exception;
152: end if;
153: end if;
154: end loop;
155: return;