Registering the User

Registers the user to the SAP Mobile Platform on-premise or cloud.

You need to send username and password as part of request manager during ClientConnection initialization. isSynchronous specifies whether this is a synchronous or an asynchronous registration. If asynchronous, then you have to implement and register IODPUserRegistrationListener to get a call back.

Syntax

 -(BOOL)registerUser:(NSString*)userName password:(NSString*)loginPassword
 error:(NSError**)error isSyncFlag:(BOOL)isSynchronous;

Examples