I am working with the Report module. I've created a relationship between Accounts And Report from the Accounts detail view when you click on the Report subPanel create button.
I'm redirecting to a create page (Edit View) of Report and while redirecting I'm setting up a default value for the Report name as in: Report in view.edit.
like this...
if($_POST!='') {
$this->bean->chk_c='Accounts'; $this->bean->name = $_POST.' Report';
}
And it's working fine. I also want to setup defaults fields for Display fields in FIELDS subpanel of Report as shown in the two attachments.
Any suggestion how to do this?
Thank You For your Time