<?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>SAP Training, Tutorials, How-tos, News, Weblogs, Screencasts, SAP Jobs, Forums and much more, all on SAP &#187; Netweaver</title>
	<atom:link href="http://saplab.org/tag/netweaver/feed/" rel="self" type="application/rss+xml" />
	<link>http://saplab.org</link>
	<description>SAP Training, Tutorials, How-tos, News, Weblogs, Screencasts, SAP Jobs, Forums and much more, all on SAP</description>
	<lastBuildDate>Wed, 18 Apr 2012 13:54:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Inserting Icons within SAP Web Dynpro Java</title>
		<link>http://saplab.org/2012/03/inserting-icons-within-sap-web-dynpro-java/</link>
		<comments>http://saplab.org/2012/03/inserting-icons-within-sap-web-dynpro-java/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 16:02:16 +0000</pubDate>
		<dc:creator>Tulio Vargas</dc:creator>
				<category><![CDATA[Netweaver]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Great SAP Tips]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[sap]]></category>
		<category><![CDATA[webdynpro Java]]></category>

		<guid isPermaLink="false">http://saplab.org/?p=2359</guid>
		<description><![CDATA[In this tutorial we will learn two simple ways of  inserting icons in WebDynpro Java applications. The first way is to reuse already existing icon patterns from SAP R/3, i.e., by the following this PDF &#8211; SAP R/3 Icons. - First of all, we must choose which icons you would like to insert (we can [...]
	
	
	
					<li>
				<a href="http://saplab.org/2010/09/7-web-dynpro-basic-tutorials/" rel="bookmark">
													
				7 Web Dynpro Basic Tutorials</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_jade" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fsaplab.org%252F2012%252F03%252Finserting-icons-within-sap-web-dynpro-java%252F%22%2C%20%22shorturl%22%3A%20%22http%3A%2F%2Fbit.ly%2FGMltUU%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Inserting%20Icons%20within%20SAP%20Web%20Dynpro%20Java%22%20%7D);"></div>
<p>In this tutorial we will learn two simple ways of  inserting icons in WebDynpro Java applications. The first way is to reuse already existing icon patterns from SAP R/3, i.e., by the following this PDF &#8211; <a title="SAP R3 Icons" href="http://www.sapdesignguild.org/resources/icons_sap/SAP_R3_Icons.pdf" target="_blank">SAP R/3 Icons</a>.</p>
<p>- First of all, we must choose which icons you would like to insert (we can use various standard SAP icons):</p>
<p><img class="alignnone size-full wp-image-2363" src="http://saplab.org/wp-content/uploads/2012/03/image1.png" alt="" width="555" height="275" /></p>
<p>- Capture the value found in column <strong>Bitmap</strong>, chosen in this case the image ID: <strong>0W</strong><strong> </strong><strong>Cancel</strong> and its value is <strong>B_CANC</strong><strong> </strong><strong>Bitmap</strong>.</p>
<p>- To place this icon into the button, just click the button you want to insert the icon:</p>
<p><img class="size-full wp-image-2365 alignnone" src="http://saplab.org/wp-content/uploads/2012/03/image2.png" alt="" width="169" height="109" /></p>
<p>- Go to <em>Properties</em> of the selected button and find the element <strong>ImageSource</strong>:</p>
<p><img class="alignnone size-full wp-image-2366" src="http://saplab.org/wp-content/uploads/2012/03/image3.png" alt="" width="496" height="144" /></p>
<p>- Enter the following code followed by the information desired Bitmap image:</p>
<p><strong>~sapicons/s_b_canc.gif</strong></p>
<p>- It is now ready and you should see a result similar to:</p>
<p><img class="alignnone size-full wp-image-2367" src="http://saplab.org/wp-content/uploads/2012/03/image4.png" alt="" width="338" height="54" /></p>
<p>- Please note another simple way to insert icons in WebDynpro Java, from the point that you already have the icon in the desired format .GIF (Graphics Interchange Format):</p>
<p>GIF Icon:</p>
<p><img class="alignnone size-full wp-image-2368" src="http://saplab.org/wp-content/uploads/2012/03/excel.gif" alt="" width="16" height="16" /></p>
<p><a href="http://saplab.org/wp-content/uploads/2012/03/excel.gif" target="_blank">Link to download</a></p>
<p>- We should insert the icon inside the project, within the following folder:</p>
<p><em>src\mimes\Components</em></p>
<p><img class="alignnone size-full wp-image-2369" src="http://saplab.org/wp-content/uploads/2012/03/image5.png" alt="" width="392" height="430" /></p>
<p>- Now let&#8217;s create a new attribute inside the Model:</p>
<p><img class="alignnone size-full wp-image-2370" src="http://saplab.org/wp-content/uploads/2012/03/image6.png" alt="" width="345" height="288" /></p>
<p>- In the example below we create an attribute called iconExcell.<br />
- In <em>Properties</em> of this new attribute, the element type must be of type String.</p>
<p><img class="alignnone size-full wp-image-2371" src="http://saplab.org/wp-content/uploads/2012/03/image7.png" alt="" width="360" height="620" /></p>
<p>- Add the following code inside the method <strong>wdDoInit().</strong></p>
<p>- Accordingly, we will initialize the context attribute iconExcell with storing Excel icon.</p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">try</span> <span style="color: #009900;">&#123;</span>
wdContext.<span style="color: #006633;">currentContextElement</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">setIconExcell</span><span style="color: #009900;">&#40;</span>
WDURLGenerator.<span style="color: #006633;">getWebResourceURL</span><span style="color: #009900;">&#40;</span>wdComponentAPI.<span style="color: #006633;">getDeployableObjectPart</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>, <span style="color: #0000ff;">&quot;excel.gif&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">catch</span> <span style="color: #009900;">&#40;</span>WDURLException e<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
wdComponentAPI.<span style="color: #006633;">getMessageManager</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">reportException</span><span style="color: #009900;">&#40;</span>e.<span style="color: #006633;">getLocalizedMessage</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>, <span style="color: #000066; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>- To insert the icon inside the button you want, just set the element of button ImageSource with the attribute iconExcel:</p>
<p><img class="alignnone size-full wp-image-2372" src="http://saplab.org/wp-content/uploads/2012/03/image8.png" alt="" width="455" height="143" /></p>
<p>Hope you find this post useful. <strong>Please be sure to comment or ask me any question in case you run into difficulties</strong>.</p>
<p>&nbsp;</p>


	
	
	
					<li>
				<a href="http://saplab.org/2010/09/7-web-dynpro-basic-tutorials/" rel="bookmark">
													
				7 Web Dynpro Basic Tutorials</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://saplab.org/2012/03/inserting-icons-within-sap-web-dynpro-java/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Adobe Flex and SAP WebServices</title>
		<link>http://saplab.org/2012/03/adobe-flex-and-sap-webservices/</link>
		<comments>http://saplab.org/2012/03/adobe-flex-and-sap-webservices/#comments</comments>
		<pubDate>Mon, 19 Mar 2012 16:38:20 +0000</pubDate>
		<dc:creator>Luis Gomes</dc:creator>
				<category><![CDATA[Great SAP Tips]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Netweaver]]></category>
		<category><![CDATA[Portal]]></category>
		<category><![CDATA[SOA]]></category>
		<category><![CDATA[Web Application Server]]></category>
		<category><![CDATA[Webservices]]></category>

		<guid isPermaLink="false">http://saplab.org/?p=2302</guid>
		<description><![CDATA[On this post I would like to introduce a new way to consume SAP data from a non-SAP application like Adobe Flex. This can be achieved using SAP WebServices. First, let´s introduce some main concepts that are important to understand, which are WebServices, WSDL and Adobe Flex. WebService: We can define a WebService as a [...]
	
	
	
					<li>
				<a href="http://saplab.org/2011/01/best-sap-sdn-blog-posts-from-2010/" rel="bookmark">
													
				Best SAP SDN Blog Posts from 2010</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_jade" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fsaplab.org%252F2012%252F03%252Fadobe-flex-and-sap-webservices%252F%22%2C%20%22shorturl%22%3A%20%22http%3A%2F%2Fbit.ly%2FGC93xu%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Adobe%20Flex%20and%20SAP%20WebServices%22%20%7D);"></div>
<p>On this post I would like to introduce a new way to consume SAP data from a non-SAP application like Adobe Flex. This can be achieved using SAP WebServices. First, let´s introduce some main concepts that are important to understand, which are WebServices, WSDL and Adobe Flex.</p>
<blockquote>
<ul>
<li><strong>WebService</strong>: We can define a WebService as a method of communication between two electronic devices or systems over the web (internet). Web services are increasingly enabled by the use of the Extensible Markup Language (XML) as a means of standardizing data formats and exchanging data. The ABAP Workbench offers an environment where you can publish, search for, and call Web services. It enables the SAP Web Application Server to act both as a server and client for Web services.</li>
</ul>
<p>The Web service infrastructure enables developers to:</p>
<ul>
<ul>
<ul>
<li>Publish independent function that was implemented as RFC-enabled function modules, function groups, BAPIs, or XI message interfaces. This includes functions available as part of mySAP.com solutions, or functions developed by customers or partners. The Web service can be used across the entire Internet using standard protocols and can easily be added to any development environment.</li>
<li>Consume Web services, regardless of where they are stored or how they are implemented. Business processes can be implemented across several systems, either within an enterprise or across several enterprises.</li>
</ul>
</ul>
</ul>
<ul>
<li><strong>The WebServices Services Description</strong>: is an XML-based language that is used for describing the functionality offered by a Web service. A WSDL description of a web service (also referred to as a WSDL file) provides a machine-readable description of how the service can be called, what parameters it expects and what data structures it returns.</li>
</ul>
<ul>
<li><strong>Adobe Flash Builder/Flex</strong>: is a software development kit (SDK) released by Adobe Systems for the development and deployment of cross-platform rich Internet applications based on the Adobe Flash platform. Flex applications can be written using Adobe Flash Builder or by using the freely available Flex compiler from Adobe.</li>
</ul>
</blockquote>
<p>After a brief introduction of the main concepts I will now describe how to build a Flex application that consumes data from SAP, using WebServices. You need to have the SAP R/3 and the Adobe Flash builder tools installed.</p>
<p>On this post I assume that you already have created a <strong>SAP webservice</strong> that is responsible to export some data in a table format. On the example provided below we will use a Webservice called “<strong>FlightGetList</strong>” which is the name also of the Function Module in the SAP system. You can easily find on the web all necessary steps to create a webservice. However I will define the main ones:</p>
<ul>
<li>SAP webservice can be created in transaction se37, first opening the Function Module that you want to provide as webservice, and then go to Utilities – More Utilities-Create WebService – From the Function Module</li>
<li>Then you need to configure the webservice using the transaction SOAMANAGER</li>
<li>Finally you need to get the URL of the webservice: click on “Display selected Binding&#8217;s WSDL URL” link to get the WSDL URL. You will get a URL displayed on the right and side of the screen that will be used later in Adobe Flash Builder</li>
</ul>
<h4>Create the project in Adobe Flash Builder / Flex</h4>
<p>- After installing the Adobe Flash Builder 4 open it.<br />
- Create a Flex project. Give it a name such as Flex Quickstart</p>
<p><img class="aligncenter size-full wp-image-2307" title="Create the project in Adobe Flash Builder / Flex" src="http://saplab.org/wp-content/uploads/2012/03/sap-flex01.jpg" alt="Create the project in Adobe Flash Builder / Flex" width="534" height="537" /></p>
<p>- Press Next twice.<br />
- Press Finish.</p>
<h4>Create the design of application</h4>
<p>The following steps should be implemented in order to create some user interface:</p>
<p>- Switch to Design mode</p>
<p><img class="aligncenter size-full wp-image-2310" title="SAP Flex in Design Mode" src="http://saplab.org/wp-content/uploads/2012/03/sap-flex02.jpg" alt="SAP Flex in Design Mode" width="347" height="141" /></p>
<p>- Drag a Label from the Components view to the Design Area</p>
<p><img class="aligncenter size-full wp-image-2311" title="SAP Flex" src="http://saplab.org/wp-content/uploads/2012/03/sap-flex03.jpg" alt="SAP Flex" width="550" height="368" /></p>
<p>- Set the Label properties</p>
<p><a href="http://saplab.org/wp-content/uploads/2012/03/sap-flex04.jpg"><img class="aligncenter size-full wp-image-2312" title="SAP Flex" src="http://saplab.org/wp-content/uploads/2012/03/sap-flex04.jpg" alt="SAP Flex" width="275" height="334" /></a></p>
<p>- Drag a TextInput from the Components view to the Design Area</p>
<p><img class="aligncenter size-full wp-image-2315" title="SAP Flex" src="http://saplab.org/wp-content/uploads/2012/03/sap-flex05.jpg" alt="SAP Flex" width="550" height="372" /></p>
<p>- Set the properties of the Text Input</p>
<p>- Drag a Button from the Components view to the Design Area</p>
<p><img class="aligncenter size-full wp-image-2318" title="SAP Flex" src="http://saplab.org/wp-content/uploads/2012/03/sap-flex06.jpg" alt="SAP Flex" width="600" height="403" /></p>
<p>- Set the properties of the Button</p>
<p>- Drag a DataGrid from the Components view to the Design Area.</p>
<p>- Switch back to Source View.</p>
<p>- Remove the &lt;mx:columns&gt; from the Datagrid.</p>
<p>- Add the following code to the application:</p>
<div style="font-family: Courier; font-size: 14px;">&lt;mx:Script&gt;<br />
&lt;![CDATA[<br />
import mx.collections.ArrayCollection;<br />
[Bindable]<br />
public var flightData:ArrayCollection;<br />
private function getData():void{<br />
}<br />
]]&gt;<br />
&lt;/mx:Script&gt;</div>
<p>– Call the webservice in Flex and get the data</p>
<p>Now we need to actually create the objects that call the web service, luckily with Flex, this is a simple two step process. First, Load the WSDL, second call the service. Just to be as standard as possible we want to put the code that loads the WSDL into a place that is only called once and called right at the beginning of the Application&#8217;s life. In Flex there is an event called &#8220;initialize&#8221; that has just those properties.</p>
<p><img class="aligncenter size-full wp-image-2340" title="SAP Flex" src="http://saplab.org/wp-content/uploads/2012/03/sap-flex07.jpg" alt="SAP Flex" width="600" height="357" /></p>
<p>- Now we need to load the WSDL in the initApp function.</p>
<p><img class="aligncenter size-full wp-image-2342" title="SAP Flex" src="http://saplab.org/wp-content/uploads/2012/03/sap-flex08.jpg" alt="SAP Flex" width="600" height="364" /></p>
<p><img class="aligncenter size-full wp-image-2343" title="SAP Flex" src="http://saplab.org/wp-content/uploads/2012/03/sap-flex09.jpg" alt="SAP Flex" width="600" height="346" /></p>
<p>Let’s explain the code above:</p>
<ul>
<li>It first creates a new instance of our web service: &#8220;flightWS = new WebService();&#8221;</li>
<li>It points the service to the WSDL defintion: &#8220;flightWS.wsdl = &#8220;http://localhost:8000/sap/bc/srt/rfc/sap/Z_FLIGHT_WS?sap-client=000&amp;wsdl=1.1&#8243;;&#8221;</li>
<li>It adds Event Listeners to the service so that when things happen we can know about it:</li>
<ul>
<li>&#8220;flightWS.addEventListener(FaultEvent.FAULT,onWSError);&#8221; Will call the onWSError function whenever there is an error in the service call or definition loading</li>
<li>&#8220;flightWS.addEventListener(LoadEvent.LOAD,onWSDLLoaded);&#8221; will call onWSDLLoaded when the WSDL has been loaded and the service is ready to be invoked</li>
<li>&#8220;flightWS.addEventListener(ResultEvent.RESULT, onFlightWSGotResult);&#8221; will call onFlightWSGotResult when some data is returned from the service</li>
</ul>
<li>We then instruct the service to load the WSDL from the server: &#8220;flightWS.loadWSDL();&#8221;</li>
</ul>
<p>- The next thing to do is actually call the service with our Airline as input. A web service can define many different operations/function modules; we just want to add one called &#8220;FlightGetList&#8221;</p>
<p><img class="aligncenter size-full wp-image-2346" title="SAP Flex" src="http://saplab.org/wp-content/uploads/2012/03/sap-flex10.jpg" alt="SAP Flex" width="600" height="285" /></p>
<p>Now let’s get the data from SAP and populate the created dataGrid. to do this we just change the onFlightWSGotResult function to:</p>
<div style="font-family: Courier; font-size: 14px;">private function onFlightWSGotResult(event:ResultEvent):void{<br />
flightData = event.result.FlightList;<br />
}</div>
<p>This will simply look at the ResultEvent and set the data provider of our DataGrid to the member of the result called, &#8220;FlightList&#8221;.</p>
<p><strong>Now if you run the application you will be prompted with a username and password box!</strong> Why? Well, the web service you are calling is password protected on the ABAP system it is served from. Just like a normal browser, the Flex application pops up the dialog box to get the user name and password. You just need to type the username and password used to log in the SAP system and then you should see the dataGrid filled up with the data from the backend.</p>


	
	
	
					<li>
				<a href="http://saplab.org/2011/01/best-sap-sdn-blog-posts-from-2010/" rel="bookmark">
													
				Best SAP SDN Blog Posts from 2010</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://saplab.org/2012/03/adobe-flex-and-sap-webservices/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Top 25 SCN Blogs of all Time</title>
		<link>http://saplab.org/2012/01/top-25-scn-blogs-of-all-time/</link>
		<comments>http://saplab.org/2012/01/top-25-scn-blogs-of-all-time/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 10:07:36 +0000</pubDate>
		<dc:creator>Antonio Caldas</dc:creator>
				<category><![CDATA[SAP Blogs & Resources]]></category>
		<category><![CDATA[ABAP]]></category>
		<category><![CDATA[Basis]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[BI]]></category>
		<category><![CDATA[BPM]]></category>
		<category><![CDATA[Business Object]]></category>
		<category><![CDATA[Business Suite]]></category>
		<category><![CDATA[CAF]]></category>
		<category><![CDATA[CRM]]></category>
		<category><![CDATA[Document]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Emerging]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[FI/CO]]></category>
		<category><![CDATA[Great SAP Tips]]></category>
		<category><![CDATA[HCM/HR]]></category>
		<category><![CDATA[MM]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Netweaver]]></category>
		<category><![CDATA[PM]]></category>
		<category><![CDATA[Portal]]></category>
		<category><![CDATA[PP]]></category>
		<category><![CDATA[sap fi]]></category>
		<category><![CDATA[sap pp]]></category>
		<category><![CDATA[SD]]></category>
		<category><![CDATA[skills]]></category>
		<category><![CDATA[Support Package]]></category>
		<category><![CDATA[System Tools]]></category>
		<category><![CDATA[TCodes]]></category>
		<category><![CDATA[UWL]]></category>
		<category><![CDATA[Webdynpro ABAP]]></category>
		<category><![CDATA[Workflow]]></category>
		<category><![CDATA[XSS]]></category>

		<guid isPermaLink="false">http://saplab.org/?p=2269</guid>
		<description><![CDATA[At a time where the SCN website is due to have a clean face, SAP employee and SAP mentor Mark Finnern delights us, yet again, with a highly useful post titled &#8220;Top 25 SCN Blogs of all Time&#8220;. In case you have missed it, here is your opportunity to know which are the most popular [...]
	
	
	
					<li>
				<a href="http://saplab.org/2011/06/10-sap-blogs-you-must-follow/" rel="bookmark">
													
				10 SAP Blogs you must follow</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/saplab-version-2-0-is-on-line/" rel="bookmark">
													
				SAPLAB Version 2.0 is on-line!</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2011/01/best-sap-sdn-blog-posts-from-2010/" rel="bookmark">
													
				Best SAP SDN Blog Posts from 2010</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_jade" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fsaplab.org%252F2012%252F01%252Ftop-25-scn-blogs-of-all-time%252F%22%2C%20%22shorturl%22%3A%20%22http%3A%2F%2Fbit.ly%2FxSMFi4%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Top%2025%20SCN%20Blogs%20of%20all%20Time%22%20%7D);"></div>
<p>At a time where the <a href="http://www.sdn.sap.com/irj/scn" title="Sap Community Network" target="_blank">SCN website</a> is due to have a clean face, SAP employee and SAP mentor <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/13" title="Mark Finnern" target="_blank">Mark Finnern</a> delights us, yet again, with a highly useful post titled &#8220;<strong>Top 25 SCN Blogs of all Time</strong>&#8220;. In case you have missed it, here is your opportunity to know which are the most popular SAP SCN weblogs, of all time. This ranking has been produced taking in consideration the number of user views, counted on the last 8 years. So these are the most viewed weblogs, which obviously reflect which SAP subjects users are more interested in.</p>
<p>Mark Finnern also adds a few observations that sustain this thorough list:</p>
<blockquote><p>Wow there are some well known names and some surprises in the list, not the least the number one blog post by Steffen Weber. With 178K almost twice as many hits as the famous often updated originaly named XI FAQ post by Michal Krawczyk. Looks like the Excel Macro File referenced in Steffen&#8217;s blog post does come really handy. Congratulations Steffen for having written the most viewed post of the last 8 years. </p>
<p>I have to smile seeing that Michal&#8217;s XI/PI FAQ post is #2. I had long discussion with him why this kind of content should be moved to a wiki page so that everyone can improve it. His argument is that you need a curator, otherwise the quality isn&#8217;t there. Number of views he got is proofing his point, comments of certain links not working anymore can be counted for the wiki camp, but this is not the blog post to bring up that argument again, but to celebrate the top blog posts of SCN. </p>
<p>Thomas Jung can ad the title Master of SCN blogging to the long list of his career achievements, as 6 of his posts are in the top 25. I am always at awe seeing the beauty and quality of his posts. I remember the early beginnings when Brain McKellar nudged him after seeing his excellent BSP forum answers to post blogs. I am so glad he did oh and we miss Brian on SCN. </p>
<p>Love it that a Crystal Report post by Blair Wheadon is #5. It is a beautiful proof, that the BOBJ community has found a home on SCN. Being posted only 2 years ago in December 2009 it is also the youngest blog post on the list. Really amazing that it is on rank #5 already. Well done Blair. </p>
<p>Just wow that there are still 3 Roberto Negro posts in this top 25 list. He used to dominate the BW space, as it was called back in the mid 2000s. He moved on and is unfortunately not working in the SAP space anymore. Really bummed that he nver made it to a TechEd, or at least I don&#8217;t remember. I hope the hammock he once offered me is still standing somewhere in Italy waiting for me to relax in. Roberto we really miss you here, please come back. </p>
<p>Manfred Lutz and Ingo Hilgefort are the other two bloggers that have more than one post in the list. We have over 3000 SCNers who have written at least one post, To be in the top 25 is quite the achievement. Thank you all for putting the effort in.</p></blockquote>
<h5>Top 25 SCN Blogs of all Time</h5>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/6099" title="SAP NetWeaver Portal Reporting for Collaboration Rooms" target="_blank">1. SAP NetWeaver Portal Reporting for Collaboration Rooms</a><br />
This Blog describes how to create consolidated and ordered reports out of standard SAP NetWeaver Portal collaboration room raw data files.<br />
<a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/55597" title="Steffen Weber" target="_blank">Steffen Weber</a> in Knowledge Management (KM), Standards, SAP NetWeaver Platform</p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/1843" title="XI/PI FAQ (Frequently Asked Questions)" target="_blank">2. XI/PI FAQ (Frequently Asked Questions)</a><br />
Exchange Infrastructure &#8211; Frequently Asked Questions<br />
<a href="http://weblogs.sdn.sap.com/pub/u/252065314" title="Michal Krawczyk" target="_blank">Michal_Krawczyk_PIXI</a> in SAP Process Integration (PI) </p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/789" title="Sending E-Mail from ABAP - Version 610 and Higher - BCS Interface" target="_blank">3. Sending E-Mail from ABAP &#8211; Version 610 and Higher &#8211; BCS Interface</a><br />
Yesterday I posted a weblog on how to send E-Mails from ABAP in releases <= 46D using the API functions. Today we are going to look at releases >= 610 and the BCS Interface.<br />
<a href="http://weblogs.sdn.sap.com/pub/u/251694270" title="Thomas Jung" target="_blank">Thomas Jung</a> in ABAP, Application Server</p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/3861" title="Web Dynpro ABAP Demonstration Videos" target="_blank">4. Web Dynpro ABAP Demonstration Videos</a><br />
Web Dynpro, with its strong graphical modeling environment, provides an interesting challenge for authors of all types of written materials on the subject. Often videos can fill that gap. This weblog describes several hours of newly released Web Dynpro ABAP videos.<br />
<a href="http://weblogs.sdn.sap.com/pub/u/251694270" title="Thomas Jung" target="_blank">Thomas Jung</a> in ABAP, Beginner, Enterprise Portal (EP), Web Dynpro</p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/14514" title="Crystal Reports in Visual Studio 2010" target="_blank">5. Crystal Reports in Visual Studio 2010</a><br />
An overview of how Microsoft Visual Studio 2010 customers will receive Crystal Reports.<br />
<a href="http://weblogs.sdn.sap.com/pub/u/251930783" title="Blair Wheadon" target="_blank">Blair Wheadon</a> in SAP Crystal Reports, Interoperability .NET </p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/6098" title="New Blog Series: ABAP Trial Version for Newbies" target="_blank">6. New Blog Series: ABAP Trial Version for Newbies</a><br />
New Blog Series: ABAP Trial Version for Newbies With the new build of the SAP NetWeaver 2004s ABAP Trial Version (SP11), we in SAP NetWeaver Product Management are eager to introduce, through a series of blogs, SAP ABAP technology to those with limited ABAP experience.<br />
<a href="http://weblogs.sdn.sap.com/pub/u/1302" title="Manfred Lutz" target="_blank">Manfred Lutz</a> in ABAP, Application Server, Beginner, Web Dynpro</p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/8560" title="BusinessObjects and SAP Part I" target="_blank">7. BusinessObjects and SAP Part I</a><br />
This is Part I of a series on BusinessObjects and SAP products.<br />
<a href="http://weblogs.sdn.sap.com/pub/u/251909211" title="Ingo Hilgefort" target="_blank">Ingo Hilgefort</a> in Enterprise Data Warehousing/Business Warehouse, Business Intelligence (BusinessObjects), Business Process Expert</p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/3022" title="How do you activate ABAP Proxies?" target="_blank">8. How do you activate ABAP Proxies?</a><br />
Have you got the error message &#8220;Unable to connect to the Integration Builder, when you are trying to create a ABAP PROXY from a R/3 system? This blog show the steps to be executed to make sure you are able to build ABAP Proxies.<br />
<a href="http://weblogs.sdn.sap.com/pub/u/251692733" title="Vijaya Kumari" target="_blank">vijaya kumari</a> in SAP Process Integration (PI) </p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/9110" title="SAP NetWeaver 7.0 - Java and ABAP Trial Version on Linux - VMware Edition - Tips &#038; Tricks" target="_blank">9. SAP NetWeaver 7.0 &#8211; Java and ABAP Trial Version on Linux &#8211; VMware Edition &#8211; Tips &#038; Tricks</a><br />
Here you find the required steps missed out in the official Documentation. How to get the Application Server running, install the License and connect from Windows.<br />
<a href="http://weblogs.sdn.sap.com/pub/u/2345" title="Gregor Wolf" target="_blank">Gregor Wolf</a> in ABAP, SAP NetWeaver Platform</p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/1012" title="BSP a Developer's Journal Part XIV - Consuming WebServices with ABAP" target="_blank">10. BSP a Developer&#8217;s Journal Part XIV &#8211; Consuming WebServices with ABAP</a><br />
In this BSP Developer&#8217;s Journal we once again look at a technology that just does ride on the edge of the BSP environment. We look at how we can call WebServices with ABAP.<br />
<a href="http://weblogs.sdn.sap.com/pub/u/251694270" title="Thomas Jung" target="_blank">Thomas Jung</a> in Business Server Pages, ABAP, Application Server </p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/1096" title="LOGISTIC COCKPIT DELTA MECHANISM - Episode one: V3 Update, the ‘serializer’" target="_blank" class="broken_link">11. LOGISTIC COCKPIT DELTA MECHANISM &#8211; Episode one: V3 Update, the ‘serializer’</a><br />
This is the first episode of a series (of three) concernig delta mechanism in the Logistic Cockpit for BW. Here you can find a short overview examining the conception and technical background of delta extraction related to logistic flows towards BW system by using the Serialized V3 Update.<br />
<a href="http://weblogs.sdn.sap.com/pub/u/251789462" title="Roberto Negro" target="_blank">Roberto Negro</a> in Enterprise Data Warehousing/Business Warehouse</p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/15408" title="Basic ABAP OO eLearnings" target="_blank">12. Basic ABAP OO eLearnings</a><br />
I frequently receive requests for learning materials on basic ABAP Object Oriented concepts. In response I have created a 5 part eLearning series that is intended to be accessible to anyone just starting out with ABAP OO.<br />
<a href="http://weblogs.sdn.sap.com/pub/u/251694270" title="Thomas Jung" target="_blank">Thomas Jung</a> in ABAP, Beginner, Business Server Pages, Web Dynpro</p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/4087" title="Troubleshoot the SAP NetWeaver 2004s BI Frontend Installation" target="_blank">13. Troubleshoot the SAP NetWeaver 2004s BI Frontend Installation</a><br />
This aim of this blog is to discuss how to configure your browser parameters as well as discuss how to install the latest SAP NetWeaver 2004s BI Frontend Components. Keep in mind that it is always best to keep your frontend patches up to do date. This article covers most of the issues I&#8217;ve seen when working with different browsers and frontend components specifically related to installation of frontend components.<br />
<a href="http://weblogs.sdn.sap.com/pub/u/28269" title="Prakash Darji" target="_blank">Prakash Darji</a> in Enterprise Data Warehousing/Business Warehouse, Enterprise Portal (EP)</p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/1262" title="LOGISTIC COCKPIT - WHEN YOU NEED MORE - First option: enhance it !" target="_blank">14. LOGISTIC COCKPIT &#8211; WHEN YOU NEED MORE &#8211; First option: enhance it !</a><br />
Through this weblog we will go on in our tour around the logistic data extraction world: after having familiarized with the data flows that the system can run for every available update methods in LBWE and before approaching all the other extraction mechanisms managed by SAP Business Warehouse, now it’s necessary facing this question: what’s happen if a standard logistic datasource (and its related information set) is not enough for our needs ?<br />
<a href="http://weblogs.sdn.sap.com/pub/u/251789462" title="Roberto Negro" target="_blank">Roberto Negro</a> in Enterprise Data Warehousing/Business Warehouse</p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/8681" title="Web Dynpro ABAP exercises from TechEd 2007" target="_blank">15. Web Dynpro ABAP exercises from TechEd 2007</a><br />
For those who are looking to improve their Web Dynpro ABAP skills, here is the content of the hands-on session for Web Dynpro ABAP at TechEd 2007. Based on the ESM (Enterprise Sales Model), the exercises are structured so that the result of one task forms the foundation for the next exercise. The download contains all required objects, the ESM data generator, the example solutions, the templates, and the document &#8216;CD255 Developing User Interfaces with Web Dynpro ABAP&#8217;. All you need is a local installation of the latest ABAP Trial Version.<br />
<a href="http://weblogs.sdn.sap.com/pub/u/1302" title="Manfred Lutz" target="_blank">Manfred Lutz</a> in ABAP, Application Server, Web Dynpro</p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/15618" title="Gravity – Collaborative Business Process Modelling within Google Wave" target="_blank">16. Gravity – Collaborative Business Process Modelling within Google Wave</a><br />
Gravity is a prototype developed by SAP Research in Brisbane, Australia and SAP NetWeaver Development providing real-time, cloud-based collaborative business process modelling within Google Wave. Google Wave is Google&#8217;s new real-time collaboration platform that combines features of e-mail, social networking, wikis and instant messaging in one integrated browser-based client.<br />
<a href="http://weblogs.sdn.sap.com/pub/u/251719533" title="Alexander Dreiling" target="_blank">Alexander Dreiling</a> in Service-Oriented Architecture, Business Process Expert, Business Process Management, Business Process Modeling, Business Rules Management, Composition Environment (CE), Consumer Products, Insurance, Interoperability, SAP NetWeaver Platform, SAP Research, Enterprise Social Systems</p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/8126" title="Update Your ABAP Development Skills to SAP NetWeaver 7.0" target="_blank">17. Update Your ABAP Development Skills to SAP NetWeaver 7.0</a><br />
If the title of this blog sounds familiar, then chances are good that you have attended session CD251 at one of the TechEds this year. Now find out how some of the core content of this TechEd Session has been made available as an Online SDN E-Learning.<br />
<a href="http://weblogs.sdn.sap.com/pub/u/251694270" title="Thomas Jung" target="_blank">Thomas Jung</a> in ABAP, Service-Oriented Architecture, SAP Process Integration (PI), SAP TechEd, Web Dynpro </p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/11076" title="BusinessObjects and SAP - Installation and Configuration Part 1 of 4" target="_blank">18. BusinessObjects and SAP &#8211; Installation and Configuration Part 1 of 4</a><br />
In this blog series I am describing the steps that are required to install and configure the BusinessObjects solution on top of a SAP BI system (Part #1).<br />
<a href="http://weblogs.sdn.sap.com/pub/u/251909211" title="Ingo Hilgefort" target="_blank">Ingo Hilgefort</a> in Analytics, Enterprise Data Warehousing/Business Warehouse, Business Intelligence (BusinessObjects), Community Day, ERP, SAP NetWeaver Platform, SAP TechEd</p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/1387" title="ABAP Proxies in XI(Client Proxy)" target="_blank">19. ABAP Proxies in XI(Client Proxy)</a><br />
The other way of interfacing XI is through proxies. From WAS 6.20, proxy generation feature enables application systems to communicate with XI using proxies. Proxy generation enables you to create proxies in application systems. Proxies encapsulate the creation or parsing of XML messages and the communication with the relevant runtime components required to send or receive the messages.<br />
<a href="http://weblogs.sdn.sap.com/pub/u/5814" title="Ravikumar Allampallam" target="_blank">Ravikumar Allampallam</a> in SAP Process Integration (PI)</p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/2415" title="Generic Extraction via Function Module" target="_blank">20. Generic Extraction via Function Module</a><br />
Short overview about the extraction api, using custom defined function modules.<br />
<a href="http://weblogs.sdn.sap.com/pub/u/28324" title="Siegfried Szameitat" target="_blank">Siegfried Szameitat</a> in Enterprise Data Warehousing/Business Warehouse</p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/5378" title="Aspirant to learn SAP XI...You won the Jackpot if you read this!-Part I" target="_blank">21. Aspirant to learn SAP XI&#8230;You won the Jackpot if you read this!-Part I</a><br />
My inbox is flooding with many mails soliciting the direction to start their career into SAP XI. I am too lethargic to reply for everyone as it is a bit lengthy process to explicate it in a mail. You can ask me, Why am blogging so late? I told you already am lazy to pen lengthy stuff:)…But…One day I got a mail from an graduate student asking me to guide him…!!&#8230;.Alas! Iam amazed and impressed with that mail….I guess SDN Community has accomplished its goal in global marketing and inspiring all sorts of people across the globe…&#8230;Kuddos to SDN!&#8230;<br />
<a href="http://weblogs.sdn.sap.com/pub/u/18344" title="Sravya Talanki" target="_blank">Sravya Talanki</a> in SAP Process Integration (PI)</p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/1183" title="LOGISTIC COCKPIT DELTA MECHANISM - Episode three: the new update methods" target="_blank">22. LOGISTIC COCKPIT DELTA MECHANISM &#8211; Episode three: the new update methods</a><br />
This third episode describes in detail all the elements required to help make an aware selection of the right new update method (after the serialized V3 update mechanism replacement) for the applications related to the Logistic Cockpit.<br />
<a href="http://weblogs.sdn.sap.com/pub/u/251789462" title="Roberto Negro" target="_blank">Roberto Negro</a> in Enterprise Data Warehousing/Business Warehouse </p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/4061" title="Http* Errors in XI" target="_blank">23. Http* Errors in XI</a><br />
There are many forum discussions about Http Errors. This blog is collective information about most common HTTP errors occurring during XI implementations and possible tips to solve the problems.<br />
<a href="http://weblogs.sdn.sap.com/pub/u/36462" title="Krishna Moorthy" target="_blank">Krishna Moorthy</a> P in SAP Process Integration (PI)</p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/10100" title="SAP's definitive strategy for planning technologies moving forward: What's the word on BPC, BI-IP and SRC?" target="_blank">24. SAP&#8217;s definitive strategy for planning technologies moving forward: What&#8217;s the word on BPC, BI-IP and SRC?</a><br />
This blog discuss SAP&#8217;s direction for planning products. It describes SAP&#8217;s official stance, and provides a bit more insight into Business Planning and Consolidation 7.0, version for SAP NetWeaver.<br />
<a href="http://weblogs.sdn.sap.com/pub/u/251690687" title="Ryan Leask" target="_blank">Ryan Leask</a> in Analytics, Enterprise Data Warehousing/Business Warehouse, Business Intelligence (BusinessObjects), Business Process Expert, Business Process Management, Business Process Modeling, Business Solutions, Enterprise Performance Management, SAP NetWeaver Platform</p>
<p><a href="http://weblogs.sdn.sap.com/pub/wlg/10429" title="First steps to work with Change Request Management scenario" target="_blank">25. First steps to work with Change Request Management scenario</a><br />
This blog describes how to create a test landscape to practice with the Charm scenario in Solution Manager 7.0 without creating interferences with real TMS landscapes. Also you will find tips and tricks for the common mistakes in the configuration of this scenario.<br />
<a href="http://weblogs.sdn.sap.com/pub/u/48905" title="Dolores Correia" target="_blank">Dolores Correa</a> in SAP Solution Manager</p>
<p>Many thanks again to <a href="http://weblogs.sdn.sap.com/pub/u/13" title="Mark Finnern" target="_blank">Mark Finnern</a> for this great contribution. Here is Mark&#8217;s career summary.</p>
<blockquote><p>Mark Finnern is the Chief Community Evangelist of the SAP Community Network focusing on the SAP Mentor initiative. He is an SAP veteran, has implemented SAP FI/CO at many customers in Germany and the US. Was the co-inventor of the Pre-Configured Client (PCC), which at times was used by 90% of all US SAP customers to save implementation time. It evolved into SAP&#8217;s Best Practices and All-In-One offerings. He is the proud owner of a Traffic Monitoring System patent. Mark was the driving force behind community features of the SAP Community Network: Blogs, points recognition system, wiki, Community Day now Inside Track. Mark Finnern has a bachelor&#8217;s degree in Business oriented Computer Science from the Fachhochschule in Furtwangen Germany. He is also the founder and host of the Future Salon with its new tag line: Creating a world that works for all.</p></blockquote>
<p>Source: <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/27705" title="Top 25 SCN Blogs of all Time" target="_blank">http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/27705</a></p>


	
	
	
					<li>
				<a href="http://saplab.org/2011/06/10-sap-blogs-you-must-follow/" rel="bookmark">
													
				10 SAP Blogs you must follow</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/saplab-version-2-0-is-on-line/" rel="bookmark">
													
				SAPLAB Version 2.0 is on-line!</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2011/01/best-sap-sdn-blog-posts-from-2010/" rel="bookmark">
													
				Best SAP SDN Blog Posts from 2010</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://saplab.org/2012/01/top-25-scn-blogs-of-all-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 SAP Blogs you must follow</title>
		<link>http://saplab.org/2011/06/10-sap-blogs-you-must-follow/</link>
		<comments>http://saplab.org/2011/06/10-sap-blogs-you-must-follow/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 10:47:11 +0000</pubDate>
		<dc:creator>Antonio Caldas</dc:creator>
				<category><![CDATA[SAP Blogs & Resources]]></category>
		<category><![CDATA[ABAP]]></category>
		<category><![CDATA[Basis]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[BPM]]></category>
		<category><![CDATA[Business Suite]]></category>
		<category><![CDATA[CA]]></category>
		<category><![CDATA[CAF]]></category>
		<category><![CDATA[Career]]></category>
		<category><![CDATA[CE]]></category>
		<category><![CDATA[CRM]]></category>
		<category><![CDATA[Document]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[FI/CO]]></category>
		<category><![CDATA[Great SAP Tips]]></category>
		<category><![CDATA[HCM/HR]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[MiniSAP]]></category>
		<category><![CDATA[MM]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Netweaver]]></category>
		<category><![CDATA[Portal]]></category>
		<category><![CDATA[PP]]></category>
		<category><![CDATA[QM]]></category>
		<category><![CDATA[sap fi]]></category>
		<category><![CDATA[sap pp]]></category>
		<category><![CDATA[SD]]></category>
		<category><![CDATA[skills]]></category>
		<category><![CDATA[SOA]]></category>
		<category><![CDATA[Support Package]]></category>
		<category><![CDATA[System Tools]]></category>
		<category><![CDATA[TCodes]]></category>
		<category><![CDATA[TechEd]]></category>
		<category><![CDATA[TR]]></category>
		<category><![CDATA[UWL]]></category>
		<category><![CDATA[Webdynpro ABAP]]></category>
		<category><![CDATA[Workflow]]></category>
		<category><![CDATA[XSS]]></category>

		<guid isPermaLink="false">http://saplab.org/?p=2054</guid>
		<description><![CDATA[It sometimes seems difficult to find your ways in the SAP neverending web of information. Anyone who works with SAP knows that a big part of their job is to constantly search and digest the best piece of information (ideally) they can find. These mostly originate from various sources and most of the times, in [...]
	
	
	
					<li>
				<a href="http://saplab.org/2010/07/saplab-version-2-0-is-on-line/" rel="bookmark">
													
				SAPLAB Version 2.0 is on-line!</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2011/01/best-sap-sdn-blog-posts-from-2010/" rel="bookmark">
													
				Best SAP SDN Blog Posts from 2010</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/best-of-sap-sites-directory/" rel="bookmark">
													
				Best of SAP Sites Directory</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_jade" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fsaplab.org%252F2011%252F06%252F10-sap-blogs-you-must-follow%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%2210%20SAP%20Blogs%20you%20must%20follow%22%20%7D);"></div>
<p>It sometimes seems difficult to find your ways in the SAP neverending web of information. Anyone who works with SAP knows that a big part of their job is to constantly search and digest the best piece of information (ideally) they can find. These mostly originate from various sources and most of the times, in what refers to blogs, at least half of them are low quality.</p>
<p>Being that said, I&#8217;ve decided to write this post and reveal which are my top SAP fellow blogs, whom I follow and recommend that you visit.</p>
<h4><a title="SAP Community Network Blogs" rel="nofollow" href="http://www.sdn.sap.com/irj/scn/weblogs" target="_blank">1. SAP Community Network Blogs</a></h4>
<p><a title="SAP Community Network Blogs" href="http://www.sdn.sap.com/irj/scn/weblogs" target="_blank"><img class="aligncenter size-full wp-image-2082" title="SAP Community Network Blogs" src="http://saplab.org/wp-content/uploads/2011/06/sap-blog01.jpg" alt="SAP Community Network Blogs" width="575" height="407" /></a></p>
<p>SAP blogs are by far the most complete and extensive source of information. It also has the advantage of being supported by SAP and its contents managed and updated by SAP employees, SAP mentors and other credible SAP professionals. The downside to it is that you&#8217;ll need an SAP user in order to view it fully or be able to post comments.</p>
<p>Link: <a title="SAP Community Network Blogs" rel="nofollow" href="http://www.sdn.sap.com/irj/scn/weblogs" target="_blank">http://www.sdn.sap.com/irj/scn/weblogs</a></p>
<p>&nbsp;</p>
<h4><a title="SearchSAP" href="http://searchsap.techtarget.com" target="_blank">2. SearchSAP</a></h4>
<p><a title="SearchSAP" href="http://searchsap.techtarget.com/" target="_blank"><img class="aligncenter size-full wp-image-2058" title="SAP community's resource for news, expert advice, technical tips and career guidance" src="http://saplab.org/wp-content/uploads/2011/06/search-sap.jpg" alt="SAP community's resource for news, expert advice, technical tips and career guidance" width="575" height="407" /></a></p>
<p>Owned by <a title="Tech Target" href="http://www.techtarget.com/" target="_blank">TechTarget</a>, SearchSAP is a very complete website and blog with more than tutorials or how-to&#8217;s on SAP. It contains news, expert advice, technical tips and career guidance, latest applications as well as future ERP system plans with breaking news coverage from independent editors. I recommend this website and its rich content.</p>
<p>Link: <a title="SearchSAP" href="http://searchsap.techtarget.com/" target="_blank">http://searchsap.techtarget.com/</a></p>
<p>&nbsp;</p>
<h4><a title="Jon ERP SAP Blog" href="http://www.jonerp.com/" target="_blank">3. JonERP.com</a></h4>
<p><a title="Jon Reed on SAP" href="http://www.jonerp.com/" target="_blank"><img class="aligncenter size-full wp-image-2063" title="Jon Reed - Career Answers for SAP Professionals" src="http://saplab.org/wp-content/uploads/2011/06/sap-jon-reed.jpg" alt="Jon Reed - Career Answers for SAP Professionals" width="575" height="407" /></a></p>
<p><a title="Follow Jon Reed on Twitter" href="http://twitter.com/jonerp" target="_blank">Jon Reed&#8217;s</a> blog is widely known and is a complete source that I recommend for any SAP professional. Jon actively blogs about several SAP emerging areas, SAP market trends, with a special focus on SAP career &#8211; Jon Reed&#8217;s blog has a special <a title="Jon Reed - SAP Career Center" href="http://www.jonerp.com/content/view/3/9/" target="_blank">SAP Career Center page</a>, designed for people wanting to know more about careers on SAP and how to enhance it. Jon also is consistently posting new podcasts and webcasts.</p>
<p>Link: <a title="Jon Reed on SAP" href="http://www.jonerp.com/" target="_blank">http://www.jonerp.com</a></p>
<p>&nbsp;</p>
<h4><span style="font-weight: bold;"><a title="Pixelbase" href="http://www.pixelbase.co.uk/" target="_blank">4. Pixelbase</a></span></h4>
<h4><a href="http://www.pixelbase.co.uk/"></a></h4>
<p><a title="PixelBase" href="http://www.pixelbase.co.uk/" target="_blank"><img class="aligncenter size-full wp-image-2077" title="SAP on PixelBase" src="http://saplab.org/wp-content/uploads/2011/06/pixelbase.jpg" alt="SAP on PixelBase" width="575" height="407" /></a></p>
<p>Michael Koch is the driver of Pixelbase, which I recommend that you  follow and visit on a regular basis. Michael is an experienced independent consultant and he&#8217;s also a well known SAP Mentor. Pixelbase is the commercial face of Michael&#8217;s activity, however, you&#8217;ll find that there is much to learn from the blog, covering topics such as SAP Web Development (ITS, BSP, <a title="7 Web Dynpro Basic Tutorials" href="http://saplab.org/2010/09/7-web-dynpro-basic-tutorials/">WebDynpro for ABAP</a>), custom SAP Development (ABAP and ABAP OO), RIA (Adobe Flex), Interfaces (ALE, IDOCS, XML), SAP CRM development and Data Migration, as well as conference coverage, among others.</p>
<p>Link: <a title="PixelBase" href="http://www.pixelbase.co.uk/" target="_blank">http://www.pixelbase.co.uk/</a></p>
<p>&nbsp;</p>
<h4><a title="Feeding the SAP EcoSystem" href="http://www.feedingthesapecosystem.com/" target="_blank">5. Feeding the SAP EcoSystem</a></h4>
<p><a title="Feeding the SAP EcoSystem" href="http://www.feedingthesapecosystem.com/" target="_blank"><img class="aligncenter size-full wp-image-2065" title="Feeding the SAP Ecosystem" src="http://saplab.org/wp-content/uploads/2011/06/feeding-the-sap-ecosystem.jpg" alt="Feeding the SAP Ecosystem" width="575" height="407" /></a></p>
<p>Peter Russo is the main blogger and webmaster of Feeding the SAP EcoSystem blog. Unlike others, this blog focuses more on SAP products and Peter includes his personal experiences in each post he writes. Benefiting from the fact that he appears to attend lots of SAP events, he also transmits these experiences to the blog, which are obviously enriching for any of us. It is ideal if you want to understand what&#8217;s going on in the SAP world and also where SAP is going in the future.</p>
<p>Link: <a title="Feeding the SAP EcoSystem" href="http://www.feedingthesapecosystem.com/" target="_blank">http://www.feedingthesapecosystem.com</a><br />
<a title="Blag's Bag of Rants" href="http://blagrants.blogspot.com/" target="_blank"></a></p>
<p>&nbsp;</p>
<h4><a title="Blag's Bag of Rants" href="http://blagrants.blogspot.com/" target="_blank">6. Blag&#8217;s Bag of Rants</a></h4>
<p><a title="Blag's Bag of Rants" href="http://blagrants.blogspot.com/" target="_blank"><img class="aligncenter size-full wp-image-2067" title="Blag's bag of rants" src="http://saplab.org/wp-content/uploads/2011/06/blag-sap.jpg" alt="Blag's bag of rants" width="575" height="407" /></a></p>
<p>Blag is Alvaro Tejada Galindo&#8217;s nickname on twitter (<a title="Blag on Twitter" href="http://twitter.com/#!/Blag" target="_blank">@blag</a>),. Alvaro is a senior ABAP Consultant, SAP Mentor, Programming Geek, Blagbert/Programming books author. Alvaro is Peruvian and lives in Montreal, Canada. If you want technical, Blag&#8217;s blog is the place to go.</p>
<p>Link: <a title="Blag's Bag of Rants" href="http://blagrants.blogspot.com/" target="_blank">http://blagrants.blogspot.com/</a></p>
<p>&nbsp;</p>
<h4><a title="Friday Morning Report" href="http://craig.cmehil.com/" target="_blank" class="broken_link">7. Friday Morning Report</a></h4>
<p><a title="Friday Morning Report" href="http://fridaymorningreport.tv/about/" target="_blank" class="broken_link"><img class="aligncenter size-full wp-image-2069" title="Friday Morning Report" src="http://saplab.org/wp-content/uploads/2011/06/friday-morning-report.jpg" alt="Friday Morning Report" width="575" height="407" /></a></p>
<p>The Friday Morning Report is owned and managed by <a title="Craig Cmehil" href="http://craigcmehil.magnt.com/" target="_blank">Craig Cmehil</a>, a well known SAP community evangelist that works for <a title="SAP AG" href="http://www.sap.com/" target="_blank">SAP AG</a> as a Director for Social Media Relations. Hence, Craig is very active in his blogging, tweeting and moderating discussions over at the SCN website and blogs.</p>
<p>Link: <a title="Friday Morning Report" href="http://fridaymorningreport.tv/" target="_blank">http://fridaymorningreport.tv/</a></p>
<p>&nbsp;</p>
<h4><a title="SAP Web 2.0 Blog" href="http://www.sapweb20.com/blog/" target="_blank">8. SAP WEB 2.0</a></h4>
<p><a href="http://www.sapweb20.com/blog"><img class="aligncenter size-full wp-image-2072" title="SAP Web 2.0" src="http://saplab.org/wp-content/uploads/2011/06/sap-web-2.0.jpg" alt="SAP Web 2.0" width="575" height="390" /></a></p>
<p>This is an interesting blog that I also follow. It focuses in cloud computing solutions and 3 main areas:  Web 2.0 by SAP, Web 2.0 in SAP and Web 2.0 with SAP. It is worth taking a look!</p>
<p>Link: <a title="SAP WEB 2.0" href="http://www.sapweb20.com/blog/" target="_blank"></a><a href="http://www.sapweb20.com/blog">http://www.sapweb20.com/blog</a>/</p>
<p>&nbsp;</p>
<h4><a title="SAP Bloggers Corner" href="http://sapbloggerscorner.com/" target="_blank">9. SAP Bloggers Corner</a></h4>
<p><a href="http://sapbloggerscorner.com/"><img class="aligncenter size-full wp-image-2078" title="SAP Bloggers Corner" src="http://saplab.org/wp-content/uploads/2011/06/sap-bloggers-corner.jpg" alt="SAP Bloggers Corner" width="575" height="407" /></a></p>
<p>SAP Bloggers corner is intended to promote conversation about what SAP is doing in the market. The main attraction of this blog is the livestream feature, podcasts and broadcasts, published on a regular basis.</p>
<p>Link: <a title="SAP Bloggers Corner" href="http://sapbloggerscorner.com/" target="_blank">http://sapbloggerscorner.com/</a></p>
<p>&nbsp;</p>
<h4><span style="font-weight: bold;"><a title="ERP Genie" href="http://www.erpgenie.com/" target="_blank">10. ERP Genie</a></span></h4>
<h4><a href="http://www.erpgenie.com/"></a></h4>
<p><a href="http://www.erpgenie.com/"><img class="aligncenter size-full wp-image-2079" title="ERP Genie" src="http://saplab.org/wp-content/uploads/2011/06/erp-genie.jpg" alt="ERP Genie" width="575" height="406" /></a></p>
<p>I think this was the first SAP blog I visited, ever since I started in the SAP world. It is very rich in content covering SAP podcasts (from Jon Reed), Job  Board, Foruns, FAQs, whitepapers  and tutorials, etc.  You can also browse the blog based on your user/consultant profile, i.e., Functional or Technical. The blog also contains a very complete section on SAP General. It&#8217;s a really good starting point for anybody and definitely a blog that you want to come back.</p>
<p>Link: <a title="ERP Genie" href="http://www.erpgenie.com/" target="_blank">http://www.erpgenie.com/</a></p>
<p>&nbsp;</p>
<p>Hope you liked this blog list; these are just a few of the ones I follow on a regular basis. <strong>What are your favourite blogs?</strong></p>


	
	
	
					<li>
				<a href="http://saplab.org/2010/07/saplab-version-2-0-is-on-line/" rel="bookmark">
													
				SAPLAB Version 2.0 is on-line!</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2011/01/best-sap-sdn-blog-posts-from-2010/" rel="bookmark">
													
				Best SAP SDN Blog Posts from 2010</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/best-of-sap-sites-directory/" rel="bookmark">
													
				Best of SAP Sites Directory</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://saplab.org/2011/06/10-sap-blogs-you-must-follow/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Get your 2011 SAP Salary Survey</title>
		<link>http://saplab.org/2011/04/get-your-2011-sap-salary-survey/</link>
		<comments>http://saplab.org/2011/04/get-your-2011-sap-salary-survey/#comments</comments>
		<pubDate>Thu, 21 Apr 2011 09:56:40 +0000</pubDate>
		<dc:creator>Antonio Caldas</dc:creator>
				<category><![CDATA[SAP Career]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Career]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Emerging]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[Great SAP Tips]]></category>
		<category><![CDATA[marketplace]]></category>
		<category><![CDATA[Netweaver]]></category>
		<category><![CDATA[skills]]></category>

		<guid isPermaLink="false">http://saplab.org/?p=2036</guid>
		<description><![CDATA[The results of the 2011 SAP Salary Survey are here, published by company Panaya. The survey results are based on responses from more than 800 SAP professionals around the world. You can now download the complete survey results, with the latest salary figures broken down by job title, geography, education, experience, and other variables. You [...]
	
	
	
					<li>
				<a href="http://saplab.org/2010/07/2010-sap-salary-survey/" rel="bookmark">
													
				2010 SAP Salary Survey</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/saplab-version-2-0-is-on-line/" rel="bookmark">
													
				SAPLAB Version 2.0 is on-line!</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2011/01/webcast-best-practices-in-building-your-sap-consulting-business/" rel="bookmark">
													
				Webcast &#8211; Best Practices in Building Your SAP Consulting Business</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_jade" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fsaplab.org%252F2011%252F04%252Fget-your-2011-sap-salary-survey%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Get%20your%202011%20SAP%20Salary%20Survey%22%20%7D);"></div>
<p>The results of the 2011 SAP Salary Survey are here, published by company <a href="http://www.panayainc.com/" target="_blank">Panaya</a>. The survey results are based on responses from more than 800 SAP professionals around the world.</p>
<p>You can now download the complete survey results, with the latest <strong>salary figures</strong> broken down by job title, geography, education, experience, and other variables.</p>
<p>You will be able to answer questions such as:</p>
<ul>
<li>What are the highest paying SAP job titles?</li>
<li>Does higher education mean higher pay?</li>
<li>Which industries pay top dollars for SAP skills?</li>
<li>Do men earn more than women among SAP professionals?</li>
<li>Get your 2011 SAP Salary Survey Results and find out everything you wanted to know about SAP salaries.</li>
</ul>
<p>The earnings of an SAP professional depend on many variables, including your location, education level, and experience, as well as the location of the company you work for, the SAP version you are working on, the industry you are in, as well as your gender.</p>
<p>Panaya conducted this survey to help you compare your compensation makeup to industry peers, better understand what drives compensation in this market, and get useful ideas for increasing your value.</p>
<h4>Nice, how do I get my hands on it?</h4>
<p>Please click on the image below to access and download the whole PDF (you will need to register with Panaya).</p>
<p><a title="Get your 2011 SAP Salary Survey" href="http://mkto-b0202.com/track?type=click&amp;enid=bWFpbGluZ2lkPXByb2QtYi01NiZtZXNzYWdlaWQ9NTYmZGF0YWJhc2VpZD0xMjk5ODI2MjMwJnNlcmlhbD0xMjQyNjA0MTA4JmVtYWlsaWQ9d2VibWFzdGVyQHNhcGxhYi5vcmcmdXNlcmlkPWItMjAyLTE2NDM1LTEzNzQyMCZleHRyYT0mJiY=&amp;&amp;&amp;http://go.panayainc.com/2011-SAP-Salary-Survey.html?Source=70120000000gvJG&amp;mkt_tok=3RkMMJWWfF9wsRonva%2FKZKXonjHpfsX56OspW6eg38431UFwdcjKPmjr1YYIT9QhcOuuEwcWGog80A1WG%2FmUdY5D" target="_blank"><img class="aligncenter size-full wp-image-2038" title="SAP Salary Survey for 2011" src="http://saplab.org/wp-content/uploads/2011/04/sap-salary-survey01.jpg" alt="SAP Salary Survey for 2011" width="550" height="347" /></a></p>
<h4>About Panaya</h4>
<p>Panaya&#8217;s Software-as-a-Service (SaaS) solutions enable companies that use SAP to save up to 50% of their application lifecycle costs and minimize the risks associated with system changes. Utilizing cloud-based simulation to analyze the impact of pending changes, Panaya automatically pinpoints which custom programs will break as a result of an upgrade or support package implementation and automatically fixes most of these problems. Panaya provides a complete solution for managing these changes, explaining how to fix the anticipated issues, fixing most of them automatically, suggesting the most efficient test plan, and calculating required project budget and resources. To learn more access <a title="Panaya Inc" href="http://www.panayainc.com/" target="_blank">Panaya&#8217;s website</a>.</p>
<p>&nbsp;</p>


	
	
	
					<li>
				<a href="http://saplab.org/2010/07/2010-sap-salary-survey/" rel="bookmark">
													
				2010 SAP Salary Survey</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/saplab-version-2-0-is-on-line/" rel="bookmark">
													
				SAPLAB Version 2.0 is on-line!</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2011/01/webcast-best-practices-in-building-your-sap-consulting-business/" rel="bookmark">
													
				Webcast &#8211; Best Practices in Building Your SAP Consulting Business</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://saplab.org/2011/04/get-your-2011-sap-salary-survey/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How To Do a Support Package Stack Upgrade &#8211; Part 2</title>
		<link>http://saplab.org/2011/04/how-to-do-a-support-package-stack-upgrade-part-2/</link>
		<comments>http://saplab.org/2011/04/how-to-do-a-support-package-stack-upgrade-part-2/#comments</comments>
		<pubDate>Fri, 01 Apr 2011 10:44:46 +0000</pubDate>
		<dc:creator>Antonio Caldas</dc:creator>
				<category><![CDATA[Beginners]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[Great SAP Tips]]></category>
		<category><![CDATA[Netweaver]]></category>
		<category><![CDATA[System Tools]]></category>
		<category><![CDATA[ABAP]]></category>
		<category><![CDATA[Basis]]></category>
		<category><![CDATA[Business Suite]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Support Package]]></category>
		<category><![CDATA[TechEd]]></category>

		<guid isPermaLink="false">http://saplab.org/?p=1247</guid>
		<description><![CDATA[Following my first post &#8220;How to do a Support Package Stack Upgrade &#8211; Part 1&#8220;, on which I explained the basic concepts such as Support Packages and the OSS Notes, in this post I&#8217;ll explain the step by step process on how to achieve this somewhat complex and easy to fail operation. As I said [...]
	
	
	
					<li>
				<a href="http://saplab.org/2009/10/how-to-do-a-support-package-stack-upgrade-part-1/" rel="bookmark">
													
				How To Do a Support Package Stack Upgrade &#8211; Part 1</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/sap-support-package-stack-17-fact-sheet/" rel="bookmark">
													
				SAP Support Package Stack 17 Fact Sheet</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2011/01/must-know-about-enhancement-packages/" rel="bookmark">
													
				What you must know about Enhancement Packages</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_jade" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fsaplab.org%252F2011%252F04%252Fhow-to-do-a-support-package-stack-upgrade-part-2%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22How%20To%20Do%20a%20Support%20Package%20Stack%20Upgrade%20-%20Part%202%22%20%7D);"></div>
<p>Following my first post &#8220;<a title="How to do a Support Package Stack Upgrade - Part 1" href="http://saplab.org/2009/10/how-to-do-a-support-package-stack-upgrade-part-1/">How to do a Support Package Stack Upgrade &#8211; Part 1</a>&#8220;, on which I explained the basic concepts such as Support Packages and the OSS Notes, in this post I&#8217;ll explain the step by step process on how to achieve this somewhat complex and easy to fail operation.</p>
<p><img class="aligncenter size-full wp-image-1232" title="SAP Online Support System (OSS)" src="http://saplab.org/wp-content/uploads/2009/10/sap-oss-notes.jpg" alt="SAP Online Support System (OSS)" width="500" height="140" /></p>
<p>As I said in <a title="How To Do a Support Package Stack Upgrade – Part 1" href="http://saplab.org/2009/10/how-to-do-a-support-package-stack-upgrade-part-1/">part 1</a>, preparation and organization play a critical part in this process. You should also have a complete check-list of whatever cut-over activities you’ll need to perform after the SP upgrade. A Z developments inventory is also a very good idea, if you want to avoid losing any previous developments.</p>
<h2>The Check List</h2>
<p>An organized check list will help you with the whole Support Package upgrade. Here&#8217;s an example you can follow:</p>
<h4>Preparation</h4>
<ul>
<li>Confirm new Patches are available for upgrade (estimated 30 minutes);</li>
<li>Download all the files in the support stack XX (estimated 30 minutes);</li>
<li>Ensure system has already been validated for additional packs  (check with your teams for time estimate );</li>
<li>Acquire passwords for: (estimated 15 minutes)
<ul>
<li>JSPM</li>
<li>SDM</li>
<li>Admin for client 000</li>
<li>J2EE admin</li>
<li>&lt;sid&gt;adm credentials</li>
<li>Config tool admin</li>
<li>File server and O.S. admin (might be necessary)</li>
</ul>
</li>
<li>Send system messages and lock all users beforehand (estimated 20 minutes);</li>
<li>Ensure that J2EE administrator user is unlocked (estimated 5 minutes);</li>
<li>Ensure that you have at least 10GB of available space in hard disk (estimated 2 minutes);</li>
<li>Perform a backup of the EPS adn IN Kernel folder:
<ul>
<li>Usr\sap\trans\eps\in (estimated 5 minutes);</li>
<li>Usr\sap\&lt;sid&gt;\sys\exe\nuc (estimated 5 minutes);</li>
<li>Usr\sap\&lt;sid&gt;\sys\exe\run (estimated 5 minutes);</li>
<li>Usr\sap\&lt;sid&gt;\scs01\exe (estimated 5 minutes);</li>
<li>Usr\sap\&lt;sid&gt;\DVEBMGS00\exe (estimated 5 minutes);</li>
</ul>
</li>
<li>IF cluster fail CI over to DB (estimated 15 minutes);</li>
</ul>
<h4>Execution &#8211; ABAP</h4>
<ul>
<li>Extract and move all the ABAP patch files into the right location (e.g. [drive]:\use\sap\trans\eps\in) (estimated 2 minutes);</li>
<li>Perform SAINT/SPAM Update to patch XX (estimated 15 minutes);</li>
<li>Import SAP_Basis patch XX using SPAM (estimated 45 minutes);</li>
<li>Import SAP_ABA patch XX using SPAM (estimated 15 minutes);</li>
<li>Import PI_Basis patch XX using SPAM (estimated 15 minutes);</li>
<li>Import SAP_BW patch XX using SPAM (estimated 15 minutes);</li>
<li>Import BI_CONT to patch XX using SPAM (estimated 30 minutes);</li>
<li>Import ST_PI patch XX using SPAM (estimated 15 minutes);</li>
</ul>
<h4>Execution &#8211; JAVA</h4>
<ul>
<li>Extract and move all the Java patch files into the right location (e.g. [drive]:\use\sap\trans\eps\in) (estimated 2 minutes);</li>
<li>Logon as &lt;sid&gt;adm when deploying patches through JSPM;</li>
<li>Perform JSPM update to patch XX (select single packs for this one) (estimated 15 minutes);</li>
<li>Using JSPM, update all the components to patch XX (Select Support Package stack) (estimated 120 minutes);</li>
</ul>
<h4>Execution &#8211; Additional Patching</h4>
<ul>
<li>Unpack Kernel archive and update it to latest patch (e.g. SP11 has patch 95) (estimated 15 minutes);</li>
<li>Unpack IGS archive and update it to latest patch (e.g. SP11 has patch 7) (estimated 15 minutes);</li>
<li>Confirm additional patches that need to be installed (estimated 15 minutes);</li>
<li>Extract and move all the additional patch files into the right location (e.g. [drive]:\use\sap\trans\eps\in);</li>
<li>Upgrade patch levels (estimated 250 minutes);</li>
<li>Run SGEN (depends on server type) (estimated 300 &#8211; 400 minutes);</li>
</ul>
<h4>Post Processing</h4>
<ul>
<li>Create SPAU Resolutions (estimated 2 minutes);</li>
<li>SPAU Analysis (estimated 120 minutes);</li>
<li>OSS Reapplication (estimated 80 minutes);</li>
<li>Unlock Users (estimated 15 minutes);</li>
</ul>
<p>Please note that the estimated times that I put here are assmunign that no unexpected errors occur. You know as well as I do that should something go wrong, these times can increase substantially. In my opinion, this is why it is so important to have a well organized Check List. Not only it will help you get an overview of all the tasks in hands and their sequence, but it will also help narrow down a potential error.</p>
<p><strong>Please come back soon; on the next posts I will go into detail on how to perform a SAP system Support Package Stack Upgrade.</strong></p>


	
	
	
					<li>
				<a href="http://saplab.org/2009/10/how-to-do-a-support-package-stack-upgrade-part-1/" rel="bookmark">
													
				How To Do a Support Package Stack Upgrade &#8211; Part 1</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/sap-support-package-stack-17-fact-sheet/" rel="bookmark">
													
				SAP Support Package Stack 17 Fact Sheet</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2011/01/must-know-about-enhancement-packages/" rel="bookmark">
													
				What you must know about Enhancement Packages</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://saplab.org/2011/04/how-to-do-a-support-package-stack-upgrade-part-2/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>SAT: New ABAP Runtime Analysis</title>
		<link>http://saplab.org/2011/02/sat-new-abap-runtime-analysis/</link>
		<comments>http://saplab.org/2011/02/sat-new-abap-runtime-analysis/#comments</comments>
		<pubDate>Wed, 09 Feb 2011 12:35:19 +0000</pubDate>
		<dc:creator>Antonio Caldas</dc:creator>
				<category><![CDATA[ABAP]]></category>
		<category><![CDATA[Emerging]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Netweaver]]></category>
		<category><![CDATA[Webcast]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Portal]]></category>
		<category><![CDATA[SOA]]></category>
		<category><![CDATA[TechEd]]></category>
		<category><![CDATA[Webdynpro ABAP]]></category>
		<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">http://saplab.org/?p=1953</guid>
		<description><![CDATA[SAT is the new ABAP Runtime Analysis Tool of the SAP NetWeaver 7.0 EhP2 (successor of the SE30 transaction). This demo explores the SAT tools and shows how to use SAT for typical scenarios of ABAP runtime analysis, such as searching for performance bottlenecks, program flow analysis or memory consumption problems. Watch the Demo (20 [...]
	
	
	
					<li>
				<a href="http://saplab.org/2011/01/best-sap-sdn-blog-posts-from-2010/" rel="bookmark">
													
				Best SAP SDN Blog Posts from 2010</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2011/02/caffeine-abap-to-go/" rel="bookmark">
													
				Caffeine &#8211; ABAP to Go</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/saplab-version-2-0-is-on-line/" rel="bookmark">
													
				SAPLAB Version 2.0 is on-line!</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_jade" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fsaplab.org%252F2011%252F02%252Fsat-new-abap-runtime-analysis%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22SAT%3A%20New%20ABAP%20Runtime%20Analysis%22%20%7D);"></div>
<p>SAT is the new ABAP Runtime Analysis Tool of the SAP NetWeaver 7.0 EhP2 (successor of the SE30 transaction). This demo explores the SAT tools and shows how to use SAT for typical scenarios of ABAP runtime analysis, such as searching for performance bottlenecks, program flow analysis or memory consumption problems.</p>
<h4>Watch the Demo (20 min)</h4>
<div id="web-url"><a title="SAT: New ABAP Runtime Analysis" href="http://www.sdn.sap.com/irj/scn/elearn?rid=/library/uuid/d0c750c1-7d04-2e10-8492-a11b9219371d&#038;overridelayout=true" target="_blank">SAT: New ABAP Runtime Analysis (20 min.)</a></div>


	
	
	
					<li>
				<a href="http://saplab.org/2011/01/best-sap-sdn-blog-posts-from-2010/" rel="bookmark">
													
				Best SAP SDN Blog Posts from 2010</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2011/02/caffeine-abap-to-go/" rel="bookmark">
													
				Caffeine &#8211; ABAP to Go</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/saplab-version-2-0-is-on-line/" rel="bookmark">
													
				SAPLAB Version 2.0 is on-line!</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://saplab.org/2011/02/sat-new-abap-runtime-analysis/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Caffeine &#8211; ABAP to Go</title>
		<link>http://saplab.org/2011/02/caffeine-abap-to-go/</link>
		<comments>http://saplab.org/2011/02/caffeine-abap-to-go/#comments</comments>
		<pubDate>Wed, 09 Feb 2011 12:20:12 +0000</pubDate>
		<dc:creator>Antonio Caldas</dc:creator>
				<category><![CDATA[ABAP]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[SAP Blogs & Resources]]></category>
		<category><![CDATA[Emerging]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[Great SAP Tips]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[marketplace]]></category>
		<category><![CDATA[Netweaver]]></category>
		<category><![CDATA[On-Demand]]></category>
		<category><![CDATA[On-Device]]></category>
		<category><![CDATA[On-Premise]]></category>
		<category><![CDATA[System Tools]]></category>
		<category><![CDATA[Webdynpro ABAP]]></category>

		<guid isPermaLink="false">http://saplab.org/?p=1943</guid>
		<description><![CDATA[Caffeine is a toolset that allows execution of the ABAP language on alternative runtimes outside of the ABAP server. As of today, it supports the execution of a subset of ABAP on the JVM (Java), Dalvik VM (Android), iOS (Objective C), and JavaScript. Its core design is centered around high performance, multi platform execution and [...]
	
	
	
					<li>
				<a href="http://saplab.org/2010/07/saplab-version-2-0-is-on-line/" rel="bookmark">
													
				SAPLAB Version 2.0 is on-line!</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2011/01/best-sap-sdn-blog-posts-from-2010/" rel="bookmark">
													
				Best SAP SDN Blog Posts from 2010</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/best-of-sap-sites-directory/" rel="bookmark">
													
				Best of SAP Sites Directory</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_jade" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fsaplab.org%252F2011%252F02%252Fcaffeine-abap-to-go%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Caffeine%20-%20ABAP%20to%20Go%22%20%7D);"></div>
<p>Caffeine is a toolset that allows execution of the <a href="http://saplab.org/category/abap/" title="ABAP">ABAP</a> language on alternative runtimes outside of the ABAP server. As of today, it supports the execution of a subset of ABAP on the JVM (Java), Dalvik VM (Android), iOS (Objective C), and JavaScript. Its core design is centered around high performance, multi platform execution and multi threading.</p>
<p>Caffeine is at the moment a prototype project and proves the claims made. There is currently no relation to any current or future SAP product, but SAP is working on achieving this.</p>
<h2>What&#8217;s it for?</h2>
<p>Caffeine is a technology, not an application, and it can thus be applied to many use cases. Caffeine is not trying to enable the migration of existing ABAP code to other platforms, but is focusing on adding value to SAP’s On-Device, On-Demand, On-Premise strategy by making SAPs business programming language reach into spaces like mobile devices that our customer are looking to unlock and feed with information coming from the customers backend. Caffeine strives to help developers to build business applications that are better integrated from frontend to backend.</p>
<h2>Download Full Paper</h2>
<div id="download"><a title="Caffeine - ABAP to Go" href="http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/3039f3a1-47af-2d10-88ab-82982ede56fe?QuickLink=index&#038;overridelayout=true" target="_blank">Caffeine &#8211; ABAP to Go (PDF, 500KB)</a></div>


	
	
	
					<li>
				<a href="http://saplab.org/2010/07/saplab-version-2-0-is-on-line/" rel="bookmark">
													
				SAPLAB Version 2.0 is on-line!</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2011/01/best-sap-sdn-blog-posts-from-2010/" rel="bookmark">
													
				Best SAP SDN Blog Posts from 2010</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/best-of-sap-sites-directory/" rel="bookmark">
													
				Best of SAP Sites Directory</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://saplab.org/2011/02/caffeine-abap-to-go/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Webcast &#8211; Best Practices in Building Your SAP Consulting Business</title>
		<link>http://saplab.org/2011/01/webcast-best-practices-in-building-your-sap-consulting-business/</link>
		<comments>http://saplab.org/2011/01/webcast-best-practices-in-building-your-sap-consulting-business/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 10:51:44 +0000</pubDate>
		<dc:creator>Antonio Caldas</dc:creator>
				<category><![CDATA[SAP Career]]></category>
		<category><![CDATA[Webcast]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Career]]></category>
		<category><![CDATA[Great SAP Tips]]></category>
		<category><![CDATA[Netweaver]]></category>
		<category><![CDATA[skills]]></category>
		<category><![CDATA[TechEd]]></category>

		<guid isPermaLink="false">http://saplab.org/?p=469</guid>
		<description><![CDATA[After almost 2 years since it was recorded, this webcast continues to be useful in the times we live in. On June 25, 2008, Jon Reed gave a presentation on the best strategies for becoming a successful independent SAP consultant and growing your consulting business. The content from that presentation is now made available in [...]
	
	
	
					<li>
				<a href="http://saplab.org/2009/04/webcast-is-soa-dead/" rel="bookmark">
													
				Webcast &#8211; Is SOA Dead?</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/5-keypoints-if-you-want-to-be-a-sap-consultant/" rel="bookmark">
													
				5 Keypoints if you want to be a SAP Consultant</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2009/10/best-practices-for-sap-netweaver-portal-70/" rel="bookmark">
													
				Best Practices for SAP Netweaver Portal 7.0</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_jade" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fsaplab.org%252F2011%252F01%252Fwebcast-best-practices-in-building-your-sap-consulting-business%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Webcast%20-%20Best%20Practices%20in%20Building%20Your%20SAP%20Consulting%20Business%22%20%7D);"></div>
<p>After almost 2 years since it was recorded, this webcast continues to be useful in the times we live in. On June 25, 2008, <a title="John Reed ERP" href="http://www.jonerp.com" target="_blank">Jon Reed</a> gave a presentation on the best strategies for becoming a successful independent SAP consultant and growing your consulting business. The content from that presentation is now made available in saplab.org. Even though this webcast was designed for any aspiring SAP consultant, there are a some points to keep in mind as you watch or listen:</p>
<p>The presentation was prepared for the <a title="SAP Developer Network" href="http://sdn.sap.com" target="_blank">SAP Developer Network</a> audience. The material is certainly useful for any SAP consultants, but it pointed specially towards SAP technical professionals, in particular, SAP developers.</p>
<p>A main theme of the presentation is how the free online resources of SAP&#8217;s online communities can help further consulting success. Jon Reed also explains how SDN Software Subscriptions can provide a great value for those consultants who are serious about self-education and software development.</p>
<p>The presentation does not assume that the audience is already running a consulting business. Many consultants wanted to &#8220;go independent&#8221; but have never taken the leap.</p>
<p>The general agenda is the following:</p>
<ul>
<li>how to become (and remain) a successful SAP consultant;</li>
<li>how to grow your SAP consulting business;</li>
<li>how to leverage SDN Subscriptions to develop bona fide third party software solutions using your own protected SAP Namespace.</li>
</ul>
<p>Additional topics covered in the presentation:</p>
<ul>
<li>Finding a marketable SAP niche with consistent demand;</li>
<li>Taking the plunge: accept that first independent project.</li>
</ul>
<p><strong>Access the Webcast:</strong></p>
<ul>
<li><a title="SAP Webcast" href="https://event.on24.com/interface/registration/autoreg/index.html?eventid=112413&amp;sessionid=1&amp;key=7BD8E93E907B6CA8F25A10485D74EF49&amp;SAP" target="_blank">Click here to enter the Webcast event lobby</a></li>
<li><a title="SAP Webcast" href="http://www.jonerp.com/images/stories/media/webcast_0608_reed_sdnsubscriptions.mp3" target="_blank">Click here to download the audio only version (mp3 file)</a></li>
<li><a title="SAP Webcast - Download Powerpoint" href="http://www.jonerp.com/images/stories/media/jonerpsuccess.ppt" target="_blank">Click here to download the Powerpoint presentantion (ppt file)</a></li>
</ul>
<p><strong>Additional links and resources:</strong></p>
<ul>
<li><a title="Jon Reed no SAP Consulting" href="http://www.jonerp.com" target="_blank">Jon Reed on SAP Consulting</a></li>
</ul>


	
	
	
					<li>
				<a href="http://saplab.org/2009/04/webcast-is-soa-dead/" rel="bookmark">
													
				Webcast &#8211; Is SOA Dead?</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/5-keypoints-if-you-want-to-be-a-sap-consultant/" rel="bookmark">
													
				5 Keypoints if you want to be a SAP Consultant</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2009/10/best-practices-for-sap-netweaver-portal-70/" rel="bookmark">
													
				Best Practices for SAP Netweaver Portal 7.0</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://saplab.org/2011/01/webcast-best-practices-in-building-your-sap-consulting-business/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://www.jonerp.com/images/stories/media/webcast_0608_reed_sdnsubscriptions.mp3" length="20112967" type="audio/mpeg" />
		</item>
		<item>
		<title>What you must know about Enhancement Packages</title>
		<link>http://saplab.org/2011/01/must-know-about-enhancement-packages/</link>
		<comments>http://saplab.org/2011/01/must-know-about-enhancement-packages/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 09:36:13 +0000</pubDate>
		<dc:creator>Antonio Caldas</dc:creator>
				<category><![CDATA[ERP]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Great SAP Tips]]></category>
		<category><![CDATA[ABAP]]></category>
		<category><![CDATA[Basis]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[marketplace]]></category>
		<category><![CDATA[Netweaver]]></category>
		<category><![CDATA[SOA]]></category>
		<category><![CDATA[Solution Manager]]></category>
		<category><![CDATA[System Tools]]></category>

		<guid isPermaLink="false">http://saplab.org/?p=166</guid>
		<description><![CDATA[SAP enhancement packages represent a new software delivery strategy that allows system administrators to get upgrades for SAP ECC 6.0 (ERP 2005) without having to fully upgrade the existing release. With the introduction of enhancement packages, SAP has changed the methodology for implementing new functionalities.
	
	
	
					<li>
				<a href="http://saplab.org/2009/10/how-to-do-a-support-package-stack-upgrade-part-1/" rel="bookmark">
													
				How To Do a Support Package Stack Upgrade &#8211; Part 1</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/saplab-version-2-0-is-on-line/" rel="bookmark">
													
				SAPLAB Version 2.0 is on-line!</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2009/10/ecc6-enhancement-framework-in-100-lines/" rel="bookmark">
													
				ECC6 Enhancement Framework in 100 lines</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_jade" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fsaplab.org%252F2011%252F01%252Fmust-know-about-enhancement-packages%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22What%20you%20must%20know%20about%20Enhancement%20Packages%22%20%7D);"></div>
<p>SAP enhancement packages represent a new software delivery strategy that allows system administrators to get upgrades for SAP ECC 6.0 (ERP 2005) without having to fully upgrade the existing release. With the introduction of enhancement packages, SAP has changed the methodology for implementing new functionalities.</p>
<p><strong>1 &#8211; SAP enhancement packages strategy</strong></p>
<p>SAP enhancement packages  for ECC 6.0 include functional and technical enhancements, industry specific enhancements, uniformizations and simplifications. To browse through the available changes included in each SAP enhacement package, please go to <a title="SAP Enhancement Packages" href="http://service.sap.com/erp-ehp" target="_blank">http://service .sap.com/erp-ehp</a>. Enterprise Services (ES) bundles are also now delivered with enhancement packages. Each one of these bundles  include a set of enterprise services to support end-to-end business processes (e.g. Order Product) across the <a title="SAP Business Suite" href="http://saplab.org/2009/02/press-conference-announces-sap-business-suite-7/" target="_self">SAP Business Suite</a>. To learn which ES bundles are available please go to the <a title="Enterprise Services Wiki" href="https://wiki.sdn.sap.com/wiki/display/ESpackages/Home" target="_blank" class="broken_link">Enterprise Services Wiki</a>.</p>
<p>New SAP enhancement packages include the entire content and functionality of previous versions. SAP will continue to provide Support Packages for ECC 6.0, contaning legal changes and corrections, on a regular basis and during the defined <a title="SAP Support Packages Maintenance Period" href="http://service.sap.com/maintenance" target="_blank">maintenance period</a>. SAP has also planned to deliver enhancement packages to other SAP applications like CRM or SCM.</p>
<p><strong>2 &#8211; Must know before installation</strong></p>
<p>There are two major features which differentiate SAP enhancement packages from older technologies:</p>
<div class="mceTemp">
<dl id="attachment_177" class="wp-caption alignright" style="width: 310px;">
<dt class="wp-caption-dt"><img class="size-full wp-image-177" title="SAP Enhancement Packages" src="http://saplab.org/wp-content/uploads/2009/03/ep-01.jpg" alt="SAP Enhancement Packages" width="300" height="105" /></dt>
</dl>
</div>
<p><span style="text-decoration: underline;">Selective installation of software components</span>: each enhancement package will contain the new versions of existing software components. Only the funcionality you want to use will be updated.<br />
<span style="text-decoration: underline;">Selective activation of new functionality</span>: new funcionality must be explicitly switched on and activated.</p>
<p>2.1 &#8211; Selective Installation</p>
<p>SAP enhancement packages allows updates to parts of the ECC system. It is now possible to update the ECC server or the Web AS. New HCM features are updated via the EA-HR component on the ECC server. The whole procedure is now more automated and controled by the Solution Manager &#8211; Maintenance Optimizer.</p>
<p>As part of the ongoing development of the <a title="SAP Netweaver" href="http://service.sap.com/netweaver" target="_blank">Netweaver</a> platform, SAP leverages the Enhancement and Switch Framework to enable new functionality. Ths installation of enhancement packages has no effect on the underlying layer of the SAP Netweaver platorm.</p>
<p>The installation process is detached from activation, which means that we can now provide the more recent functionality in the system as well as continue with the regular maintenance activities. To maximize performance and reduce effort, SAP enhancement packages should be applied in a queue, together with any necessary Support Packages. <strong>Note</strong> that after an enhancement package is installed and activated, it won&#8217;t be possible to revert this. SAP recommends that customers should have a Sandbox system to perform pretesting of new functionality, upgrades and patches.</p>
<p><strong>3 &#8211; Installation</strong></p>
<p>Effortwise, the system administration folks can look at enhacement packages as support packages. As explained above, both should be included in one queue. There are, however, some dependencies that need to be higlighted &#8211; SAP Solution Manager Maintenance Optimizer will treat them automatically. The following tools are used for installation, depending on the type of software component:</p>
<ul>
<li>ABAP software components are installed using SAINT;</li>
<li>Java software components are installed using JPSM;</li>
<li>Portal Content and Business Packages are installed using JPSM;</li>
<li>PI content is uploaded from the Integration Repository;</li>
<li>BI content is applied as common Support packages.</li>
</ul>
<p>3.1 &#8211; Prerequisites</p>
<ul>
<li>To use the Maintenance Optimizer, it is necessary to have the SAP Solution Manager aligned to the highest support package level in your system landscape. More information on the SAP Solution Manager at <a title="SAP Solution Manager" href="http://help.sap.com" target="_blank">help.sap.com</a> (SAP Solutions -&gt; SAP Solution Manager);</li>
<li>Make sure that the latest versions of SPAM and SAINT are updated in your systems;</li>
<li>Read SAP note <a title="SAP Note 1052522" href="https://service.sap.com/sap/support/notes/1052522" target="_blank">1052522</a> to know in detail which Support Packages are required to install enhancement package 2;</li>
<li>Note that software components included in SAP enhancement package 2 for SAP ECC 6.0 contain new developments as well as corrections. So by looking at the system after applying the enhancement packages, there will be some software components in version 600 (with SP level 10) as well as software components in versopn 602 (with SP level 0 which contain equivalent correction to SP level 10 of the same component in version 600);</li>
</ul>
<p>3.2 &#8211; Select the Software Components</p>
<p>Select the software components which correspond to the business functions needed.</p>
<ul>
<li>More on SAP enhancement package 2 in SAP Note <a title="SAP Mote 1052470" href="https://service.sap.com/sap/support/notes/1052470" target="_blank">1052470</a></li>
<li>More on SAP enhancement package 3 in SAP Note <a title="SAP Note 1083576" href="https://service.sap.com/sap/support/notes/1052522" target="_blank">1083576</a>.</li>
</ul>
<p>3.3 &#8211; Identify and download SAP enhancement packages using SAP Solution Manager Maintenance Optimizer</p>
<p>Create a new maintenance transaction for upgrading your system with SAP enhancement package 2 for ECC 6.0. A guided procedure is used to lead the user through the initial upgrade process. Select all the systems which will be affected by the upgrade. Afterwards, select the Technical Usages to apply for the systems. The SAP Solution Manager will automatically calculate all the necessary Support Packages and new software components needed for the chosen technical usages.</p>
<ul>
<li>Read more about the SAP Solution Manager Maintenance Optimizer at <a title="SAP Solution Manager" href="http://service.sap.com/solman-mopz" target="_blank">service.sap.com/solman-mopz</a>.</li>
</ul>
<p>3.4 &#8211; Update ABAP software components using SAINT</p>
<p>SAP reccomends importing the SAP enhancement package and required support packages in one import queue. It might be necessary to adjust modifications after applying an update or support package. This can be done at once if you use a single queue.</p>
<ul>
<li>More on SAINT at <a title="SAP Help" href="http://help.sap.com" target="_blank">help.sap.com</a> (SAP Netweaver &gt; SAP Netweaver 7.0 &gt; &#8220;Access the SAP Netweaver Library&#8221;)</li>
</ul>
<p>3.5 &#8211; Update Java Components and Portal Content using JSPM</p>
<p>You can use the document result of the SAP Solution Manager Maintenance Optimizer in the JSPM tool, to create a single import queue.</p>
<ul>
<li>More on JSPM at <a title="SAP Help" href="http://help.sap.com" target="_blank">help.sap.com</a> (SAP Netweaver &gt; SAP Netweaver 7.0 &gt; &#8220;Access the SAP Netweaver Library&#8221;)</li>
</ul>
<p>3.6 &#8211; Update PI Content</p>
<p>The PI or ESR-Content corresponding to the PI version in use must be installed.</p>
<ul>
<li>More information on PI Content in chapter 2 of the <a title="eSOA Master Guide" href="http://service.sap.com/~sapdownload/011000358700001163412007E/50087098.pdf" target="_blank">eSOA Master Guide</a>.</li>
</ul>
<p>3.7 &#8211; Update Library</p>
<p>The more detailed application documentation will be installed on the server, through the chosen business functions. This means that only the relevant SAP library will be updated, according to the components you have updated.</p>
<ul>
<li>More on SAP Library at SAP Note <a title="SAP Note 1066110" href="https://service.sap.com/sap/support/notes/1066110">1066110</a>.</li>
</ul>
<p><strong>4 &#8211; Additional Links and Resources</strong></p>
<ul>
<li><a title="SAP Enhancement Master Guide" href="https://websmp103.sap-ag.de/erp-inst" target="_blank">SAP Enhancement Master Guide</a></li>
<li><a title="Enterprise SOA Masterguide" href="https://websmp201.sap-ag.de/erp-inst" target="_blank">Enterprise SOA Master Guide</a></li>
<li><a title="SAP Service Marketplace" href="http://service.sap.com/erp-ehp" target="_blank">SAP Service Marketplace</a></li>
<li><a title="Standard test case templates" href="http://help.sap.com/erp2005_ehp_03/helpdata/EN/10/6abff28ad84562be39e6c442a56669/frameset.htm" target="_blank">Standard test case templates</a></li>
<li><a title="Introducing SAP enhancement packages for SAP ERP" href="https://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/8056" target="_blank" class="broken_link">Introducing SAP enhancement packages for SAP ERP</a></li>
<li><a title="SAP Enhancement Packages for Business Suite and SAP NetWeaver" href="https://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/11247" target="_blank" class="broken_link">SAP Enhancement Packages for Business Suite and SAP NetWeaver</a></li>
<li><a title="Survival Tips for the EHP Installer for SAP ERP" href="https://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/12313" target="_blank" class="broken_link">Survival Tips for the EHP Installer for SAP ERP</a></li>
</ul>
<p>4.1 &#8211; Support Package Stack Equivalence Level</p>
<p><img class="aligncenter size-full wp-image-194" title="Support Package Stack Level" src="http://saplab.org/wp-content/uploads/2009/03/sp-stack-level.jpg" alt="Support Package Stack Level" width="450" height="203" /></p>
<p>Note &#8211; to check installed Enhancement Packages in a system and their level, use transaction code <strong>SPAM</strong>.</p>


	
	
	
					<li>
				<a href="http://saplab.org/2009/10/how-to-do-a-support-package-stack-upgrade-part-1/" rel="bookmark">
													
				How To Do a Support Package Stack Upgrade &#8211; Part 1</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/saplab-version-2-0-is-on-line/" rel="bookmark">
													
				SAPLAB Version 2.0 is on-line!</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2009/10/ecc6-enhancement-framework-in-100-lines/" rel="bookmark">
													
				ECC6 Enhancement Framework in 100 lines</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://saplab.org/2011/01/must-know-about-enhancement-packages/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Best SAP SDN Blog Posts from 2010</title>
		<link>http://saplab.org/2011/01/best-sap-sdn-blog-posts-from-2010/</link>
		<comments>http://saplab.org/2011/01/best-sap-sdn-blog-posts-from-2010/#comments</comments>
		<pubDate>Wed, 12 Jan 2011 06:00:29 +0000</pubDate>
		<dc:creator>Antonio Caldas</dc:creator>
				<category><![CDATA[Beginners]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[SAP Blogs & Resources]]></category>
		<category><![CDATA[ABAP]]></category>
		<category><![CDATA[Analytics]]></category>
		<category><![CDATA[Basis]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[BI]]></category>
		<category><![CDATA[BPX]]></category>
		<category><![CDATA[BSP]]></category>
		<category><![CDATA[Business Suite]]></category>
		<category><![CDATA[Career]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[CRM]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Great SAP Tips]]></category>
		<category><![CDATA[HCM/HR]]></category>
		<category><![CDATA[marketplace]]></category>
		<category><![CDATA[MiniSAP]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Netweaver]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Portal]]></category>
		<category><![CDATA[SAPPHIRE]]></category>
		<category><![CDATA[SDN]]></category>
		<category><![CDATA[SOA]]></category>
		<category><![CDATA[System Tools]]></category>
		<category><![CDATA[TechEd]]></category>
		<category><![CDATA[Webdynpro ABAP]]></category>
		<category><![CDATA[Webservices]]></category>
		<category><![CDATA[Widget]]></category>
		<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">http://saplab.org/?p=1929</guid>
		<description><![CDATA[Alvaro Tejada Galindo, also known as @Blag is a Senior ABAP Consultant from Lima &#8211; Perú. He started learning programming at the age of 20. He started with Visual Basic 6.0 and C++ and he also learned some Pascal, Euphoria and Java. In the past 10 years, Alvaro has been involved in ABAP development, also [...]
	
	
	
					<li>
				<a href="http://saplab.org/2010/07/saplab-version-2-0-is-on-line/" rel="bookmark">
													
				SAPLAB Version 2.0 is on-line!</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/22-sap-how-tos-you-cant-miss/" rel="bookmark">
													
				22 SAP How To&#8217;s you can&#8217;t miss!</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/2010-sap-salary-survey/" rel="bookmark">
													
				2010 SAP Salary Survey</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_jade" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fsaplab.org%252F2011%252F01%252Fbest-sap-sdn-blog-posts-from-2010%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Best%20SAP%20SDN%20Blog%20Posts%20from%202010%22%20%7D);"></div>
<p>Alvaro Tejada Galindo, also known as <a rel="nofollow" href="http://twitter.com/#!/Blag" target="_blank">@Blag</a> is a Senior <a title="Posts in ABAP" href="http://saplab.org/category/abap/">ABAP</a> Consultant from Lima &#8211; Perú. He started learning programming at the age of 20. He started with Visual Basic 6.0 and C++ and he also learned some Pascal, Euphoria and Java. In the past 10 years, Alvaro has been involved in ABAP development, also learn scripting languages like Ruby and PHP.</p>
<p>In this post, similarly to what he did back in <a title="Blag's best blogs picks from 2007" rel="nofollow" href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/8090" target="_blank">2007</a>, <a title="Blag's best blogs picks from 2008" rel="nofollow" href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/12475" target="_blank">2008</a> and <a title="Blag's best blogs picks from 2009" rel="nofollow" href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/17095" target="_blank">2009</a>, <a rel="nofollow" href="http://twitter.com/#!/Blag" target="_blank">@Blag</a> compiled a list of what he considered the best and most useful SDN posts in 2010. Let me also take this opportunity to thank <a rel="nofollow" href="http://twitter.com/#!/Blag" target="_blank">@Blag</a> for his contribution, it is really very useful besides it&#8217;s what I consider rich content.</p>
<h5>Ranting</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/17267" target="_blank">The Grinch who stole the Questions </a>- <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251704642" target="_blank">Julius Bussche</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21761" target="_blank">Geek’s Dictionary: What is the Walldorf Kiss of Death?</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/14831" target="_blank">Thorsten Franz</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21759" target="_blank">Kiss of Death for Web Dynpro Java – The Follow-Up Questions</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/14831" target="_blank">Thorsten Franz</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21411" target="_blank">Can we reinvent the grey haired ABAPer?</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251933811" target="_blank">John Moy</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/22023" target="_blank">Should SDN be used for cross-blogging?</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/3225" target="_blank">Michael Nicholls</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/22075" target="_blank">&#8220;Request-A-Blog&#8221; from a SAP Mentor</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/10448" target="_blank">Richard Hirsch</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/22531" target="_blank">Goodbye Simplicity, Hello Obfuscation &#8211; &amp;SAP_EDIT</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251723740" target="_blank">Chris Paine</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/22704" target="_blank">A Blogger&#8217;s Carol</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251822835" target="_blank">Jim Spath</a></li>
</ul>
<h5>WebDynpro</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/17365" target="_blank">Silverlight Islands in Web Dynpro Java 7.20</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/24171" target="_blank">Yariv Zur</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/18256" target="_blank">Wave Islands in Webdynpro ABAP</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251846178" target="_blank">Uwe Fetzer</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/17948" target="_blank">Web Dynpro ABAP: Display tiff images</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/19923" target="_blank">Elvez</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/20671" target="_blank">ABAP Class using Singleton pattern &#8211; used in WDA Enhancements.</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/57898" target="_blank">ashish shah</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/20905" target="_blank">Web Dynpro Forms using HCM Processes and Forms</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/252088709" target="_blank">Brad Pokroy</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21932" target="_blank">The death of Web Dypro Java has been greatly exaggerated…</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251697082" target="_blank">Wolfgang Hilpert</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21967" target="_blank">Technology Stability in a World of Constant Change</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/20" target="_blank">Michael Bechauf</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/22206" target="_blank">WebDynpro UIs &#8211; Usable? </a>- <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/252130442" target="_blank">Pete Lagana</a></li>
</ul>
<h5>Beyond SAP</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/17368" target="_blank">Are there SAP user groups in Latin America?</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251822835" target="_blank">Jim Spath</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/18312" target="_blank">Meet the Mentors</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/48024" target="_blank">Alvaro Tejada Galindo</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/18453" target="_blank">Ode to Marilyn Pratt: Honoring the Advocate on Ada Lovelace Day</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/2585" target="_blank">Moya Watson</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/18687" target="_blank">Twenty Four ^2</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251822835" target="_blank">Jim Spath</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/18721" target="_blank">Consuming ABAP Webservices in Flex</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251771420" target="_blank">Neil Gardiner</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/20366" target="_blank">SAP Mentors setting the tone for consulting?</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251753448" target="_blank">Dennis Howlett</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/20818" target="_blank">I too want to become a famous blogger</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/252078093" target="_blank">Muthu Ranganathan</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/22392" target="_blank">SAP SDN Blog Reader for iPad, iPhone and Android devices</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/1530" target="_blank">Helmut Tammen</a></li>
</ul>
<h5>SAP Developer Network</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/17381" target="_blank">SAP Mentor Monday: Highlights 2009 from SAP Mentors</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/13" target="_blank">Mark Finnern</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/17618" target="_blank">Turning a new page&#8230;</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/55615" target="_blank">Craig Cmehil</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/17963" target="_blank">My UNOFFICIAL underground SCN promo fan video</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/6987" target="_blank">Chris Solomon</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/18373" target="_blank">Meet David Branan Community Support Angel</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/1915" target="_blank">Marilyn Pratt</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/18568" target="_blank">Powered by YOU: SCN By The Numbers</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251689471" target="_blank">Mark Yolton</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/20734" target="_blank">Congratulations to the current Topic Leaders (2009-2010)</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251901981" target="_blank">Laure Cetin</a></li>
</ul>
<h5>Business Server Pages</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/17344" target="_blank">Single Sign On to BSP pages</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/37611" target="_blank">Holger Bruchelt</a></li>
</ul>
<h5>Emerging Technologies</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/17619" target="_blank">smartJSON &#8211; Lightweight JSON Library For ABAP</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/252078123" target="_blank">Wiktor Nyckowski</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/20971" target="_blank">iPhone App for searching HELP.SAP.COM</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251933811" target="_blank">John Moy</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21038" target="_blank">Mobile Augmented Reality in SAP</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251856298" target="_blank" class="broken_link">Ivan Femia</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/22456" target="_blank">SAP River, Gateway and more at Innovative Community Day Bangalore</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251760438" target="_blank">Dipankar Saha</a></li>
</ul>
<h5>Community Projects</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/17678" target="_blank">unofficial Timeline of SAP</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251987681" target="_blank">Sergio Ferrari</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/18681" target="_blank">Community Project ZGEOCODE</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/2345" target="_blank">Gregor Wolf</a></li>
</ul>
<h5>Business Process Expert</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/17821" target="_blank">Want Fries With That?</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/1543" target="_blank">Martin Lang</a></li>
</ul>
<h5>Widgets</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/17855" target="_blank">SAP Mentor Directory 2010</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251760662" target="_blank">Anil Bavaraju</a></li>
</ul>
<h5>Beginners</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/18005" target="_blank">Web Dynpro ABAP on TV for beginner (Hello World)</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251699538" target="_blank">Holger Stumm</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/19798" target="_blank">Video: Why &amp; How To Blog on SAP Community Network?</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251878923" target="_blank">Natascha Thomson</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/20757" target="_blank">Growing in your SAP Career</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251870204" target="_blank">Somnath Manna</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/17662" target="_blank">Asking Good Questions in the Forums to get Good Answers</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/58372" target="_blank">Rob Burbank</a></li>
</ul>
<h5>ABAP</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/17971" target="_blank">ABAPdoc v2</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251708914" target="_blank">Onno Bagijn</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/19474" target="_blank">Macros &#8211; Good or Evil?</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/29585" target="_blank">Gerd Rother</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/20474" target="_blank">Twibap: the ABAP Twitter API</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251846178" target="_blank">Uwe Fetzer</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/20447" target="_blank">The ABAP Workbench and the Test-Driven Development Cycle in EHP1</a> -<a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251686928" target="_blank"> Stephen Pfeiffer</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/20791" target="_blank">xlsx2abap &#8211; Read and edit your Excel files from ABAP</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251856298" target="_blank" class="broken_link">Ivan Femia</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21287" target="_blank">Enterprise Geeks to planet earth: &#8220;Houston, we have a problem&#8221;</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251753448" target="_blank">Dennis Howlett</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21504" target="_blank">Against All Odds &#8211; Programming of Communicating (S)ALV Grid Controls</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251890496" target="_blank">Uwe Schieferstein</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/22146" target="_blank">Re-learn ABAP: Transition from Procedural to OO ABAP</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251865382" target="_blank">Eric</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/22283" target="_blank">Calling a function module is now FM Droid</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/bc?u=NNdUVlwbcH0%3D" target="_blank">Raúl Vides Mosquera Pumaricra</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/22285" target="_blank">abap2xlsx &#8211; I&#8217;m no longer a baby, I grow up and now I&#8217;m a fully featured tool</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251856298" target="_blank" class="broken_link">Ivan Femia</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21303" target="_blank">Just When You Thought You Knew Everything about ABAP Date Calculations…</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/58372" target="_blank">Rob Burbank</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21817" target="_blank">Calling a function module (abap code)</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251746912" target="_blank">Raúl Vides Mosquera Pumaricra</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/22476" target="_blank">ABAP Trial Version 7.02 available in SCN!</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/3934" target="_blank">Horst Keller</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/22450" target="_blank">ABAP Testing and Troubleshooting Tools &#8211; Which Features Are In Which Releases?</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251761782" target="_blank">Olga Dolinskaja</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/22536" target="_blank">ABAP Debugger Scripting: Basics</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251686928" target="_blank">Stephen Pfeiffer</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/22599" target="_blank">ABAP Debugger Scripting: Advanced</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251686928" target="_blank">Stephen Pfeiffer</a></li>
</ul>
<h5>Carreer Center</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/18100" target="_blank">Nuke that code, let us start over</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251897721" target="_blank">Vijay Vijayasankar</a></li>
</ul>
<h5>Standards</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/18302" target="_blank">SCRUM as example for new approaches in application development</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251911741" target="_blank">Marcel Salein</a></li>
</ul>
<h5>SAP Education</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/18741" target="_blank">How do you know the consultant you get is the consultant you interviewed?</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251685644" target="_blank">Kevin Wilson</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/18849" target="_blank">SAP Certification: The Certification 5 Report</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251753448" target="_blank">Dennis Howlett</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/20724" target="_blank">SAP Communities, SAP Mentors, what&#8217;s in it for me ? How to convince my boss to<br />
let me access it ? (SAP Inside Track debriefing &amp; Invitation to TechEd Networking Sessions)</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/252112232" target="_blank">Martin Gillet</a></li>
</ul>
<h5>SAP SAPPHIRE</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/19225" target="_blank">Where will you be ?</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/252053025" target="_blank">Abesh Bhattacharjee</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/19260" target="_blank">Blue Shirt Brigade aka SAP Mentors at #SAPPHIRENOW #ASUG2010</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/13" target="_blank">Mark Finnern</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/19311" target="_blank">Sapphire Now 2010 in Orlando &#8211; My First Sapphire</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/252071744" target="_blank">Simon To</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/19361" target="_blank">My Sapphire experience @Orlando and the people who made it special : Part &#8211; 1</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/252053025" target="_blank">Abesh Bhattacharjee</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/19362" target="_blank">My Sapphire experience @Orlando and the people who made it special : Part &#8211; 2</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/252053025" target="_blank">Abesh Bhattacharjee</a></li>
</ul>
<h5>Higher Education</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/19340" target="_blank">SAP Mentors, Certification Five geek out with Bill McDermott</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251753448" target="_blank">Dennis Howlett</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/19489" target="_blank">I would get SAP certified if&#8230;.</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251897721" target="_blank">Vijay Vijayasankar</a></li>
</ul>
<h5><strong>CRM</strong></h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/19914" target="_blank">Create your own BOL Object</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/5456" target="_blank">Harel Gilor</a></li>
</ul>
<h5><strong>SAP TechEd</strong></h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/20896" target="_blank">Why I want to go to TechEd</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251723740" target="_blank">Chris Paine</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21807" target="_blank">#nataschatoteched: An SAP Mentors case study</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/52619" target="_blank">Ted Sapountzis</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21853" target="_blank">Zen and the Art of Community</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251752730" target="_blank">David Hull</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21862" target="_blank">Life After Demo Jam</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/35583" target="_blank">Matt Harding</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21880" target="_blank">SAPTechEd in Vegas&#8230;Win, lose, or draw?</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/14064" target="_blank">Susan Keohan</a></li>
</ul>
<h5><strong>Community Day</strong></h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21032" target="_blank">A Scrapbook of SAP Inside Track Vancouver</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251900287" target="_blank">Jason Cao</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21969" target="_blank">We made it! SAP Inside Track Istanbul</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/29528" target="_blank">Abdulbasit Gulsen</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/22055" target="_blank">SAP Inside Track Sydney, Australia 2011</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251701007" target="_blank">Graham Robinson</a></li>
</ul>
<h5>Service-Orientes Architecture</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21313" target="_blank">Semantics of Web Services</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/35460" target="_blank">Tobias Trapp</a></li>
</ul>
<h5>Business Intelligence</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21575" target="_blank">The BW &#8211; HANA Relationship</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/8448" target="_blank">Thomas Zurek</a></li>
</ul>
<h5>Mobile</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21745" target="_blank">SAP&#8217;s Mobile Strategy: Really?</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/38983" target="_blank">John Appleby</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/22178" target="_blank">Caffeine &#8211; ABAP to Go &#8211; The Motivation</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/252006636" target="_blank">Daniel Vocke</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/22478" target="_blank">Android and RESTFul web service instead of SOAP</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/252128465" target="_blank">Michael Hardenbol</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/22354" target="_blank">Mobile apps or HTML?</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251875405" target="_blank">Tobias Hofmann</a></li>
</ul>
<h5>Open Source</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21446" target="_blank">Barcodes in SAP with the Barcode Writer in Pure Postscript.</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251909024" target="_blank">Robert Russell</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21914" target="_blank">Call a function module in the ABAP Editor: Stop Crying &#8211; Start Laughing.</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/252043295" target="_blank">Andrea Olivieri</a></li>
</ul>
<h5>Analytics</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21826" target="_blank">What does SAP mean by &#8220;In-Memory&#8221;?</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/251729506" target="_blank" class="broken_link">Ethan Jewett</a></li>
</ul>
<h5>SAP xApps</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21839" target="_blank">Release : SAP MII Backuper v 1.0</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/252053025" target="_blank">Abesh Bhattacharjee</a></li>
</ul>
<h5>Code Exchange</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/20685" target="_blank">Creating your own project on Code Exchange</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/43450" target="_blank">Rui Nogueira</a></li>
</ul>
<h5>SAP Business Workflow</h5>
<ul>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/22215" target="_blank">What not to WF</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/14064" target="_blank">Susan Keohan</a></li>
<li><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/22624" target="_blank">Santa baby, hurry down the chimney tonight&#8230;</a> &#8211; <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/u/14064" target="_blank">Susan Keohan</a></li>
</ul>
<p>Source: blag&#8217;s <a title="SDN" href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/22377" target="_blank" rel="nofollow">SDN weblog</a></p>


	
	
	
					<li>
				<a href="http://saplab.org/2010/07/saplab-version-2-0-is-on-line/" rel="bookmark">
													
				SAPLAB Version 2.0 is on-line!</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/22-sap-how-tos-you-cant-miss/" rel="bookmark">
													
				22 SAP How To&#8217;s you can&#8217;t miss!</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/2010-sap-salary-survey/" rel="bookmark">
													
				2010 SAP Salary Survey</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://saplab.org/2011/01/best-sap-sdn-blog-posts-from-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAP Sandbox onDemand</title>
		<link>http://saplab.org/2010/10/sap-sandbox-ondemand/</link>
		<comments>http://saplab.org/2010/10/sap-sandbox-ondemand/#comments</comments>
		<pubDate>Wed, 20 Oct 2010 15:50:33 +0000</pubDate>
		<dc:creator>Antonio Caldas</dc:creator>
				<category><![CDATA[ABAP]]></category>
		<category><![CDATA[Beginners]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[FI/CO]]></category>
		<category><![CDATA[HCM/HR]]></category>
		<category><![CDATA[Logistics]]></category>
		<category><![CDATA[Netweaver]]></category>
		<category><![CDATA[PM]]></category>
		<category><![CDATA[SAP Career]]></category>
		<category><![CDATA[SD]]></category>
		<category><![CDATA[Workflow]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Emerging]]></category>
		<category><![CDATA[MiniSAP]]></category>
		<category><![CDATA[MM]]></category>
		<category><![CDATA[PP]]></category>

		<guid isPermaLink="false">http://saplab.org/?p=1875</guid>
		<description><![CDATA[Well I can say that this is a long awaited SAP launch and that will provide help to many users worldwide. If you&#8217;re like me, at a certain point in your SAP career, you felt the need to have your own SAP sandbox. Being for professional purposes or for your own personal skillset build, an [...]
	
	
	
					<li>
				<a href="http://saplab.org/2010/07/best-of-sap-sites-directory/" rel="bookmark">
													
				Best of SAP Sites Directory</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/saplab-version-2-0-is-on-line/" rel="bookmark">
													
				SAPLAB Version 2.0 is on-line!</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/22-sap-how-tos-you-cant-miss/" rel="bookmark">
													
				22 SAP How To&#8217;s you can&#8217;t miss!</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_jade" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fsaplab.org%252F2010%252F10%252Fsap-sandbox-ondemand%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22SAP%20Sandbox%20onDemand%22%20%7D);"></div>
<p>Well I can say that this is a long awaited SAP launch and that will provide help to many users worldwide. If you&#8217;re like me, at a certain point in your SAP career, you felt the need to have your own SAP sandbox. Being for professional purposes or for your own personal skillset build, an SAP sandbox system is always handy and you can&#8217;t well perform this kind of experiments on your client development system.</p>
<p>Up until now, there weren&#8217;t many (viable) available solutions. There are some companies that provide you a paid service for you to have your own SAP system/client but usually expensive for most of us.</p>
<p>This month <a href="https://lod.sdn.sap.com/" target="_blank" rel="nofollow">Learning on Demand</a> by SAP launched a new service called <a href="https://cart.lod.sdn.sap.com/home.php?cat=680&amp;catexp=680" target="_blank" rel="nofollow" class="broken_link">SAP Sandbox onDemand</a>, which consists of an SAP ECC 6.0 system with sufficient basic data, such as customer and vendor master data, to enable substantial experimentation.  </p>
<p>Using this system, users can access the core ERP functionality of modules such as FI and CO, SD, HR and MM and can write and test ABAP code and modify SAP Netweaver settings and configurations. This offering will provide interested individuals with the ability to reinforce their existing SAP ERP knowledge and skills through experimentation in a live but safe environment.  It will also enable you to clarify areas of ambiguity in your knowledge or to test new functionality that they may be considering for an existing or new client.</p>
<p>Given that the SAP Sandbox onDemand is accessed via an SAP WebGUI, there is no need to install any client-side software on your PC, so you can start using the system immediately after receiving your access details.</p>
<p>Comparing with other and existing offers, SAP Sandbox onDemand has a fair price in my perspective: US$80 for 30 days access.</p>
<p><center><br />
<a href="https://lod.sdn.sap.com/index.jspa" target="_blank" rel="nofollow"><br />
<img src="http://saplab.org/wp-content/uploads/2010/10/sap-sandbox01.jpg" alt="SAP Sandbox onDemand" title="SAP Sandbox onDemand " width="400" height="275" class="aligncenter size-full wp-image-1878" /><br />
<br />
<h2>Click here for more info and start playing now!</a></h2>
<p></center></p>
<p>&nbsp;</p>


	
	
	
					<li>
				<a href="http://saplab.org/2010/07/best-of-sap-sites-directory/" rel="bookmark">
													
				Best of SAP Sites Directory</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/saplab-version-2-0-is-on-line/" rel="bookmark">
													
				SAPLAB Version 2.0 is on-line!</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/07/22-sap-how-tos-you-cant-miss/" rel="bookmark">
													
				22 SAP How To&#8217;s you can&#8217;t miss!</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://saplab.org/2010/10/sap-sandbox-ondemand/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

