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

相关文章

mac中资源库在哪? macOS资源库文件夹详解

《mac中资源库在哪?macOS资源库文件夹详解》经常使用Mac电脑的用户会发现,找不到Mac电脑的资源库,我们怎么打开资源库并使用呢?下面我们就来看看macOS资源库文件夹详解... 在 MACOS 系统中,「资源库」文件夹是用来存放操作系统和 App 设置的核心位置。虽然平时我们很少直接跟它打交道,但了

Go语言实现将中文转化为拼音功能

《Go语言实现将中文转化为拼音功能》这篇文章主要为大家详细介绍了Go语言中如何实现将中文转化为拼音功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 有这么一个需求:新用户入职 创建一系列账号比较麻烦,打算通过接口传入姓名进行初始化。想把姓名转化成拼音。因为有些账号即需要中文也需要英

关于Maven中pom.xml文件配置详解

《关于Maven中pom.xml文件配置详解》pom.xml是Maven项目的核心配置文件,它描述了项目的结构、依赖关系、构建配置等信息,通过合理配置pom.xml,可以提高项目的可维护性和构建效率... 目录1. POM文件的基本结构1.1 项目基本信息2. 项目属性2.1 引用属性3. 项目依赖4. 构

Rust 数据类型详解

《Rust数据类型详解》本文介绍了Rust编程语言中的标量类型和复合类型,标量类型包括整数、浮点数、布尔和字符,而复合类型则包括元组和数组,标量类型用于表示单个值,具有不同的表示和范围,本文介绍的非... 目录一、标量类型(Scalar Types)1. 整数类型(Integer Types)1.1 整数字

Java操作ElasticSearch的实例详解

《Java操作ElasticSearch的实例详解》Elasticsearch是一个分布式的搜索和分析引擎,广泛用于全文搜索、日志分析等场景,本文将介绍如何在Java应用中使用Elastics... 目录简介环境准备1. 安装 Elasticsearch2. 添加依赖连接 Elasticsearch1. 创

基于WinForm+Halcon实现图像缩放与交互功能

《基于WinForm+Halcon实现图像缩放与交互功能》本文主要讲述在WinForm中结合Halcon实现图像缩放、平移及实时显示灰度值等交互功能,包括初始化窗口的不同方式,以及通过特定事件添加相应... 目录前言初始化窗口添加图像缩放功能添加图像平移功能添加实时显示灰度值功能示例代码总结最后前言本文将

Redis缓存问题与缓存更新机制详解

《Redis缓存问题与缓存更新机制详解》本文主要介绍了缓存问题及其解决方案,包括缓存穿透、缓存击穿、缓存雪崩等问题的成因以及相应的预防和解决方法,同时,还详细探讨了缓存更新机制,包括不同情况下的缓存更... 目录一、缓存问题1.1 缓存穿透1.1.1 问题来源1.1.2 解决方案1.2 缓存击穿1.2.1

PyTorch使用教程之Tensor包详解

《PyTorch使用教程之Tensor包详解》这篇文章介绍了PyTorch中的张量(Tensor)数据结构,包括张量的数据类型、初始化、常用操作、属性等,张量是PyTorch框架中的核心数据结构,支持... 目录1、张量Tensor2、数据类型3、初始化(构造张量)4、常用操作5、常用属性5.1 存储(st

Python 中 requests 与 aiohttp 在实际项目中的选择策略详解

《Python中requests与aiohttp在实际项目中的选择策略详解》本文主要介绍了Python爬虫开发中常用的两个库requests和aiohttp的使用方法及其区别,通过实际项目案... 目录一、requests 库二、aiohttp 库三、requests 和 aiohttp 的比较四、requ

VUE动态绑定class类的三种常用方式及适用场景详解

《VUE动态绑定class类的三种常用方式及适用场景详解》文章介绍了在实际开发中动态绑定class的三种常见情况及其解决方案,包括根据不同的返回值渲染不同的class样式、给模块添加基础样式以及根据设... 目录前言1.动态选择class样式(对象添加:情景一)2.动态添加一个class样式(字符串添加:情