本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
- kingwell.leng
最新文章列表
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 ...
获得某个时间段内修改过的所有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 ...
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 ...
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 ...
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 ...
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 ...
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 ...
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 ...
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 ...
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 ...
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 ...
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 ...
在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, ...
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 ...
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 ...
如何得到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 ...
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 ...
如何让你的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 ...
使用代码删除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_ ...
四种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 ...