AFAIK, there is no way to associate the cursor name with it, which is processed by SQL text, but by attaching V$open_cursor using v$sql using SQL_ID , you should be able to pull out and write information about the SQL expression being registered for open cursors.
SELECT sql_id, user_name, sid, saddrsql_fulltext FROM v$sql join v$open_cursor USING (sql_id)
Maybe you could match the SQL text with the cursor, but this should be a manual process
source share