本月博客排行
-
第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
- siemens800
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
最新文章列表
如何使用SAP CRM中间件从ERP往CRM下载Service Master
(1) Create service master in ERP using tcode AC01:
Once saved, the service master header data will be saved to table below:
(2) Create a download request in CRM via tcode R3AR2 with ...
显示SAP CRM Product hierarchy的一个小工具
Recently I start to study SD and I found the product hierarchy in transaction code V/76 could not be viewed in tree style and it is not so convenient to check:
So I wrote a simple report to r ...
使用事物码SAT检测SAP CRM中间件的传输性能
(1) Create service master in ERP using tcode AC01:
Once saved, the service master header data will be saved to table below:
(2) Create a download request in CRM via tcode R3AR2 with ...
SAP Repository Information System查找Message ID的一个小技巧
Normally if we see a message in SAPGUI and we can just double click the message icon to get its technical detail like message id and number displayed.
However in some case the icon is not ava ...
SAP WebClient UI component context node class单元测试方法
Prerequisite for reading this blog: you should be familiar with how to work with ABAP unit test framework. Requirement is to write unit test for this method below:
In this blog, I copy the st ...
如何使用ABAP代码创建SAP Product Category
In ERP we can create new material type by copying from existing one using tcode OMS2:
This new type could be downloaded into CRM system via customizing download. A product category with prefi ...
在SAP ABAP里使用注解@Inject模拟Java Spring
Recently I will deliver a session regarding dependency inversion principle to my team.
As Java Spring is already widely used in all other Java development teams in my site, some ABAPers are not well ...
使用javap分析Java字节码的一个例子
I have the following source code in Java:
class Outer {
Nested nested;
Nested getNested() {
return nested;
}
}
class Nested {
Inner inner;
Inner getInner() {
...
SAP CRM Product hierarchy,Category和Application三个问题
All of these three questions are raised regarding the customizing below via tcode COMM_PRAPPLCAT:
Question1: Product search supports “search by category id”.
However, we can assign d ...
ABAP数据库表的元数据
For project reason I need to fill some excel.
The content of each column comes from content in SE11:
In order to avoid such boring task, I write a small ABAP class to automate it.
T ...
如何找到ABAP里被动态调用的update function module
In this SCN discussion, Find a Function Module in Update Task dynamically called, a question is asked. For example, if the update function module CRM_PRODUCT_I_UPDATE_DU is called statically as: CALL ...
无法添加某个relationship给SAP CRM Product category的一个可能原因
For example, I would like to test relationship type STRSET and then I plan to add it to product category 00001.
However, in available drop down list, I could not see relationship type STRSET. ...
SAP 数据库表CRMD_ORDERADM_I字段OBJECT_TYPE的计算逻辑
In order to resolve one issue I need to figure out the logic how field OBJECT_TYPE is populated in table CRMD_ORDERADM_I.
For example, I have the following opportunity line item:
In table this fie ...
SAP CRM 中间件Request download里,遇到/SAPPSPRO/S_MAT_ENHANC_COMM 错误的解决办法
SAP CRM 中间件Request download里,遇到/SAPPSPRO/S_MAT_ENHANC_COMM 错误的解决办法
When I perform product request download, I found that the bapistructures sent from ERP only contains one entry with tabname = /SAPPS ...
SAP CRM中间件Material Sales Organization和distribution channel的映射逻辑
For example, I have created a material with the following sales organization and distribution channel id in ERP:
In tcode SMW01, I observed the following sales organization and distribution c ...
如何用SAP CRM中间件从ERP下载material division到CRM
In ERP, I have created one material with division = 01:
In CRM, activate division handling in this customizing:
And also create one customizing entry for Division 01 in CRM:
...
SAP CRM Product Sales status在中间件中的处理逻辑
Example: I have a material in ERP maintained with status: 10
According to SAP help:
If a material has technical defects or is to be discontinued, you can block the material. If you set a blo ...
两种使用代码获得SAP CRM product sales status的办法
Requirement: I would like to get Product sales status id via ABAP code. The test product id: 1467
In TJ02T, we know the status id is: I1050
Approach1: use function module CRM_STATUS_ ...
SAP ABAP字符和字符串变量隐式转换的一些规则
One new colleague in my team asked me that some code does not work as he expected. The confuse could be summarized into following source code:
DATA: lv_i TYPE int4 VALUE 1,
lv_s TYPE strin ...
ABAP Debugging Script(调试器脚本)使用的一些实际例子
例子1:Use ABAP debugger script to view BOL entity content in an efficient way
In CRM, if we could like to review a BOL entity content in debugger, for example consider the following sample code which f ...