DBA Data[Home] [Help]

APPS.FUN_XLA_TAB_PKG dependencies on XLA_TAB_ERRORS_GT

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

941: l_return_status := C_RET_STS_ERROR;
942: --If the row has more than one error fetch them from the error table
943: ELSIF l_row_msg_count > 1
944: THEN
945: --Read the errors from XLA_TAB_ERRORS_GT and push them on the stack
946: SELECT xte.msg_data
947: BULK COLLECT
948: INTO l_table_of_row_errors
949: FROM xla_tab_errors_gt xte

Line 949: FROM xla_tab_errors_gt xte

945: --Read the errors from XLA_TAB_ERRORS_GT and push them on the stack
946: SELECT xte.msg_data
947: BULK COLLECT
948: INTO l_table_of_row_errors
949: FROM xla_tab_errors_gt xte
950: WHERE xte.base_rowid = l_row_base_rowid;
951: --Loop on the errors and push them on the stack
952: FOR i IN l_table_of_row_errors.FIRST .. l_table_of_row_errors.LAST
953: LOOP