cancel
Showing results for 
Search instead for 
Did you mean: 

iOS SAP BusinessObjects SDKs - Login Failure

Former Member
0 Kudos

We are trying to embed BusinessObjects dashboards/reports into our custom-built iOS App. We are following the 608_mobiOS_Developer guide and integrating the SAP BI Mobile SDK into our app. From the SAP Service marketplace, we have downloaded the latest iOS SDK named MOB_SBOP_IOS_SDK_6.0.0.

During the integration, we are getting an error during the login operation.

This login operation fails with the following error message:

The Enterprise plug-in does not exist in the CMS (FWM 02017)

The relevant code snippet is below:

NSDictionary* connectionSettings = @{SERVER_URL : @"http://SERVER_URL:8080", CMS : @"CMS:6400", AUTHENTICATION_TYPE : @"enterprise"};

SAPBIAsyncOperation* operation = [SAPBIAsyncOperation getInstance:self];

[operation login:connectionSettings user:@“XXX” password:@“YYY”];

This configuration does work well and login is successful when performed form the SAP BI Mobile app itself. We can access the dashboards and see the assigned dashboards/reports with the exact same configuration.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Guven, you can try this code like this, I use it and  can login Bi server

 

    NSMutableDictionary *dic = [NSMutableDictionary dictionaryWithCapacity:3];

    [dic setObject:@"222.223.229.43:8082" forKey:SERVER_URL];
    [dic setObject:@"ylb12" forKey:CMS];
    [dic setObject:@"secEnterprise" forKey:AUTHENTICATION_TYPE];

    [_sapOper login:dic user:@"ylcw2" password:@"yiling1234" ];

Regards,

xiaoping_zheng
Employee
Employee
0 Kudos

Hi Guven,

I think this part of your code is incorrect.

AUTHENTICATION_TYPE : @"enterprise"

You may change it to the following and try it again.

AUTHENTICATION_TYPE : @"secEnterprise"

Regards,

Xiaoping

Former Member
0 Kudos

Thanks Xiaoping. I have tried that but it didn't work; same error message.

ashutosh_rastogi
Active Contributor
0 Kudos

Hi Guven,

The error FWM 02017 that you are getting is coming from platform, I would suggest you check with your BOE administrator on how to resolve this.

Regards

Ashutosh

Former Member
0 Kudos

Hello Ashutosh,

Thanks for the reply. The login & connection is working fine when the login is done from the SAP BI Mobile app itself. That makes me think that the problem is not actually with the platform.

There is one SAP Note 1902492 that seems to address the issue but it is not about the iOS SDK.

If you have any ideas what the administrator can change, please let me know.

Thanks,

Guven.

ashutosh_rastogi
Active Contributor
0 Kudos

That's strange. Can you capture fiddler logs and attach them here. I would like to see how the request is different when sent from an APP built from SDK.

Regards,

Ashutosh