mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 12:20:51 +08:00
Clear cluster data of endpoint during serializatio
This commit is contained in:
parent
50e3bf6a5c
commit
a1a6bd940b
|
@ -77,8 +77,8 @@ CLASS lcl_object_webi IMPLEMENTATION.
|
|||
li_vi TYPE REF TO if_ws_md_vif,
|
||||
lv_name TYPE vepname.
|
||||
|
||||
FIELD-SYMBOLS: <ls_header> LIKE LINE OF ls_webi-pvepheader.
|
||||
|
||||
FIELD-SYMBOLS: <ls_header> LIKE LINE OF ls_webi-pvepheader,
|
||||
<ls_endpoint> LIKE LINE OF ls_webi-pvependpoint.
|
||||
|
||||
CALL FUNCTION 'WEBI_GET_OBJECT'
|
||||
EXPORTING
|
||||
|
@ -133,6 +133,10 @@ CLASS lcl_object_webi IMPLEMENTATION.
|
|||
CLEAR <ls_header>-wsint_version.
|
||||
ENDLOOP.
|
||||
|
||||
LOOP AT ls_webi-pvependpoint ASSIGNING <ls_endpoint>.
|
||||
CLEAR: <ls_endpoint>-clustd.
|
||||
ENDLOOP.
|
||||
|
||||
io_xml->add( iv_name = 'WEBI'
|
||||
ig_data = ls_webi ).
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user