Access a queue in base_test from a sequence

In reply to negoyal:

Hi,
I have a uvm_tlm_fifo of transactions in my base_test that I want to be accessed from my base_sequence. Don’t worry about objections or when will the sequence start or stop. I just want my sequence task body to be able to access this queue in my base-test.
I create and start this sequence from my base test.
Is there a way to set this uvm_tlm_fifo in the config_db and then have sequencer get it. Then my sequence could look at it using p_sequencer? I tried setting it, but this is not a valid type it looks like
Neha

In my opinion you are mixing 2 approaches.
(1) The sequence is generating the seq_items. But you have already the seq_items.
(2) Providing seq_items in a storage element. This is exactly what you have. In this case you do not need any sequence and no sequencer.

Note, working with pre-defined seq_items is not very flexible and might lower your functional coverage.