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

相关文章

Nginx location匹配模式与规则详解

《Nginxlocation匹配模式与规则详解》:本文主要介绍Nginxlocation匹配模式与规则,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、环境二、匹配模式1. 精准模式2. 前缀模式(不继续匹配正则)3. 前缀模式(继续匹配正则)4. 正则模式(大

Android实现在线预览office文档的示例详解

《Android实现在线预览office文档的示例详解》在移动端展示在线Office文档(如Word、Excel、PPT)是一项常见需求,这篇文章为大家重点介绍了两种方案的实现方法,希望对大家有一定的... 目录一、项目概述二、相关技术知识三、实现思路3.1 方案一:WebView + Office Onl

Java实现优雅日期处理的方案详解

《Java实现优雅日期处理的方案详解》在我们的日常工作中,需要经常处理各种格式,各种类似的的日期或者时间,下面我们就来看看如何使用java处理这样的日期问题吧,感兴趣的小伙伴可以跟随小编一起学习一下... 目录前言一、日期的坑1.1 日期格式化陷阱1.2 时区转换二、优雅方案的进阶之路2.1 线程安全重构2

Android实现两台手机屏幕共享和远程控制功能

《Android实现两台手机屏幕共享和远程控制功能》在远程协助、在线教学、技术支持等多种场景下,实时获得另一部移动设备的屏幕画面,并对其进行操作,具有极高的应用价值,本项目旨在实现两台Android手... 目录一、项目概述二、相关知识2.1 MediaProjection API2.2 Socket 网络

Java中的JSONObject详解

《Java中的JSONObject详解》:本文主要介绍Java中的JSONObject详解,需要的朋友可以参考下... Java中的jsONObject详解一、引言在Java开发中,处理JSON数据是一种常见的需求。JSONObject是处理JSON对象的一个非常有用的类,它提供了一系列的API来操作J

Redis消息队列实现异步秒杀功能

《Redis消息队列实现异步秒杀功能》在高并发场景下,为了提高秒杀业务的性能,可将部分工作交给Redis处理,并通过异步方式执行,Redis提供了多种数据结构来实现消息队列,总结三种,本文详细介绍Re... 目录1 Redis消息队列1.1 List 结构1.2 Pub/Sub 模式1.3 Stream 结

HTML5中的Microdata与历史记录管理详解

《HTML5中的Microdata与历史记录管理详解》Microdata作为HTML5新增的一个特性,它允许开发者在HTML文档中添加更多的语义信息,以便于搜索引擎和浏览器更好地理解页面内容,本文将探... 目录html5中的Mijscrodata与历史记录管理背景简介html5中的Microdata使用M

html5的响应式布局的方法示例详解

《html5的响应式布局的方法示例详解》:本文主要介绍了HTML5中使用媒体查询和Flexbox进行响应式布局的方法,简要介绍了CSSGrid布局的基础知识和如何实现自动换行的网格布局,详细内容请阅读本文,希望能对你有所帮助... 一 使用媒体查询响应式布局        使用的参数@media这是常用的

HTML5表格语法格式详解

《HTML5表格语法格式详解》在HTML语法中,表格主要通过table、tr和td3个标签构成,本文通过实例代码讲解HTML5表格语法格式,感兴趣的朋友一起看看吧... 目录一、表格1.表格语法格式2.表格属性 3.例子二、不规则表格1.跨行2.跨列3.例子一、表格在html语法中,表格主要通过< tab

MySQL索引的优化之LIKE模糊查询功能实现

《MySQL索引的优化之LIKE模糊查询功能实现》:本文主要介绍MySQL索引的优化之LIKE模糊查询功能实现,本文通过示例代码给大家介绍的非常详细,感兴趣的朋友一起看看吧... 目录一、前缀匹配优化二、后缀匹配优化三、中间匹配优化四、覆盖索引优化五、减少查询范围六、避免通配符开头七、使用外部搜索引擎八、分