cancel
Showing results for 
Search instead for 
Did you mean: 

getting view error iOS SAP BI Mobile SDK

Former Member
0 Kudos

Hello!

I'm using SAP BusinessObject Mobile SDK 5.0 to embed a Web Intelligence/Dashboard view in my iOS application.

I have already done all steps noted in instruction.

I passed athentication using  SAPBIAsyncOperation method login. (from SAPBIAsyncOperation.h) successfully

But when i am trying to get view, i recieve a constant message "Initializing" and little message in left top corner of the screen "(MOB 06063)"

[operation getDocumentView:@"AXhJyo2ebQdMu6CGZVUgI_o" type:7 additionalProps:nil];

-(void) getDocumentSucceeded: (SAPBIDocument *)sapbiDocument

{

  [self addChildViewController:sapbiDocument.viewCtrl];

  [self.view addSubview:sapbiDocument.viewCtrl.view];

}

What is wrong? Are there any examples of usage this api for iOS?

Accepted Solutions (0)

Answers (4)

Answers (4)

patty_1982
Contributor
0 Kudos

Hi, I'm trying to create similar app with XCODE to open Biapp. Have you any samples? Thanks Patrizia

Former Member
0 Kudos

Hi Myckol,

Try this and make sure m_nav is the navigationcontroller.

-(void) getDocumentSucceeded: (SAPBIDocument *)sapbiDocument

{

  ......

  [m_nav pushviewcontroller:sapbiDocument.viewCtrl animated:NO];

}

Former Member
0 Kudos

hi Myckol Poliukh:

      I have meet this question , do you find   solving method ? please shared to me

Former Member
0 Kudos

Hi Myckol,

Try enabling offline storage

Set offlineStorage = true in Central Management

Console(CMC).

For detailed setting steps, please refer to:

1927219 - How to change mobile client setting in BI 4.1

Former Member
0 Kudos

Hi Ashton

Offline storage is already enabled. I also can open documents and save them to offline storage with test application SAPBI (that goes with sdk). I found this problem only with my custom app.