基于ABAP的系统中事务的源代码?
如何查看基于 ABAP 的系统中事务的源代码?
How can you look at the source code of a transaction in ABAP-based systems?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何查看基于 ABAP 的系统中事务的源代码?
How can you look at the source code of a transaction in ABAP-based systems?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您可以进入
系统->状态
并查看那里的程序名称。之后你可以到Tcode
SE38
或SE80
查看编码。或者,您可以在运行事务之前键入 /h 以激活调试模式。
You can go to
System -> Status
and see the program name there.After that you can go to Tcode
SE38
orSE80
to view the coding.Alternatively, you could key in /h to activate the debugging mode before you run the transaction.
您问题的确切答案是
交易没有源代码可供查看。使用事务 SE93 查看各种事务。事务可能会指定要执行的程序(报告) - 那么您必须查看该程序的源代码。事务可能会指定要显示的程序、功能池或模块池的屏幕 - 然后您必须检查此屏幕和后续屏幕。一笔交易可能只是使用变体委托给另一笔交易,然后您必须点击此链接。 阅读本文,了解有关各种类型的详细信息交易及其用途。
The exact answer to your question would be
A transaction does not have source code to look at. Take a look at various transactions using the transaction SE93. A transaction may name a program (report) to be executed - then you'll have to take a look at the source code of that program. A transaction may name a screen of a program, function pool or module pool to show - then you'll have to examine this screen and the subsequent ones. A transaction may simply delegate to another transaction using a variant, then you'll have to follow this link. Read this for more info on the various types of transactions and what they are good for.
我想到了三个选项(我确信还有更多):
1)交易中:菜单系统-->状态,弹出窗口将显示该程序,双击它,它应该将您带到那里
2)事务SE93是事务维护
3)表TSTC保存了事务代码和程序。
可以在事务SE80中看到程序的源代码
Three options come to mind (I am sure there are many more):
1) In the transaction: menu System --> Status, the pop-up will show the program, double-click on it and it should take you there
2) Transaction SE93 is the transaction maintenance
3) Table TSTC keeps transaction codes and programs.
You can see the source code of a program in transaction SE80