最新文章列表

SAP ABAP报表依赖设计原理详解

In SAP note 1230076 “Generation of ABAP loads: Tips for the analysis”, a tool report RSDEPEND is introduced. It is explained in the note “An ABAP program generally depends on many other repository ob ...
JerryWang_SAP 评论(0) 有249人浏览 2020-11-30 13:04

获得某个时间段内修改过的所有ABAP对象列表

Sometimes we need to get a list of changed objects by the given user at the given time period, there is a small tip to quickly get this list with little effort. approach1 query the table VRSD with u ...
JerryWang_SAP 评论(0) 有206人浏览 2020-11-29 13:36

SAP CRM产品主数据页面的缩略图显示设计原理

In CRM Product UI, A thumbnail could be displayed in Product header and Thumbnail assignment block.     The Thumbnail assignment block is not available in SAP predefined UI configuration. Custome ...
JerryWang_SAP 评论(0) 有199人浏览 2020-11-29 13:35

ABAP 740里的新语法 - LET表达式

A LET expression defines variables var1, var2, … or field symbols , , … as local auxiliary fields in an expression and assigned values to them. When declared, the auxiliary fields can be used in the o ...
JerryWang_SAP 评论(0) 有368人浏览 2020-11-27 10:44

ABAP 740的新语法 - 使用BO association的方式进行内表连接操作

ABAP Mesh is also a new feature in 740. Let’s use an example to demonstrate how it works: I have defined two types for developers and managers. developer type has a field manager which points to his m ...
JerryWang_SAP 评论(0) 有327人浏览 2020-11-27 10:43

ABAP 740新的OPEN SQL增强特性

he following open SQL statement looks a little weird, however it could really works in 740.     (1) The field name of my structure ty_my_sflight is different from field defined in sflight, so in ...
JerryWang_SAP 评论(0) 有302人浏览 2020-11-26 10:32

ABAP Webdynpro - 如何使用用户自定义的value help

For input attribute totally five input help mode could be selected. In most of time we would always like to leverage the existing dictionary search help defined in DDIC. However if existing one could ...
JerryWang_SAP 评论(0) 有219人浏览 2020-11-26 10:31

ABAP Webdynpro里Component Usage的用法

In NET311 the topic component usage clone is discussed there. One example is also given there: The user of a Web Dynpro application can mark multiple lines of a table to display details for each selec ...
JerryWang_SAP 评论(0) 有234人浏览 2020-11-25 12:48

ABAP Webdynpro Interface View的用法

If the component usage is not defined at design time, it is not possible to embed an interface view of this component usage into a ViewUIElementContainer of another view. It is also not possible to de ...
JerryWang_SAP 评论(0) 有261人浏览 2020-11-25 12:46

ABAP Webdynpro的跟踪工具WD_TRACE_TOOL

You can use tcode WD_TRACE_TOOL to switch on trace.     After that when you launch your webdynpro application, you can observe there is a Webdynpro trace window embedded in the bottom of the appl ...
JerryWang_SAP 评论(0) 有247人浏览 2020-11-24 10:38

SAP CRM IDOC的详尽调试步骤

(1) Trigger the IDOC sending using tcode R3AS     Choose the receiver destination site from f4 help:     Click f8 to execute the sending.     (2) Launch tcode SMQ2 to check inbound QRFC ...
JerryWang_SAP 评论(0) 有234人浏览 2020-11-24 10:38

ABAP Webdynpro性能测试工具

Under package SWDP_PERFORMANCE_VERIFICATION there is a pair of reports WDT_TRACE_ON and WDT_TRACE_OFF which could switch on and switch off performance trace. To switch on trace, set the user parameter ...
JerryWang_SAP 评论(0) 有292人浏览 2020-11-23 10:06

在ABAP Webdynpro里显示PDF的一种办法

There is a good blog about how to get PDF preview in CRM web client UI. However several development are invovled in that solution. You have to implement your own ICF node to make PDF displayed in UI, ...
JerryWang_SAP 评论(0) 有356人浏览 2020-11-23 10:01

ABAP代码分析工具 - 事务码SQF

ABAP static analysis tool SQF is a static code analysis tool developed in package SUPPORT_QUERY_FRAMEWORK in software component SAP_BASIS. It contains lots of handy tool or short cut to other system u ...
JerryWang_SAP 评论(0) 有314人浏览 2020-11-22 09:25

SAP Connection inbound邮件接收处理机制

Email inbound process is done by user SAPCONNECT so that you cannot debug it via normal debugging approach. then you have to follow the steps below to debug: (1) Inside one entry like below into tabl ...
JerryWang_SAP 评论(0) 有250人浏览 2020-11-21 09:16

如何得到ABAP Webdynpro PDF渲染的性能相关文件

In ABAP webdynpro you can use InteractiveForm control to achieve PDF render, as long as you specify the dataSource of PDF via context node, and form template uploaded via tcode SFP.     In some c ...
JerryWang_SAP 评论(0) 有233人浏览 2020-11-21 09:15

ABAP Webdynpro和CRM WebClient UI不同的UI表现机制

This wiki page collects UI behavior differences between ABAP Webdynpro and CRM Webclient UI. Data loss handling in CRM webclient UI, you can follow the wiki to implement data loss functionality. The ...
JerryWang_SAP 评论(0) 有199人浏览 2020-11-19 09:38

如何让你的SAP CRM应用支持附件上传

Suppose we have the following product with 5 attachments:   First we get its guid 00163EA71FFC1ED1A5BB4940F3F30AA7 from table COMM_PRODUCT:     And then call CL_CRM_DOCUMENTS=>GET_INFO wit ...
JerryWang_SAP 评论(0) 有328人浏览 2020-11-18 13:00

使用代码删除SAP CRM的附件(attachment)数据

In the beginning I consider it is very easy to delete attachments via code, just like below. I have defined one method with following two importing parameters and one returning parameter: (1) iv_bor_ ...
JerryWang_SAP 评论(0) 有255人浏览 2020-11-14 09:28

四种ABAP单元测试隔离(test isolation)技术

Hi friends, As far as I know test isolation is widely used in SAP internal to build unit test code, at least in my team. Test isolation in unit test means that in your production code you make use of ...
JerryWang_SAP 评论(0) 有248人浏览 2020-11-12 10:41

最近博客热门TAG

Java(141745) C(73651) C++(68608) SQL(64571) C#(59609) XML(59133) HTML(59043) JavaScript(54919) .net(54785) Web(54514) 工作(54118) Linux(50905) Oracle(49875) 应用服务器(43289) Spring(40812) 编程(39454) Windows(39381) JSP(37542) MySQL(37268) 数据结构(36424)

博客人气排行榜

    博客电子书下载排行

      >>浏览更多下载

      相关资讯

      相关讨论

      Global site tag (gtag.js) - Google Analytics