Controller Can't Find View

I have a controller in the /protected/controllers folder named "RasReportController.php"

I have a model in the /protected/models folder named "RasReport.php"

I have a view in the /protected/views/rasreport folder named "rasReport01.php"

In the conroller, I have a function:


public function actionrasReport01()


{


	$dataProvider=new CActiveDataProvider('RasReport');


	$this->render('rasreport/rasReport01',array(


		'dataProvider'=>$dataProvider,


	));


}

When I run this, I get an error message:

"RasReportController cannot find the requested view "rasreport/rasReport01"."

I’ve searched the archives and can’t find anything that works. Does anyone have an idea what is going on here?




$this->render('rasReport01',array(  // remove 'rasreport/'

			'dataProvider'=>$dataProvider,

		));



Thank you!!!