showRegistrationData( onsuccess, onerror ) method

Calling this method will show a screen which displays the current registration settings for the application.

Syntax

<static> showRegistrationData( onsuccess, onerror )

Parameters

Name Type Description
onsuccess sap.Logon~successCallbackNoParameters The callback to call if the screen flow succeeds.onsuccess will be called without parameters for this method.
onerror sap.Logon~errorCallback The function that is invoked in case of an error.

Example

var errorCallback = function(errorInfo){
    alert("Error: " + JSON.stringify(errorInfo));
}
var successCallback = function(context){
    alert("The showRegistrationData screenflow was successful.");
}
sap.Logon.showRegistrationData(successCallback,errorCallback);

Source

LogonController.js, line 1725.