DBA Data[Home] [Help]

APPS.IBY_VALIDATIONSETS_PUB dependencies on IBY_TRANSACTION_ERRORS_GT

Line 3217: | IBY_TRANSACTION_ERRORS_GT; for deferred validations, the

3213: |
3214: | PURPOSE:
3215: | Inserts the error messages into the errors table. For
3216: | online validations, the error messages are inserted into
3217: | IBY_TRANSACTION_ERRORS_GT; for deferred validations, the
3218: | error messages are inserted into IBY_TRANSACTION_ERRORS
3219: | table.
3220: |
3221: | Validation sets populate the transaction errors into a PLSQL

Line 3590: * Insert error messages into IBY_TRANSACTION_ERRORS_GT table.

3586:
3587: ELSE
3588:
3589: /*
3590: * Insert error messages into IBY_TRANSACTION_ERRORS_GT table.
3591: */
3592:
3593: print_debuginfo(l_module_name, 'Bulk Inserting errors into '
3594: || 'IBY_TRANSACTION_ERRORS_GT.');

Line 3594: || 'IBY_TRANSACTION_ERRORS_GT.');

3590: * Insert error messages into IBY_TRANSACTION_ERRORS_GT table.
3591: */
3592:
3593: print_debuginfo(l_module_name, 'Bulk Inserting errors into '
3594: || 'IBY_TRANSACTION_ERRORS_GT.');
3595:
3596: --FORALL i in x_docErrorTab.FIRST..x_docErrorTab.LAST
3597: -- INSERT INTO IBY_TRANSACTION_ERRORS_GT VALUES x_docErrorTab(i);
3598:

Line 3597: -- INSERT INTO IBY_TRANSACTION_ERRORS_GT VALUES x_docErrorTab(i);

3593: print_debuginfo(l_module_name, 'Bulk Inserting errors into '
3594: || 'IBY_TRANSACTION_ERRORS_GT.');
3595:
3596: --FORALL i in x_docErrorTab.FIRST..x_docErrorTab.LAST
3597: -- INSERT INTO IBY_TRANSACTION_ERRORS_GT VALUES x_docErrorTab(i);
3598:
3599: /*
3600: * Use named columns in bulk insert syntax to avoid any
3601: * dependencies on the order of the columns in the table.

Line 3604: INSERT INTO IBY_TRANSACTION_ERRORS_GT

3600: * Use named columns in bulk insert syntax to avoid any
3601: * dependencies on the order of the columns in the table.
3602: */
3603: FORALL i in x_docErrorTab.FIRST..x_docErrorTab.LAST
3604: INSERT INTO IBY_TRANSACTION_ERRORS_GT
3605: (
3606: transaction_error_id,
3607: transaction_type,
3608: transaction_id,

Line 3667: || 'IBY_TRANSACTION_ERRORS_GT.');

3663: )
3664: ;
3665:
3666: print_debuginfo(l_module_name, 'Finished populating '
3667: || 'IBY_TRANSACTION_ERRORS_GT.');
3668:
3669:
3670: END IF; -- p_isOnlineVal = 'N'
3671: