Assignment SAP ABAP Data Dictionary
Assignment SAP ABAP Data Dictionary
Objec ve:
Create and manage SAP ABAP Data Dic onary objects for an order management system with one header table and one
item table. This assignment includes defining tables, domains, data elements, foreign key rela onships, table
maintenance generators, views, and search helps. Addi onally, handle currency and unit of measure for fields.
Assignment Details:
Scenario:
You are tasked with crea ng two tables for managing orders and their line items, including currency and unit of measure.
Tables to Create:
1. ZORDER_HEADER
o Fields:
CREATED_ON (DATE)
Date when the order was created
2. ZORDER_ITEM
o Fields:
[email protected]
SAP ABAP Data Dic onary Assignment
QUANTITY (QUAN, Length: 5, Not Null)
Quan ty Ordered
Steps:
o Create domains for CHAR, NUMC, DATE, CURR, and QUAN types.
o Create data elements for each field using the domains you created.
o Define the ZORDER_HEADER and ZORDER_ITEM tables using the data elements.
o ZORDER_ITEM: Create a foreign key rela onship for ORDER_NO referencing ORDER_NO in
ZORDER_HEADER.
6. Create Views: