Skip to content

Commit c9cbb7a

Browse files
Feedback from UA
1 parent 3c6798f commit c9cbb7a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tutorials/abap-dev-create-table/abap-dev-create-table.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ time: 75
77
---
88

99
# Create an ABAP Database Table and Relevant ABAP Dictionary Objects
10-
<!-- description --> Create a database table from scratch using the ABAP Development Tools (ADT); use different Data Dictionary objects to define the fields; then fill the table with test data.
10+
<!-- description --> Create a database table from scratch using ABAP development tools for Eclipse (ADT); use different Data Dictionary objects to define the fields; then fill the table with test data.
1111

1212
## Prerequisites
1313
- You have a valid instance of one of the following:
@@ -74,7 +74,7 @@ In the next step, you will define the table fields. First you need to understand
7474

7575
There are 3 ways to create a field for a database table:
7676

77-
- **Built-in type**: The quickest: You specify a (pre-defined) primitive type, length, and description, but no more. You cannot then reuse this field. For more information, see [ABAP Keyword Documentation: Predefined Dictionary Types](https://help.sap.com/doc/abapdocu_752_index_htm/7.52/en-US/index.htm?file=abenddic_builtin_types.htm).
77+
- **Built-in type**: The quickest: You specify a built-in type, length, and description, but no more. You cannot then reuse this field. For more information, see [ABAP Keyword Documentation: Predefined Dictionary Types](https://help.sap.com/doc/abapdocu_752_index_htm/7.52/en-US/index.htm?file=abenddic_builtin_types.htm).
7878

7979
- Use an **existing data element**: The most powerful: A data element describes both the technical and semantic attributes of a field, such as a currency, or a customer name. You can define properties such as search help and (translatable) column header, and then use the same data element in many contexts. You often define the technical attributes of the data element in a domain, so they can be reused.
8080

@@ -91,15 +91,15 @@ One key field has been added automatically:
9191

9292
`client : abap.clnt;`
9393

94-
This specifies that the table is client-specific.
95-
Tables can be cross-client or client-specific. Each client is a self-contained unit within an organization, such as a subsidiary. For client-specific tables, the client is the first key field in the table.
94+
This specifies that the table is client-dependent.
95+
Tables can be client-dependent or client-independent. Each client is a self-contained unit within an organization, such as a subsidiary. For client-dependent tables, the client is the first key field in the table.
9696

9797
The field is also specified as `not null`. This means that the type-dependent initial value is automatically assigned to this field for all newly created records.
9898

9999

100-
### Add field account number using primitive type
100+
### Add field account number using built-in type
101101

102-
Now you will add the key field **`account_number`**, based on a primitive type.
102+
Now you will add the key field **`account_number`**, based on a built-in type.
103103

104104
1. Enter the following (including the period), then choose **Code completion (Ctrl+Space)**:
105105

@@ -298,7 +298,7 @@ The class appears in a new editor.
298298
interfaces if_oo_adt_classrun.
299299
```
300300
301-
This interface provides a light-weight solution for executing an ABAP program without launching a full user interface.
301+
This interface provides a lightweight solution for executing an ABAP program without launching a full user interface.
302302
It also lets you display text or data in the ABAP Console.
303303
304304
2. Add the implementation for the **`main`** method of this interface by selecting the interface name and choosing **Add implementation...** from the context menu.

0 commit comments

Comments
 (0)