SAP Fiori Client Guide

Customizing the Registration Screen

Customize the Registration screen by changing the background image, copyright text and field visibility.

You can customize the appearance of the Registration screen in your Custom Fiori Client and Kapsel applications. This is done by modifying field visibility, text fields and background images.

Customizable fields

In Custom Fiori Client and Kapsel applications you can customize the appearance of the following properties.

Field

Description

Syntax

Background Image

Specify the path to the background image used for logon/registration screen.

"backgroundImage": "img/background.jpg"
Hide Copyright Logo

Specify a boolean value to hide the logo and copyright text in the footer of the screen.

true:Hides the copyright logo and text.

false:Displays the copyright logo and text.

"hideLogoCopyright": false

Customize Copyright Logo

Specify the path to the logo image displayed in the footer.

"copyrightLogo": "img/sapLogo.png"

Copyright Text

An array of 2 strings to specify 2 lines of copyright text in the footer.

"copyrightMsg": ["Copyright © 2016 SAP SE.", "All rights reserved."]

Passcode Screen

Specify a boolean value to disable the passcode screen.

true:Hides the passcode screen.

false:Displays the passcode screen.

"disablePasscode": false

Modifying the appConfig.js file in Custom Fiori Client

In the Custom Fiori Client, you can use the appConfig.js file to customize the registration screen with the properties listed above.

  
fiori_client_appConfig = {
        "appID": "com.acme.fiori.app",
        "fioriURL": "https://mx-a1c2fd34e.mx.sxx.corp:8081",
         "passcodePolicy":  {
               "expirationDays":"0"
          },
	"keysize": "",
         "idpLogonURL": "",

	"backgroundImage": "img/background.jpg",
	"hideLogoCopyright": false,
	"copyrightLogo": "img/sapLogo.png",
	"copyrightMsg": ["Copyright © 2016 SAP SE.", "All rights reserved."],
	"disablePasscode": false
    };



}