You have declared your record type incorrectly (I am assuming your columns flh_id_messaggio and flh_integrazione_id are not themselves nested tables).
If you are creating an associative array to hold the values selected, each field doesn't have to be a collection in itself (and you had an extra comma in your select statement after c.flh_integrazione_id):
(I have assumed your flvo_id is a VARCHAR2 as you tried to declare it as a VARCHAR2_TABLE, if it is a NUMBER then declare it as such in your record declaration).
TYPE receniflussihub IS RECORD(
flvo_id VARCHAR2,
flh_id_messaggio eni_flussi_hub.flh_id_messaggio%TYPE,
flh_integrazione_id eni_flussi_hub.flh_integrazione_id%TYPE
);
TYPE taof_rowcureniflussihub IS TABLE OF receniflussihub;
cureniflussihub taof_rowcureniflussihub;
SELECT NULL flvo_id,
c.flh_id_messaggio,
c.flh_integrazione_id
BULK COLLECT INTO cureniflussihub
FROM eni_flussi_hub C
WHERE c.flh_fornitura = p_flh_fornitura;
See Here
hope it helps...
EDIT:
From your comment, if you NEED to select into a record of collections (rather than a collection of records) then you do not need to declare the table TYPE, just a record of your decalred record type and select into that (don't forget that in your code you still had the extra comma after c.flh_integrazione_id in your select statement):
Try this:
TYPE receniflussihub IS RECORD(
flvo_id dbms_sql.varchar2_table,
flh_id_messaggio dbms_sql.varchar2_table,
flh_integrazione_id dbms_sql.varchar2_table
);
receniflussihub_rec receniflussihub;
SELECT NULL flvo_id,
c.flh_id_messaggio,
c.flh_integrazione_id
BULK COLLECT INTO receniflussihub_rec.flvo_id,
receniflussihub_rec.flh_id_messaggio,
receniflussihub_rec.flh_integrazione_id
FROM eni_flussi_hub C
WHERE c.flh_fornitura = p_flh_fornitura;