DBA Data[Home] [Help]

APPS.QP_PRICE_BOOK_HEADERS_PKG dependencies on FND_MESSAGE

Line 167: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');

163: open c;
164: fetch c into recinfo;
165: if (c%notfound) then
166: close c;
167: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
168: app_exception.raise_exception;
169: end if;
170: close c;
171: if ( (recinfo.PRICE_BOOK_TYPE_CODE = X_PRICE_BOOK_TYPE_CODE)

Line 194: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');

190: AND (recinfo.PB_INPUT_HEADER_ID = X_PB_INPUT_HEADER_ID)
191: ) then
192: null;
193: else
194: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
195: app_exception.raise_exception;
196: end if;
197:
198: for tlinfo in c1 loop

Line 203: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');

199: if (tlinfo.BASELANG = 'Y') then
200: if (tlinfo.PRICE_BOOK_NAME = X_PRICE_BOOK_NAME) then
201: null;
202: else
203: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
204: app_exception.raise_exception;
205: end if;
206: end if;
207: end loop;