Mostly SAP related…
SAP CRM
15 Years of SMS and SAP CRM still does not support it
Oct 19th
This marks the 15th year of Democracy and Commercial Mobile Phone Networks in South Africa. It seems that SAP has been oblivious to the development of the mobile phone and the proliferation of the humble SMS as a means of communication with customers.
SAP CRM has been around for about 10 years now, and is marketed as a best of breed CRM solution. Why then is there no support for sending or receiving of SMS’s in the Interaction Centre?
Atleast they still support Letters…
Vendors in the Sales Document
Aug 10th
I recently had a requirement were a vendor had to be replicated as partner function from a CRM Sales Order to an SD Sales Order.
At first I thought there wasn’t going to be any problem as it seems this is fully supported by customizing. The mapping between partner functions in ERP and CRM can be maintained respectively as shown below. In my case I wanted to replicate a Carrier(Partner function SP in German…it displays as CR in English). Also, note that partner function
IMG: Customer Relationship Management -> Basic Functions -> Partner Processing -> Data Transfer -> Distribution of Partner Functions from SAP ECC into CRM
The above setting will cause partner function SP to be remapped to my new partner function ZR in CRM.
Next you must maintain the mapping from CRM, back to ERP. This table you must always maintain even if you only want to download partner functions as the download from ERP reads the upload table as well(…makes sense right?).
IMG: Customer Relationship Management -> Basic Functions -> Partner Processing -> Data Transfer -> Distribution of Partner Functions from CRM into SAP ECC
What is important to note is the last column which indicates that this is a vendor mapping, and you would think the system would take that into account when uploading/downloading the Sales Order.
Unfortunately this didn’t work, which then prompted a Notes Search which produced Note 1303575. The gist of the note is:
Symptom: Partners of the type “LI” are not supported in the CRM sales document.
Solution: There is none.
Now, lets recap a couple of things:
1. Vendors can be downloaded to CRM using Middleware as described in Note 883162.
2. BP Relationships for Vendors can be downloaded as per Note 975195.
3. Customizing indicates the partner function is a vendor, so why not just map to a vendor instead of a customer?
Lets just say I will reserve my opinion of on the above note.
Anyway the fix is relatively simple. You create an implementation of CRM_DATAEXCHG_BADI in SE19.
To upload the Vendor Partner Function to ERP implement the code below method crm_dataexch_after_bapi_fill.
Next to download the partner function implement the following code in method crm_dataexch_r3d_mbdoc_fill.
The text of the code is available here…hope it helps.
<-Updated 05.09.2009 – Corrected some errors in published code->
field-symbols: <fs_parnr3> type bapiparnr3.
data: lv_partner_guid type bu_partner_guid,
lv_vendno type crmt_bu_map_vendor_number.
** make sure plant info is not return to ERP as a Partner
delete ct_bapiparnr3 where partn_role = ‘ZP’.
read table ct_bapiparnr3 assigning <fs_parnr3>
with key partn_role = ‘SP’.
if sy-subrc = 0.
lv_partner_guid = <fs_parnr3>-partn_guid.
select single vendor_no into lv_vendno
from crmm_but_vendno
where partner_guid = lv_partner_guid.
if sy-subrc = 0.
<fs_parnr3>-partn_numb = lv_vendno.
clear <fs_parnr3>-partn_guid.
endif.
endif.
endmethod.
SAP IT Service Management 7.0
May 26th
SAP CRM 7.0 includes the first official release of IT Service Management delivered by SAP.
In the past ITIL compliance has always been a stumbling block in convincing companies that SAP CRM is an excellent platform on which to implement IT Service Management.
It is great news that Pink Elephant has now certified SAP CRM in 8 ITIL v3 processes, namely:
- Incident Management
- Problem Management
- Knowledge Management
- Request Fulfilment
- Change Management
- Service and Asset Configuration
- Service Level Management
- Financial Management
The verification can be viewed here: https://www.pinkelephant.com/en-GB/ResourceCenter/PinkVerify/PinkVERIFYTools.htm
SAP CRM 7.0 Due
Nov 11th
CRM 7.0 is due to start ramp up on 21 November 2008. There has been some significant enhancements in the following areas:
- Interaction Centre – Lean Interaction Record and optimization for high-volume use
- IT Service Desk and Accounting Interaction Centre Scenarios
- Increased Personalization and Improved UI Tools
- Marketing -> Loyalty Management and Improved TPM
- A lot of functionality has been added to CRM Service and includes improved ERP Integration, Advanced Contract Management, Warranty Processes, etc.
For those with access to the Service Marketplace there are more info on ramp up here and some good presentations on SAP CRM 7.0 here.
WDJ looks like CRM!
Oct 31st
This presentation just popped into my inbox. It describes the new features in SAP NetWeaver 7.1 CE’s Web Dypro Java.
But the screens in the presentation looks exactly like CRM 2007 screens!
Interesting, considering CRM 2007 has been available for almost a year now and is built on ABAP/BSP and not even WebDynpro.
Mmm…The same UI built and supported in 2 languages!?
