本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- zysnba
- xiangjie88
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sichunli_030
- sam123456gz
- 龙儿筝
- arpenker
- tanling8334
- kaizi1992
- gaojingsong
- xpenxpen
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- lemonhandsome
- luxurioust
- jbosscn
- mengjichen
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- kingwell.leng
- mwhgJava
最新文章列表
SAP CRM Fiori应用和SAP JAM的集成配置
JAM integration in My Opportunity application:
Click Share button:
Choose one JAM group, maintain share comment and click ok button:
Once share request is done, wait a while
Technically, ...
使用SAP PI将CRM的Opportunity同步到C4C去
CRM上我在WebUI里创建了一个opportunity:
ID为37985,包含了1个product:
通过PI导到C4C:
CRM system里的opp ID在C4C里存在external ID field里:
Replicate CRM Opportunity to SAP Cloud for Customer using PI and XIF Adap ...
SAP CRM呼叫中心和Hybris Commerce Backoffice的轮询设计 JerryWang
在CRM 呼叫中心还没有用ABAP push channel 重新设计之前,因为后台没法向浏览器push event,因此前台只能每隔1秒向后台发一个http request去询问后台是否有event发生:
用APC redesign的CRM IC在blog [Replace polling in CRM Interaction Center by ABAP Push Channel](Re ...
SAP CRM WebClient UI的内存清理策略分析
If we searched 5 PPR and go to Account and then go to PPR again, search results are still there.
Why are the two navigation causing different behavior?
Some key points we must remember:
Every tim ...
SAP CRM WebClient UI页面跳转最常见的问题
In QI2/506, once you click hyperlink of product id in search result view, you can NOT reach product overview page as expected.
Error message:
From the error message, we know that PRDIOOV is expect ...
一个不使用CRM中间件成功地将ERP Material下载到CRM的原型开发
# Requirement
Replicate a material type for example MAT_YYYY into CRM system without using middleware.
After replication, the generated category could be used in normal product scenario ( for exa ...
SAP CRM页面assignment block动态显示与否的控制逻辑
我们在product overview page里能看到很多的assignment block。但是runtime的时候真正显示出来的内容只是configuration里面看到内容的一个子集。
Product category能够assign很多settype和relationship,每个settype和relationship都对应一个UI view. runtime的时候,我们会根据p ...
如何把SAP CRM产品主数据隐藏的batch ID字段显示出来
According to SAP help, it is by default hidden:
We have to manually set it as visible in WebUI component workbench:
It looks like below:
How to download material division to 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:
Now download mate ...
SAP CRM One Order的事件注册机制
There are huge number of function modules which are called in one order runtime as event callback.
If you want to research by yourself, set a breakpoint on the function module below, which is a centr ...
SAP CRM行业解决方案里的产品主数据高级搜索功能
For example, I would like to check whether my user has enough authorization defined by authorization object s_carrid with value actvt = 03.
In tcode SU01, I can only see PFCG roles assigned to my u ...
如何把SAP CRM WebClient UI上某个字段高亮加粗显示
如果你仅仅想把UI上某一个field的字体增大,可以做,但是从UI guideline为了保持CRM application 统一的look and feel来说不推荐这样做:
比如下图这个红色的:
技术上就是用html的style属性:
但是对于那些不是由自己使用html 创建出来的element,而是ui framework 自己生成的element,这种方法就行不通了。
SAP CRM get_children 方法里面参数 iv_as_copy 有什么用?
lv_children = iv_account->get_children( iv_as_copy = abap_true ). 的参数啥意思
lo_children = iv_account->get_relation( iv_relation_name = <rel>
iv_as_copy = abap_false ).
解释没太看懂
> There i ...
SAP CRM customer material info record
You can maintain customer material info record in ERP via tcode VD51(create) and VD52(change). This info record describes the relationship between customer and material.
See one example in ERP:
It ...
CRM中间件里parent not ok的错误消息如何处理
Issue
You would like to download customer material info record via initial download ( R3AS ). You always see error message "Parent not O.K.: BUPA_MAIN".
You can guarantee that the dependen ...
SAP ERP的material type和group如何通过中间件下载
I have one material in ERP:
This material has 001 assigned as Material group, 001000010500000110 as product hierarchy.
Type: HAWA
Once this material is synchronized to CRM, three product catego ...
Meaning of Block size in tcode R3AC1
In tcode R3AC1 you can maintain block size for an adapter object.
For example if you have 110 equipment to be downloaded from ERP, there would be 3 inbound queues generated in CRM, the first two wi ...
CRM PRODUCT_MAT, BDOC和customer product id修改
Product HT-1055 is downloaded from ERP. When you make changes in CRM for example change its customer product id:
After save, you can observe there are three BDOC related to this save.
This series ...
CRM PRDCT_OBJECT, BDOC和customer product id修改
This wiki page discusses the second BDOC PRDCT_OBJECT which is generated after change is made on CRM:
Unlike PRODUCT_MAT, this BDOC is handled asynchronously:
Three registered services are calle ...
SAP CRM Relationship API设计原理
Unlike settype, relationship does not have a dedicated read function module maintained in its metadata table. Instead, the generic read function module COM_IL_DB_READ is used.
Below is a simple exp ...