2

Business Objects Web Services SDK を使用して、Business Objects データにアクセスしています。レポートのリストを取得することに成功し、そこからLastSuccessfulInstance以前に実行されたレポートを見つけました。LastRunTimeしかし、私は人口を得ることができないようです。属性を指定せずにクエリを実行すると、設定されていないものとして返され、特にその属性を要求すると同じ結果が得られます。レポート自体とインスタンスを確認しましたが、どちらにもこの情報がありません。どこから入手できるか知っている人はいますか?

これが私のコードです(SAPのデモの1つからハッキングされました):

    var sessConnUrl = serviceUrl + "/session";
    var boConnection = new BusinessObjects.DSWS.Connection(sessConnUrl);
    var boSession = new Session(boConnection);

    // Setup the Enterprise Credentials used to login to the Enterprise System
    var boEnterpriseCredential = new EnterpriseCredential
                                     {
                                         Domain = cmsname,
                                         Login = username,
                                         Password = password,
                                         AuthType = authType
                                     };

    // Login to the Enterprise System and retrieve the SessionInfo
    boSession.Login(boEnterpriseCredential);


    /************************** DISPLAY INBOX OBJECTS *************************/

    // Retrieve the BIPlatform Service so it can be used to add the USER
    var biPlatformUrl = boSession.GetAssociatedServicesURL("BIPlatform");
    var boBiPlatform = BIPlatform.GetInstance(boSession, biPlatformUrl[0]);

    // Specify the query used to retrieve the inbox objects
    // NOTE: Adding a "/" at the end of the query indicates that we want to 
    //       retrieve the all the objects located directly under the inbox.
    //       Without the "/" Path operator, the inbox itself would be returned. 
    const string query = "path://InfoObjects/Root Folder/Reports/";

    // Execute the query and retrieve the reports objects
    var boResponseHolder = boBiPlatform.Get(query, null);
    var boInfoObjects = boResponseHolder.InfoObjects.InfoObject;

    // If the reports contains a list of objects, loop through and display them
    if (boInfoObjects != null) 
    {
        // Go through and display the list of documents
    foreach (var boInfoObject in boInfoObjects)
    {
            var report = boInfoObject as Webi;
            if (report == null)
                continue;

            if (!string.IsNullOrEmpty(report.LastSuccessfulInstanceCUID))
            {
                var instanceQuery = "cuid://<" + report.LastSuccessfulInstanceCUID + ">";
                var instanceResponseHolder = boBiPlatform.Get(instanceQuery, null);
                var instance = instanceResponseHolder.InfoObjects.InfoObject[0];

            }
        }
    }

report.LastRunTimeSpecifiedとはどちらinstance.LastRunTimeSpecifiedも false で、どちらもLastRunTimeですが01\01\0001、Web Intelligence UI で前回の実行時間を確認できます。

4

1 に答える 1

2

SAP サポートの Ted Ueda の助けを借りて、私はそれを理解しました。@*すべてのプロパティがデフォルトで入力されるわけではありません。すべてを取得するには、クエリ文字列に追加する必要があります。つまり、次の行を変更します。

const string query = "path://InfoObjects/Root Folder/Reports/";

に:

const string query = "path://InfoObjects/Root Folder/Reports/@*";
于 2011-01-27T13:27:28.053 に答える