Function | Starts an S10 session | ||||||||||||||||||||
Example |
function
dologon(f) { var logon_user = document.getElementById('user').value; var logon_password = document.getElementById('password').value; // name specified? if (logon_user == '') { S10ErrorMessage(f, "Please enter the user name"); return; }; // password specified? if (logon_password == '') { S10ErrorMessage(f, "Please enter the password"); return; }; // set logon parameters and S10 start configuration; var logon_client = '100'; var logon_language = document.getElementById('language').value; var classname = "main"; var progname = "zztest01"; S10Logon(logon_client, logon_user, logon_password, logon_language, classname, progname); } |
||||||||||||||||||||
Parameters |
|
||||||||||||||||||||
Description |
With S10Logon(), you start an S10 session for the specified user in the logon
screen. If an SAP Logon ticket MYSAPSSO2 already exists in the current browser session, the logon screen can be skipped with S10SSO() and the logon can be performed with this ticket. This is automatically the case if the S10 application was launched from a Fiori Launchpad tile. |
||||||||||||||||||||
Components | S10 Framework |