使用ABAP SE16查看类型为RAWSTRING的数据库列字段值

简介: 使用ABAP SE16查看类型为RAWSTRING的数据库列字段值
+关注继续查看

Sometimes you would like to view the content of field with RAWSTRING type for a table:


image.png


The raw string represents the configuration with XML format however the correct format could not be viewed in SE16 directly.


image.png


In fact, the dynpro in the screenshot above is implemented by a program which is automatically generated by framework. You could find its name via System->Status:


image.png


image.png


execute report RS_ABAP_SOURCE_SCAN with search key = select * from BSPC_DL_PERSSTOR, search program = /1BCDWB/DBBSPC_DL_PERSSTOR.


image.png


Set breakpoint on the three search result:


image.png


relaunch SE16 and access the table, one of the breakpoint is triggered:


image.png


switch to XML Browser:


image.png


then you can see XML detail in debugger. With such tip it is not necessary to write any report to select the xml data out of the database table.


image.png

相关文章
|
5天前
|
SQL 数据库
SQL标识列实现自动编号的步骤和技巧以及优势
SQL标识列实现自动编号的步骤和技巧以及优势
17 0
|
关系型数据库 MySQL PostgreSQL
PostgreSQL - 设置数据表编号初始值
PostgreSQL - 设置数据表编号初始值
91 0
|
SQL Oracle 关系型数据库
Oracle 数据库sql语句修改表字段的字段类型和长度
Oracle 数据库sql语句修改表字段的字段类型和长度
330 0
Oracle 数据库sql语句修改表字段的字段类型和长度
|
SQL 关系型数据库 MySQL
MySQL 数据库利用alter语句修改表字段属性实例演示,如何拓展表字段长度,sql语句修改表字段名称和类型
MySQL 数据库利用alter语句修改表字段属性实例演示,如何拓展表字段长度,sql语句修改表字段名称和类型
293 0
MySQL 数据库利用alter语句修改表字段属性实例演示,如何拓展表字段长度,sql语句修改表字段名称和类型
|
XML 数据库 数据格式
在SAPGUI的SE16事务码里直接查看类型为RAWSTRING的数据库表字段内容
在SAPGUI的SE16事务码里直接查看类型为RAWSTRING的数据库表字段内容
187 0
在SAPGUI的SE16事务码里直接查看类型为RAWSTRING的数据库表字段内容
|
SQL
SQL Server 将一个表中字段的值复制到另一个表的字段中
原文:SQL Server 将一个表中字段的值复制到另一个表的字段中 具体方法如下 一:update 表2 set (要插入的列名)= select 表1.某一列 from 表1 left jion 表2 on 表1和表2的关联 where .
1936 0
推荐文章
更多