在SAPGUI的SE16事务码里直接查看类型为RAWSTRING的数据库表字段内容

简介: 在SAPGUI的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


相关文章
|
19天前
|
存储 关系型数据库 MySQL
MySQL数据库进阶第六篇(InnoDB引擎架构,事务原理,MVCC)
MySQL数据库进阶第六篇(InnoDB引擎架构,事务原理,MVCC)
|
5天前
|
关系型数据库 MySQL 定位技术
数据库中有哪些索引类型?
【7月更文挑战第2天】数据库中有哪些索引类型?
21 8
|
5天前
|
存储 关系型数据库 MySQL
|
19天前
|
关系型数据库 MySQL 数据库
MySQL数据库基础第四篇(多表查询与事务)
MySQL数据库基础第四篇(多表查询与事务)
|
23天前
|
SQL 关系型数据库 MySQL
MySQL数据库——事务操作-begin-commit-rollback
MySQL数据库——事务操作-begin-commit-rollback
14 1
|
25天前
|
存储 SQL NoSQL
深入了解数据库技术:核心原理、类型及行业应用
一、引言 数据库技术是信息技术领域的重要组成部分,它负责数据的存储、检索、管理和保护
|
28天前
|
存储 SQL NoSQL
数据库有哪些类型?
【6月更文挑战第9天】数据库有哪些类型?
39 2
|
1月前
|
SQL 关系型数据库 MySQL
MySQL数据库——基础篇总结(概述、SQL、函数、约束、多表查询、事务)一
MySQL数据库——基础篇总结(概述、SQL、函数、约束、多表查询、事务)一
27 5
|
1月前
|
SQL 关系型数据库 MySQL
MySQL数据库——索引(4)-SQL性能分析-profile详情、explain(profile查看指令,explain执行计划中各个字段的含义)
MySQL数据库——索引(4)-SQL性能分析-profile详情、explain(profile查看指令,explain执行计划中各个字段的含义)
25 2
|
12天前
|
SQL Java 数据库连接
如何在Java中实现数据库事务?
如何在Java中实现数据库事务?