Top Banner
WS Word, Excel and PDF 17.14 Customize your existing MM01 screen Prerequisites Products: Liquid UI WS, Liquid UI Server or Local DLL , Client Software Commands: radiobutton() , del() , pos() , title() , noinput() , set() , box() , comment() Purpose Learn how easy it is to customize the Create Material screen. We will walk you through the following steps. Delete multiple screen elements Reposition screen elements Resize group box Convert dropdown to radiobuttons Add screen elements Set default value Make field read-only Add instruction on the screen Change the existing terminology Change dropdownlist values to radiobuttons //Create this file inside your script folder for customizing Create Material screen: SAPLMGMM.E0060.sjs //Now let's start adding the content to the above file 1. Delete redundant/unneeded screen elements. We will get rid of the Material, Change Number, Material Type inputfields and Copy from.. groupbox elements. del("F[Material]"); del("F[Change Number]"); del("G[Copy from..]"); del("F[Material Type]"); Page 1 / 10 (c) 2022 Liquid UI | Synactive | GuiXT <[email protected]> | 2022-03-31 03:55 URL: https://www.guixt.com/knowledge_base/content/147/893/en/1714-customize-your-existing-mm01-screen.html
10

17.14 Customize your existing MM01 screen - Liquid UI

Feb 23, 2023

Download

Documents

Khang Minh
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: 17.14 Customize your existing MM01 screen - Liquid UI

WS Word, Excel and PDF17.14 Customize your existing MM01 screen

Prerequisites

Products: Liquid UI WS, Liquid UI Server or Local DLL, Client SoftwareCommands: radiobutton(), del(), pos(), title(), noinput(), set(), box(),comment()

Purpose

Learn how easy it is to customize the Create Material screen. We will walk youthrough the following steps.

Delete multiple screen elementsReposition screen elementsResize group boxConvert dropdown to radiobuttonsAdd screen elementsSet default valueMake field read-onlyAdd instruction on the screenChange the existing terminologyChange dropdownlist values to radiobuttons

//Create this file inside your script folder for customizing Create Material screen:SAPLMGMM.E0060.sjs//Now let's start adding the content to the above file

1. Delete redundant/unneeded screen elements.We will get rid of the Material, Change Number, Material Type inputfieldsand Copy from.. groupbox elements.

del("F[Material]");del("F[Change Number]");del("G[Copy from..]");del("F[Material Type]");

Page 1 / 10(c) 2022 Liquid UI | Synactive | GuiXT <[email protected]> | 2022-03-31 03:55

URL: https://www.guixt.com/knowledge_base/content/147/893/en/1714-customize-your-existing-mm01-screen.html

Page 2: 17.14 Customize your existing MM01 screen - Liquid UI

WS Word, Excel and PDF

2. Change the SAP screen title.Title of the screen is changed from Create Material (Initial Screen) to CreateMaterial.

title("Create Material");

Page 2 / 10(c) 2022 Liquid UI | Synactive | GuiXT <[email protected]> | 2022-03-31 03:55

URL: https://www.guixt.com/knowledge_base/content/147/893/en/1714-customize-your-existing-mm01-screen.html

Page 3: 17.14 Customize your existing MM01 screen - Liquid UI

WS Word, Excel and PDF

3. Change the position of the Industry sector field to rearrange the fields.

pos("F[Industry sector]",[5,19]);

4. Add group box to collate related screen elements.We will add two group boxes, one without a title and another box withMaterial Type as a title.

box([4,12],[13,59],"");box([7,16],[12,56],"Material Type");

Page 3 / 10(c) 2022 Liquid UI | Synactive | GuiXT <[email protected]> | 2022-03-31 03:55

URL: https://www.guixt.com/knowledge_base/content/147/893/en/1714-customize-your-existing-mm01-screen.html

Page 4: 17.14 Customize your existing MM01 screen - Liquid UI

WS Word, Excel and PDF

5. Change the Material Type dropdown menu values to radiobuttons. You canselect any radiobutton to pass its value to the Material Type field.

radiobutton([11,19],"Non Foods",{"[material type]":"NOF1"});radiobutton([10,19],"Product Catalogs",{"[material type]":"WERB"});radiobutton([9,19],"Packaging",{"[material type]":"VERP"});radiobutton([8,19],"Finished Product",{"[material type]":"FERT"});

Page 4 / 10(c) 2022 Liquid UI | Synactive | GuiXT <[email protected]> | 2022-03-31 03:55

URL: https://www.guixt.com/knowledge_base/content/147/893/en/1714-customize-your-existing-mm01-screen.html

Page 5: 17.14 Customize your existing MM01 screen - Liquid UI

WS Word, Excel and PDF

To learn more about radiobutton and available options.

6. Add a comment on the screen that displays text in blue color.

comment([2,22],"Screen Modified By Liquid UI WS",{"size":28});

Page 5 / 10(c) 2022 Liquid UI | Synactive | GuiXT <[email protected]> | 2022-03-31 03:55

URL: https://www.guixt.com/knowledge_base/content/147/893/en/1714-customize-your-existing-mm01-screen.html

Page 6: 17.14 Customize your existing MM01 screen - Liquid UI

WS Word, Excel and PDF

7. Assign a default value to an input field.We will set M value to the Industry Sector field where M representsmechanical engineering.

set("F[Industry sector]","M");

Page 6 / 10(c) 2022 Liquid UI | Synactive | GuiXT <[email protected]> | 2022-03-31 03:55

URL: https://www.guixt.com/knowledge_base/content/147/893/en/1714-customize-your-existing-mm01-screen.html

Page 7: 17.14 Customize your existing MM01 screen - Liquid UI

WS Word, Excel and PDF

8. Make a field read-only. Set the Industry Sector field as read-only.

noinput("F[Industry sector]");

Page 7 / 10(c) 2022 Liquid UI | Synactive | GuiXT <[email protected]> | 2022-03-31 03:55

URL: https://www.guixt.com/knowledge_base/content/147/893/en/1714-customize-your-existing-mm01-screen.html

Page 8: 17.14 Customize your existing MM01 screen - Liquid UI

WS Word, Excel and PDF

9. Select any radiobutton to assign its value to Material Type inputfield tocreate a material.

Page 8 / 10(c) 2022 Liquid UI | Synactive | GuiXT <[email protected]> | 2022-03-31 03:55

URL: https://www.guixt.com/knowledge_base/content/147/893/en/1714-customize-your-existing-mm01-screen.html

Page 9: 17.14 Customize your existing MM01 screen - Liquid UI

WS Word, Excel and PDF

Next Steps

Customize your existing VA01 screenLearn to customize your Sales Order

10 min.

This article is part of the 3.0 Customize your existing SAP screen tutorial.Page 9 / 10

(c) 2022 Liquid UI | Synactive | GuiXT <[email protected]> | 2022-03-31 03:55URL: https://www.guixt.com/knowledge_base/content/147/893/en/1714-customize-your-existing-mm01-screen.html

Page 10: 17.14 Customize your existing MM01 screen - Liquid UI

WS Word, Excel and PDFUnique solution ID: #1893Author: Sarvani KusuriLast update: 2019-05-29 06:42

Powered by TCPDF (www.tcpdf.org)

Page 10 / 10(c) 2022 Liquid UI | Synactive | GuiXT <[email protected]> | 2022-03-31 03:55

URL: https://www.guixt.com/knowledge_base/content/147/893/en/1714-customize-your-existing-mm01-screen.html