<?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; Great SAP Tips</title>
	<atom:link href="http://saplab.org/category/great-sap-tips/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>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>5 Ways to Uncover Unused SAP Software Licenses</title>
		<link>http://saplab.org/2011/09/5-ways-to-uncover-unused-sap-software-licenses/</link>
		<comments>http://saplab.org/2011/09/5-ways-to-uncover-unused-sap-software-licenses/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 15:06:07 +0000</pubDate>
		<dc:creator>Antonio Caldas</dc:creator>
				<category><![CDATA[Great SAP Tips]]></category>
		<category><![CDATA[SAP Blogs & Resources]]></category>
		<category><![CDATA[Basis]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[Portal]]></category>
		<category><![CDATA[System Tools]]></category>

		<guid isPermaLink="false">http://saplab.org/?p=2233</guid>
		<description><![CDATA[If you have managing responsibilities over an SAP system, it might happen that you&#8217;ve had to assess the status of your user licenses. SAP licenses are not cheap and one should always have the system tight, obviously with some room for contingencies. That is, if you do care about your employer, who&#8217;s probably paying for the SAP [...]
	
	
	
					<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/09/submit-an-article-win-a-free-ad/" rel="bookmark">
													
				Submit an Article, Win a Free Ad!</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%252F09%252F5-ways-to-uncover-unused-sap-software-licenses%252F%22%2C%20%22shorturl%22%3A%20%22http%3A%2F%2Fbit.ly%2FnOmiLT%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%225%20Ways%20to%20Uncover%20Unused%20SAP%20Software%20Licenses%22%20%7D);"></div>
<p>If you have managing responsibilities over an SAP system, it might happen that you&#8217;ve had to assess the status of your user licenses. SAP licenses are not cheap and one should always have the system tight, obviously with some room for contingencies. That is, if you do care about your employer, who&#8217;s probably paying for the SAP invoices.</p>
<p>This article describes 5 different ways on how you can effectively keep a control on the existing SAP licenses:</p>
<ol>
<li>Keep a constant communication channel open with your SAP account executive</li>
<li>Actively use the SAP Support Portal</li>
<li>Actively use the SAP License Administration Workbench</li>
<li>Take Advantage of Software Audit Tools</li>
<li>Bring in a Software Audit Service</li>
</ol>
<div>Plus, what to do when you find unused SAP licenses!</div>
<div>Download the full article by clicking the image below.</div>
<div><a title="5 ways to uncover unused SAP Software Licenses" href="http://go.panayainc.com/rs/panayainc/images/unused-licenses-tip-sheet.pdf" rel="nofollow" target="_blank"><img class="aligncenter size-full wp-image-2234" title="5 ways to find unused SAP Licenses" src="http://saplab.org/wp-content/uploads/2011/09/sap-licenses00.jpg" alt="5 ways to find unused SAP Licenses" width="550" height="483" /></a></div>
<p>Source: <a title="Panaya Inc" href="http://www.panayainc.com/" rel="nofollow" target="_blank">Panayna Inc</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/09/submit-an-article-win-a-free-ad/" rel="bookmark">
													
				Submit an Article, Win a Free Ad!</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/09/5-ways-to-uncover-unused-sap-software-licenses/feed/</wfw:commentRss>
		<slash:comments>1</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>How to create a Sales Order in SAP (Part 1)</title>
		<link>http://saplab.org/2011/02/how-to-create-a-sales-order-in-sap-part-1/</link>
		<comments>http://saplab.org/2011/02/how-to-create-a-sales-order-in-sap-part-1/#comments</comments>
		<pubDate>Wed, 23 Feb 2011 11:21:50 +0000</pubDate>
		<dc:creator>Antonio Caldas</dc:creator>
				<category><![CDATA[Beginners]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[Great SAP Tips]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[SD]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[document types in sap]]></category>
		<category><![CDATA[Purchase Order]]></category>
		<category><![CDATA[sales order]]></category>
		<category><![CDATA[SAP Training]]></category>
		<category><![CDATA[TCodes]]></category>
		<category><![CDATA[va01]]></category>

		<guid isPermaLink="false">http://saplab.org/?p=1958</guid>
		<description><![CDATA[In this session, we are going to understand how to create a sales order in SAP SD. For more tutorials like these or for SAP Training, please visit Magna Training. Business Scenario: A customer has placed an order with company ABC Computers Inc., for 10 computers to be delivered on 10th of March. The customer [...]
	
	
	
					<li>
				<a href="http://saplab.org/2009/06/sap-sales-distribution-transaction-codes/" rel="bookmark">
													
				SAP Sales and Distribution (SD) Transaction Codes</a>
			</li>
				
					<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/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%252Fhow-to-create-a-sales-order-in-sap-part-1%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22How%20to%20create%20a%20Sales%20Order%20in%20SAP%20%28Part%201%29%22%20%7D);"></div>
<p>In this session, we are going to understand how to create a sales order in <a title="SAP SD" href="http://saplab.org/category/sd/">SAP SD</a>. For more tutorials like these or for <a title="SAP Training" href="http://www.magnatraining.com">SAP Training</a>, please visit <a title="SAP Magna Training" rel="nofollow" href="http://www.magnatraining.com/" target="_blank">Magna Training</a>.</p>
<p><strong>Business Scenario</strong>: A customer has placed an order with company ABC Computers Inc., for 10 computers to be delivered on  10th of March. The customer typically pays with Net30, but this time for this order, he wants a Net 60 payment terms.</p>
<p><strong>Step No. 1</strong>: Use the <a title="SAP SD Transaction Codes" href="http://saplab.org/2009/06/sap-sales-distribution-transaction-codes/">Transaction Code</a> [ VA01 ] to create the Sales Order in SAP. Alternatively, you can use the menu path as shown in the picture below [ <em>Logistics -&gt; Sales and Distribution -&gt; Sales -&gt; Order -&gt; Create</em> ]</p>
<p><img class="aligncenter size-full wp-image-1961" src="http://saplab.org/wp-content/uploads/2011/02/sales-order-sap-sd-02.jpg" alt="" width="240" height="358" /></p>
<p><strong>Step No. 2</strong>: Use the document type ‘OR’ in the field Order Type.</p>
<p><img class="aligncenter size-full wp-image-1962" src="http://saplab.org/wp-content/uploads/2011/02/sales-order-sap-sd-03.jpg" alt="" width="300" height="200" /></p>
<p>Select a Customer ( say 1400 ) and enter some text in the Customer PO Number field and either hit the return key or the Green check mark button. This will ensure that SAP will validate the data you have entered.</p>
<p><img class="aligncenter size-full wp-image-1963" src="http://saplab.org/wp-content/uploads/2011/02/sales-order-sap-sd-04.jpg" alt="" width="462" height="150" /></p>
<p><strong>Step No. 3</strong>: Enter a material number and quantity. We have chosen a material of M-01 (representing Computer product) and a quantity of 10 based on the scenario. As you can see, the corresponding material descriptions and other information is automatically pulled up by SAP.</p>
<p><img class="aligncenter size-full wp-image-1964" src="http://saplab.org/wp-content/uploads/2011/02/sales-order-sap-sd-05.jpg" alt="" width="560" height="342" /></p>
<p><strong>Step No. 4</strong>: As you can see, SAP automatically proposed a Requested Delivery date (28/02/2011) from the picture above. This data is retrieved from the lead time configuration in the Sales Order. However, since the customer has requested that the goods be delivered on March 10th, let’s change the requested delivery date.</p>
<p><strong>Hint</strong>: Always change the Requested Delivery Date before you enter the line items.</p>
<p><img class="aligncenter size-full wp-image-1965" src="http://saplab.org/wp-content/uploads/2011/02/sales-order-sap-sd-06.jpg" alt="" width="460" height="113" /></p>
<p><strong>Step No. 5</strong>: Since the customer has requested a change in the Payment terms, let’s select the right payment terms from the SAP Search Help.</p>
<p><img class="aligncenter size-full wp-image-1966" src="http://saplab.org/wp-content/uploads/2011/02/sales-order-sap-sd-07.jpg" alt="" width="575" height="333" /></p>
<p>Since the customer has requested a payment terms of NET 60, we are choosing a payment terms of ‘0004’ – Within 60 days due net.</p>
<p><strong>Step No. 6</strong>: If you are done with creating the Sales Order in SAP, click the save button to finish the order. SAP will display the order number at the bottom.</p>
<p><img class="aligncenter size-full wp-image-1967" src="http://saplab.org/wp-content/uploads/2011/02/sales-order-sap-sd-08.jpg" alt="" width="575" height="407" /><br />
<img class="aligncenter size-full wp-image-1968" src="http://saplab.org/wp-content/uploads/2011/02/sales-order-sap-sd-09.jpg" alt="" width="264" height="48" /></p>
<p>In the next parts of this series, we will discuss more about how to manipulate more fields in the SAP sales order and the business significance of those fields.</p>


	
	
	
					<li>
				<a href="http://saplab.org/2009/06/sap-sales-distribution-transaction-codes/" rel="bookmark">
													
				SAP Sales and Distribution (SD) Transaction Codes</a>
			</li>
				
					<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/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/how-to-create-a-sales-order-in-sap-part-1/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</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>Submit an Article, Win a Free Ad!</title>
		<link>http://saplab.org/2010/09/submit-an-article-win-a-free-ad/</link>
		<comments>http://saplab.org/2010/09/submit-an-article-win-a-free-ad/#comments</comments>
		<pubDate>Thu, 23 Sep 2010 07:00:26 +0000</pubDate>
		<dc:creator>Antonio Caldas</dc:creator>
				<category><![CDATA[Great SAP Tips]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[SAP Blogs & Resources]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Career]]></category>

		<guid isPermaLink="false">http://saplab.org/?p=1820</guid>
		<description><![CDATA[Good morning everyone! Today I&#8217;m excited to publish this post announcing an exclusive offer with a 1 week duration &#8211; I decided to extend it for 1 month! I will be giving away three 125&#215;125 banners for free, for a period of 3 months duration, in exchange for 3 exclusive SAP articles written for SAPLAB.org. [...]
	
	
	
					<li>
				<a href="http://saplab.org/2010/09/sap-free-white-papers/" rel="bookmark">
													
				SAP Free White Papers</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2009/10/ask-an-expert-get-a-free-answer/" rel="bookmark">
													
				Ask an Expert, Get a Free Answer</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%252F2010%252F09%252Fsubmit-an-article-win-a-free-ad%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Submit%20an%20Article%2C%20Win%20a%20Free%20Ad%21%22%20%7D);"></div>
<p>Good morning everyone! Today I&#8217;m excited to publish this post announcing an <strong>exclusive offer with a <span style="text-decoration: line-through;">1 week duration</span></strong> &#8211; <strong>I decided to extend it for 1 month</strong>! I will be giving away <strong>three 125&#215;125 banners for free</strong>, for a period of 3 months duration, in exchange for 3 exclusive SAP articles written for <a href="http://saplab.org/">SAPLAB.org</a>. If you own a SAP related business, if you work for an SAP business and want to impress your boss and colleagues or you simply wish to publicize your personal blog, go ahead and read through.</p>
<h2>Rules of the game</h2>
<p>There are, however, some rules to comply with:</p>
<ul>
<li>The article must be written exclusively for SAPLAB.org. If you copy an existing article from another website, you will penalize both SAPLAB as well as the copied website and you won&#8217;t have your banner nor your article published. Using your own creativity will benefit both SAPLAB and your personal website, blog or corporate website.</li>
<li>The article must be included on one of the various categories existing in SAPLAB.org. Please take a moment to browse and verify the available categories on the right-hand side navigation bar.</li>
<li>You can write about a technical obstacle you&#8217;ve overcame, a technical how-to or step-by-step procedure, an SAP product review, a white paper around any SAP relevant topic, a case study (given that you don&#8217;t break any compliance rule within your company), etc.</li>
<li>It is ok to link to your own blog if it’s relevant to do so (e.g. referring a coding example). However, you should not write articles around topics to justify a link to your blog and you should not actively encourage visitors to visit your blog. Remember, you get a banner and a link to your blog within the article you send; this link will be clearly marked so that your site gets exposure, even when the 3 months timeframe of the 125&#215;125 banner ends.</li>
<li>No affiliate codes or referral links are allowed in the article.</li>
<li>This is a limited offer (1 week) and I will choose the three best articles to publish. Once the campaign ends, I will contact you to setup the banner trade.</li>
</ul>
<h2>What&#8217;s in it for you?</h2>
<p>In return you will get full credit for the post, an author bio in the end of the article, including your website, social media links, e-mail, etc. Additionally, I will setup the 125&#215;125 banner for 3 months upon reception of the JPEG, GIF or SWF file from your end.</p>
<h2>Get Started</h2>
<p>Please contact me at <strong>webmaster [at] saplab.org</strong> and send me your article. Please also include any screenhots, etc. as attachments in your e-mail. I will assess your request and if everything ok, I will send you the further details.</p>
<p><strong>Thanks and happy blogging!</strong></p>


	
	
	
					<li>
				<a href="http://saplab.org/2010/09/sap-free-white-papers/" rel="bookmark">
													
				SAP Free White Papers</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2009/10/ask-an-expert-get-a-free-answer/" rel="bookmark">
													
				Ask an Expert, Get a Free Answer</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/2010/09/submit-an-article-win-a-free-ad/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>SAP Free White Papers</title>
		<link>http://saplab.org/2010/09/sap-free-white-papers/</link>
		<comments>http://saplab.org/2010/09/sap-free-white-papers/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 17:00:23 +0000</pubDate>
		<dc:creator>Antonio Caldas</dc:creator>
				<category><![CDATA[Beginners]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Great SAP Tips]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[SAP Blogs & Resources]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[marketplace]]></category>
		<category><![CDATA[skills]]></category>
		<category><![CDATA[White Papers]]></category>

		<guid isPermaLink="false">http://saplab.org/?p=1788</guid>
		<description><![CDATA[Today I am excited to announce another new content area in the SAPLAB.org blog. The &#8220;SAP White Papers&#8221; co-branded website contains literally hundreds of free offers which are provided to you on behalf of SAP. According to our partner RevResponse, all publications ate free because &#8220;while subscriptions to all the trade publications on the TradePub.com [...]
	
	
	
					<li>
				<a href="http://saplab.org/2009/03/sap-netweaver-bpm-white-paper/" rel="bookmark">
													
				SAP Netweaver BPM White Paper</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/01/best-sap-content-of-2009/" rel="bookmark">
													
				Best SAP Content of 2009</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%252F2010%252F09%252Fsap-free-white-papers%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22SAP%20Free%20White%20Papers%22%20%7D);"></div>
<p>Today I am excited to announce another new content area in the SAPLAB.org blog. The &#8220;<a href="http://saplab-org.tradepub.com/?pt=adv&#038;page=SAP" title="SAP Free White Papers">SAP White Papers</a>&#8221; co-branded website contains literally hundreds of <strong>free offers</strong> which are provided to you on behalf of SAP. </p>
<p>According to our partner <a href="http://www.revresponse.com/join.php?refbrand=saplab-org" title="Make money from compelling FREE Business Content" target="_blank">RevResponse</a>, all publications ate free because &#8220;<em>while subscriptions to all the trade publications on the TradePub.com web sites are free, some publications offer a limited &#8220;free trial period&#8221; followed by a solicitation for a paid subscription should the reader wish to continue receiving the magazine. TradePub.com never invoices for subscriptions</em>&#8220;.</p>
<p>Let me highlight a couple of included white papers:</p>
<p><a href="http://saplab-org.tradepub.com/c/pubRD.mpl?sr=hm&#038;_t=hm:&#038;pc=w_sapx181" title="Better Answers Through Better Questions"><img src="http://img.tradepub.com/free/w_sapx181/images/w_sapx181c2.gif"></a> <a href="http://saplab-org.tradepub.com/c/pubRD.mpl?sr=hm&#038;_t=hm:&#038;pc=w_sapx181" title="Better Answers Through Better Questions">Better Answers Through Better Questions</a> &#8211; Learn what differentiates SAP BusinessObjects Explorer from BI tools you may be using now&#8230;.</p>
<p><a href="http://saplab-org.tradepub.com/c/pubRD.mpl?sr=adv&#038;_t=adv:SAP&#038;pc=w_sapx156" title="The Impact of Technology on Cost in Business Process Outsourcing"><img src="http://img.tradepub.com/free/w_sapx156/images/w_sapx156c2.gif"></a> <a href="http://saplab-org.tradepub.com/c/pubRD.mpl?sr=adv&#038;_t=adv:SAP&#038;pc=w_sapx156" title="The Impact of Technology on Cost in Business Process Outsourcing">The Impact of Technology on Cost in Business Process Outsourcing</a> &#8211; Gain insight into the true cost of business process outsourcing (BPO)..</p>
<p>&#8230; among many others. Go on, start browsing and give it a try by <a href="http://saplab-org.tradepub.com/?pt=adv&#038;page=SAP" title="SAP Free White Papers">clicking here</a> or click the option on the top navigation bar named &#8220;<a href="http://saplab-org.tradepub.com/?pt=adv&#038;page=SAP" title="SAP Free White Papers">SAP WHITE PAPERS</a>&#8220;. <strong>Hope you like this initiative</strong>. </p>
<p>&nbsp;</pb</p>


	
	
	
					<li>
				<a href="http://saplab.org/2009/03/sap-netweaver-bpm-white-paper/" rel="bookmark">
													
				SAP Netweaver BPM White Paper</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/01/best-sap-content-of-2009/" rel="bookmark">
													
				Best SAP Content of 2009</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/2010/09/sap-free-white-papers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Send a System Message to another SAP User</title>
		<link>http://saplab.org/2010/07/how-to-send-a-system-message-to-another-sap-user/</link>
		<comments>http://saplab.org/2010/07/how-to-send-a-system-message-to-another-sap-user/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 14:06:58 +0000</pubDate>
		<dc:creator>Antonio Caldas</dc:creator>
				<category><![CDATA[ABAP]]></category>
		<category><![CDATA[Beginners]]></category>
		<category><![CDATA[Great SAP Tips]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[System Tools]]></category>
		<category><![CDATA[Basis]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Function Module]]></category>
		<category><![CDATA[SE37]]></category>
		<category><![CDATA[TCodes]]></category>

		<guid isPermaLink="false">http://saplab.org/?p=1738</guid>
		<description><![CDATA[Imagine that you&#8217;re working configuring a certain SAP module, touching several tables and configuration spots. Sometimes it might happen that someone else is maintaining the same table that you need access. This standard Function Module could be useful in these cases, since you might not know an alternative way to contact the user locking the [...]
	
	
	
					<li>
				<a href="http://saplab.org/2009/03/how-to-do-a-system-trace/" rel="bookmark">
													
				How To Do A System Trace</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/03/tip-overide-lack-of-authorization-on-a-transaction-code/" rel="bookmark">
													
				TIP: Overide Lack of Authorization on a Transaction Code</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2009/03/single-sign-on-sap-oss-user/" rel="bookmark">
													
				Single Sign-On with your SAP OSS User</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%252F07%252Fhow-to-send-a-system-message-to-another-sap-user%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22How%20to%20Send%20a%20System%20Message%20to%20another%20SAP%20User%22%20%7D);"></div>
<p>Imagine that you&#8217;re working configuring a certain SAP module, touching several tables and configuration spots. Sometimes it might happen that someone else is maintaining the same table that you need access. This standard Function Module could be useful in these cases, since you might not know an alternative way to contact the user locking the table or other SAP object. Since the system will display who is locking the table, you will know for whom to send the message.</p>
<p>Here&#8217;s how it goes.</p>
<h2>Trying to access the table</h2>
<p>When trying to maintain a certain table, the user will receive the following warning:</p>
<p style="text-align: center;"><img class="aligncenter" title="How to Send a System Message to another SAP User" src="http://saplab.org/wp-content/images/sap-system-message01.jpg" alt="" /></p>
<h2>Sending a system message using a standard SAP function module</h2>
<p>Once you&#8217;ve identified the user, access SE37 &#8211; assuming you have permission! In SE37 call SAP standard function module <strong>TH_POPUP</strong>.</p>
<p style="text-align: center;"><img class="aligncenter" title="How to Send a System Message to another SAP User" src="http://saplab.org/wp-content/images/sap-system-message02.jpg" alt="" /></p>
<p>Fill in the following input parameters:</p>
<p>- CLIENT: the system client on which you&#8217;re working on. If you don&#8217;t know this, take a look at the lower right status bar;<br />
- USER: the user for which you want the message to be delivered;<br />
- MESSAGE: the text message you want to deliver to the user;<br />
- MESSAGE_LEN: allows you to define a message length. Leave it empty;<br />
- CUT_BLANKS: allows you to specify if you want to trim existing spaces. Leave it empty.</p>
<p>To submit the message just hit <strong>&#8220;Execute (F8)&#8221;</strong></p>
<h2>What the user receives</h2>
<p>When you click on &#8220;Execute (F8)&#8221;, the destination user receives the following message as a pop-up:</p>
<p style="text-align: center;"><img class="aligncenter" title="How to Send a System Message to another SAP User" src="http://saplab.org/wp-content/images/sap-system-message03.jpg" alt="" /></p>
<p>This is just a simple system tool that can help you in a day to day basis, working with SAP.</p>


	
	
	
					<li>
				<a href="http://saplab.org/2009/03/how-to-do-a-system-trace/" rel="bookmark">
													
				How To Do A System Trace</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2010/03/tip-overide-lack-of-authorization-on-a-transaction-code/" rel="bookmark">
													
				TIP: Overide Lack of Authorization on a Transaction Code</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2009/03/single-sign-on-sap-oss-user/" rel="bookmark">
													
				Single Sign-On with your SAP OSS User</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://saplab.org/2010/07/how-to-send-a-system-message-to-another-sap-user/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Keypoints if you want to be a SAP Consultant</title>
		<link>http://saplab.org/2010/07/5-keypoints-if-you-want-to-be-a-sap-consultant/</link>
		<comments>http://saplab.org/2010/07/5-keypoints-if-you-want-to-be-a-sap-consultant/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 15:42:22 +0000</pubDate>
		<dc:creator>Antonio Caldas</dc:creator>
				<category><![CDATA[Beginners]]></category>
		<category><![CDATA[Great SAP Tips]]></category>
		<category><![CDATA[SAP Career]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Career]]></category>
		<category><![CDATA[skills]]></category>

		<guid isPermaLink="false">http://saplab.org/?p=1400</guid>
		<description><![CDATA[Many opinions have been written about working with SAP systems and, specifically, assuming yourself as an SAP expert or Consultant. If you&#8217;ve been working with SAP or envolved in other IT based Projects, for sure that you will have your own opinion and insights on this matter. In this post, I will share my own [...]
	
	
	
					<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/2009/10/15-sap-frequently-asked-questions-faq/" rel="bookmark">
													
				15 SAP Frequently Asked Questions (FAQ)</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%252F07%252F5-keypoints-if-you-want-to-be-a-sap-consultant%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%225%20Keypoints%20if%20you%20want%20to%20be%20a%20SAP%20Consultant%22%20%7D);"></div>
<p>Many opinions have been written about working with SAP systems and, specifically, assuming yourself as an SAP expert or Consultant. If you&#8217;ve been working with SAP or envolved in other IT based Projects, for sure that you will have your own opinion and insights on this matter. In this post, I will share my own experience and 5 key points which I find of most importance for anyone who wants to prevail as a successful and long-lasting SAP consultant, advisor, expert, working as a permanent employee for a Company or as a Freelancer.</p>
<h2>1. Choose your niche&#8230; wisely</h2>
<p>At the end of the day, your work as a SAP Consultant will be to help and advise your clients, usually big companies, on how to implement highly dependable IT systems who literally help improve and run their businesses. I&#8217;d say that choosing your niche will depend on 2 distict factores: <strong>your background and opportunity</strong>. If you&#8217;re coming from a technical, computer engineering or networking background, SAP security and Basis can be a good area to bet on. This is a cross area to any SAP solution. On the other hand, if you&#8217;re coming from a business or even law degree, you can try <a href="http://saplab.org/category/fico/" title="SAP FI/CO">SAP FI (Finantial Accounting), CO (Controlling)</a> or even <a href="http://saplab.org/category/logistics/" title="SAP Logistics">LO (Logistics General)</a>. There are several <a href="http://saplab.org/2009/03/sap-application-areas/" title="SAP Application Areas">SAP Applications Areas</a> which might be interesting, according to your profile and expectations. Just remember that as you grow in your SAP career, more and more you will be facing the client and acting as an advisor. The client might even depend on your judgement to choose which way to go or which solution to aquire. Besides having a good domain over the solution or industry you&#8217;re in, you must also be a good communicator and easy going with people.</p>
<h2>2. Niche, not Narrow</h2>
<p>Whether you work for a big consultancy firm, a medium size company or if you&#8217;re an SAP freelancer, odds are that you evolve and grow in a particular <a href="http://saplab.org/2009/03/sap-application-areas/" title="SAP Application Areas">SAP Application Area</a>. Perhaps you might even become an expert in a specific SAP Application Area within a particular industry. In my opinion, it&#8217;s ok to become a subject matter expert in your area of expertise. But it is crucial to keep expanding your knowledge and being able to look at the global picture. This means you should accompany SAP&#8217;s evolution in your area of expertise and try to be knowledgable about the connection of that area with other SAP subjects or even other suppliers. Remember: <strong>focus on your area but keep an open mind and interest at all times</strong>.</p>
<h2>3. Money or evolution?</h2>
<p>My opinion is that you should bet on less profitable but cutting edge projects that give you space to get your hands dirty and get paid experience. This is particulary important if you just turned a SAP freelancer. Of course at this point you have a great deal of knowledge and experience, but being a freelancer means that you&#8217;ll have to perform twice as more than a &#8220;regular&#8221; SAP consultant. So if you can choose between a solid project which gives you room to learn more, do it, even if the pay isn&#8217;t as much as other projects which aren&#8217;t big challenges to you.</p>
<h2>4. One percent genious, ninety-nine percent perspiration</h2>
<p>Recruiters usually say entering the SAP world is a very good learning experience and school for ambitioning to be a good professional, programmer or project manager for IT projects. Since SAP is so broad in it&#8217;s application areas and each one, by itself, is also such a big world, it&#8217;s natural that when we get used to working to SAP, we&#8217;ve travelled a step further. The important point to take home is that not only geniuses prevail. <strong>You will need to work harder though, being able to run the extra mile.</strong></p>
<h2>5. SAP vs IT</h2>
<p>It is really important to understand until what extent we&#8217;re dealing with IT details and what relates to SAP and the client organization, business processes and business model. In fact, an SAP project implementation is not alone an IT Project. Of course there are several technological components, moreover with the maturation of <a href="http://saplab.org/category/netweaver/" title="SAP Netweaver">Netweaver</a>, but it is important to note that an SAP project is an organizational project, which impacts all levels of a company. It is crucial to have a clear commitment from every person involved, starting with the CEO, down to the managers and all the way to the key-users.</p>
<p>A SAP Consultant is someone who has the ability to speak the functional language in his area of expertise (e.g. <a href="http://saplab.org/category/fico/" title="SAP FI/CO">FI/CO</a>, <a href="http://saplab.org/category/hcmhr/" title="SAP HCM">HCM</a>, MM, etc.). At the same time, he has to understand clearly how the company works, what is the business model, what are the client&#8217;s requirements, what does the SAP standard module cover, what can be extended and what can be done custom built (identifying the gaps). In parallel, it&#8217;s a plus if the SAP Consultant is able to get inside the system, not only knowing how every piece connects but also how to create what&#8217;s necessary to meet his client&#8217;s needs. For this reason, it is always a good idea to start your career with SAP by learning <a href="http://saplab.org/category/abap/" title="ABAP">ABAP</a>. </p>
<p>I strongly recommend you to take a look at Jon Reed&#8217;s blog &#8220;<a href="http://www.jonerp.com/index.php/" target="_blank" title="Jon Reed's SAP blog">Career answers for SAP Professionals</a>&#8220;. It is a full content, very complete blog about <a href="http://saplab.org/category/sap-career/" title="SAP Careers">SAP careers</a>. Inside you will find several Podcasts and <a href="http://saplab.org/category/webcast/" title="SAPLAB: Webcasts">Webcasts</a>. Jon Reed also updates the blog regularly with SAP Job market information, trends and <a href="http://saplab.org/jobs/" title="SAP Job Offers">job opportunities</a>.</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/2009/10/15-sap-frequently-asked-questions-faq/" rel="bookmark">
													
				15 SAP Frequently Asked Questions (FAQ)</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://saplab.org/2010/07/5-keypoints-if-you-want-to-be-a-sap-consultant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best of SAP Sites Directory</title>
		<link>http://saplab.org/2010/07/best-of-sap-sites-directory/</link>
		<comments>http://saplab.org/2010/07/best-of-sap-sites-directory/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 23:20:45 +0000</pubDate>
		<dc:creator>Antonio Caldas</dc:creator>
				<category><![CDATA[ABAP]]></category>
		<category><![CDATA[Beginners]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[FI/CO]]></category>
		<category><![CDATA[Great SAP Tips]]></category>
		<category><![CDATA[Logistics]]></category>
		<category><![CDATA[Netweaver]]></category>
		<category><![CDATA[PI]]></category>
		<category><![CDATA[PM]]></category>
		<category><![CDATA[PP]]></category>
		<category><![CDATA[SAP Blogs & Resources]]></category>
		<category><![CDATA[SD]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[MM]]></category>
		<category><![CDATA[sap fi]]></category>
		<category><![CDATA[sap pp]]></category>

		<guid isPermaLink="false">http://saplab.org/slv2/?p=1613</guid>
		<description><![CDATA[The Best of SAP Sites Directory is a great resource if you&#8217;re looking for information on SAP, ABAP, Netweaver, FICO, SD, MM, PP, downloads and other SAP tutorials and user guides.  The Best of SAP Sites Directory blog is owned by eddai, who is also blogger and owner of SAP DOCS. The Best of SAP [...]
	
	
	
					<li>
				<a href="http://saplab.org/2009/05/tools-for-sap-portal/" rel="bookmark">
													
				Tools for SAP Portal</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>
				
					<li>
				<a href="http://saplab.org/2009/10/15-sap-frequently-asked-questions-faq/" rel="bookmark">
													
				15 SAP Frequently Asked Questions (FAQ)</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%252F07%252Fbest-of-sap-sites-directory%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Best%20of%20SAP%20Sites%20Directory%22%20%7D);"></div>
<p>The <a title="Best of SAP Sites Directory" href="http://sapdocs.info/have-you-visited-socialsapdocsinfo/" target="_blank">Best of SAP Sites Directory</a> is a great resource if you&#8217;re looking for information on SAP, <a href="http://saplab.org/category/abap/">ABAP</a>, <a title="Netweaver" href="http://saplab.org/category/netweaver/" target="_blank">Netweaver</a>, <a title="FI/CO" href="http://saplab.org/category/fico/" target="_blank">FICO</a>, <a title="SD" href="http://saplab.org/category/sd/" target="_blank">SD</a>, <a title="MM" href="http://saplab.org/tag/mm/" target="_blank">MM</a>, <a title="PP" href="http://saplab.org/category/pp/" target="_blank">PP</a>, <a title="SAP Downloads" href="http://saplab.org/category/downloads/" target="_blank">downloads</a> and other SAP tutorials and user guides.  The <a title="Best of SAP Sites  Directory" href="http://sapdocs.info/have-you-visited-socialsapdocsinfo/" target="_blank">Best of SAP Sites Directory</a> blog is owned by eddai, who is also blogger and owner of <a href="http://sapdocs.info/" target="_blank">SAP DOCS</a>.</p>
<p><a title="Best of SAP Sites Directory" href="http://sapdocs.info/have-you-visited-socialsapdocsinfo/" target="_blank">The Best of SAP Sites Directory</a> is a SAP topics aggregator since it displays headlines from the most popular SAP sites on the internet.</p>
<p>Eddai leaves his welcome message:</p>
<blockquote><p>This site is the dashboard for the latest web-buzz, a single page that  encapsulates up-to-the-minute headlines from the most popular SAP sites  on the internet with a purpose of getting a quick glance on updates over  various categories. The lists will be enhanced in each categories by day. Hope you find this site useful.</p></blockquote>
<h3 style="text-align: center;"><a title="Home" href="http://sapdocs.info/have-you-visited-socialsapdocsinfo/">Click here to enter Best of SAP Sites  Directory</a></h3>


	
	
	
					<li>
				<a href="http://saplab.org/2009/05/tools-for-sap-portal/" rel="bookmark">
													
				Tools for SAP Portal</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>
				
					<li>
				<a href="http://saplab.org/2009/10/15-sap-frequently-asked-questions-faq/" rel="bookmark">
													
				15 SAP Frequently Asked Questions (FAQ)</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://saplab.org/2010/07/best-of-sap-sites-directory/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>SAP HR Online Training with 5000+ Real Time Screen Shot</title>
		<link>http://saplab.org/2010/04/sap-hr-online-training-with-5000-real-time-screen-shot/</link>
		<comments>http://saplab.org/2010/04/sap-hr-online-training-with-5000-real-time-screen-shot/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 10:37:13 +0000</pubDate>
		<dc:creator>Antonio Caldas</dc:creator>
				<category><![CDATA[Beginners]]></category>
		<category><![CDATA[Great SAP Tips]]></category>
		<category><![CDATA[HCM/HR]]></category>
		<category><![CDATA[Downloads]]></category>

		<guid isPermaLink="false">http://saplab.org/?p=1462</guid>
		<description><![CDATA[Hello everybody. I know I have been missing and still owe answers to some of you. But, as I can only imagine, if you work in consultancy as I do, I guess you&#8217;d only wish you could have more time for your hobbies, right? So please bear with me, I promise I will get back [...]
	
	
	
					<li>
				<a href="http://saplab.org/2009/10/ask-an-expert-get-a-free-answer/" rel="bookmark">
													
				Ask an Expert, Get a Free Answer</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%252F04%252Fsap-hr-online-training-with-5000-real-time-screen-shot%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22SAP%20HR%20Online%20Training%20with%205000%2B%20Real%20Time%20Screen%20Shot%22%20%7D);"></div>
<p>Hello everybody. I know I have been missing and still owe answers to some of you. But, as I can only imagine, if you work in consultancy as I do, I guess you&#8217;d only wish you could have more time for your hobbies, right? So please bear with me, I promise I will get back with Part 2 of popular 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;. It&#8217;s being highly requested and I am truly appreciated that this blog it&#8217;s serving good purposes!</p>
<p>This weekend I received an e-mail announcing a new website, namely a Forum, in <a rel="nofollow" href="http://wikinewforum.com/" target="_blank">Wikipedia Newforum</a>. After checking out (I confess I hadn&#8217;t yet heard of it), I thought it was woth a while to spread it in SAPLAB.<br />
<img class="aligncenter size-full wp-image-1232" title="SAP HR Online Training with 5000+ Real Time Screen Shot" src="http://saplab.org/wp-content/uploads/sap-wiki-forum.jpg" alt="SAP HR Online Training with 5000+ Real Time Screen Shot" /><br />
Here&#8217;s what the e-mail publicized:</p>
<blockquote><p><em>Now Totally FREE* SAP HR Online Training with 5000+ Real Time Screen Shots: www.wikinewforum.com</em></p>
<p><em>Other Training Courses + Other SAP Modules FICO, MM, SD, CRM, PP, PM.. @ www.wikinewforum.com</em></p>
<p><em>Special Topics apart from general topics:</em></p>
<p><em>* Payroll &amp; Time Schema&#8217;s<br />
* Payroll &amp; Time PCR&#8217;s (Personal Calculation Rules)<br />
* Rates of Pay<br />
* Factoring/Pro-ration<br />
* Wage type Valuation<br />
* Time Quota&#8217;s &amp; Time Types<br />
* Time Evaluation<br />
* Absence Valuation<br />
* Compensation, Benefits, Performance Appraisal, e-Recruitments<br />
* Employee Self Service (ESS) &amp; Manager Self Service (MSS)<br />
* CATS &#8211; Cross Application Time Sheets<br />
* Integration with FICO &amp; other Modules<br />
* and more and more&#8230;.list will not stop<br />
* Totally End-to-End implementation Process with 5000+ Real Time Screen shots<br />
</em></p></blockquote>
<p>After registering, I browsed around the forum and sub-foruns and from what I read, I think it is a potential resource to use if you&#8217;re in an SAP HCM/HR project implementation. You can start by the &#8220;<a rel="nofollow" href="http://wikinewforum.com/forumdisplay.php?f=17" target="_blank">SAP End-to-End Implementation</a>&#8221; and look into the Free Demo and the existing topics. For sure that we need to think before buying any content, even for just 1$. But, as I said, I think this is a starting off website and forum and in my opinion, it has a good growing potential. It&#8217;s really up to us SAP gurus to push it up <img src='http://saplab.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>What is your opinion on this new resource? Please comment!</p>


	
	
	
					<li>
				<a href="http://saplab.org/2009/10/ask-an-expert-get-a-free-answer/" rel="bookmark">
													
				Ask an Expert, Get a Free Answer</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://saplab.org/2010/04/sap-hr-online-training-with-5000-real-time-screen-shot/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>TIP: Overide Lack of Authorization on a Transaction Code</title>
		<link>http://saplab.org/2010/03/tip-overide-lack-of-authorization-on-a-transaction-code/</link>
		<comments>http://saplab.org/2010/03/tip-overide-lack-of-authorization-on-a-transaction-code/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 15:55:43 +0000</pubDate>
		<dc:creator>Antonio Caldas</dc:creator>
				<category><![CDATA[ABAP]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[Great SAP Tips]]></category>
		<category><![CDATA[System Tools]]></category>
		<category><![CDATA[TCodes]]></category>

		<guid isPermaLink="false">http://saplab.org/?p=1455</guid>
		<description><![CDATA[When you just need to look on a specific transaction and you don&#8217;t have permission? Wait no more, this is a good and quick work-arround: - Go to transaction SE37, display the function module RS_TRANSACTION_TEST and place a break-point after instruction ( CALL &#8216;AUTH_CHECK_TCODE&#8217; ID &#8216;TCODE&#8217; FIELD objectname. ). - Go to transaction SE93, fill [...]
	
	
	
					<li>
				<a href="http://saplab.org/2009/03/sap-abap-transaction-codes/" rel="bookmark">
													
				SAP ABAP Transaction Codes</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2009/03/batch-input-concept/" rel="bookmark">
													
				Batch Input Concept</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%252F03%252Ftip-overide-lack-of-authorization-on-a-transaction-code%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22TIP%3A%20Overide%20Lack%20of%20Authorization%20on%20a%20Transaction%20Code%20%22%20%7D);"></div>
<p>When you just need to look on a specific transaction and you don&#8217;t have permission?<br />
Wait no more, this is a good and quick work-arround:</p>
<p style="text-align: left;">- Go to transaction <strong>SE37</strong>, display the function module <strong>RS_TRANSACTION_TEST</strong> and place a break-point after instruction ( CALL &#8216;AUTH_CHECK_TCODE&#8217; ID &#8216;TCODE&#8217; FIELD objectname. ).</p>
<p style="text-align: left;"><img class="aligncenter size-medium wp-image-1456" title="fm" src="http://saplab.org/wp-content/uploads/2010/03/fm-300x210.jpg" alt="" width="300" height="210" /></p>
<p>- Go to transaction <strong>SE93</strong>, fill the transaction code that you need to execute and press the test Button (F8).</p>
<p>The debug window will pop-up and you will find yourself on the breakpoint that you placed on the function module <strong>RS_TRANSACTION_TEST</strong>. Change the system variable SY-SUBRC to &#8217;0&#8242; and press F8. And then you will find yourself in the transaction that you needed.</p>
<p>Simple and Easy!</p>


	
	
	
					<li>
				<a href="http://saplab.org/2009/03/sap-abap-transaction-codes/" rel="bookmark">
													
				SAP ABAP Transaction Codes</a>
			</li>
				
					<li>
				<a href="http://saplab.org/2009/03/batch-input-concept/" rel="bookmark">
													
				Batch Input Concept</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://saplab.org/2010/03/tip-overide-lack-of-authorization-on-a-transaction-code/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

