DBA Data[Home] [Help]

APPS.FND_TRANSACTION dependencies on FND_MESSAGE

Line 346: fnd_message.set_name('FND', 'CONC-TM-Invalid timeout');

342: debug_info('fnd_transaction.synchronous', 'Starting transaction', NULL);
343: end if;
344:
345: if (timeout <= 0 or timeout is null) then
346: fnd_message.set_name('FND', 'CONC-TM-Invalid timeout');
347: debug_info('fnd_transaction.synchronous', 'Invalid timeout parameter', to_char(timeout));
348: raise error;
349: end if;
350:

Line 352: fnd_message.set_name('FND', 'CONC-TM-Application null');

348: raise error;
349: end if;
350:
351: if (application is null) then
352: fnd_message.set_name('FND', 'CONC-TM-Application null');
353: debug_info('fnd_transaction.synchronous', 'NULL application parameter', NULL);
354: raise error;
355: end if;
356:

Line 358: fnd_message.set_name('FND', 'CONC-TM-Program null');

354: raise error;
355: end if;
356:
357: if (program is null) then
358: fnd_message.set_name('FND', 'CONC-TM-Program null');
359: debug_info('fnd_transaction.synchronous', 'NULL program parameter', NULL);
360: raise error;
361: end if;
362:

Line 570: fnd_message.set_name ('FND', 'SQL-Generic error');

566: when error then
567: return E_OTHER;
568:
569: when OTHERS then
570: fnd_message.set_name ('FND', 'SQL-Generic error');
571: fnd_message.set_token ('ERRNO', sqlcode, FALSE);
572: fnd_message.set_token ('REASON', sqlerrm, FALSE);
573: fnd_message.set_token ('ROUTINE', 'FND_TRANSACTION.SYNCHRONOUS', FALSE);
574: debug_info('fnd_transaction.synchronous', 'Caught exception', sqlerrm);

Line 571: fnd_message.set_token ('ERRNO', sqlcode, FALSE);

567: return E_OTHER;
568:
569: when OTHERS then
570: fnd_message.set_name ('FND', 'SQL-Generic error');
571: fnd_message.set_token ('ERRNO', sqlcode, FALSE);
572: fnd_message.set_token ('REASON', sqlerrm, FALSE);
573: fnd_message.set_token ('ROUTINE', 'FND_TRANSACTION.SYNCHRONOUS', FALSE);
574: debug_info('fnd_transaction.synchronous', 'Caught exception', sqlerrm);
575: return E_OTHER;

Line 572: fnd_message.set_token ('REASON', sqlerrm, FALSE);

568:
569: when OTHERS then
570: fnd_message.set_name ('FND', 'SQL-Generic error');
571: fnd_message.set_token ('ERRNO', sqlcode, FALSE);
572: fnd_message.set_token ('REASON', sqlerrm, FALSE);
573: fnd_message.set_token ('ROUTINE', 'FND_TRANSACTION.SYNCHRONOUS', FALSE);
574: debug_info('fnd_transaction.synchronous', 'Caught exception', sqlerrm);
575: return E_OTHER;
576:

Line 573: fnd_message.set_token ('ROUTINE', 'FND_TRANSACTION.SYNCHRONOUS', FALSE);

569: when OTHERS then
570: fnd_message.set_name ('FND', 'SQL-Generic error');
571: fnd_message.set_token ('ERRNO', sqlcode, FALSE);
572: fnd_message.set_token ('REASON', sqlerrm, FALSE);
573: fnd_message.set_token ('ROUTINE', 'FND_TRANSACTION.SYNCHRONOUS', FALSE);
574: debug_info('fnd_transaction.synchronous', 'Caught exception', sqlerrm);
575: return E_OTHER;
576:
577: end synchronous;

Line 641: fnd_message.set_name ('FND', 'SQL-Generic error');

637: return E_SUCCESS;
638:
639: exception
640: when others then
641: fnd_message.set_name ('FND', 'SQL-Generic error');
642: fnd_message.set_token ('ERRNO', sqlcode, FALSE);
643: fnd_message.set_token ('REASON', sqlerrm, FALSE);
644: fnd_message.set_token ('ROUTINE', 'FND_TRANSACTION.GET_VALUES', FALSE);
645: return E_OTHER;

Line 642: fnd_message.set_token ('ERRNO', sqlcode, FALSE);

638:
639: exception
640: when others then
641: fnd_message.set_name ('FND', 'SQL-Generic error');
642: fnd_message.set_token ('ERRNO', sqlcode, FALSE);
643: fnd_message.set_token ('REASON', sqlerrm, FALSE);
644: fnd_message.set_token ('ROUTINE', 'FND_TRANSACTION.GET_VALUES', FALSE);
645: return E_OTHER;
646: end get_values;

Line 643: fnd_message.set_token ('REASON', sqlerrm, FALSE);

639: exception
640: when others then
641: fnd_message.set_name ('FND', 'SQL-Generic error');
642: fnd_message.set_token ('ERRNO', sqlcode, FALSE);
643: fnd_message.set_token ('REASON', sqlerrm, FALSE);
644: fnd_message.set_token ('ROUTINE', 'FND_TRANSACTION.GET_VALUES', FALSE);
645: return E_OTHER;
646: end get_values;
647:

Line 644: fnd_message.set_token ('ROUTINE', 'FND_TRANSACTION.GET_VALUES', FALSE);

640: when others then
641: fnd_message.set_name ('FND', 'SQL-Generic error');
642: fnd_message.set_token ('ERRNO', sqlcode, FALSE);
643: fnd_message.set_token ('REASON', sqlerrm, FALSE);
644: fnd_message.set_token ('ROUTINE', 'FND_TRANSACTION.GET_VALUES', FALSE);
645: return E_OTHER;
646: end get_values;
647:
648: