Logs into SAP Business Objects and saves the SAP Business Objects API token into the System Environment

log_on(domain, username, password, authentication_type = "secLDAP")

Arguments

domain

SAP Business Objects domain to log into

username

SAP Business Objects username

password

SAP Business Objects password

authentication_type

Authentication Type to logon into SAP Business Objects. Defaults to secLDAP. Must be one of the following:

  • secLDAP

  • secEnterprise

  • secWinAD

  • secSAPR3

Value

Does not return any object, only a success message, as SAP API token is saved into the environment to work with further functions.

Warning

Please be careful when dealing with API keys and other secrets & tokens - keep them private and do not publish them.

Examples

if (FALSE) { log_on(domain="YOUR_DOMAIN", username="YOUR_USERNAME", password="YOUR_PASSWORD", authentication_type="secLDAP") }