mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 20:03:20 +08:00
remove use of type LXE_PCX_S1 by inlining type (#6687)
This commit is contained in:
parent
fa5fcfe00f
commit
7c34dd33dc
|
@ -1,8 +1,17 @@
|
|||
INTERFACE zif_abapgit_lxe_texts
|
||||
PUBLIC .
|
||||
|
||||
TYPES:
|
||||
ty_text_pairs TYPE STANDARD TABLE OF lxe_pcx_s1 WITH DEFAULT KEY.
|
||||
* type LXE_PCX_S1 inlined to be compatible with open-abap and ABAP Cloud
|
||||
TYPES: BEGIN OF ty_text_pair,
|
||||
textkey TYPE c LENGTH 32,
|
||||
s_text TYPE c LENGTH 255,
|
||||
t_text TYPE c LENGTH 255,
|
||||
unitmlt TYPE i,
|
||||
uppcase TYPE c LENGTH 4,
|
||||
texttype TYPE c LENGTH 1,
|
||||
END OF ty_text_pair.
|
||||
|
||||
TYPES ty_text_pairs TYPE STANDARD TABLE OF ty_text_pair WITH DEFAULT KEY.
|
||||
|
||||
METHODS serialize
|
||||
IMPORTING
|
||||
|
|
Loading…
Reference in New Issue
Block a user