SAP CRM 开发学习资料和教程整理
Posted 氢氦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SAP CRM 开发学习资料和教程整理相关的知识,希望对你有一定的参考价值。
本文链接:http://www.cnblogs.com/hhelibeb/p/6276929.html
首先是SAP网站上面的相关内容
SAP Customer Relationship Management:SAP的帮助中心,里面的内容比较全面
CRM Books:相关书籍,我没有看过,因为看起来全都价格不菲
https://wiki.scn.sap.com/wiki/display/CRM:CRM WIKI,有很多现成的解决问题的办法
https://wiki.scn.sap.com/wiki/display/CRMSales:也是CRM WIKI,和上一个区别是主要由中文内容构成
Business Server Pages:BSP相关内容的帮助
其它内容:
sapcrmwebui:很好的Web UI开发入门博客,没有经验的新手也可以很容易看懂里面的东西
AbapLog:一个不错的博客
SAPTechnical:SAPTechnical经常出现在SAP开发相关的搜索结果的前列
SAP University:还没仔细看,貌似有不少好文章
CRM开发要点系列:排版很渣,内容不错,是中文写成的,内容相对侧重于配置方面
ECC上折腾CRM:如题
CRM Business Transactions:有关One Order等内容的介绍
ABAP Objects:介绍面向对象开发的博客
下面是两个小知识,姑且记在这里。
关于搜索对象:
搜索对象搜索时,如果是One Order的条目,会经过CL_CRM_REPORT_ACC_DYNAMIC->DATABASE_ACCESS( )动态地生成SQL来搜索CRMD_ORDERADM_H和其它相关表,因此,如果要使用SQL代替BOL进行查询,可以在调试模式下观察该方法中生成的SQL语句,以获取参考。
----------------------------------------------分割线----------------------------------------------------------
一些比较重要的business object:
-
BUS2000108
“Lead” -
BUS2000111
Opportunity
-
BUS2000112
Service Contract
(service contracts, service contract quotations) -
BUS2000115
Sales
(sales orders, quotations) -
BUS2000116
Service Process
(service orders, service order quotations, package quotations) -
BUS2000120
Complaints
-
BUS2000121
Sales Contract
- “BUS2000126” “Activity”
-
BUS2000223
CRM Service Request
(service requests, incidents) - 更多business object可以到事务代码SWO1或表TOJTB中查看
CRM函数模块中的OW, OB, DB等后缀:Difference between *OW and *OB Function Modules in SAP CRM
use FM BP_CENTRALPERSON_GET to get BP from Username
The relationship of BP(Employee) to Username is as follows:
Tcode: SE16 , In Table HRP1000
Field OTYPE = CP
Field UNAME = Provide Employee username (Should be maintained in Tcode BP, Role= Employee in tab identification)
You\'ll get OBJID
Use the OBJID in table HRP1001.
OTYPE = CP
OBJID = OBJID (from HRP1000)
RELAT = 207 You\'ll get the BP number in field SOBID
or you can try,
FM:COM_BPUS_BUPA_FOR_USER_GET
SRM 文档显示:BBP_PD
日期处理函数:REBATES_ADD_TO_DATE
idoc tcode: BDFG
传输前检查:CTS_REQUEST_CHECK
Set the MEMORY strategy:RSMEMORY
Idoc复制:WE19
解决SE80左侧无法拖拽的bug的表:RSEUMOD
读取另一个context node的数据: How to read one context node data in other context node ?
Transaction Search增强:Transaction Search Enhancement
修改order时,获取buffer中的地址数据:COM_PARTNER_ADDRESS_GET_COMPL
获取role key, view name, component usage, object type, object sub type 等配置字段的代码:
data(lr_controller) = cast zl_xxx_impl( owner_ctxt->zowner ). if lr_controller is not bound. return. endif. data(lr_config) = cast cl_bsp_dlc_configuration2( lr_controller->configuration_descr ). if lr_config is not bound. return. endif. lr_config->if_bsp_dlc_configuration~get_config_key( importing ev_component = data(l_component) ev_viewname = data(l_viewname) ev_role_key = data(l_role_key) ev_component_usage = data(l_component_usage) ev_object_type = data(l_object_type) ev_object_sub_type = data(l_object_sub_type) ).
如何在标准组件增加assignment block,显示一个Z表?https://wiki.scn.sap.com/wiki/display/CRM/How+to+display+a+z-table+in+an+assignment+block?original_fqdn=wiki.sdn.sap.com
以上是关于SAP CRM 开发学习资料和教程整理的主要内容,如果未能解决你的问题,请参考以下文章
SAP CRM WebClient UI和Hybris backoffice UI开发的相同点