DBA Data[Home] [Help]

APPS.AR_BPA_PAGE_SETUPS_PKG dependencies on FND_MESSAGE

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

150: open c;
151: fetch c into recinfo;
152: if (c%notfound) then
153: close c;
154: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
155: app_exception.raise_exception;
156: end if;
157: close c;
158: if ( (recinfo.PAGE_WIDTH = X_PAGE_WIDTH)

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

169: AND (recinfo.PRINT_FONT_SIZE = X_PRINT_FONT_SIZE)
170: ) then
171: null;
172: else
173: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
174: app_exception.raise_exception;
175: end if;
176:
177: for tlinfo in c1 loop

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

181: OR ((tlinfo.PAGE_SETUP_DESC is null) AND (X_PAGE_SETUP_DESC is null)))
182: ) then
183: null;
184: else
185: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
186: app_exception.raise_exception;
187: end if;
188: end if;
189: end loop;