DBA Data[Home] [Help]

APPS.IBY_ACCT_PMT_PROFILES_PKG dependencies on FND_MESSAGE

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

177: open c;
178: fetch c into recinfo;
179: if (c%notfound) then
180: close c;
181: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
182: app_exception.raise_exception;
183: end if;
184: close c;
185: if ( (recinfo.SYSTEM_PROFILE_CODE = X_SYSTEM_PROFILE_CODE)

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

216: OR ((recinfo.ACK_TRANSMIT_CONFIG_ID is null) AND (X_ACK_TRANSMIT_CONFIG_ID is null)))
217: ) then
218: null;
219: else
220: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
221: app_exception.raise_exception;
222: end if;
223:
224: for tlinfo in c1 loop

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

226: if ( (tlinfo.PAYMENT_PROFILE_NAME = X_PAYMENT_PROFILE_NAME)
227: ) then
228: null;
229: else
230: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
231: app_exception.raise_exception;
232: end if;
233: end if;
234: end loop;