Chapter 09 - Graphical User Interface
Chapter 09 - Graphical User Interface
Objectives
Overview
Exit Edit Loop
Menu Painter
***Important Questions***
Exit Update Where do you set the GUI status/title?
What type of GUI status is used?
Academy Awards
How do you check the function code triggered?
Year 1994 What are the different function types?
Category PIC
Menu Painter
Menu Painter
Function Types
Type ‘ ’
Type ‘E’ Type ‘S’ Type ‘P’ Type
:Normal : Exit : System : Local GUI ‘T’ :Start
Application Command Function Function Transaction
Function
Type ‘ ’
Type ‘E’ Type ‘S’ Type ‘P’ Type
: Normal : Exit : System : Local GUI ‘T’ :Start
Application Command Function Function Transaction
Function
Demonstration
Practice
Summary
Summary (Contd.)
To determine what function code the user invoked during the execution of an
online program, you can check two fields: OK Code and SY-UCOMM. Both of
these fields are updated with the function code invoked by the user. However,
under certain circumstances, SY-UCOMM is not updated. For this
reason, in online programming you should always check the OK Code.
Function codes of different types can be created:
‘ ’ - Program function,
‘E’ - Exit command,
‘S’ - System function,
‘P’ - Local GUI function,
‘T’ - Start transaction.
Questions