so right now i have created analytical view by using all dimension tables in Data foundation. so that i can pass input parameter value directly to one of the dimension tables to restrict the data.
You're using the star-schema in the analytical view the wrong way.
The data foundation is explicitly used to model the facts part.
In fact it is not necessary to explicitly pass variables to the model. It's sufficient to include the filter into the standard WHERE condition.
The OLAP engine is designed to first apply this filter to the dimension and access the fact data based on the remaining data.