MatrixAgentService를 통하여 ReportDesigner.exe 프로세스가 실행 되어 i-AUD 보고서를 실행시키는 기능입니다.
해당 예제는 viewapp/iwidget.jsp 를 기반으로 작성되었으며, 다른 페이지에서 사용 시, iwidget.jsp에서 구성되는
MatrixProperty 및 WebSocket 서비스 구성 후 진행하시기 바랍니다.
적용순서
- i-AUD 보고서 열기 기능을 실행해야 하는 웹페이지 및 참조 페이지에 extention/imatrix6/reportopen.jsp 파일 추가
- 추가 된 API를 웹소켓이 연결 된 이후 MatrixProperty 객체 생성 및 설정을 완료 후 호출한다.
i-AUD Report Open API
//입력 매개변수 //property : MatrixProperty(디자이너 및 뷰어 동작을 위한 옵셜 설정 객체) //report_code : 보고서코드 //report_type : 보고서종류(i-AUD 보고서만 호출하려면 SD 고정 입력) function OpenReport(property, report_code, report_type) { try { property.VariableStrings = JSON.stringify(viewerObj.Variables); } catch(e) { } property.ForceSimpleSSO = true; var strproperty = JSON.stringify({ "param": property }); var strExtendOpt = JSON.stringify({ "report_code": report_code, "report_type": report_type }); var json = JSON.stringify({ "Command" : 1, "Param": strproperty, "ExtendOpt" : strExtendOpt, "SessionID" : UserSessionID, "AppFolderName" : "iMatrixBin6.2.2" }); sendText(json); }
OpenReport 적용 가이드
<html> <head> <!-- extention --> <script type="text/javascript" src="<%=XMatrix.WEB_ROOTNAME%>/extention/imatrix6/reportopen.jsp"></script> <script> OpenReport(viewerObj.Property, true, true, "REPAB12BB02386A49D48BDA35502B53FEBA", "SD"); </script>