如何看待基于ABAP系统的交易源代码?
We have upgraded our development SAP system from (ECC6 and SAP Portal) from SPS3 to SPS5. Now when a user logs onto the SAP Portal and run a bespoke Java Web Dynpro screen (which in turn calls SAP ...
如何看待基于ABAP系统的交易源代码?
页: 1 系统——> Status,见方案名称。
之后,您可到TcodeSE38
或SE80
查看编码。
或者,在你进行交易之前,你可以在回头启动欺骗模式。
回答您的问题的确切答案是:
?SYNTAX ERROR
一项交易没有来源代码可查。 利用SE93号交易调查各种交易。 交易可以指将要执行的方案(报告),然后,必须看看该方案的来源代码。 交易可指定一个节目、功能库或模块库的屏幕显示,然后由您审查这一屏幕和随后的屏幕。 交易可能只是使用一种变式的另一种交易,因此,你不得不遵循这一联系。 rel=“nofollow noreferer”>Read this , for more info on the different forms of trade and what they are good for.
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.
您可以看到SSE80交易中的方案源代码。
We have upgraded our development SAP system from (ECC6 and SAP Portal) from SPS3 to SPS5. Now when a user logs onto the SAP Portal and run a bespoke Java Web Dynpro screen (which in turn calls SAP ...
I don t know a thing about ABAP, apart from it has an OO side, and I would like to have some kind of helicopterview of it before I start to look at it in detail. I know I can find all of this when ...
here in switzerland our currency is francs and the smallest coin is 5 centimes which is 0.05 francs. what is the best way to round amounts to be payable with our money using the programming language ...
Can anyone provide me link or Ebooks of ABAP Ecc.6 or the way to fine them for Associalte Level exam preparation.
Are there general ABAP-specific tips related to performance of big SELECT queries? In particular, is it possible to close once and for all the question of FOR ALL ENTRIES IN vs JOIN?
The standard SAP MM advice is that only two periods can be open simultaneously. How to determine them from within the program (FM to call/table to read)?
Below is a code snippet that is creating object. Form userexit_save_document_prepare. data: /bks/exitmanager type ref to /bks/exit_manager. create object /bks/exitmanager exporting ...
My company is working on a project that needs to read XML files within ABAP. When the XML file has no data for a particular tag it omits that data. Some tags are self closing. e.g. <tag /> The ...