FYI you can see the exact columns exposed and their exact names by querying VIEW_COLUMNS.
Would look something like this:
SELECT VIEW_NAME, COLUMN_NAME
FROM VIEW_COLUMNS
WHERE SCHEMA_NAME = '_SYS_BIC' AND
VIEW_NAME = '"mypackage'/AN_VIEW"'
Forgot whether or not double quotes are required, you'll need to test...