<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Johan van Zijl &#187; IC WebClient</title>
	<atom:link href="http://johanvanzijl.com/articles/category/abap-code/ic-webclient/feed/" rel="self" type="application/rss+xml" />
	<link>http://johanvanzijl.com</link>
	<description>Mostly SAP related...</description>
	<lastBuildDate>Thu, 14 Apr 2011 07:22:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Passing Custom Fields to Lean Order API</title>
		<link>http://johanvanzijl.com/articles/passing-custom-fields-to-lean-order-api/</link>
		<comments>http://johanvanzijl.com/articles/passing-custom-fields-to-lean-order-api/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 19:52:23 +0000</pubDate>
		<dc:creator>johanvz</dc:creator>
				<category><![CDATA[ABAP Code]]></category>
		<category><![CDATA[IC WebClient]]></category>
		<category><![CDATA[Lean Order API]]></category>
		<category><![CDATA[SLS_LORD]]></category>

		<guid isPermaLink="false">http://johanvanzijl.com/?p=184</guid>
		<description><![CDATA[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 [...]]]></description>
		<wfw:commentRss>http://johanvanzijl.com/articles/passing-custom-fields-to-lean-order-api/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Triggering a Broadcast</title>
		<link>http://johanvanzijl.com/articles/triggering-a-broadcast/</link>
		<comments>http://johanvanzijl.com/articles/triggering-a-broadcast/#comments</comments>
		<pubDate>Thu, 29 May 2008 09:05:11 +0000</pubDate>
		<dc:creator>johanvz</dc:creator>
				<category><![CDATA[ABAP Code]]></category>
		<category><![CDATA[IC WebClient]]></category>
		<category><![CDATA[Broadcast]]></category>

		<guid isPermaLink="false">http://johanvanzijl.wordpress.com/?p=24</guid>
		<description><![CDATA[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 [...]]]></description>
		<wfw:commentRss>http://johanvanzijl.com/articles/triggering-a-broadcast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IC WebClient Business Transaction Search</title>
		<link>http://johanvanzijl.com/articles/ic-webclient-business-transaction-search/</link>
		<comments>http://johanvanzijl.com/articles/ic-webclient-business-transaction-search/#comments</comments>
		<pubDate>Tue, 13 May 2008 08:12:15 +0000</pubDate>
		<dc:creator>johanvz</dc:creator>
				<category><![CDATA[ABAP Code]]></category>
		<category><![CDATA[IC WebClient]]></category>
		<category><![CDATA[Business Transaction Search]]></category>
		<category><![CDATA[Inbox]]></category>
		<category><![CDATA[SAP CRM]]></category>
		<category><![CDATA[Web Client]]></category>

		<guid isPermaLink="false">http://johanvanzijl.wordpress.com/?p=22</guid>
		<description><![CDATA[&#8211;Update: Please note there are issues with this Enhancement after applying CRM 7.0 SP 5 &#38; 6. I will try to get hold of the fix, but it may better to investigate other options&#8211; Overview This post describes the enhancement of the IC WebClient using the Business Transaction Search in CRM 5.0. The Business Transaction [...]]]></description>
		<wfw:commentRss>http://johanvanzijl.com/articles/ic-webclient-business-transaction-search/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Determine the current WebClient Profile</title>
		<link>http://johanvanzijl.com/articles/determine-the-current-webclient-profile/</link>
		<comments>http://johanvanzijl.com/articles/determine-the-current-webclient-profile/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 13:00:58 +0000</pubDate>
		<dc:creator>johanvz</dc:creator>
				<category><![CDATA[ABAP Code]]></category>
		<category><![CDATA[IC WebClient]]></category>
		<category><![CDATA[SAP CRM]]></category>

		<guid isPermaLink="false">http://johanvanzijl.wordpress.com/?p=17</guid>
		<description><![CDATA[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=&#62;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=&#62;get_instance( ). lv_prof = lr_prof-&#62;get_profile( [...]]]></description>
		<wfw:commentRss>http://johanvanzijl.com/articles/determine-the-current-webclient-profile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Messages in the WebClient</title>
		<link>http://johanvanzijl.com/articles/messages-in-the-webclient/</link>
		<comments>http://johanvanzijl.com/articles/messages-in-the-webclient/#comments</comments>
		<pubDate>Sat, 26 Jan 2008 23:15:10 +0000</pubDate>
		<dc:creator>johanvz</dc:creator>
				<category><![CDATA[ABAP Code]]></category>
		<category><![CDATA[IC WebClient]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[SAP CRM]]></category>

		<guid isPermaLink="false">http://johanvanzijl.wordpress.com/?p=7</guid>
		<description><![CDATA[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 [...]]]></description>
		<wfw:commentRss>http://johanvanzijl.com/articles/messages-in-the-webclient/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

