<?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"
	>

<channel>
	<title>sapstart</title>
	<atom:link href="http://www.sapstart.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.sapstart.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Mon, 29 Sep 2008 13:56:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>Deactivate password from users</title>
		<link>http://www.sapstart.com/abap/deactivate-password-from-users.html</link>
		<comments>http://www.sapstart.com/abap/deactivate-password-from-users.html#comments</comments>
		<pubDate>Mon, 29 Sep 2008 13:56:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ABAP]]></category>

		<category><![CDATA[Data]]></category>

		<category><![CDATA[System]]></category>

		<category><![CDATA[bp]]></category>

		<category><![CDATA[deactivate]]></category>

		<guid isPermaLink="false">http://www.sapstart.com/?p=35</guid>
		<description><![CDATA[When you have to deactivate the pasword of  a large list of userts, you could use this script. For a smaller set of users you can also use Trx SU10.
First of all you need a list of all users&#8230;

Then you can copy paste all values of BNAME into this report.



REPORT &#160;Z_USERS_DEACTIVATE.


&#160;


TABLES: USR02.


DATA: lv_username TYPE [...]]]></description>
			<content:encoded><![CDATA[<p>When you have to deactivate the pasword of  a large list of userts, you could use this script. For a smaller set of users you can also use Trx SU10.</p>
<p>First of all you need a list of all users&#8230;</p>
<p><a rel="lightbox" href='http://www.sapstart.com/wp-content/deactivated-users1.png'><img src="http://www.sapstart.com/wp-content/deactivated-users1.png" alt="" title="deactivated-users1" width="499" height="161" class="alignnone size-full wp-image-37" /></a></p>
<p>Then you can copy paste all values of BNAME into this report.</p>
<div class="geshi no abap">
<ol>
<li class="li1">
<div class="de1"><span class="kw3">REPORT</span> &nbsp;Z_USERS_DEACTIVATE.</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw4">TABLES</span><span class="sy0">:</span> USR02.</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">DATA</span><span class="sy0">:</span> lv_username <span class="kw4">TYPE</span> BAPIBNAME<span class="sy0">-</span>BAPIBNAME,</div>
</li>
<li class="li1">
<div class="de1">wa_logondata <span class="kw4">TYPE</span> BAPILOGOND,</div>
</li>
<li class="li1">
<div class="de1">wa_logondatax <span class="kw4">TYPE</span> BAPILOGONX,</div>
</li>
<li class="li1">
<div class="de1">lt_return <span class="kw4">TYPE</span> BAPIRET2_T,</div>
</li>
<li class="li1">
<div class="de1">lt_usr02 <span class="kw4">TYPE</span> TABLE OF USR02,</div>
</li>
<li class="li1">
<div class="de1">wa_usr02 <span class="kw4">TYPE</span> USR02.</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="me1">SELECT</span><span class="sy0">-</span>OPTIONS<span class="sy0">:</span> p_usids <span class="kw1">FOR</span> USR02<span class="sy0">-</span>BNAME.</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw3">SELECT</span> <span class="co2">* FROM USR02 INTO TABLE lt_usr02 WHERE BNAME IN p_usids.</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw3">LOOP</span> AT &nbsp;lt_usr02 <span class="kw4">INTO</span> &nbsp;wa_usr02.</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="me1">lv_username</span> <span class="sy0">=</span> wa_usr02<span class="sy0">-</span>BNAME.</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="me1">wa_logondata</span><span class="sy0">-</span>codvn &nbsp;<span class="sy0">=</span> <span class="st0">&#39;X&#39;</span>.</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="me1">wa_logondatax</span><span class="sy0">-</span>codvn <span class="sy0">=</span> <span class="st0">&#39;X&#39;</span>.</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw3">CALL FUNCTION</span> <span class="st0">&#39;BAPI_USER_CHANGE&#39;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw4">EXPORTING</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; username &nbsp; <span class="sy0">=</span> lv_username</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; logondata &nbsp;<span class="sy0">=</span> wa_logondata</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; logondatax <span class="sy0">=</span> wa_logondatax</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw4">TABLES</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; <span class="kw1">return</span> &nbsp; &nbsp; <span class="sy0">=</span> lt_return.</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="me1">DELETE</span> lt_return <span class="kw4">WHERE</span> <span class="kw4">TYPE</span> &lt;&gt; <span class="st0">&#39;E&#39;</span>.</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw1">IF</span> lt_return IS INITIAL.</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw3">WRITE</span><span class="sy0">:</span> <span class="sy0">/</span> <span class="st0">&#39;Deactivated password:&#39;</span> , lv_username .</div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="kw1">ELSE</span>.</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw3">WRITE</span><span class="sy0">:</span> <span class="sy0">/</span> <span class="st0">&#39;ERROR:&#39;</span> , lv_username &nbsp;.</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw1">ENDIF</span>.</div>
</li>
<li class="li1">
<div class="de1"><span class="kw3">ENDLOOP</span>.</div>
</li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.sapstart.com/abap/deactivate-password-from-users.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Creating a BP for each organisational unit</title>
		<link>http://www.sapstart.com/data/creating-a-bp-for-each-organisational-unit.html</link>
		<comments>http://www.sapstart.com/data/creating-a-bp-for-each-organisational-unit.html#comments</comments>
		<pubDate>Fri, 16 May 2008 11:11:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Data]]></category>

		<category><![CDATA[bp]]></category>

		<category><![CDATA[organisational unit]]></category>

		<category><![CDATA[OU]]></category>

		<guid isPermaLink="false">http://www.sapstart.com/?p=21</guid>
		<description><![CDATA[If you want to create a business partner for each organisational unit you must specify this in customising.
After defining this setting, a BP will be created automatically when you create an OU.
You can find the menu in customizing:

In the first item you can define wether you want to create a BP for each organisation unit.

If [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to create a business partner for each organisational unit you must specify this in customising.<br />
After defining this setting, a BP will be created automatically when you create an OU.</p>
<p>You can find the menu in customizing:<br />
<a rel="lightbox" href='http://www.sapstart.com/wp-content/spro.png'><img src="http://www.sapstart.com/wp-content/spro-300x253.png" alt="" title="spro" width="300" height="253" class="alignnone size-medium wp-image-22" /></a></p>
<p>In the first item you can define wether you want to create a BP for each organisation unit.<br />
<a rel="lightbox" href='http://www.sapstart.com/wp-content/setup.png'><img src="http://www.sapstart.com/wp-content/setup-300x228.png" alt="" title="setup" width="300" height="228" class="alignnone size-medium wp-image-23" /></a></p>
<p>If you have already units in you organisational plan, you can use the second item in the menu to synchronise them. You can do this one by one or in bulk.<br />
<a rel="lightbox" href='http://www.sapstart.com/wp-content/sync-repair-start.png'><img src="http://www.sapstart.com/wp-content/sync-repair-start-300x144.png" alt="" title="sync-repair-start" width="300" height="144" class="alignnone size-medium wp-image-24" /></a></p>
<p>When you execute the query you can see all the units in your plan when a status(red/green). For the ones with a red light there is no BP defined. If you select the record and use the &#8220;start repair&#8221; button, a new business partner will be created for that ou.<br />
<a rel="lightbox" href='http://www.sapstart.com/wp-content/sync-repair-detail.png'><img src="http://www.sapstart.com/wp-content/sync-repair-detail-300x36.png" alt="" title="sync-repair-detail" width="300" height="36" class="alignnone size-medium wp-image-25" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sapstart.com/data/creating-a-bp-for-each-organisational-unit.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to empty a table and repopulate it using a locking mechanisme</title>
		<link>http://www.sapstart.com/abap/how-to-empty-a-table-and-repopulate-it-using-a-locking-mechanisme.html</link>
		<comments>http://www.sapstart.com/abap/how-to-empty-a-table-and-repopulate-it-using-a-locking-mechanisme.html#comments</comments>
		<pubDate>Thu, 15 May 2008 10:36:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ABAP]]></category>

		<category><![CDATA[DEQUEUE]]></category>

		<category><![CDATA[ENQUEUE]]></category>

		<guid isPermaLink="false">http://www.sapstart.com/?p=20</guid>
		<description><![CDATA[Sometimes it&#8217;s just easier and more performant to delete all rows from a table and repopulate it.
I used this scenario for a weekly sheduled job to refresh a custom table,containing all the email adresses from our employes. 
In the first step, i populate an internal table with the type of the database table.



LOOP AT INPUT-MT_adusers_CRM-RECORD-ROW [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes it&#8217;s just easier and more performant to delete all rows from a table and repopulate it.</p>
<p>I used this scenario for a weekly sheduled job to refresh a custom table,containing all the email adresses from our employes. </p>
<p>In the first step, i populate an internal table with the type of the database table.</p>
<div class="geshi no abap">
<ol>
<li class="li1">
<div class="de1"><span class="kw3">LOOP</span> AT INPUT<span class="sy0">-</span>MT_adusers_CRM<span class="sy0">-</span>RECORD<span class="sy0">-</span>ROW <span class="kw4">into</span> ls_adusers_data.</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw1">IF</span> ls_adusers_data<span class="sy0">-</span>email CA <span class="st0">&#39;@&#39;</span>.</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; <span class="me1">MOVE</span> sy<span class="sy0">-</span>mandt <span class="kw4">TO</span> wa_admails_data<span class="sy0">-</span>mandt.</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; <span class="me1">MOVE</span> ls_adusers_data<span class="sy0">-</span>userid <span class="kw4">TO</span> wa_admails_data<span class="sy0">-</span>userid.</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; <span class="me1">MOVE</span> ls_adusers_data<span class="sy0">-</span>fullname <span class="kw4">TO</span> wa_admails_data<span class="sy0">-</span>fullname.</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; <span class="me1">MOVE</span> ls_adusers_data<span class="sy0">-</span>email <span class="kw4">TO</span> wa_admails_data<span class="sy0">-</span>email.</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; <span class="kw3">APPEND</span> wa_admails_data <span class="kw4">TO</span> it_admails_data.</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;<span class="kw1">ENDIF</span>.</div>
</li>
<li class="li1">
<div class="de1"><span class="kw3">ENDLOOP</span>.</div>
</li>
</ol>
</div>
<div class="geshi no abap">
<ol>
<li class="li1">
<div class="de1"><span class="co2">*enqueue table</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw3">CALL FUNCTION</span> <span class="st0">&#39;ENQUEUE_E_TABLEE&#39;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw4">EXPORTING</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; mode_rstable <span class="sy0">=</span> <span class="st0">&#39;E&#39;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; tabname <span class="sy0">=</span> <span class="st0">&#39;/G/ADMAILS&#39;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw4">EXCEPTIONS</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; foreign_lock <span class="sy0">=</span> <span class="nu0">1</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; system_failure <span class="sy0">=</span> <span class="nu0">2</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; OTHERS <span class="sy0">=</span> <span class="nu0">3</span>.</div>
</li>
</ol>
</div>
<div class="geshi no abap">
<ol>
<li class="li1">
<div class="de1"><span class="co2">*delete all mails</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; DELETE <span class="kw4">FROM</span> <span class="sy0">/</span>G<span class="sy0">/</span>ADMAILS.</div>
</li>
</ol>
</div>
<div class="geshi no abap">
<ol>
<li class="li1">
<div class="de1"><span class="co2">*insert</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; insert <span class="sy0">/</span>G<span class="sy0">/</span>ADMAILS <span class="kw4">from</span> table it_admails_data.</div>
</li>
</ol>
</div>
<div class="geshi no abap">
<ol>
<li class="li1">
<div class="de1"><span class="co2">*dequeue table</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;<span class="kw3">CALL FUNCTION</span> <span class="st0">&#39;DEQUEUE_E_TABLEE&#39;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;<span class="kw4">EXPORTING</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp;mode_rstable <span class="sy0">=</span> <span class="st0">&#39;E&#39;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp;tabname <span class="sy0">=</span> <span class="st0">&#39;/G/ADMAILS&#39;</span>.</div>
</li>
</ol>
</div>
<div class="geshi no ">
<ol>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.sapstart.com/abap/how-to-empty-a-table-and-repopulate-it-using-a-locking-mechanisme.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>the relation between a business partner and the organisational unit</title>
		<link>http://www.sapstart.com/data/the-relation-between-a-business-partner-and-the-organisational-unit.html</link>
		<comments>http://www.sapstart.com/data/the-relation-between-a-business-partner-and-the-organisational-unit.html#comments</comments>
		<pubDate>Wed, 14 May 2008 12:53:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Data]]></category>

		<category><![CDATA[bp]]></category>

		<category><![CDATA[organisational unit]]></category>

		<category><![CDATA[ppomw]]></category>

		<guid isPermaLink="false">http://www.sapstart.com/?p=18</guid>
		<description><![CDATA[In SAP CRM we made a reflection of company devisions into organisational units. You can define this with transaction PPOMW.
If you want to find out to wich position a BP belongs to, you can query the table HRP1001.

]]></description>
			<content:encoded><![CDATA[<p>In SAP CRM we made a reflection of company devisions into organisational units. You can define this with transaction PPOMW.</p>
<p>If you want to find out to wich position a BP belongs to, you can query the table HRP1001.</p>
<p><a rel="lightbox" href='http://www.sapstart.com/wp-content/hrp1001.png'><img src="http://www.sapstart.com/wp-content/hrp1001-300x274.png" alt="HRP1001" title="hrp1001" width="300" height="274" class="alignnone size-medium wp-image-19"  /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sapstart.com/data/the-relation-between-a-business-partner-and-the-organisational-unit.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to unlock objects in the Integration Builder</title>
		<link>http://www.sapstart.com/xi/how-to-unlock-objects-in-the-integration-builder.html</link>
		<comments>http://www.sapstart.com/xi/how-to-unlock-objects-in-the-integration-builder.html#comments</comments>
		<pubDate>Fri, 09 May 2008 18:26:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[XI]]></category>

		<guid isPermaLink="false">http://www.onlinedogschool.com/?p=14</guid>
		<description><![CDATA[A short reminder of how u can unlock object in XI.&#160;
I had some objects locked in XI when my computer crashed while i was working in the Integration directory.
U can unlock them by going to the following the directory. As you can see it&#39;s a different url for the directory and repository.
Directory: http://server:port/dir/support/public/LockAdminService 
 Repository: [...]]]></description>
			<content:encoded><![CDATA[<p>A short reminder of how u can unlock object in XI.<br />&nbsp;</p>
<p>I had some objects locked in XI when my computer crashed while i was working in the Integration directory.</p>
<p>U can unlock them by going to the following the directory. As you can see it&#39;s a different url for the directory and repository.</p>
<p>Directory:<br /> <strong>http://server:port/dir/support/public/LockAdminService</strong> </p>
<p> Repository:<br /> <strong>http://server:port/rep/support/public/LockAdminService</strong></p>
<p>&nbsp;</p>
<p>A preview of the unlock tool:</p>
<p><img src="http://www.sapstart.com/images/tutorial/XI/8/unlock-xi-objects.gif" alt="How to unlock objects in the Integration Builder" title="How to unlock objects in the Integration Builder" width="700" height="323" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sapstart.com/xi/how-to-unlock-objects-in-the-integration-builder.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Installation of the sapgui 640 client</title>
		<link>http://www.sapstart.com/system/installation-of-the-sapgui-640-client.html</link>
		<comments>http://www.sapstart.com/system/installation-of-the-sapgui-640-client.html#comments</comments>
		<pubDate>Fri, 09 May 2008 18:26:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[System]]></category>

		<guid isPermaLink="false">http://www.onlinedogschool.com/?p=13</guid>
		<description><![CDATA[This article will describe how you can install the sapgui 640 client on a windows machine. &#160;
SAP GUI is an abbreviation for &#34;SAP Graphical User Interface&#34;. 
Before you begin:

Make sure you are logged into your windows computer with administrator rights so u can install software; 
It&#39;s also better to remove any previous installation of the [...]]]></description>
			<content:encoded><![CDATA[<p>This article will describe how you can install the sapgui 640 client on a windows machine. <br />&nbsp;</p>
<p>SAP GUI is an abbreviation for &quot;SAP Graphical User Interface&quot;. </p>
<h5><strong>Before you begin:</strong></h5>
<ul>
<li>Make sure you are logged into your windows computer with administrator rights so u can install software; </li>
<li>It&#39;s also better to remove any previous installation of the sapgui client from your system. This can be done using the&nbsp; &quot;Add/Remove Programs&quot; from the configuration screen;</li>
<li>Check if you have enough diskspace available, between 100-150MB;</li>
<li>If u have to download the installation files use Internet Explorer 5.0 or later.</li>
</ul>
<p>&nbsp;</p>
<h5><strong>Files:&nbsp;</strong></h5>
<p>installation file:&nbsp; <a href="http://service.sap.com/installations" title="http://service.sap.com/installations">http://service.sap.com/installations</a> </p>
<p>patches: <a href="http://service.sap.com/patches/" title="http://service.sap.com/patches/">http://service.sap.com/patches/</a> </p>
<p>&nbsp;</p>
<h5><strong>Installation process:&nbsp;</strong></h5>
<p><img src="http://www.sapstart.com/images/tutorial/system/sapgui640/splash.png" alt="sapgui netweaver 640 splash screen" width="497" height="341" /></p>
<p>&nbsp;</p>
<p><img src="http://www.sapstart.com/images/tutorial/system/sapgui640/step1.png" alt="step1" width="618" height="452" /></p>
<p>&nbsp;</p>
<p><img src="http://www.sapstart.com/images/tutorial/system/sapgui640/step2.png" alt="step 2" width="618" height="452" /></p>
<p>&nbsp;</p>
<p><img src="http://www.sapstart.com/images/tutorial/system/sapgui640/step3.png" alt="step 3" width="618" height="452" /></p>
<table border="0" width="461" height="1153">
<tbody>
<tr align="left" valign="top">
<td>
<p><img src="http://www.sapstart.com/images/tutorial/system/sapgui640/sapgui.png" alt="sapgui" width="210" height="129" /></p>
</td>
<td>SAP GUI</td>
</tr>
<tr align="left" valign="top">
<td>
<p><img src="http://www.sapstart.com/images/tutorial/system/sapgui640/r3-addon.png" alt="r3 addon" width="210" height="176" /></p>
</td>
<td>&nbsp;R/3 Add-on</td>
</tr>
<tr align="left" valign="top">
<td>
<p><img src="http://www.sapstart.com/images/tutorial/system/sapgui640/general-add-on.png" alt="general add-on" width="284" height="144" /></p>
</td>
<td>&nbsp;General Add-on</td>
</tr>
<tr align="left" valign="top">
<td>
<p><img src="http://www.sapstart.com/images/tutorial/system/sapgui640/development-tools.png" alt="development tools" width="231" height="128" /></p>
</td>
<td>&nbsp;Development Tools</td>
</tr>
<tr align="left" valign="top">
<td>
<p><img src="http://www.sapstart.com/images/tutorial/system/sapgui640/legacy-components.png" alt="legacy components" width="199" height="62" /></p>
</td>
<td>&nbsp;Legacy components</td>
</tr>
<tr align="left" valign="top">
<td>
<p><img src="http://www.sapstart.com/images/tutorial/system/sapgui640/bw-add-on.png" alt="BW add-on" width="250" height="79" /></p>
</td>
<td>&nbsp;BW Add-on</td>
</tr>
<tr align="left" valign="top">
<td>
<p><img src="http://www.sapstart.com/images/tutorial/system/sapgui640/bi-add-on.png" alt="Bi add-on" width="263" height="63" /></p>
</td>
<td>&nbsp;BI Add-on</td>
</tr>
<tr align="left" valign="top">
<td>
<p><img src="http://www.sapstart.com/images/tutorial/system/sapgui640/crm-add-on.png" alt="CRM add-on" width="204" height="52" /></p>
</td>
<td>&nbsp;CRM Add-on</td>
</tr>
<tr align="left" valign="top">
<td>
<p><img src="http://www.sapstart.com/images/tutorial/system/sapgui640/kw-add-on.png" alt="KW add-on" width="207" height="109" /></p>
</td>
<td>&nbsp;KW Add-on</td>
</tr>
<tr align="left" valign="top">
<td>
<p><img src="http://www.sapstart.com/images/tutorial/system/sapgui640/scm-add-on.png" alt="SCM add-on" width="197" height="50" /></p>
</td>
<td>&nbsp;SCM Add-on</td>
</tr>
<tr align="left" valign="top">
<td>
<p><img src="http://www.sapstart.com/images/tutorial/system/sapgui640/sem-add-on.png" alt="SEM add-on" width="203" height="80" /></p>
</td>
<td>&nbsp;SEM Add-on</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><img src="http://www.sapstart.com/images/tutorial/system/sapgui640/installing.png" alt="Installing sapgui" width="618" height="452" /></p>
<p>&nbsp;</p>
<p><img src="http://www.sapstart.com/images/tutorial/system/sapgui640/completed.png" alt="Completed installation" width="618" height="452" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sapstart.com/system/installation-of-the-sapgui-640-client.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>SAP GUI tips ands tricks</title>
		<link>http://www.sapstart.com/system/sap-gui-tips-ands-tricks.html</link>
		<comments>http://www.sapstart.com/system/sap-gui-tips-ands-tricks.html#comments</comments>
		<pubDate>Fri, 09 May 2008 18:25:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[System]]></category>

		<guid isPermaLink="false">http://www.onlinedogschool.com/?p=12</guid>
		<description><![CDATA[Remove the annoying click sound and copy the server logon to other computers.
&#160;
Sound
When i first logged into SAP GUI is was really annoyed by the click-click-click sound. You can disable it by toggling the &#8220;audio - off&#8221; option in the visual design.&#160; You can access this screen by choosing following menuitem.
&#160;

&#160;
&#160;
Logon file
In your sap logon [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">Remove the annoying click sound and copy the server logon to other computers.</p>
<p class="MsoNormal">&nbsp;</p>
<p class="MsoNormal"><strong><span>Sound</span></strong></p>
<p class="MsoNormal"><span>When i first logged into SAP GUI is was really annoyed by the click-click-click sound. You can disable it by toggling the &ldquo;audio - off&rdquo; option in the visual design.<span>&nbsp; </span>You can access this screen by choosing following menuitem.</span></p>
<p class="MsoNormal"><span>&nbsp;</span></p>
<p class="MsoNormal"><span><!--[if gte vml 1]><v:shapetype  id="_x0000_t75" coordsize="21600,21600" o:spt="75" o:preferrelative="t"  path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">  <v:stroke joinstyle="miter"/>  <v:formulas>   <v:f eqn="if lineDrawn pixelLineWidth 0"/>   <v:f eqn="sum @0 1 0"/>   <v:f eqn="sum 0 0 @1"/>   <v:f eqn="prod @2 1 2"/>   <v:f eqn="prod @3 21600 pixelWidth"/>   <v:f eqn="prod @3 21600 pixelHeight"/>   <v:f eqn="sum @0 0 1"/>   <v:f eqn="prod @6 1 2"/>   <v:f eqn="prod @7 21600 pixelWidth"/>   <v:f eqn="sum @8 21600 0"/>   <v:f eqn="prod @7 21600 pixelHeight"/>   <v:f eqn="sum @10 21600 0"/>  </v:formulas>  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>  <o:lock v:ext="edit" aspectratio="t"/> </v:shapetype><v:shape id="_x0000_i1025" type="#_x0000_t75" style='width:651.75pt;  height:94.5pt'>  <v:imagedata src="file:///C:\DOCUME~1\rc01501\LOCALS~1\Temp\msohtml1\01\clip_image001.jpg"   o:title="new-visual-design"/> </v:shape><![endif]--><!--[if !vml]--><img src="http://www.sapstart.com/images/tutorial/system/saptips/new-visual-design.jpg" alt="new visual design" title="new visual design" width="869" height="126" /><!--[endif]--></span></p>
<p class="MsoNormal"><span>&nbsp;</span></p>
<p class="MsoNormal"><span>&nbsp;</span></p>
<p class="MsoNormal"><strong><span>Logon file</span></strong></p>
<p class="MsoNormal"><span>In your sap logon screen you can have a lot of servers defined. If you want to replicate them to another client you just have to copy the following .ini file.</span></p>
<p class="MsoNormal"><span>&nbsp;</span></p>
<p class="MsoNormal"><em><span>C:\WINDOWS\saplogon.ini</span></em></p>
<p class="MsoNormal"><img src="http://www.sapstart.com/images/tutorial/system/saptips/saplogonbox.jpg" alt=" " width="444" height="310" /> </p>
<p class="MsoNormal"><span>&nbsp;</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sapstart.com/system/sap-gui-tips-ands-tricks.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Monitoring work processes</title>
		<link>http://www.sapstart.com/system/monitoring-work-processes.html</link>
		<comments>http://www.sapstart.com/system/monitoring-work-processes.html#comments</comments>
		<pubDate>Fri, 09 May 2008 18:25:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[System]]></category>

		<guid isPermaLink="false">http://www.onlinedogschool.com/?p=11</guid>
		<description><![CDATA[In this article we are going to cover Work processes in more detail.
&#160;
Work processes are unix tasks that can be identified by using following unix command.
&#160;ps -ef&#124;grep dw
There are 5 type of processes and 4 types of status :&#160;
Type&#39;s&#160;



DIA&#160;
&#160;Dialog
Interactive dialogs&#160;


&#160;BTC
&#160;Batch
&#160;Background tasks


&#160;UPD
&#160;Update
&#160;Database updates (critical)


&#160;UP2
UPDATE 
&#160; Database updates(non-critical)


&#160;ENQ
&#160;Enqueue
&#160;locking/releasing SAP objects


&#160;SPO
Spools&#160;
&#160;Data formatting and printer spools



Status



Running&#160;
&#160;executing a request


&#160;Waiting
&#160;idle


&#160;Hold
a WP [...]]]></description>
			<content:encoded><![CDATA[<p>In this article we are going to cover Work processes in more detail.</p>
<p>&nbsp;</p>
<p>Work processes are unix tasks that can be identified by using following unix command.</p>
<p>&nbsp;ps -ef|grep dw</p>
<p>There are 5 type of processes and 4 types of status :&nbsp;</p>
<p><strong>Type&#39;s&nbsp;</strong></p>
<table border="0">
<tbody>
<tr>
<td>DIA&nbsp;</td>
<td>&nbsp;Dialog</td>
<td>Interactive dialogs&nbsp;</td>
</tr>
<tr>
<td>&nbsp;BTC</td>
<td>&nbsp;Batch</td>
<td>&nbsp;Background tasks</td>
</tr>
<tr>
<td>&nbsp;UPD</td>
<td>&nbsp;Update</td>
<td>&nbsp;Database updates (critical)</td>
</tr>
<tr>
<td>&nbsp;UP2</td>
<td>UPDATE </td>
<td>&nbsp; Database updates(non-critical)</td>
</tr>
<tr>
<td>&nbsp;ENQ</td>
<td>&nbsp;Enqueue</td>
<td>&nbsp;locking/releasing SAP objects</td>
</tr>
<tr>
<td>&nbsp;SPO</td>
<td>Spools&nbsp;</td>
<td>&nbsp;Data formatting and printer spools</td>
</tr>
</tbody>
</table>
<p><strong>Status</strong><br />
<table border="0">
<tbody>
<tr>
<td>Running&nbsp;</td>
<td>&nbsp;executing a request</td>
</tr>
<tr>
<td>&nbsp;Waiting</td>
<td>&nbsp;idle</td>
</tr>
<tr>
<td>&nbsp;Hold</td>
<td>a WP can only serve a single user. If there are many work processes on &quot;hold&quot; then the system performance will suffer </td>
</tr>
<tr>
<td>&nbsp;Ended</td>
<td>aborted </td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>Transactions SM50&nbsp; gives a process overview for a particular application* server. If you want view the processes of another server go to SM51 and choose the server u want.</p>
<p><img src="http://www.sapstart.com/images/tutorial/system/workprocesses/sm50.png" alt="work processes with sm50" width="900" height="535" /></p>
<p>And if u would like to see all the processes running accros your systems (inlcuding all application servers) use the SM66 Global Work process overview.</p>
<p>&nbsp;</p>
<p>&nbsp;* SAP uses the generic term <em class="Emphasis">application server</em> to define a computer that receives connections from SAP clients, but the actual connections are managed by SAP dialog servers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sapstart.com/system/monitoring-work-processes.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Compare data between environments</title>
		<link>http://www.sapstart.com/data/compare-data-between-environments.html</link>
		<comments>http://www.sapstart.com/data/compare-data-between-environments.html#comments</comments>
		<pubDate>Fri, 09 May 2008 18:24:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Data]]></category>

		<guid isPermaLink="false">http://www.onlinedogschool.com/?p=10</guid>
		<description><![CDATA[ This article explains how u can compare data between clients (mandants) and how u can synchronise the data.
&#160;
You should log into the target system. 
If u want to transfer data from system 200 to system 100&#160; you should login into system 100.
&#160;
You can achieve this in transaction sm30 &#8220;Maintain table views&#8221;.
After u choose the [...]]]></description>
			<content:encoded><![CDATA[<p> <span>This article explains how u can compare data between clients (mandants) and how u can synchronise the data.</span></p>
<p>&nbsp;</p>
<p class="MsoNormal"><span>You should log into the <strong>target</strong> system. </span></p>
<p class="MsoNormal"><span>If u want to transfer data from system 200 to system 100<span>&nbsp; </span>you should login into system 100.</span></p>
<p class="MsoNormal"><span>&nbsp;</span></p>
<p class="MsoNormal"><span>You can achieve this in transaction sm30 &ldquo;Maintain table views&rdquo;.</span></p>
<p class="MsoNormal"><span>After u choose the table u wanted to synchronise you choose &ldquo;Utilities&rdquo; &ndash; &ldquo;Comparison&rdquo;, if u are in &ldquo;edit mode&rdquo; you have<span>&nbsp; </span>&ldquo;Utilities&rdquo; &ndash; &ldquo;Adjustments&rdquo;,</span></p>
<p class="MsoNormal"><span>&nbsp;</span></p>
<p class="MsoNormal"><span><!--[if gte vml 1]><v:shapetype  id="_x0000_t75" coordsize="21600,21600" o:spt="75" o:preferrelative="t"  path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">  <v:stroke joinstyle="miter"/>  <v:formulas>   <v:f eqn="if lineDrawn pixelLineWidth 0"/>   <v:f eqn="sum @0 1 0"/>   <v:f eqn="sum 0 0 @1"/>   <v:f eqn="prod @2 1 2"/>   <v:f eqn="prod @3 21600 pixelWidth"/>   <v:f eqn="prod @3 21600 pixelHeight"/>   <v:f eqn="sum @0 0 1"/>   <v:f eqn="prod @6 1 2"/>   <v:f eqn="prod @7 21600 pixelWidth"/>   <v:f eqn="sum @8 21600 0"/>   <v:f eqn="prod @7 21600 pixelHeight"/>   <v:f eqn="sum @10 21600 0"/>  </v:formulas>  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>  <o:lock v:ext="edit" aspectratio="t"/> </v:shapetype><v:shape id="_x0000_i1025" type="#_x0000_t75" style='width:310.5pt;  height:98.25pt'>  <v:imagedata src="file:///C:\DOCUME~1\rc01501\LOCALS~1\Temp\msohtml1\01\clip_image001.jpg"   o:title="enter-r3-connection"/> </v:shape><![endif]--><!--[if !vml]--><img src="http://www.sapstart.com/images/tutorial/data/comparedatabetweenenvironments/enter-r3-connection.jpg" alt="enter r3 connection" title="nter r3 connection" width="413" height="131" /><!--[endif]--></span></p>
<p class="MsoNormal"><span>After login into the source system you can see the data.</span></p>
<p class="MsoNormal"><span>What&rsquo;s important about this is the collor and the code. You can find more information in the legend.</span></p>
<p class="MsoNormal"><span><!--[if gte vml 1]><v:shape  id="_x0000_i1026" type="#_x0000_t75" style='width:438.75pt;height:210.75pt'>  <v:imagedata src="file:///C:\DOCUME~1\rc01501\LOCALS~1\Temp\msohtml1\01\clip_image002.jpg"   o:title="legend-comparison-result"/> </v:shape><![endif]--><!--[if !vml]--><img src="http://www.sapstart.com/images/tutorial/data/comparedatabetweenenvironments/legend-comparison-result.jpg" alt="legend comparison result" title="legend comparison result" width="585" height="281" /><!--[endif]--></span></p>
<p class="MsoNormal"><span>&nbsp;</span></p>
<p class="MsoNormal"><strong><span>example</span></strong></p>
<p class="MsoNormal"><span>If you changed the data from a record in a mandant the record will be filled with a yellow background collor.<span>&nbsp; </span>If it already exists in the logon/target system it will have a repectivily orange/green background collor. Infront of every record you can find more information on the data with the code value. </span></p>
<p class="MsoNormal"><span>To synchronise the&nbsp; date, just select the records and click the &ldquo;adjust&rdquo; button.</span></p>
<p class="MsoNormal"><span>&nbsp;</span></p>
<p class="MsoNormal"><span>In the following screen you can navigate trough your data and delete/copy/update it.</span></p>
<p class="MsoNormal"><span><!--[if gte vml 1]><v:shape  id="_x0000_i1027" type="#_x0000_t75" style='width:333.75pt;height:20.25pt'>  <v:imagedata src="file:///C:\DOCUME~1\rc01501\LOCALS~1\Temp\msohtml1\01\clip_image003.jpg"   o:title="adjust-toolbar"/> </v:shape><![endif]--><!--[if !vml]--><img src="http://www.sapstart.com/images/tutorial/data/comparedatabetweenenvironments/adjust-toolbar.jpg" alt="adjust toolbar" title="adjust toolbar" width="445" height="27" /><!--[endif]--></span></p>
<p class="MsoNormal"><span>&nbsp;</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sapstart.com/data/compare-data-between-environments.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>create a report using a group by query in sql</title>
		<link>http://www.sapstart.com/abap/create-a-report-using-a-group-by-query-in-sql.html</link>
		<comments>http://www.sapstart.com/abap/create-a-report-using-a-group-by-query-in-sql.html#comments</comments>
		<pubDate>Fri, 09 May 2008 18:21:37 +0000</pubDate>
		<dc:creator>aRo</dc:creator>
		
		<category><![CDATA[ABAP]]></category>

		<guid isPermaLink="false">http://www.onlinedogschool.com/?p=9</guid>
		<description><![CDATA[To make sure we have the right syntax in our WHERE variable we create it as a reference to a data table field and make it obligatory. 
We will group our results using a group by function and print them as plain text on our screen.



&#160;parameters: p_dat like SCMG_T_CASE_ATTR-CREATE_TIME obligatory.


&#160; &#160; &#160; &#160; &#160; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>To make sure we have the right syntax in our WHERE variable we create it as a reference to a data table field and make it obligatory. </p>
<p>We will group our results using a group by function and print them as plain text on our screen.</p>
<div class="geshi no abap">
<ol>
<li class="li1">
<div class="de1">&nbsp;<span class="kw2">parameters</span><span class="sy0">:</span> p_dat <span class="kw4">like</span> SCMG_T_CASE_ATTR<span class="sy0">-</span>CREATE_TIME obligatory.</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">TYPES</span><span class="sy0">:</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="kw4">BEGIN OF</span> mytext,</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;PRODUCT &nbsp; &nbsp; <span class="kw4">TYPE</span> SCMG_T_CASE_ATTR<span class="sy0">-</span>CASE_TYPE,</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TOTAL &nbsp;<span class="kw4">TYPE</span> I,</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="kw4">END OF</span> mytext.</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">TYPES</span> mytab <span class="kw4">TYPE</span> STANDARD TABLE OF mytext WITH <span class="kw1">DEFAULT</span> KEY.</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">DATA</span> text <span class="kw4">TYPE</span> mytext.</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">DATA</span> itab <span class="kw4">TYPE</span> mytab.</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw3">select</span> &nbsp;CASE_TYPE count<span class="br0">&#40;</span><span class="co2">*)</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="kw4">from</span> <span class="br0">&#40;</span> SCMG_T_CASE_ATTR as a INNER JOIN CRMD_CMG_CASE_AT as b ON &nbsp;a~CASE_GUID &nbsp;<span class="sy0">=</span> &nbsp;b~CASE_GUID <span class="br0">&#41;</span> <span class="kw4">INTO</span> &nbsp;text <span class="kw4">WHERE</span> &nbsp;CREATE_TIME <span class="sy0">&amp;</span>gt;<span class="sy0">=</span> p_dat GROUP BY &nbsp;CASE_TYPE <span class="kw4">ORDER BY</span> CASE_TYPE.</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="kw3">APPEND</span> text <span class="kw4">to</span> itab.</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw3">ENDSELECT</span>.</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw3">WRITE</span><span class="sy0">:</span> <span class="sy0">/</span> <span class="st0">&#39;product&#39;</span>,<span class="st0">&#39;Total&#39;</span>.</div>
</li>
<li class="li1">
<div class="de1"><span class="kw3">LOOP</span> AT itab <span class="kw4">INTO</span> text.</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw3">WRITE</span><span class="sy0">:</span> <span class="sy0">/</span> text<span class="sy0">-</span>product, text<span class="sy0">-</span>totaal.</div>
</li>
<li class="li1">
<div class="de1"><span class="kw3">ENDLOOP</span>.</div>
</li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.sapstart.com/abap/create-a-report-using-a-group-by-query-in-sql.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
