Chapter 02 - ABAP Dictionary Objects
Chapter 02 - ABAP Dictionary Objects
Dec-2008
Objectives
The participants will be able to:
Access the ABAP Dictionary
Discuss the Basic Objects (Domain, Data Element, Table etc.) of the ABAP Dictionary
Define and create a Table, Data Element, and Domain
Dec-2008
Dec-2008
Table A
Data Element 1
Table B
Table C
Data Element 2
Domain
Dec-2008
Tables
Tables store the information that is in the database.
Table: KNA1
MANDT
KUNNR
NAME1
Dec-2008
ORT02
Object Navigator
The Object Navigator is used to organize your programming in an integrated
development environment
Dec-2008
Create a Table
Enter a description (short text)
Maintain delivery class
Dec-2008
Data Element 1
Data Element 2
Domain
Dec-2008
Data Elements
A data element provides a meaningful description for a field
Table A
Table B
Data Element 1
Dec-2008
10
Dec-2008
11
Dec-2008
12
Dec-2008
13
Dec-2008
Domains
A domain specifies the technical characteristics and the allowed
values of a field
Domains are linked to fields via data elements
Table A
Data Elements
Domain
14
Dec-2008
Characteristics of Domains
Table A
Data Elements
Domain
15
Dec-2008
Allowed Values
Domain
Domain
January
February
Value Table
March
..
..
..
.
December
16
Dec-2008
valid
values
17
invalid
values
Dec-2008
Create a Domain
18
Dec-2008
Activate Icon
19
Dec-2008
20
Dec-2008
21
Dec-2008
Demonstration
Creation of a transparent table using transaction SE11 along with the
relevant data-element and domains.
22
Dec-2008
Practice
Creation of a transparent table using transaction SE11 along with the
relevant data-element and domains.
23
Dec-2008
*
YEMPLOY INTO WA_YEMPLOY.
WRITE: / WA_YEMPLOY-ID
WA_YEMPLOY-NAME
WA_YEMPLOY-SALARY
ENDSELECT.
24
Dec-2008
Summary
Use transaction code SE11 to access the ABAP Dictionary
The basic objects of the ABAP Dictionary are tables, data elements, and
domains
Tables are the objects that actually hold the information in a database
A data element provides a meaningful description for a field
25
Dec-2008
Questions
What is the transaction to access the ABAP Dictionary ?
26
Dec-2008