I am getting the following error while accessing the
The "MARKETPRICELISTVIEW" argument passed to the "GetMarketPriceList" function is not of type "app.market.wallst.MarketPrice.MarketPriceListView."
If the component name is specified as a type of this argument, its possible that a definition file for the component cannot be found or is not accessible.
The Function is as follows:-
<cffunction name="GetMarketPriceList" returntype="void" access="public" output
="false">
<cfargument name="MarketPriceListView"
type="app.market.wallst.MarketPrice.MarketPriceListView" required="true">
<cfargument name="Task" type="app.market.wallst.Task.Task">
<cfargument name="LoginView" type="app.market.wallst.Login.LoginView">
<cfscript>
arguments.MarketPriceListView.SetMarketPriceListQuery
(variables.MarketPriceDataDelegate.GetMarketPriceList
(arguments.MarketPriceListView.GetMarketPrice()));
arguments.Task.SetError(false);
arguments.LoginView;
</cfscript>
</cffunction>
Kindly help what this error could be?