我有未知结构的 XML,我想在其上应用 ST(简单转换)以“以某种方式”将 XML 中的内容转换为 ABAP 结构。
现在我有以下测试报告:
report ztbu_st_with_copy.
data: lf_xml type string.
concatenate '<tab><obj>'
'<id>A1</id>'
'<first>Erste</first>'
'<second>Zweite</second>'
'</obj><obj>'
'<id>B2</id>'
'<item>'
'<here>Tady</here>'
'<there>Tam</there>'
'</item>'
'</obj>'
'</tab>'
into lf_xml.
types: begin of ys_obj,
id type string,
rest type string,
end of ys_obj,
yt_obj type standard table of ys_obj.
data: lt_obj type yt_obj.
call transformation ztbu_st_copy_test
source xml lf_xml
result root = lt_obj.
uline.
data: ls_obj like line of lt_obj.
loop at lt_obj into ls_obj.
write: / sy-tabix, ls_obj-id.
endloop.
uline.
我有以下 ST 转换 ZTBU_ST_COPY_TEST (上面调用的那个):
<?sap.transform simple?>
<tt:transform xmlns:tt="http://www.sap.com/transformation-templates">
<tt:root name="ROOT"/>
<tt:template>
<tab>
<tt:loop ref=".ROOT" name="obj">
<obj>
<id>
<tt:value ref="$obj.ID" />
</id>
<tt:skip />
</obj>
</tt:loop>
</tab>
</tt:template>
</tt:transform>
现在它工作正常,它会将 ID 带入表 LT_OBJ 的字段中。但是,由于使用<TT:SKIP>
. 我的目标是将 XML 文档的其余部分(这些 FIRST、SECOND、HERE 和 THERE 或任何任意 XML)以“某种”格式放入字段 REST 中——可能作为存储在 STRING 变量中的粗略 XML。
我知道我需要<TT:SKIP>
用更聪明的东西代替,但我不知道应该是什么......知道吗?
旁注:是的,我知道,最好使用 XSLT 或其他东西,而不是 ST,但我别无选择,我需要使用 ST。