public function ReportGetReportById($report_id)
 {
     // $report_id : IDType (==string==integer) or this array
     $this->CheckAndSetHeader(__FUNCTION__);
     $reg_args["report_id"] = $this->getRegularArgs($report_id, __FUNCTION__);
     $this->encodeString($reg_args);
     $results = parent::ReportGetReportById($reg_args);
     $this->methodClose();
     return $this->RetvalConvertArray($results->report);
 }