1

(手動で GUI を使用するのではなく) コードを使用して一連の MicroStrategy レポートを作成しようとしています。CREATE REPORT ステートメントが機能している人はいますか?

動作する CREATE ATTRIBUTE ステートメントの例を次に示します。

CREATE ATTRIBUTE "attrib1" DESCRIPTION "attrib1" 
IN FOLDER "\SCHEMAObjects\ATTRIBUTES\attrib1" 
HIDDEN FALSE ATTRIBUTEFORM "attrib1" FORMDESC "attrib1" 
FORMCATEGORY "ID" FORMTYPE NUMBER EXPRESSION "[attrib1]" 
EXPSOURCETABLES "attrib1_table" 
LOOKUPTABLE "attrib1_table" 
FOR PROJECT "Someproject";

CREATE REPORT 用にこれのバージョンを探しているだけです。グーグルやドキュメントでそれを見つけることができないようです。

4

1 に答える 1

1

Unfortunately it's not possible to create a report using MicroStrategy Command Manager.

As you can see from the Outline window below (this shows all possible outlines in Command Manager with code samples) for you can list your reports, delete them or alter some properties of your MicroStrategy Reports.

Command Manager Report Outlines

As you can see from the outline for the ALTER REPORT command what you can modify is pretty limited, you can enable/disable cache, hide or un-hide a report, change the description or the long description, move a report to another folder.

If you want to create a report from scratch using code you need to use MicroStrategy SDK. You can start from this TechNote: TN38166: How to Create a Report and Filter Expression from Scratch Using the MicroStrategy Web SDK 9.2.x and 9.3.x.

于 2015-01-15T13:06:52.880 に答える