mirror of
https://github.com/abap2xlsx/abap2xlsx.git
synced 2025-05-05 13:46:17 +08:00
Update XSTRING conversion
This commit is contained in:
parent
0a17f7f14a
commit
d1c74a18e4
|
@ -2642,11 +2642,24 @@ METHOD create_xl_drawings_vml.
|
||||||
EXPORTING
|
EXPORTING
|
||||||
stream = ld_stream.
|
stream = ld_stream.
|
||||||
|
|
||||||
CALL FUNCTION 'CRM_IC_XML_STRING2XSTRING'
|
* CALL FUNCTION 'CRM_IC_XML_STRING2XSTRING'
|
||||||
|
* EXPORTING
|
||||||
|
* instring = ld_stream
|
||||||
|
* IMPORTING
|
||||||
|
* outxstring = ep_content.
|
||||||
|
|
||||||
|
CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
|
||||||
EXPORTING
|
EXPORTING
|
||||||
instring = ld_stream
|
text = ld_stream
|
||||||
IMPORTING
|
IMPORTING
|
||||||
outxstring = ep_content.
|
buffer = ep_content
|
||||||
|
EXCEPTIONS
|
||||||
|
failed = 1
|
||||||
|
OTHERS = 2.
|
||||||
|
IF sy-subrc <> 0.
|
||||||
|
CLEAR ep_content.
|
||||||
|
ENDIF.
|
||||||
|
|
||||||
|
|
||||||
ENDMETHOD.
|
ENDMETHOD.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user