DBA Data[Home] [Help]

APPS.FTP_REPRICE_PATTERN_PKG dependencies on APP_EXCEPTION

Line 118: app_exception.raise_exception;

114: fetch c into recinfo;
115: if (c%notfound) then
116: close c;
117: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
118: app_exception.raise_exception;
119: end if;
120: close c;
121: if ( (recinfo.ADJUSTABLE_TYPE_CODE = X_ADJUSTABLE_TYPE_CODE)
122: AND (recinfo.PATTERN_TYPE_CODE = X_PATTERN_TYPE_CODE)

Line 130: app_exception.raise_exception;

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

Line 141: app_exception.raise_exception;

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