<?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>BWFreak</title>
	<atom:link href="http://yangchuang.com/wp22/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://yangchuang.com/wp22</link>
	<description>knowledge gathering on SAP BW</description>
	<lastBuildDate>Wed, 04 Aug 2010 04:43:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>problem with parameter &#8220;I_SYNCHRONOUS&#8221; or &#8220;I_STIMULATE&#8221;</title>
		<link>http://yangchuang.com/wp22/?p=89</link>
		<comments>http://yangchuang.com/wp22/?p=89#comments</comments>
		<pubDate>Wed, 04 Aug 2010 04:31:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BW Admin]]></category>
		<category><![CDATA[BW Unsolved issues]]></category>
		<category><![CDATA[SAP BW]]></category>

		<guid isPermaLink="false">http://yangchuang.com/wp22/?p=89</guid>
		<description><![CDATA[March 16, 2009
Ran process chains from Cronacle (Redwood explorer).
Most of the time, everything&#8217;s fine. Occationally, I got the following errors:
ORA-20800: JCS-02138: problem with parameter &#8220;I_SYNCHRONOUS&#8221;
 ORA-01008: not all variables bound
When it happens, the step fails inside Cronacle.
One possible cause is the job I am using didn&#8217;t set the value of &#8220;I_SYNCHRONOUS&#8221; and &#8220;I_STIMULATE&#8221;.
I Found the value of [...]]]></description>
			<content:encoded><![CDATA[<p>March 16, 2009<br />
Ran process chains from Cronacle (Redwood explorer).<br />
Most of the time, everything&#8217;s fine. Occationally, I got the following errors:</p>
<p>ORA-20800: JCS-02138: problem with parameter &#8220;I_SYNCHRONOUS&#8221;</p>
<p> ORA-01008: not all variables bound</p>
<p>When it happens, the step fails inside Cronacle.</p>
<p>One possible cause is the job I am using didn&#8217;t set the value of &#8220;I_SYNCHRONOUS&#8221; and &#8220;I_STIMULATE&#8221;.</p>
<p>I Found the value of these two variables are &#8220;X&#8221; or &#8221; &#8221; (one space between quotation mark).</p>
<p>As when using</p>
<blockquote><p>select lookup_code from rsi_lookups where LOOKUP_type = &#8216;YES_NO&#8217; and lookup_code = &#8216; &#8216;;</p></blockquote>
<p>I got one record.</p>
<p>If using</p>
<blockquote><p>select lookup_code from rsi_lookups where LOOKUP_type = &#8216;YES_NO&#8217; and lookup_code = null;</p></blockquote>
<p>I got 0 record.</p>
<p>Therefore, I added the two parameters with value &#8220;empty space&#8221; in all BW job chains which trigger process chain load.</p>
<p>                                        ,&#8221;I_SYNCHRONOUS&#8221;=&gt;&#8217; &#8216;<br />
                                        ,&#8221;I_SIMULATE&#8221;=&gt;&#8217; &#8216;</p>
<p>Update on Sept 2009: </p>
<p>The problem was gone for several months then came back. It&#8217;s gone again after restart Cronacle. Then back again in 2 weeks.</p>
<p>A oracle bug 5254759 was found related to variable not bound. It might be the cause. Solution given by Oracle:</p>
<p>a) Disable literal replacement (use cursor_sharing=exact)</p>
<p>OR</p>
<p>b) Disable parallelism for this query (set degree of parallelism to 1)</p>
<p>OR</p>
<p>c) Apply <a target="new" href="http://updates.oracle.com/ARULink/PatchDetails/process_form?patch_num=5254759">Patch 5254759</a><br />
Update on 2010: This issue was fixed after the Oracle upgrade.</p>
]]></content:encoded>
			<wfw:commentRss>http://yangchuang.com/wp22/?feed=rss2&amp;p=89</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No resources, immed. processing not possible</title>
		<link>http://yangchuang.com/wp22/?p=170</link>
		<comments>http://yangchuang.com/wp22/?p=170#comments</comments>
		<pubDate>Tue, 15 Jun 2010 11:58:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BW Admin]]></category>
		<category><![CDATA[SAP BW]]></category>

		<guid isPermaLink="false">http://yangchuang.com/wp22/?p=170</guid>
		<description><![CDATA[BW loading error due to IDoc not available.
The error can be found by checking we02 on source system:
No resources, immed. processing not possible: Too few free dialog work processes
To resolve:
- From BW side, turn the load status to red, do what should be done when load fails, e.g. reschedule the load with proper setting, or [...]]]></description>
			<content:encoded><![CDATA[<p>BW loading error due to IDoc not available.<br />
The error can be found by checking we02 on source system:</p>
<blockquote><p>No resources, immed. processing not possible: Too few free dialog work processes</p></blockquote>
<p>To resolve:<br />
- From BW side, turn the load status to red, do what should be done when load fails, e.g. reschedule the load with proper setting, or not reschedule it at all if some other loading processes already took care of the load.<br />
Or<br />
- Make sure the BW load is still valid, then run report RBDAPP01 on source system using the idoc number from we02. This report manually processes the IDoc and transfer the message to BW. </p>
<p>In my opinion, if this problem doesn&#8217;t happen on a regular basis,you should fix it from BW side. If it happens often, you should look into increasing the number of work processes on the source system ( check rdisp/rfc_max_own_used_wp setting ) and/or schedule RBDAPP01 automatically.</p>
<p>BW3.5</p>
]]></content:encoded>
			<wfw:commentRss>http://yangchuang.com/wp22/?feed=rss2&amp;p=170</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BW: Error 1 when loading external data</title>
		<link>http://yangchuang.com/wp22/?p=166</link>
		<comments>http://yangchuang.com/wp22/?p=166#comments</comments>
		<pubDate>Mon, 14 Jun 2010 15:50:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BW Modeling]]></category>
		<category><![CDATA[SAP BW]]></category>

		<guid isPermaLink="false">http://yangchuang.com/wp22/?p=166</guid>
		<description><![CDATA[Although SAP has a pretty long message when you encounter Error 1 , it&#8217;s not to the point enough to make the debugging easier.
In my case, the reason is that the file was open. Close the file, everything was fine.
Diagnosis
Error number 1 occurred when loading external data:
1. Error when reading the file (access rights, file [...]]]></description>
			<content:encoded><![CDATA[<p>Although SAP has a pretty long message when you encounter Error 1 , it&#8217;s not to the point enough to make the debugging easier.<br />
In my case, the reason is that the file was open. Close the file, everything was fine.</p>
<p>Diagnosis<br />
Error number 1 occurred when loading external data:</p>
<p>1. Error when reading the file (access rights, file name, &#8230;)<br />
2. File size or number of records does not correspond to the data in the control file<br />
3. Error when generating the IDoc<br />
4. File contains invalid data (errors with an arithmetic operation or data conversion)<br />
Procedure<br />
Check whether you have the required access rights and whether the data in the control file is correct (file names, record length, number of records, &#8230;). Correct the data in the control file if necessary and check the data file for invalid data (values of the wrong type, values in the wrong format for conversion exit,&#8230;). Check whether the file has headers that have not been specified.</p>
<p>BW3.5</p>
]]></content:encoded>
			<wfw:commentRss>http://yangchuang.com/wp22/?feed=rss2&amp;p=166</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using flat file as source or target in a workflow</title>
		<link>http://yangchuang.com/wp22/?p=158</link>
		<comments>http://yangchuang.com/wp22/?p=158#comments</comments>
		<pubDate>Sat, 29 May 2010 14:46:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BO DataServices]]></category>
		<category><![CDATA[SAP Business Objects]]></category>

		<guid isPermaLink="false">http://yangchuang.com/wp22/?p=158</guid>
		<description><![CDATA[The files MUST be on the Job Server machine. If it works, ignore the error message.]]></description>
			<content:encoded><![CDATA[<p>Using flat file as source or target in a workflow makes trouble shooting simpler than using database, if you can access these files easily. You can control the number of records, change the field values, modify fields in and out of the transform much quicker. But, please be aware of the file location!</p>
<p>There are two modes, design mode and execution mode. They are described in the Designer Guide PDF file.</p>
<blockquote><p>Flatfile location: Local/Job Server:<br />
During design, indicates whether files are located on the local machine that runs the Designer or on the machine that runs the Job Server. If you select Job Server, you must enter the absolute path to files. Remember that UNIX systems are case-sensitive.<br />
During execution, all files must be located on the Job Server machine that executes the job. If you use different files to design your job, change the file specified (through the Root directory and File properties) before execution.</p></blockquote>
<p>Therefore, if you want your job to work, the files MUST be on the Job Server machine.</p>
<p>However, when the file is put under a directory on the Job Server machine, with the proper path and permission, I still got the following error message when I tried to view data in the file from the dataflow:</p>
<blockquote><p>Can&#8217;t open file. Please check its path and permission.</p></blockquote>
<p>In my case, the message can be ignored. I completed the workflow and executed the job in debug mode, then I was able to view my data by clicking the &#8220;view data&#8221; magnifier icon in between the file and transform. </p>
<p>I am not sure if this bogus error message is on Unix/Linux DataServices installation of XI3.2 only or not, it doesn&#8217;t stop my job from running, I can live with it.</p>
]]></content:encoded>
			<wfw:commentRss>http://yangchuang.com/wp22/?feed=rss2&amp;p=158</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Transform is terminated &#8211; error 50505</title>
		<link>http://yangchuang.com/wp22/?p=152</link>
		<comments>http://yangchuang.com/wp22/?p=152#comments</comments>
		<pubDate>Sat, 29 May 2010 13:38:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BO DataServices]]></category>
		<category><![CDATA[SAP Business Objects]]></category>

		<guid isPermaLink="false">http://yangchuang.com/wp22/?p=152</guid>
		<description><![CDATA[SAP BOBJ DataServices Global Address Cleanse transform Canadian Address parsing unknown error 50505 &#038; solution.]]></description>
			<content:encoded><![CDATA[<p>I got the following error when using Global Address Cleanse Base Transform for Canadian address:</p>
<blockquote><p>Transform <Canada_AddressCleanse> is terminated due to error <50505>.
</p></blockquote>
<p>As 50505 is an unknown error, the best solution is to guess. To eliminate possible causes, I used flat file format for both source and target, with only one record. If I connected them with a query transformation, it worked fine. The GAC transformation also worked if I select &#8220;Parse only&#8221; for &#8220;Canada &#8211; Options&#8221; from the &#8220;options&#8221; tab.</p>
<p>The following files are under the [bo]/DataQuality/reference_data directory.</p>
<p>AddressServerGlobal.db<br />
canada.dir<br />
cancity.dir<br />
canfsa.dir<br />
canpci.dir<br />
dpvw.txt<br />
dpvx.txt<br />
dpvy.dpv<br />
dpvz.dpv<br />
ga_country.dir<br />
ga_directory_db_emea.xml<br />
ga_directory_db.xml<br />
ga_region.dir<br />
ga_region_gen.dir<br />
MultiLineKeywords.db </p>
<p>My DataServices installation is Linux XI3.2.<br />
<br />
After poking around for several more hours, the problem was solved by downloading the newer version of Canada directory files (51038992.tgz). I then tried to extract the older version (51038682.tgz), it worked as well. Next, I tried to delete canada.dir (one of the files in the .tgz), I got error 50505 back again.</p>
<p>My guess is that the original Canada files might be corrupted or not from the same .tgz file.<br />
Obviously, this error is not caught by the program. It would be nice if it&#8217;s handled by a &#8220;file not found&#8221; exception.<br />
Right now, I am trying to find a way, better not OSS note, to report this incident to the dataServices developers as it will save someone, most likely my fellow Canadians, some time. </p>
]]></content:encoded>
			<wfw:commentRss>http://yangchuang.com/wp22/?feed=rss2&amp;p=152</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delta extraction stuck on TRFCQOUT table</title>
		<link>http://yangchuang.com/wp22/?p=143</link>
		<comments>http://yangchuang.com/wp22/?p=143#comments</comments>
		<pubDate>Tue, 04 May 2010 01:45:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BW Admin]]></category>
		<category><![CDATA[BW performance]]></category>
		<category><![CDATA[Basis & DB]]></category>
		<category><![CDATA[SAP BW]]></category>

		<guid isPermaLink="false">http://yangchuang.com/wp22/?p=143</guid>
		<description><![CDATA[While checking the BW load today, I found one delta load was several hours late and was still running in the afternoon. It was doing one single query on TRFCQOUT table.
Checked execution plan, and found it was using a wrong index. Tried re-calculate table stats, index stats, and re-index.
The issue was solved by rebuilding indexes.
There&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>While checking the BW load today, I found one delta load was several hours late and was still running in the afternoon. It was doing one single query on TRFCQOUT table.</p>
<p>Checked execution plan, and found it was using a wrong index. Tried re-calculate table stats, index stats, and re-index.</p>
<p>The issue was solved by rebuilding indexes.</p>
<p>There&#8217;s even an SAP Note for this issue ( Note 407125)</p>
<blockquote><p>
Check the storage quality as outlined in Note 332677 and depending on the ORACLE version, do an index rebuild or a COALESCE.<br />
For small and medium-sized installations, it is recommended that you do this once a week for all indexes of tables ARFCSSTATE, ARFCSDATA, ARFCRSTATE, TRFCQOUT, TRFCQIN, TRFCQSTATE and TRFCQDATA.<br />
For large installations this approach may be required on a daily basis to achieve optimal performance.
</p></blockquote>
<p>It makes sense. </p>
<p>The SAP program to re-index table is: RSANAORA. Choose index, alter index onlin to rebuild index.</p>
]]></content:encoded>
			<wfw:commentRss>http://yangchuang.com/wp22/?feed=rss2&amp;p=143</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BWFreak WordPress Upgraded Today</title>
		<link>http://yangchuang.com/wp22/?p=126</link>
		<comments>http://yangchuang.com/wp22/?p=126#comments</comments>
		<pubDate>Sun, 02 May 2010 01:05:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Life living]]></category>

		<guid isPermaLink="false">http://yangchuang.com/wp22/?p=126</guid>
		<description><![CDATA[Reasons for WordPress Upgrade and solutions for issues encountered.]]></description>
			<content:encoded><![CDATA[<p>Today, I upgraded this blog to the latest version of WordPress &#8211; 2.9.2. This is the first post after the upgrade.</p>
<p>I encountered some issues.</p>
<p>1.  My MySQL Database version was old.</p>
<blockquote><p>You cannot upgrade because WordPress 2.9.2 requires MySQL version 4.1.2 or higher. You are running version 4.0.27.</p></blockquote>
<p>It was solved by exporting old db, creating a new database, which is a newer version &#8211; 5.0, then, run  exported sql script to create all tables in the new db. Then point to new db in the wp-config file. If you encounter similar problem as I did, don&#8217;t worry, it&#8217;s not very hard to fix.</p>
<p>2. The theme I chose is not supported anymore.</p>
<p>I&#8217;d like to change the width of the site, but couldn&#8217;t find an update of the theme. Thence I was on my own.  It&#8217;s a pretty tedious/time-consuming task. I had to change quite a few CSS and images. I was half-asleep while  doing it. But, good news is that I only need to do it once. As theme has its own directory. When I need to upgrade WordPress again, the only thing I need to remember is:</p>
<blockquote><p>Do not delete theme directory.</p></blockquote>
<p>3. Add google AdSense.</p>
<p>The plugin I chose to use is called &#8220;AdSense Manger&#8221;, its new name is &#8220;Advertising Manager&#8221;. It allows me to add google Ads to the posts. The  syntax is very simple. It&#8217;s</p>
<blockquote><p>
[ ad ]   (no space between)
</p></blockquote>
<p>I also added the AdSense javascript code directly to the php file.</p>
<p>As I increased the width of the site, ads boxes now fit better with the content. </p>
<p>4. Add google analytics tracker.<br />
Google Analytics allows me to analyze my visitor better. For what I know, I got a lot more visits from Europe and Asia than Canada. </p>
]]></content:encoded>
			<wfw:commentRss>http://yangchuang.com/wp22/?feed=rss2&amp;p=126</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Canadian Address Parsing</title>
		<link>http://yangchuang.com/wp22/?p=122</link>
		<comments>http://yangchuang.com/wp22/?p=122#comments</comments>
		<pubDate>Wed, 10 Mar 2010 20:42:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BO DataServices]]></category>
		<category><![CDATA[SAP Business Objects]]></category>

		<guid isPermaLink="false">http://yangchuang.com/wp22/?p=122</guid>
		<description><![CDATA[Never thought I&#8217;ll need to parse Canadian address one day, and never thought parsing addresses not easy. Just so that somebody else don&#8217;t need to collect all different kind of addresses again, here&#8217;s a list, and likely to grow.
Suite#/Apt#/House# &#8211; Street# &#8211; Street Name, Postal code
Route#, Postal code
Highway#, Postal code
PO Box#, Postal code
RR#, Postal code 
RR = rural route
LCD [...]]]></description>
			<content:encoded><![CDATA[<p>Never thought I&#8217;ll need to parse Canadian address one day, and never thought parsing addresses not easy. Just so that somebody else don&#8217;t need to collect all different kind of addresses again, here&#8217;s a list, and likely to grow.</p>
<p>Suite#/Apt#/House# &#8211; Street# &#8211; Street Name, Postal code</p>
<p>Route#, Postal code</p>
<p>Highway#, Postal code</p>
<p>PO Box#, Postal code</p>
<p>RR#, Postal code </p>
<p>RR = rural route<br />
LCD = Letter Carrier Depot<br />
PO = Post Office<br />
RPO = Retail Postal Outlet<br />
STN = Postal Station<br />
CF = Postal Station Delivery<br />
DR = Direct Delivery<br />
GD = General Delivery<br />
LB = Post Office Box Delivery<br />
LC = Letter Carrier Delivery<br />
MR = Mobile Route Delivery<br />
PB = Post Office Bag Delivery<br />
SS = Suburban Service Delivery</p>
<p>Note:</p>
<p>Street# might not be integer, can be 1/2, can contain special characters like &#038;, &#8216;, -, etc.</p>
<p>Suite/Apt# can be letters, can be A, B, BSMT</p>
<p>The most popular street number is 10.</p>
<p><code></code></p>
<p>Some Canadian address rules SAP BO Data Services use:</p>
<blockquote><p>Canada Post requires that any address with a valid Large Volume Receiver (LVR) postal code be considered valid. The postal code cannot be changed to match other address components. Canada Post recommends that you don&#8217;t correct LVR addresses; however, correction is permitted when a unique address can be determined without changing the postal code.
</p></blockquote>
<blockquote><p>Canada Post requires that any address with a valid rural postal code must be considered valid. (Rural postal codes have a zero in the second position.)<br />
This rule applies even if the address line is empty or contains bad data.<br />
Canada Post recommends that you don&#8217;t correct rural addresses; however, the Canada engine will always attempt to correct the rest of the address. The valid rural postal code will always be left intact, according to CPC rules.<br />
This also applies if an address is entered without a postal code or with an incorrect postal code, and the locality (city) entered has just one postal code associated with it that is a rural postal code.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://yangchuang.com/wp22/?feed=rss2&amp;p=122</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RSRV</title>
		<link>http://yangchuang.com/wp22/?p=32</link>
		<comments>http://yangchuang.com/wp22/?p=32#comments</comments>
		<pubDate>Mon, 08 Mar 2010 15:20:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BW Modeling]]></category>
		<category><![CDATA[BW performance]]></category>
		<category><![CDATA[SAP BW]]></category>

		<guid isPermaLink="false">http://yangchuang.com/wp22/?p=32</guid>
		<description><![CDATA[Error with partition when loading
Error:
Communication errors (RFC)
DBIF_RSQL_SQL_ERROR
CX_SY_OPEN_SQL_DB ORA-14400:
inserted partition key does not map to any partition
Internal call code.........: "[RSQL/INSR//BIC/B0000xxxxxx ]"

Solution:
RSRV -&#62; PSA Tables -&#62; Consistency Check for PSA
Error calling number range object for dimension when loading cube
Solution:
1. rsrv &#62; all elementry tests &#62; master data &#62; compare number range and maximum sid &#62; execute. press [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Error with partition when loading</strong><br />
<code>Error:<br />
Communication errors (RFC)<br />
DBIF_RSQL_SQL_ERROR<br />
CX_SY_OPEN_SQL_DB ORA-14400:<br />
inserted partition key does not map to any partition<br />
Internal call code.........: "[RSQL/INSR//BIC/B0000xxxxxx ]"<br />
</code><br />
Solution:<br />
RSRV -&gt; PSA Tables -&gt; Consistency Check for PSA</p>
<p><strong>Error calling number range object for dimension when loading cube</strong><br />
Solution:<br />
1. rsrv &gt; all elementry tests &gt; master data &gt; compare number range and maximum sid &gt; execute. press button &#8216;correct error&#8217; if any error exists.<br />
2. Reset the buffering of table TNRO by /$tab<br />
3. Reactivate the Infocube<br />
4.Execute RSRV to &#8220;check only NOT Repair&#8221; to see whether number ranges exist &gt; &#8220;Adjust number range&#8221; for dimension of InfoCube with maximum DIMID</p>
<p><strong>Runtime Error during ods activation. Activation doesn&#8217;t start, shortdump generated but no message. </strong><br />
<code><br />
DBIF_RSQL_INVALID_RSQL<br />
An exception occurred. This exception is dealt with in more detail below.<br />
The exception, which is assigned to the class 'CX_SY_OPEN_SQL_DB', was neither caught nor passed along using a RAISING clause, in the procedure "ACTIVATE_SIDS" "(FORM)"<br />
Or RSDRO_ACTIVATE_SID_ODS<br />
</code><br />
Solution:<br />
1. RSRV -&gt; Check -&gt; All Elementary Tests -&gt; ODS Objects -&gt; Check How Up-To-Date the Generated Programs of an ODS Object Are<br />
2. Chcek then Correct error<br />
3. Activate ods again</p>
]]></content:encoded>
			<wfw:commentRss>http://yangchuang.com/wp22/?feed=rss2&amp;p=32</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BW recordmode</title>
		<link>http://yangchuang.com/wp22/?p=121</link>
		<comments>http://yangchuang.com/wp22/?p=121#comments</comments>
		<pubDate>Wed, 03 Mar 2010 18:20:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BW Admin]]></category>
		<category><![CDATA[BW Modeling]]></category>
		<category><![CDATA[SAP BW]]></category>

		<guid isPermaLink="false">http://yangchuang.com/wp22/?p=121</guid>
		<description><![CDATA[To get a clear defination of BW recordmode:
SE11, data type RODMUPDMOD -> click Documentation
RODMUPDMOD
____________________________________________________
Short Text
BW Delta Process: Record Mode
Definition
This attribute describes how a record is updated in the delta process. The various delta processes support different combinations of the seven possible characteristic values. If a DataSource implements a delta process that uses several characteristic values, [...]]]></description>
			<content:encoded><![CDATA[<p>To get a clear defination of BW recordmode:<br />
SE11, data type RODMUPDMOD -> click Documentation</p>
<p>RODMUPDMOD<br />
____________________________________________________<br />
Short Text<br />
BW Delta Process: Record Mode</p>
<p>Definition<br />
This attribute describes how a record is updated in the delta process. The various delta processes support different combinations of the seven possible characteristic values. If a DataSource implements a delta process that uses several characteristic values, the record mode must be a part of the extract structure and the name of the corresponding field has to be entered in the DataSource as a cancellation field (ROOSOURCE-INVFIELD).</p>
<p>The seven characteristic values are as follows:</p>
<p>&#8216; &#8216;: The record delivers an after image.</p>
<p>The status is tranferred after something is changed or added. You can update the record into an IncoCube only if the corresponding before image exists in the request.</p>
<p>&#8216;X&#8217;: The record delivers a before image</p>
<p>The status is transferred before data is changed or deleted.<br />
All record attributes that can be aggregated have to be transferred with a reverse +/- sign. The reversal of the sign is carried out either by the extractor (default) or the Service API. In this case, the indicator &#8216;Field is inverted in the cancelation field&#8217; must be set for the relevant extraction structure field in the DataSource.<br />
These records are ignored if the update is a non-additive update of an ODS object.<br />
The before image is complementary to the after image.</p>
<p>&#8216;A&#8217;: The record delivers an additive image.</p>
<p>For attributes that can be aggregated, only the change is transferred. For attributes that cannot be aggregated, the status after a record has been changed or created is transferred. This record can replace an after image and a before image if there are no non-aggregation attributes or if these cannot be changed. You can update the record into an InfoCube without restriction, but this requires an additive update into an ODS Object.</p>
<p>&#8216;D&#8217;: The record has to be deleted.</p>
<p>Only the key is transferred. This record (and its DataSource) can only be updated into an ODS Object.</p>
<p>&#8216;R&#8217;: The record delivers a reverse image.</p>
<p>The content of this record is the same as the content of a before image. The only difference is with an ODS object update: Existing records with the same key are deleted.</p>
<p>&#8216;N&#8217;: The record delivers a new image.</p>
<p>The content of this record is the same as for  an after image without a before image. When a record is created, a  new image is transferred instead of an after image.<br />
The new image is complementary to the reverse image.</p>
<p>The table RODELTAM determines which characteristic values a delta process uses (columns UPDM_NIM, UPDM_BIM UPDM_AIM, PDM_ADD UPDM_DEL and UPDM_RIM). The table ensures that only useful combinations of the above values are used within a delta process.</p>
<p>When extracting in the &#8216;delta&#8217; update mode in the extracted records for the indicator, a DataSource that uses a delta process can deliver only those characteristic values that are specified in the delta process.</p>
<p>Definition<br />
This indicator describes how a record in the delta process is updated. The various delta processes support different combinations  of the seven possible characteristic values. If a DataSource implements a delta process that uses several characteristic values, the indicator must be a part of the extract structure and be entered in the DataSource as a cancellation field (ROOSOURCE-INVFIELD).</p>
<p>The seven characteristic values are as follows:</p>
<p>&#8216; &#8216;: The record delivers an after image.</p>
<p>The status is tranferred after something is changed or added. You can update the record into an IncoCube only if the corresponding before image exists in the request.</p>
<p>&#8216;X&#8217;: The record delivers a before image</p>
<p>The status is transferred before data is changed or deleted.<br />
All record attributes that can be aggregated have to be transferred with a reverse +/- sign. The reversal of the sign is carried out either by the extractor (default) or the Service API. In this case, the indicator &#8216;Field is inverted in the cancelation field&#8217; must be set for the relevant extraction structure field in the DataSource.<br />
These records are ignored if the update is a non-additive update of an ODS object.<br />
The before image is complementary to the after image.</p>
<p>&#8216;A&#8217;: The record delivers an additive image.</p>
<p>For attributes that can be aggregated, only the change is transferred. For attributes that cannot be aggregated, the status after a record has been changed or created is transferred. This record can replace an after image and a before image if there are no non-aggregation attributes or if these cannot be changed. You can update the record into an InfoCube without restriction, but this requires an additive update into an ODS Object.</p>
<p>&#8216;D&#8217;: The record has to be deleted.</p>
<p>Only the key is transferred. This record (and its DataSource) can only be updated into an ODS Object.</p>
<p>&#8216;R&#8217;: The record delivers a reverse image.</p>
<p>The content of this record is the same as the content of a before image. The only difference is with an ODS object update: Existing records with the same key are deleted.</p>
<p>&#8216;N&#8217;: The record delivers a new image.</p>
<p>The content of this record is the same as for  an after image without a before image. When a record is created, a  new image is transferred instead of an after image.<br />
The new image is complementary to the reverse image.</p>
<p>&#8216;Y&#8217;: The record is an update image.</p>
<p>This kind of record is used in the change log of an ODS object in order to save the value from the update. This is for a possible rollback and roll- forward for key figures with minimum or maximum aggregation. This record also has the update value for characteristics (in this case, it is the same as the after image). Null values are stored for key figures with totals aggregation. An update image is only required when the value from the update is smaller or larger than the before image for at least one key figure with minimum or maximum aggregation.</p>
<p>Table RODELTAM determines which characteristic values a delta process uses (columns UPDM_NIM, UPDM_BIM, UPDM_UIM, UPDM_AIM, UPDM_ADD, UPDM_DEL and UPDM_RIM). The table has to ensure that only meaningful combinations of the above values are used within a delta process.</p>
<p>When extracting in the Delta update mode in the extracted records for the record mode, a DataSource that uses a delta process can deliver only those characteristic values that are specified in the delta process.</p>
]]></content:encoded>
			<wfw:commentRss>http://yangchuang.com/wp22/?feed=rss2&amp;p=121</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
