96.SAP MII功能详解(09)Workbench-Transaction Debugging

2024-08-27 22:04

本文主要是介绍96.SAP MII功能详解(09)Workbench-Transaction Debugging,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

目录

1.About Transaction Debugging

Use

Features

Activities

2.How to Debug

Start Debugging

Create Breakpoint

Watch Variables 

Debugging logs


1.About Transaction Debugging

Use

You use this function to monitor and manipulate a transaction while it is running.您可以使用此函数在事务运行时监视和操纵事务。

Features

During debugging, you can do the following:

Manipulate transaction breakpoints

For more information, see Breakpoint.

See the transaction's current execution state

Modify internal variables when the transaction is paused

Modify link expressions and action configurations for future executions

在调试过程中,您可以执行以下操作:
操纵事务断点
有关详细信息,请参见断点。
查看交易的当前执行状态
在事务暂停时修改内部变量
修改链接表达式和操作配置以供将来执行

Activities

To run debugging for a transaction, on the SAP MII Workbench screen, choose Transaction  Debug. The following tab pages appear at the bottom of the screen:

  • Breakpoints

    Lists the breakpoints. From this list, you can create, edit, and delete expressions.

  • Variables

    Lists all action variables through the action currently being processed. Skipped action variables are not in this list.

    The value in this list is the value before the execution of the closest breakpoint. You can enter a different value during runtime to see how it affects the execution of the transaction. Link values must be changed at runtime for the new values to take affect.

  • Watch List

    Lists the variables you want to monitor during execution. You can add and remove variables from this list.

  • Links

    Displays the incoming and outgoing links for the action that is being processed or that has a breakpoint.

  • Transaction Debug

    Shows the details for the execution of the transaction. A new Transaction Debug tab page appears each time you run the transaction.

When you are debugging a transaction, you can click the buttons described below to perform certain functions:

 

2.How to Debug

Start Debugging

Create Breakpoint

 

Watch Variables 

Debugging logs

 

这篇关于96.SAP MII功能详解(09)Workbench-Transaction Debugging的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1112904

相关文章

MySQL中的分组和多表连接详解

《MySQL中的分组和多表连接详解》:本文主要介绍MySQL中的分组和多表连接的相关操作,本文通过实例代码给大家介绍的非常详细,感兴趣的朋友一起看看吧... 目录mysql中的分组和多表连接一、MySQL的分组(group javascriptby )二、多表连接(表连接会产生大量的数据垃圾)MySQL中的

Java 实用工具类Spring 的 AnnotationUtils详解

《Java实用工具类Spring的AnnotationUtils详解》Spring框架提供了一个强大的注解工具类org.springframework.core.annotation.Annot... 目录前言一、AnnotationUtils 的常用方法二、常见应用场景三、与 JDK 原生注解 API 的

redis中使用lua脚本的原理与基本使用详解

《redis中使用lua脚本的原理与基本使用详解》在Redis中使用Lua脚本可以实现原子性操作、减少网络开销以及提高执行效率,下面小编就来和大家详细介绍一下在redis中使用lua脚本的原理... 目录Redis 执行 Lua 脚本的原理基本使用方法使用EVAL命令执行 Lua 脚本使用EVALSHA命令

SpringBoot3.4配置校验新特性的用法详解

《SpringBoot3.4配置校验新特性的用法详解》SpringBoot3.4对配置校验支持进行了全面升级,这篇文章为大家详细介绍了一下它们的具体使用,文中的示例代码讲解详细,感兴趣的小伙伴可以参考... 目录基本用法示例定义配置类配置 application.yml注入使用嵌套对象与集合元素深度校验开发

Python中的Walrus运算符分析示例详解

《Python中的Walrus运算符分析示例详解》Python中的Walrus运算符(:=)是Python3.8引入的一个新特性,允许在表达式中同时赋值和返回值,它的核心作用是减少重复计算,提升代码简... 目录1. 在循环中避免重复计算2. 在条件判断中同时赋值变量3. 在列表推导式或字典推导式中简化逻辑

Java Stream流使用案例深入详解

《JavaStream流使用案例深入详解》:本文主要介绍JavaStream流使用案例详解,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下吧... 目录前言1. Lambda1.1 语法1.2 没参数只有一条语句或者多条语句1.3 一个参数只有一条语句或者多

SpringBoot整合mybatisPlus实现批量插入并获取ID详解

《SpringBoot整合mybatisPlus实现批量插入并获取ID详解》这篇文章主要为大家详细介绍了SpringBoot如何整合mybatisPlus实现批量插入并获取ID,文中的示例代码讲解详细... 目录【1】saveBATch(一万条数据总耗时:2478ms)【2】集合方式foreach(一万条数

Python装饰器之类装饰器详解

《Python装饰器之类装饰器详解》本文将详细介绍Python中类装饰器的概念、使用方法以及应用场景,并通过一个综合详细的例子展示如何使用类装饰器,希望对大家有所帮助,如有错误或未考虑完全的地方,望不... 目录1. 引言2. 装饰器的基本概念2.1. 函数装饰器复习2.2 类装饰器的定义和使用3. 类装饰

Android使用ImageView.ScaleType实现图片的缩放与裁剪功能

《Android使用ImageView.ScaleType实现图片的缩放与裁剪功能》ImageView是最常用的控件之一,它用于展示各种类型的图片,为了能够根据需求调整图片的显示效果,Android提... 目录什么是 ImageView.ScaleType?FIT_XYFIT_STARTFIT_CENTE

MySQL 中的 JSON 查询案例详解

《MySQL中的JSON查询案例详解》:本文主要介绍MySQL的JSON查询的相关知识,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下吧... 目录mysql 的 jsON 路径格式基本结构路径组件详解特殊语法元素实际示例简单路径复杂路径简写操作符注意MySQL 的 J