DBA Data[Home] [Help]

APPS.IBY_VALIDATIONSETS_PUB dependencies on IBY_TRANSACTION_ERRORS_GT

Line 3270: | IBY_TRANSACTION_ERRORS_GT; for deferred validations, the

3266: |
3267: | PURPOSE:
3268: | Inserts the error messages into the errors table. For
3269: | online validations, the error messages are inserted into
3270: | IBY_TRANSACTION_ERRORS_GT; for deferred validations, the
3271: | error messages are inserted into IBY_TRANSACTION_ERRORS
3272: | table.
3273: |
3274: | Validation sets populate the transaction errors into a PLSQL

Line 3649: * Insert error messages into IBY_TRANSACTION_ERRORS_GT table.

3645: END IF;
3646: ELSE
3647:
3648: /*
3649: * Insert error messages into IBY_TRANSACTION_ERRORS_GT table.
3650: */
3651:
3652: IF ( G_LEVEL_STATEMENT >= G_CURRENT_RUNTIME_LEVEL) THEN
3653: print_debuginfo(l_module_name, 'Bulk Inserting errors into '

Line 3654: || 'IBY_TRANSACTION_ERRORS_GT.');

3650: */
3651:
3652: IF ( G_LEVEL_STATEMENT >= G_CURRENT_RUNTIME_LEVEL) THEN
3653: print_debuginfo(l_module_name, 'Bulk Inserting errors into '
3654: || 'IBY_TRANSACTION_ERRORS_GT.');
3655:
3656: END IF;
3657: --FORALL i in x_docErrorTab.FIRST..x_docErrorTab.LAST
3658: -- INSERT INTO IBY_TRANSACTION_ERRORS_GT VALUES x_docErrorTab(i);

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

3654: || 'IBY_TRANSACTION_ERRORS_GT.');
3655:
3656: END IF;
3657: --FORALL i in x_docErrorTab.FIRST..x_docErrorTab.LAST
3658: -- INSERT INTO IBY_TRANSACTION_ERRORS_GT VALUES x_docErrorTab(i);
3659:
3660: /*
3661: * Use named columns in bulk insert syntax to avoid any
3662: * dependencies on the order of the columns in the table.

Line 3665: INSERT INTO IBY_TRANSACTION_ERRORS_GT

3661: * Use named columns in bulk insert syntax to avoid any
3662: * dependencies on the order of the columns in the table.
3663: */
3664: FORALL i in x_docErrorTab.FIRST..x_docErrorTab.LAST
3665: INSERT INTO IBY_TRANSACTION_ERRORS_GT
3666: (
3667: transaction_error_id,
3668: transaction_type,
3669: transaction_id,

Line 3729: || 'IBY_TRANSACTION_ERRORS_GT.');

3725: ;
3726:
3727: IF ( G_LEVEL_STATEMENT >= G_CURRENT_RUNTIME_LEVEL) THEN
3728: print_debuginfo(l_module_name, 'Finished populating '
3729: || 'IBY_TRANSACTION_ERRORS_GT.');
3730:
3731:
3732: END IF;
3733: END IF; -- p_isOnlineVal = 'N'