Force View does forces the creation of a View even when the View will be invalid. NoForce Is the default.
CREATE FORCE VIEW <view_name> AS
<select statement>;
-- assuming the table xyz does not exist
CREATE FORCE VIEW view_force AS
SELECT * FROM xyz;
-- ignore the error message
col object_name format a30
SELECT object_name status
FROM user_objects
WHERE object_type 'VIEW';