abap slide class3

24
1 ABAP workshop Date: 10/28/2009 **DRAFT**

Upload: mkpatil

Post on 07-Nov-2014

1.034 views

Category:

Technology


0 download

DESCRIPTION

 

TRANSCRIPT

Page 1: Abap slide class3

1

ABAP workshopDate: 10/28/2009

**DRAFT**

Page 2: Abap slide class3

2

Topics

• Field, Data Element and Domains• Flow Events• Input Help (List of Values) –demo/coding• Field Help (F1 Help) –demo/coding• Understanding Menu Bar, Application Toolbar and

Function keys• Menu Control and Function Keys• Context Menu• Title Bar• Demo• Hands-on Practice

Page 3: Abap slide class3

3

Data Element & Domains of Fields

• Domain depicts the technical attributes of a field

– its data type, field length, no. of decimal places, appearance on the screen

• Data Element denotes the semantic attributes – short description, label names for a field that

uses this.• Data Elements are directly attached to the

Fields• Data Element has an underlying Domain

(optional) • Domains are not directly attached to the fields• A single Domain can be under many Data

Elements.• Within Domain - value range of a field can be

described. Whereas within the Data Element parameter id and search help for a particular field can be assigned.

Domain

Data Element

Field

Data Element

Field

Page 4: Abap slide class3

4

Flow Events

• PROCESS BEFORE OUTPUT (PBO) – Fires before a screen is displayed. Can be used to

initialize fields.

• PROCESS AFTER INPUT (PAI) – Fires on an user action (menu/buttons/function-keys)

• PROCESS ON VALUE REQUEST (POV) – Fires when a set of possible values is requested (F4)

• PROCESS ON HELP REQUEST (POH) – Fires when general help is requested (F1)

Page 5: Abap slide class3

5

Input Help (List of Values)1) Fixed Value (DOMAIN LEVEL) - Hard coded list in Data Dictionary

– Using domain (of the Data Element) of the field2) Check Tables (FIELD LEVEL)

– Specifying the Check table on the Field level3) Assigning the "Search Help" repository object (DATA ELEMENT

LEVEL)– Create a "Search Help" Object [as an independent step] and then

assign it to data element of the field.4) Assigning the "Search Help" repository object (SCREEN ELEMENT

LEVEL)– Create a "Search Help" Object [as an independent step] and then

assign it to dynpro screen element in screen painter.5) Self defined Dropdown List Boxes (SCREEN ELEMENT LEVEL)

– Most flexible but requires simple SQL to populate the list.

Page 6: Abap slide class3

6

(1) Fixed Value (Domain Level)

Domain of the Data Element

Data Element of a Field

Page 7: Abap slide class3

7

(2) Check Tables (Field Level)

Click on the Foreign Keys Icon

Page 8: Abap slide class3

8

(3 & 4) Search Help (Object)

Create ‘Srch Helps’ Object(s)

And attach to the Data Element

Or attach directly to the Dynpro field

LPos:Field Order

SPos:Search Order

Page 9: Abap slide class3

9

Search Help Field OrderLPos: Field OrderSPos: Search Order

Page 10: Abap slide class3

10

(5) Self defined Dropdown

MODULE create_dropdown_box INPUT.

dynpro_utilities1=>value_help( ).

ENDMODULE.

… DATA city_list TYPE STANDARD TABLE OF city_line. SELECT distinct ZCITY ZCITYDESCR from ZCITY_TBL into corresponding fields of table city_list where ZCITY like '%O%' order by ZCITY.

CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'ZCITY' value_org = 'S' TABLES value_tab = city_list EXCEPTIONS …

Select Listbox orListbox with key

Page 11: Abap slide class3

11

Field Help (F1 Help)

1) Documentation - (only one) can be attached to the Data Element of the Field needing help documentation.

2) Additional Documentation - (multiple can be attached to the Data Element of the Field needing help ‘additional documentation’), Dynpro screen field can call just one - the one relevant to its context using ‘PROCESS ON HELP-

REQUEST’ Flow Logic. • PROCESS ON HELP-REQUEST. (assuming 0001 and 0002 are ‘additional

documentation’ help is entered/exists)– FIELD ZBC400_S_HDR_CURR-CITYTO WITH '0001'.

» Or

– FIELD ZBC400_S_HDR_CURR-CITYTO WITH '0002'. etc

3) Uses the Process on Help Request (POH) event.

Page 12: Abap slide class3

12

Field Help - Documentation

Click here in Change Mode to modify (display mode shown)

Data Element

Page 13: Abap slide class3

13

Field Help - Additional Documentation

PROCESS ON HELP-REQUEST. FIELD field1 WITH '0001'.Or FIELD field1 WITH '0002'.

Click here. Add as many as you wish

Data Element

Call any oneAdditional help

Page 14: Abap slide class3

14

Menu Control

• Create GUI Status object (Interface Component)• Command: SET PF-STATUS 'ZTEST1'.• Each screen can have same or different menu

(set this in PROCESS BEFORE OUTPUT)• Various menus are: Menu Bar, Standard Tool

Bar, Application Toolbar• Function Keys are generally related to Menu• Context Menu is inherited from Function Keys,so

is same for all fields on screen by default, but…• Context Menu – each field can be made different(ZWRKSHP_010 and ZWRKSHP_010A)

Page 15: Abap slide class3

15

Bars in the SAP GUI

Menu Bar

Standard Tool Bar

Title Bar

Application ToolbarRelated Item Function Keys F1, F2…

Page 16: Abap slide class3

16

Menu Painter

Page 17: Abap slide class3

17

Menu Painter

GUI Status -> ZTEST1

Note: Standard tool bar is shown at the top of the Function Keys Setup!

Screen 1/2

Screen 2/2

Page 18: Abap slide class3

18

Function Keys

The following Function Keys are reserved and are handled at run time

• F1 (field help), • F4 (Input Help)• F10 (positions the cursor in the (top) menu bar)

Double Click automatically gets the functionality of whatever F2 is setup to do – applies to all fields by default. (see subsequent slides)

F2 or Double Click can be setup so that different logic can be mapped to individual fields (see ZWRKSHP_010C & subsequent slides)

Page 19: Abap slide class3

19

Double Click (all fields)• When we map a/any functionality to F2, the same

functionality is automatically executed when we Double Click the object.

• Example: If we set the F2 to say “BACK1” (also the Function code), the F2 as well as the Double Click get the functionality from the usual ABAP CASE statement logic.

…. CASE ok_code. When 'BACK' or 'BACK1'. SET SCREEN 100.….

Page 20: Abap slide class3

20

Double Click (individual fields)

• The Function Code for F2 is set to CS (CURSOR-SELECTION) and TYPE to S (System Function). In PAI use the FIELD statement to call a module.

• …

PROCESS AFTER INPUT.

FIELD Field1 MODULE C1 AT CURSOR-SELECTION.

FIELD Field2 MODULE C2 AT CURSOR-SELECTION.

Actual module defn: MODULE C1 INPUT.CALL TRANSACTION 'SE13'.ENDMODULE.

Page 21: Abap slide class3

21

Context Menu

The Context Menu for a SCREEN is ‘automatically’ defaulted from the ‘function keys’ MENU setup done using menu designer – i.e., GUI STATUS

The Context Menu for individual fields is done using the ON_CTMENU_ field as explained in the subsequent slide.

Page 22: Abap slide class3

22

Context Menu (of field)Using the ON_CTMENU_ field of

screen ElementsFORM on_ctmenu_my_input2 USING

l_menu TYPE REF TO cl_ctmenu.CALL METHOD l_menu->add_function EXPORTING fcode = 'MY_CONTEXT_MENU7’ text = 'My Context Menu 7'. …CASE save_ok.… WHEN 'MY_CONTEXT_MENU7'. CALL TRANSACTION 'SE92'.…ENDCASE.

Page 23: Abap slide class3

23

Title Bar

• THE GUI TITLE is Interface Component

• SET TITLEBAR title. >> Command

Create HereUse/Call Here

Page 24: Abap slide class3

24

Upcoming Topics

• Data Clusters

• File Access

• Authorization Checks

• Lock Concept and Enqueue