DBA Data[Home] [Help]

APPS.FUN_XLA_TAB_PKG dependencies on XLA_TAB_ERRORS_GT

Line 1016: --Read the errors from XLA_TAB_ERRORS_GT and push them on the stack

1012: l_return_status := C_RET_STS_ERROR;
1013: --If the row has more than one error fetch them from the error table
1014: ELSIF l_row_msg_count > 1
1015: THEN
1016: --Read the errors from XLA_TAB_ERRORS_GT and push them on the stack
1017: SELECT xte.msg_data
1018: BULK COLLECT
1019: INTO l_table_of_row_errors
1020: FROM xla_tab_errors_gt xte

Line 1020: FROM xla_tab_errors_gt xte

1016: --Read the errors from XLA_TAB_ERRORS_GT and push them on the stack
1017: SELECT xte.msg_data
1018: BULK COLLECT
1019: INTO l_table_of_row_errors
1020: FROM xla_tab_errors_gt xte
1021: WHERE xte.base_rowid = l_row_base_rowid;
1022: --Loop on the errors and push them on the stack
1023: FOR i IN l_table_of_row_errors.FIRST .. l_table_of_row_errors.LAST
1024: LOOP