Skip to content

Commit 9da0529

Browse files
authored
Update cds.md
1 parent e006a3a commit 9da0529

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

docs/development/cds.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ ENDCLASS.
4545
```
4646

4747
### EML
48-
The Entity Manipulation Language simplifies the creation, update, and deletion of RAP business objects. The example below demonstrates how to create a sales order using EML in an abap2UI5 application:
48+
The Entity Manipulation Language simplifies the read, creation, update, and deletion of RAP business objects.
49+
50+
#### Modify
51+
The example below demonstrates how to create a sales order using EML in an abap2UI5 application:
4952
```abap
5053
METHOD z2ui5_if_app~main.
5154
@@ -81,6 +84,7 @@ Key Considerations:
8184
* Transaction Management: EML calls in abap2UI5 apps are executed outside the RAP framework. Therefore, don't forget to explicitly commit transactions using `COMMIT ENTITIES`
8285
* Commit Limitations: RAP enforces strict limitations, such as disallowing direct calls to posting function modules or explicit commits within its framework. These restrictions do not apply when using EML in abap2UI5 apps, allowing greater flexibility in commit management
8386

87+
#### Read
8488
You can also use the `READ ENTITY` command:
8589
```abap
8690
CLASS z2ui5_cl_sample_eml_read DEFINITION

0 commit comments

Comments
 (0)