Skip to content

Commit 8c9249e

Browse files
authored
Update README.md
1 parent 1ac5f39 commit 8c9249e

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

README.md

+22-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ All abap2UI5 artifacts are combined into a single HTTP handler implementation as
1616
<img width="500" alt="Screenshot 2025-02-13 at 13 24 18" src="https://github.com/user-attachments/assets/5fcc56a8-8e2c-41b2-84b3-e50242ff648c" />
1717

1818
#### Persistence
19-
To avoid any side effects with other abap2UI5 installations, this version uses the table z2ui5_t_99 for persistence. You can either pull this repository or manually create the following table in your system:
19+
To avoid any side effects with other abap2UI5 installations, this version uses the table z2ui5_t_99 for persistence. You can either pull this repository or manually create the following two table in your system:
2020
```cds
2121
@EndUserText.label : 'abap2UI5-local'
2222
@AbapCatalog.enhancement.category : #NOT_EXTENSIBLE
@@ -34,6 +34,27 @@ define table z2ui5_t_99 {
3434
}
3535
```
3636

37+
```cds
38+
@EndUserText.label : 'abap2ui5 local utility'
39+
@AbapCatalog.enhancement.category : #NOT_EXTENSIBLE
40+
@AbapCatalog.tableCategory : #TRANSPARENT
41+
@AbapCatalog.deliveryClass : #A
42+
@AbapCatalog.dataMaintenance : #RESTRICTED
43+
define table z2ui5_t_98 {
44+
key mandt : abap.char(3) not null;
45+
key id : abap.char(32) not null;
46+
uname : abap.char(32);
47+
handle : abap.char(32);
48+
handle2 : abap.char(32);
49+
handle3 : abap.char(32);
50+
handle4 : abap.char(32);
51+
handle5 : abap.char(32);
52+
data : abap.string(0);
53+
data2 : abap.string(0);
54+
data3 : abap.string(0);
55+
}
56+
```
57+
3758
#### Credits
3859
* Merged files created with [abapmerge](https://github.com/larshp/abapmerge)
3960
* `702` branch created with [abaplint](https://abaplint.org)

0 commit comments

Comments
 (0)