public function AdminGetOrgDetailByIds($arg)
 {
     // $arg : IDType or this array (single or multiple request)
     $this->CheckAndSetHeader(__FUNCTION__);
     $reg_args["orgId"] = $this->getRegularArgs($arg, __FUNCTION__);
     $this->encodeString($reg_args);
     $results = parent::AdminGetOrgDetailByIds($reg_args);
     $this->methodClose();
     return $this->decodeString($results->orgDetail);
 }