DBA Data[Home] [Help]

APPS.CSD_RETURN_RULES_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.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER)
128: AND (recinfo.SOURCE_ID = X_SOURCE_ID)

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 150: app_exception.raise_exception;

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