@Shaneg
To understand your problem you should know the difference between a view and a table?
Views are definitions built on top of other tables or other views and do not hold data themselves. If data is changing in the underlying table, the same change is reflected in the view. A view can be built on top of a single table or multiple tables.
Now to answer your question a table contains data, a view is just a SELECT statement that has been saved in the database or metastore depending on your database.
This explains why the columns are getting resolved because the definition of the view exists but the NULL pointer exception tells you there is no data in that view as it ONLY holds the definition but not the data!
I haven't tried it yet in Oracle but I think it's not possible to import data from a view too, However, a materialized view is a physical copy of the base table could work in the export I am not sure, you could test that.
Happy hadooping