Calling this method will show a screen which displays the current registration settings for the application.
<static> showRegistrationData( onsuccess, onerror )
| 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. |
var errorCallback = function(errorInfo){
alert("Error: " + JSON.stringify(errorInfo));
}
var successCallback = function(context){
alert("The showRegistrationData screenflow was successful.");
}
sap.Logon.showRegistrationData(successCallback,errorCallback);