DBA Data[Home] [Help]

APPS.ENG_CHANGE_TEMPLATES_PKG dependencies on APP_EXCEPTION

Line 115: app_exception.raise_exception;

111: fetch c into recinfo;
112: if (c%notfound) then
113: close c;
114: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
115: app_exception.raise_exception;
116: end if;
117: close c;
118: if ( (recinfo.ORGANIZATION_ID = X_ORGANIZATION_ID)
119: AND ((recinfo.START_DATE = X_START_DATE)

Line 127: app_exception.raise_exception;

123: ) then
124: null;
125: else
126: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
127: app_exception.raise_exception;
128: end if;
129:
130: for tlinfo in c1 loop
131: if (tlinfo.BASELANG = 'Y') then

Line 139: app_exception.raise_exception;

135: ) then
136: null;
137: else
138: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
139: app_exception.raise_exception;
140: end if;
141: end if;
142: end loop;
143: return;