Mostly SAP related…
Messages in the WebClient
I liked the idea of Nigel James to post handy tips for his own future reference. I decided to shamelessly copy him and post some of my own tips here. I will try to post them as I come across them.
So, you can use the code below in a controller class to display messages to the user.
data: lr_msg_service type ref to cl_bsp_wd_message_service,
lv_msg type symsgv.lr_msg_service = view_manager->get_message_service( ).
lv_msg = '<YOUR_MESSAGE_VARIABLE>'.
CALL METHOD lr_msg_service->add_message
EXPORTING
iv_msg_type = if_genil_message_container=>mt_error
iv_msg_id = '<YOUR_MESSAGE_CLASS>'
iv_msg_v1 = lv_msg
iv_msg_number = '<YOUR_MESSAGE_NO>'
iv_important_info = abap_true.No comments yet.
No trackbacks yet.
15 Years of SMS and SAP CRM still does not support it
October 19, 2009 - 11:25 pm
Tags: Cellphones, IC WebClient, SAP CRM, SMS
Posted in Interaction Centre, SAP CRM | 1 comment
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 [...]
Passing Custom Fields to Lean Order API
March 31, 2009 - 9:52 pm
Tags: ABAP Code, IC WebClient, Lean Order API, SLS_LORD
Posted in ABAP Code, IC WebClient | No comments
I recently started working on the ERP Sales Order functionality in the CRM 5.0 WebClient. This is essentially a WebClient view which uses the ERP 6.0 Lean Order API(LORD) to perform all sales order functionality directly in the backend. The benefit is no messy replication of CRM Sales Orders, Config, Pricing and Enhancements.
The problem is [...]
A Code dump
March 25, 2009 - 11:26 pm
Tags: ABAP Code, BW, Category Modeller, SAP CRM
Posted in ABAP Code, CRM Service | No comments
–Update– The code shown here is not 100% correct and reliable. I will probably fix at some point…
I haven’t posted in a long time, mostly because I have been doing everything except working on a SAP system. So, the first bit of code I have written in a while goes here.
Scenario: Its difficult for BW [...]
Browser Support and SAP CRM – Part 2
September 5, 2008 - 8:11 am
Tags: Browsers, IE8, SAP CRM
Posted in Browsers, HTML, SAP CRM | No comments
In a previous post I commented on what it would take to make SAP CRM work with Internet Explorer 8. Well, it seems that Microsoft solved this problem for SAP by providing Compatibility View with IE8.
The SAP CRM 2007 Web Client doesn’t work in IE8 with the default settings, but as soon as you click [...]
Browser Support and SAP CRM
June 26, 2008 - 8:28 am
Tags: BSP, Firefox, IC WebClient, IE6, IE7, IE8, Opera, SAP, Web Standards
Posted in BSP, Browsers, HTML, SAP, SAP CRM | 4 comments
Triggering a Broadcast
May 29, 2008 - 9:05 am
Tags: ABAP Code, Broadcast, IC WebClient
Posted in ABAP Code, IC WebClient | No comments
The SAP CRM system allows a manager to send broadcasts to agents via the broadcast manager. This is useful to notify agents immediately of any important information.
The BSP Application CRM_BM can be used to send broadcast messages. Below is a screenshot.
When you click send, the user will immediately receive a scrolling message at the bottom [...]
Hands Off…
May 15, 2008 - 9:16 pm
Tags: ABAP Code
Posted in ABAP Code | No comments
I wonder how many times someone stuck their finger into SAPMSSYD before the developer included this warning…
*///////////////////////////////////////////////////////////////////////
* C A U T I O N:
*///////////////////////////////////////////////////////////////////////
* If you want to add a specific handler within a main step handler,
* make sure to follow the following
* G O L D E N R U L E
* If [...]
IC WebClient Business Transaction Search
May 13, 2008 - 8:12 am
Tags: ABAP Code, Business Transaction Search, Inbox, SAP CRM, Web Client
Posted in ABAP Code, IC WebClient | 1 comment
Overview
This post describes the enhancement of the IC WebClient using the Business Transaction Search in CRM 5.0. The Business Transaction Search (BT Search) allows you to define an index table that can be used as an alternative to the standard reporting framework.
As this is really too much to information to put into a post, I [...]
My Table Mover(Part 2)
May 13, 2008 - 7:41 am
Tags: ABAP Code, SAP
Posted in ABAP Code, Conversion | No comments
Determine the current WebClient Profile
April 8, 2008 - 1:00 pm
Tags: ABAP Code, IC WebClient
Posted in ABAP Code, IC WebClient, SAP CRM | No comments
Sometimes you need to determine the WebClient Profile of the logged in user. The code below you allows you to accomplish this.
In CRM 4.0:
data: lv_profile type crmc_ic_profile .
lv_profile = cl_crm_ic_services=>get_customizing_profiles( ).
In CRM 5.0 and beyond:
data: lr_prof type ref to if_ic_profile,
lv_prof type string.
lr_prof = cl_ic_profile_service=>get_instance( ).
lv_prof = lr_prof->get_profile( ).
Share and Enjoy: