Why the NVARCHAR column in the base table is made a VARCHAR type in the view ?
It's because you have first created table and view and then after creating view you altered column size in table.
Any schema change in base table not reflects automatically in the view.
How can I have it in the view as NVARCHAR ?
You have two options:
EXEC sp_refreshview V_ACC_POL
ALTER VIEW [dbo].[V_ACC_POL]
WITH SCHEMABINDING
AS
SELECT
[ID]
,[Name]
FROM
[dbo].[ACC_POL]
This will give below error if someone tries to update table schema:
Msg 5074, Level 16, State 1, Line 12
The object 'V_ACC_POL' is dependent on column 'Name'.
Msg 4922, Level 16, State 9, Line 12
ALTER TABLE ALTER COLUMN Name failed because one or more objects access this column.