12.02 customize your sap launchpad as per your design

5
12.02 Customize your SAP launchpad as per your design requirements Prerequisites Products: Liquid UI WS, Liquid UI Server or Local DLL , Client Software Commands: box(), pushbutton() Purpose You will learn how to create different launchpads in different layouts on the SAP Easy Access screen. //Create this file inside your script folder for customizing SAP Easy Access screen: SAPLSMTR_NAVIGATION.E0100.sjs //Now let's start adding the content to the above file 1. Delete the image container del('X[IMAGE_CONTAINER]'); Page 1 / 5 (c) 2022 Liquid UI | Synactive | GuiXT <[email protected]> | 2022-01-17 03:22 URL: https://www.guixt.com/knowledge_base/content/0/857/en/1202-customize-your-sap-launchpad-as-per-your-design-requirements.html

Upload: others

Post on 17-Jan-2022

10 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: 12.02 Customize your SAP launchpad as per your design

12.02 Customize your SAP launchpad as per your

design requirementsPrerequisites

Products: Liquid UI WS, Liquid UI Server or Local DLL, Client SoftwareCommands: box(), pushbutton()

Purpose

You will learn how to create different launchpads in different layouts on the SAPEasy Access screen.

//Create this file inside your script folder for customizing SAP Easy Access screen:SAPLSMTR_NAVIGATION.E0100.sjs//Now let's start adding the content to the above file

1. Delete the image container

del('X[IMAGE_CONTAINER]');

Page 1 / 5(c) 2022 Liquid UI | Synactive | GuiXT <[email protected]> | 2022-01-17 03:22

URL: https://www.guixt.com/knowledge_base/content/0/857/en/1202-customize-your-sap-launchpad-as-per-your-design-requirements.html

Page 2: 12.02 Customize your SAP launchpad as per your design

2. Add three pushbuttons and a group box in a vertical layout.On-click, you will be navigated to Create Material screen, Change Materialscreen and Display Material screen from the same screen.

box([1,1],[13,38],"Material Management");pushbutton([4,10],"Create Material","/nmm01",{"size":[2,20]});pushbutton([7,10],"Change Material","/nmm02",{"size":[2,20]});pushbutton([10,10],"Display Material","/nmm03",{"size":[2,20]});

Page 2 / 5

(c) 2022 Liquid UI | Synactive | GuiXT <[email protected]> | 2022-01-17 03:22URL: https://www.guixt.com/knowledge_base/content/0/857/en/1202-customize-your-sap-launchpad-as-per-your-design-requirements.html

Page 3: 12.02 Customize your SAP launchpad as per your design

3. Add three pushbuttons and a group box in a horizontal layout.On-click, you will be navigated to Create Sales Order screen, Change SalesOrder screen and Display Sales Order screen from the same screen.

box([1,1],[7,78],"Sales & Distribution");pushbutton([4,5],"Create Sales Order","/nva01",{"size":[2,20]});pushbutton([4,30],"Change Sales Order","/nva02",{"size":[2,20]});pushbutton([4,55],"Display Sales Order","/nva03",{"size":[2,20]});

Page 3 / 5(c) 2022 Liquid UI | Synactive | GuiXT <[email protected]> | 2022-01-17 03:22

URL: https://www.guixt.com/knowledge_base/content/0/857/en/1202-customize-your-sap-launchpad-as-per-your-design-requirements.html

Page 4: 12.02 Customize your SAP launchpad as per your design

4. Add three pushbuttons and a group box in a random layout.On-click, you will be navigated to Create Notification screen, ChangeNotification screen and Display Notification screen from the same screen.

box([1,1],[9,53],"Plant Maintenance");pushbutton([4,5],"Create Notification","/niw21",{"size":[2,20]});pushbutton([4,30],"Change Notification","/niw22",{"size":[2,20]});pushbutton([7,18],"Display Notification ","/niw23",{"size":[2,20]});

Page 4 / 5(c) 2022 Liquid UI | Synactive | GuiXT <[email protected]> | 2022-01-17 03:22

URL: https://www.guixt.com/knowledge_base/content/0/857/en/1202-customize-your-sap-launchpad-as-per-your-design-requirements.html

Page 5: 12.02 Customize your SAP launchpad as per your design

Next Steps

This article is part of the 2.0 Create your own launch pad on SAP Easy Access screentutorial.Unique solution ID: #1857Author: Sarvani KusuriLast update: 2019-05-29 06:50

Powered by TCPDF (www.tcpdf.org)

Page 5 / 5(c) 2022 Liquid UI | Synactive | GuiXT <[email protected]> | 2022-01-17 03:22

URL: https://www.guixt.com/knowledge_base/content/0/857/en/1202-customize-your-sap-launchpad-as-per-your-design-requirements.html