<?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 Core</title>
	<atom:link href="http://sap-core.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sap-core.com</link>
	<description>SAP core functionalities and technologies</description>
	<lastBuildDate>Mon, 05 Mar 2012 15:57:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>ABAP variables</title>
		<link>http://sap-core.com/articles/basis/abap/abap-variables/</link>
		<comments>http://sap-core.com/articles/basis/abap/abap-variables/#comments</comments>
		<pubDate>Mon, 05 Mar 2012 15:54:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://sap-core.com/?page_id=154544</guid>
		<description><![CDATA[ABAP variables (also known as data objects) are information carriers that can be manipulated by ABAP programs using ABAP statements to achieve their objectives. This article examines how simple variables, structure variables and table variables can be created. Simple variables The declaration of a variable in ABAP looks like this: DATA dIMyVar TYPE I. In [...]]]></description>
			<content:encoded><![CDATA[<p>ABAP variables (also known as data objects) are information carriers that can be manipulated by ABAP programs using ABAP statements to achieve their objectives.</p>
<p>This article examines how simple variables, structure variables and table variables can be created.</p>
<h3>Simple variables</h3>
<p>The declaration of a variable in ABAP looks like this:</p>
<div class="code">
<pre>DATA dIMyVar TYPE I.</pre>
</div>
<p>In this declaration <em>dIMyVar</em> is the variable name and <em>I</em> indicates the type of the variable which defines in this case an elementary integer.</p>
<p>Another method can be used to define indirectly the type of a variable by inheriting it from an existing variable:</p>
<div class="code">
<pre>DATA dIRefVar TYPE I.
DATA dIMyVar LIKE dIRefVar.</pre>
</div>
<p>This code will result in elementary type <em>I</em> being used to type variables <em>dIRefVar</em> and <em>dIMyVar</em>.</p>
<p>Obviously, you are not limited to elementary data types to define your variables and you may (and should) take advantage of the integration of ABAP with the Data Dictionary to define meaningful variables business wise (more on this in our next article dealing with data typing).</p>
<p>To access the data storage memory of a simple variable, it is sufficient to mention the name of the variable wherever it is needed. A direct access to the corresponding memory zone will result from that specification. Example:</p>
<div class="code">
<pre>DATA dIMyVar TYPE I.

dIMyVar = 13.
WRITE dIMyVar.</pre>
</div>
<h3>Structure variables</h3>
<p>Variables with a complex data type can be created as well in ABAP to allow the manipulation of data structures from a single variable name.</p>
<p>Structure variables are declared in the following way:</p>
<div class="code">
<pre>DATA:
  BEGIN OF dwDocument,
    bukrs(4) TYPE C,
    belnr(10) TYPE C,
    gjahr(4) TYPE N,
  END OF dwDocument.</pre>
</div>
<p>We have here declared a variable named dwDocument which has a structure made up of 3 components (primary fields).</p>
<p>Note that each component of a structure can itself be a structure so that a deep structure is created:</p>
<div class="code">
<pre>DATA:
  BEGIN OF dwDocument,
    bukrs(4) TYPE C,
    belnr(10) TYPE N,
    gjahr(4) TYPE N,
    BEGIN OF dwAmount,
      wrbtr(13) TYPE P DECIMALS 2,
      dmbtr(13) TYPE P DECIMALS 2,
      dmbe2(13) TYPE P DECIMALS 2,
    END OF dwAmount,
  END OF dwDocument.</pre>
</div>
<p>In this example, we have defined a variable dwDocument with a deep structure containing an additional component compared to the previous example which is itself a structure.</p>
<p>The access to structure components is made using the operator <em>-</em>. So an access to the the <em>bukrs</em> component is done with <em>dwDocument-bukrs</em> and an access to the <em>wrbtr</em> sub-component of the <em>dwAmount</em> component is done with <em>dwDocument-dwAmount-wrbtr</em>.</p>
<h3>Table variables</h3>
<p>Variables can be used to store internal tables. Internal tables look a lot like structures but differ from structures in that an internal table may contain multiple instances (records) of the same structure. Internal tables are conceptually similar to the more common <em>arrays</em> supported by many other programming languages. However they functionally differ from classic arrays in many ways as their objective is not purely short term (mass) data storage like arrays but rather to provide a database compatible short term data storage that can be easily made persistent (actually stored in the database).</p>
<p>As internal tables aim at representing an in-memory snapshot of database tables, their defintion, behaviour and access is closer to that of database tables than to that of arrays. For this reason it makes no sense to try to access a specific element of an internal table using the [] operator common to many languages as this is just not supported in ABAP. Instead the internal table variable must be accessed using dedicated instructions very similar (sometimes even identical!) to those used to interact with the database tables.</p>
<p>Let&#8217;s define a very simple table of integers first:</p>
<div class="code">
<pre>DATA dtTable TYPE TABLE OF I.</pre>
</div>
<p>Compared to the declaration of a variable of type <em>I</em>, the definition of a table of elements of type <em>I</em> simply requires the addition of the keyword <em>TABLE OF</em>.</p>
<p>Initially our table has been created empty. You can verify this using the instruction <em>IS INITIAL</em> as follows:</p>
<div class="code">
<pre>IF dtTable IS INITIAL.
  WRITE 'Table is currently empty!'.
ENDIF.</pre>
</div>
<p>Let&#8217;s create entries in our table by appending integer elements to it and let&#8217;s display its content afterwards to check that entries are well recorded as expected.</p>
<div class="code">
<pre>DATA dIElt TYPE I.
DATA dtTable TYPE TABLE OF I.

DO 5 TIMES.
  APPEND SY-INDEX TO dtTable.
ENDDO.

LOOP AT dtTable INTO dIElt.
  WRITE:/ 'Entry:', SY-TABIX, 'Value:', dIElt.
ENDLOOP.</pre>
</div>
<p>This program uses two loops to, first, create 5 records in the internal table <em>dtTable</em> using the instruction <em>APPEND</em> and, second, read sequentially and display the content of the internal table.</p>
<p>Let&#8217;s create now a table of a complex type, i.e. a table of structured elements. For this purpose, let&#8217;s take again our definition of a document and let&#8217;s create an internal table of documents:</p>
<div class="code">
<pre>DATA:
  BEGIN OF dwDocument,
    bukrs(4) TYPE C,
    belnr(10) TYPE N,
    gjahr(4) TYPE N,
  END OF dwDocument.

DATA dtDocuments LIKE TABLE OF dwDocument.</pre>
</div>
<p>With this definition the variable dtDocuments is defined as a table of elements of the type of dwDocument. If you are focused enough you may have noticed that the table variable dtDocuments has been declared using the statement <em>LIKE TABLE OF</em> and not <em>TYPE TABLE OF</em>. This is because <em>dwDocument</em> is not a type in itself but a variable and cannot consequently be used directly in place of a type. However its typing information can be referred to using the <em>LIKE</em> statement as previously seen and <em>dwDocument</em> can be used to store elements (one at a time) of the table <em>dtDocuments</em> as in the example below.</p>
<div class="code">
<pre>DATA:
  BEGIN OF dwDocument,
    bukrs(4) TYPE C,
    belnr(10) TYPE N,
    gjahr(4) TYPE N,
  END OF dwDocument.

DATA dtDocuments LIKE TABLE OF dwDocument.

dwDocument-bukrs = '0001'.
dwDocument-belnr = '1'.
dwDocument-gjahr = '2012'.
APPEND dwDocument TO dtDocuments.

dwDocument-bukrs = '0002'.
dwDocument-belnr = '2'.
dwDocument-gjahr = '2012'.
APPEND dwDocument TO dtDocuments.

LOOP AT dtDocuments INTO dwDocument.
  WRITE:/ 'Company code:', dwDocument-bukrs.
  WRITE:/ 'Document num:', dwDocument-belnr.
  WRITE:/ 'Fiscal year :', dwDocument-gjahr.
  WRITE:/ SY-ULINE.
ENDLOOP.</pre>
</div>
<p>Reading sequentially internal tables is just one method to access table records. Direct access is also possible and different operations are possible on such table variables. However this goes behind the scope of this article which gives an overview of ABAP variables usage and will consequently be treated in a dedicated article.</p>
<p>In our next article we will see how to declare types as we have seen that types constitute the foundation of variables and are always referred to even when not explicitely declared.</p>
]]></content:encoded>
			<wfw:commentRss>http://sap-core.com/articles/basis/abap/abap-variables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAP Accounts Payables</title>
		<link>http://sap-core.com/articles/finance/sap-accounts-payables/</link>
		<comments>http://sap-core.com/articles/finance/sap-accounts-payables/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 21:55:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sap-core.com/?page_id=325</guid>
		<description><![CDATA[SAP Accounts Payables or SAP FI-AP is SAP ERP module used to manage vendors business processes. Conceptually very similar to the Accounts Receivables module used to cover customer accounts management, SAP FI-AP is a subledger of SAP General Ledger offering the necessary functions to manage vendor master data]]></description>
			<content:encoded><![CDATA[<p>SAP Accounts Payables or SAP FI-AP is SAP ERP module used to manage vendors business processes. Conceptually very similar to the Accounts Receivables module used to cover customer accounts management, SAP FI-AP is a subledger of SAP General Ledger offering the necessary functions to manage vendor master data</p>
]]></content:encoded>
			<wfw:commentRss>http://sap-core.com/articles/finance/sap-accounts-payables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Currency translation with SAP Report Painter</title>
		<link>http://sap-core.com/blog/currency-translation-with-sap-report-painter/</link>
		<comments>http://sap-core.com/blog/currency-translation-with-sap-report-painter/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 10:43:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SAP Blog]]></category>

		<guid isPermaLink="false">http://sap-core.com/?p=146239</guid>
		<description><![CDATA[SAP Report Painter is a powerful reporting utility for SAP ERP. It has been there for quite some time and I am pretty sure that it is going to gain in popularity as more and more SAP implementations will migrate to New GL (New General Ledger). This is because with New GL much more information [...]]]></description>
			<content:encoded><![CDATA[<p>SAP Report Painter is a powerful reporting utility for SAP ERP. It has been there for quite some time and I am pretty sure that it is going to gain in popularity as more and more SAP implementations will migrate to New GL (New General Ledger). This is because with New GL much more information can be delivered from one single table query. Making balance sheets &amp; profit and loss reports according to business areas, profit centers, segments or other advanced characteristics becomes a simple database querying work instead of a complex data reworking exercise. And at that work, SAP Report Painter is a tool of choice.</p>
<p>However, I have recently had a hard time figuring out how currency translation works with Report Painter. As I finally found out I am sharing it here hoping it will spare some time to you.</p>
<p>With Report Painter the currency translation is performed using Currency Translation Keys which define some translation settings amongst which the Exchange Rate Type is the most critical.</p>
<p>Don&#8217;t loose your time (like I did) to try to find a way to assign those Currency Translation Keys to your report or your report columns while designing it (e.g. in KE32 or KE35 for a COPA report if you maintain a form for your report). There exists no such possibility! The currency translation settings are maintained at execution time! So run your report and proceed as follows to create references to your Currency Translation Keys:</p>
<ul>
<li>To translate all columns of the report, simply click the currency translation icon from the report toolbar while nothing is selected in the report. You should then see appear a popup dialog box asking you for the Currency Translation Key to use for the translation.
<p><a href="http://sap-core.com/wp-content/uploads/2012/02/Report-Painter-currency-translation-of-report.jpg"><img class="alignnone size-full wp-image-146258" title="Report Painter currency translation of report" src="http://sap-core.com/wp-content/uploads/2012/02/Report-Painter-currency-translation-of-report.jpg" alt="Report Painter currency translation of report" width="534" height="236" /></a></li>
<li>To translate a specific column of the report, click the column header (or any cell of the column if it belongs to a form) in order to select the column and click the currency translation icon from the report toolbar. A dialog like the following one will then invite you to select a Currency Translation Key to translate the figures of the column mentioned in the <em>Area of validity</em>.
<p><a href="http://sap-core.com/wp-content/uploads/2012/02/Report-Painter-currency-translation-of-column.jpg"><img class="alignnone size-full wp-image-146259" title="Report Painter currency translation of column" src="http://sap-core.com/wp-content/uploads/2012/02/Report-Painter-currency-translation-of-column.jpg" alt="Report Painter currency translation of column" width="534" height="278" /></a></li>
</ul>
<p>Once the currency translation settings have been defined, you should store them if you want them to be persistent. Otherwise you will have to define them each time you launch the report since they are not done as part of the report design. To do so, simply go in the <em>Report</em> menu and select the <em>Save Definition</em> menu command.</p>
]]></content:encoded>
			<wfw:commentRss>http://sap-core.com/blog/currency-translation-with-sap-report-painter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAP Treasury cash flows regeneration</title>
		<link>http://sap-core.com/blog/sap-treasury-cash-flows-regeneration/</link>
		<comments>http://sap-core.com/blog/sap-treasury-cash-flows-regeneration/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 12:03:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SAP Blog]]></category>
		<category><![CDATA[SAP Treasury]]></category>

		<guid isPermaLink="false">http://sap-core.com/?p=39369</guid>
		<description><![CDATA[I just found out this great rebuild functionality in SAP Treasury and wanted to share with you cause I am sure it will be useful to you some day if you work with SAP Treasury. I have been searching for such a rebuild function because the derived flows we use to post automatically tax on [...]]]></description>
			<content:encoded><![CDATA[<p>I just found out this great rebuild functionality in SAP Treasury and wanted to share with you cause I am sure it will be useful to you some day if you work with SAP Treasury.</p>
<p>I have been searching for such a rebuild function because the derived flows we use to post automatically tax on interests earned on Money Market fixed term deposits are not correct anymore since the withholding tax conditions have changed as per law. The rebuild function delivered with SAP Treasury was a perfect fit in this particular situation but it could be useful as well in many other situations. In fact it should be used each time an SAP Treasury environment setting (understand a setting that is not directly part of the treasury deal) affecting the deal cash flows is changed (it can be a customizing setting, a market data value, &#8230;).</p>
<p>The functionality is offered by transaction TMFM (program RFTMFIMA) which can be found in the application menu Transaction Manager / Money Market / Tools.</p>
<p>Once you have run this transaction, all the relevant cash flows will be reconstructed and corrected in the deal cash flow view and in the TBB1 posting transaction among other things.</p>
]]></content:encoded>
			<wfw:commentRss>http://sap-core.com/blog/sap-treasury-cash-flows-regeneration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Treasury cash flows payment processing</title>
		<link>http://sap-core.com/articles/treasury/treasury-cash-flows-payment-processing/</link>
		<comments>http://sap-core.com/articles/treasury/treasury-cash-flows-payment-processing/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 16:28:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://sap-core.com/?page_id=22248</guid>
		<description><![CDATA[There exists two possible ways to process the cash flows (cash-ins and cash-outs) of treasury deals done with a business partner: using the classic customers / vendors payment program (F110) or working with payment requests (F111). Contrarily to the traditional payment program for customers and vendors, the payment program based on payment requests does not necessarily [...]]]></description>
			<content:encoded><![CDATA[<p>There exists two possible ways to process the cash flows (cash-ins and cash-outs) of treasury deals done with a business partner: using the classic customers / vendors payment program (F110) or working with payment requests (F111). Contrarily to the traditional payment program for customers and vendors, the payment program based on payment requests does not necessarily rely on customers or vendors open items to generate payments. It is able to generate payments based on G/L account postings.</p>
<p>It usually makes most sense to base Treasury payments on payment requests and to clearly separate those payments from the customers and vendors payments. This is because Treasury payments are so specific with regard to their nature, the type of partners involved, the amounts exchanged, the operators processing them, …</p>
<p>Obviously the retained approach will impact the posting rules set-up and the payment related information that is required to be maintained at transaction and Business Partners levels to process payments properly.</p>
<p>It must be noted that house bank and house bank account identifiers must be provided if you want to perform a payment or if your posting rules definitions rely on bank account information (i.e. your account symbols use masks to derive G/L bank clearing accounts from actual G/L bank accounts). This latest situation is most likely to happen if you opt for the posting approach based on payment requests.</p>
<p>If for whatever reason you choose not to maintain the house bank account information, you should note that the reporting in Cash Management will be affected in the following way: the corresponding cash flows will be reported as cash forecast (instead of cash position) associated to a specific planning level (specified in customizing as the planning level to use for such treasury transactions when the bank information is unknown) and to the planning group of the customer that is linked to the Business Partner with whom the deal has been done.</p>
<p>No matter the approach retained, a dedicated payment method is usually required. The format to be associated to the payment method is to be confirmed with the house banks. It could very well be S.W.I.F.T. MT101 which is supported in standard SAP since release 4.5A.</p>
<p>Depending on the approach you choose, you have to fill in the single payment method field (valid for approach based on F110) or the multi payment methods field (valid for approach based on F111) in the treasury transaction and in the Business Partner master data.</p>
<p>In customizing, the posting rules are associated to so-called update types. This specification of the posting rules can be specialized for each of the two possible approaches. For this purpose a payment flag is found in the customizing screen used to allocated posting rules to update types. When this flag is set it means that the specified posting rule applies to the classic payment program approach.</p>
]]></content:encoded>
			<wfw:commentRss>http://sap-core.com/articles/treasury/treasury-cash-flows-payment-processing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAP Treasury system preparation</title>
		<link>http://sap-core.com/articles/treasury/system-preparation/</link>
		<comments>http://sap-core.com/articles/treasury/system-preparation/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 10:55:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://sap-core.com/?page_id=16909</guid>
		<description><![CDATA[By default, SAP Treasury and Risk Management may not be active in your system. In this case you will not see the SAP Treasury related menus in the SAP Easy Access or SAP Customizing menus (under the parent node Financial Supply Chain Management). In such situation, you must first activate the business extension Financial Services [...]]]></description>
			<content:encoded><![CDATA[<p>By default, SAP Treasury and Risk Management may not be active in your system. In this case you will not see the SAP Treasury related menus in the SAP Easy Access or SAP Customizing menus (under the parent node Financial Supply Chain Management).</p>
<p>In such situation, you must first activate the business extension Financial Services (EA-FS) using the Switch Framework. Basically this operation will activate some code and interface elements that are already present in the system but not executed so far due to the switch being turned off.</p>
<p>This operation can be carried out using transaction SFW5. However some prerequisites are required. You should review at least following OSS notes before proceeding:</p>
<ul>
<li>Note 532670 &#8211; Activating the R/3 Enterprise Extension EA-FS</li>
<li>Note 535003 &#8211; SAP R/3 Enterprise Extension Set 1.10: Activation switch</li>
<li>Note 588364 &#8211; Prerequisites for activating extensions</li>
<li>Note 538887 &#8211; SAP R/3 Enterprise 47&#215;110: Software architecture/maintenance</li>
<li>Note 598937 &#8211; Termination w/ error for inactive indicator EA-FINSERV</li>
</ul>
<p>Note 588364 is particularly important since it specifies that the client role should be set as ‘Test’ instead of ‘Production’ (transaction SCC4) while activating the extension.</p>
<p>Note that this activation is cross-clients and it does not require the execution of SGEN afterwards.</p>
<p>Before starting the implementation of SAP Treasury, it may be wise as well to check the support package and/or enhancement package the ERP is running on and identify the need for more recent packages. SAP Treasury functionalities are regularly enhanced as enhancement packs are delivered. However there is not always a need to install the latest enhancement packs as ECC6 without any enhancement packs already offers a lot of functionalities treasury wise. It must be noted that while activating Financial Services (EA-FS) is a low cost operation (with a very low risk of impact on the existing ERP implementation), installing enhancement packs may turn out to be a much more costly operation involving non-regression testing.</p>
<p>From my own experience, it is not a good idea to bind the implementation of SAP Treasury to the implementation of enhancement packs and to try to deliver both activities within one single project. If a specific level of enhancement packs is absolutely required, their installation should be considered as a prerequisite project in itself. A SAP Treasury implementation project is already complex enough by itself not to add additional technical and planning constraints.</p>
<h3>Initial Treasury customizing</h3>
<p>You might encounter the situation where no initial standard SAP Treasury customizing is available in your customizing client. It doesn&#8217;t mean you have to start it from scratch because such customizing is in fact delivered by SAP but in the reference client 000. So before starting to implement SAP Treasury, you might want to &#8220;copy&#8221; this reference customizing from the client 000 into your customizing client. The safest way to proceed is to go into each of the relevant customizing activities for your implementation and to perform a customizing adjustment (this functionality can be found in the Utilities menu of any customizing transaction).</p>
<p>Once the reference customizing is present in your customizing client, you have a sound foundation to start elaborating your own implementation modifying the required settings to match your specific requirements.</p>
]]></content:encoded>
			<wfw:commentRss>http://sap-core.com/articles/treasury/system-preparation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAP Treasury Business Partners</title>
		<link>http://sap-core.com/articles/treasury/business-partners/</link>
		<comments>http://sap-core.com/articles/treasury/business-partners/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 16:08:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://sap-core.com/?page_id=13968</guid>
		<description><![CDATA[SAP Treasury, just like any other applications from FSCM (Financial Supply Chain Management), works with Business Partners. If Business Partners are not yet implemented in your ERP, one of the first tasks of any SAP Treasury implementation project might be to implement those Business Partners master data. Business Partners can either be created manually from [...]]]></description>
			<content:encoded><![CDATA[<p>SAP Treasury, just like any other applications from FSCM (Financial Supply Chain Management), works with Business Partners. If Business Partners are not yet implemented in your ERP, one of the first tasks of any SAP Treasury implementation project might be to implement those Business Partners master data.</p>
<p>Business Partners can either be created manually from scratch (using transaction BP for example) or from customers and / or vendors master data (using transactions <span style="text-decoration: underline;">FLBPD1 &#8211; Create Business Partner from Customer</span> and <span style="text-decoration: underline;">FLBPC1 &#8211; Create Business Partner from Vendor</span>). In this latter case, a logical link will be established between the Business Partner and the corresponding customer or vendor master data. Note that in case this link would not be created initially (because the Business Partner is initially created manually from scratch or because the Business Partner is created before the corresponding customer or vendors master data), it can still be created at a later stage using transactions <span style="text-decoration: underline;">FLBPD2 &#8211; Link Business Partner to Customer</span> and <span style="text-decoration: underline;">FLBPC2 &#8211; Link Business Partner to Vendor</span>.</p>
<p>Business Partners are role-based. SAP Treasury relies on Business Partner role TR0151 (Counterparty) to define general settings of the partners as well as so-called standing instructions.</p>
<p>From a Treasury perspective, key general information includes the partner identification data, its address and its bank account information.</p>
<p>Standing instructions are key company code dependent settings affecting how partner’s payments and correspondence should take place and defining what Treasury transactions are allowed with the partner and what derived flows should be applied (typically used to compute and post tax amounts on interests earned).</p>
]]></content:encoded>
			<wfw:commentRss>http://sap-core.com/articles/treasury/business-partners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog</title>
		<link>http://sap-core.com/blog/</link>
		<comments>http://sap-core.com/blog/#comments</comments>
		<pubDate>Sun, 09 Oct 2011 18:52:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://sap-core.com/?page_id=729</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://sap-core.com/blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Home</title>
		<link>http://sap-core.com/</link>
		<comments>http://sap-core.com/#comments</comments>
		<pubDate>Sun, 09 Oct 2011 18:49:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://sap-core.com/?page_id=727</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://sap-core.com/home/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is SAP?</title>
		<link>http://sap-core.com/blog/what-is-sap/</link>
		<comments>http://sap-core.com/blog/what-is-sap/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 12:54:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SAP Blog]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[SAP]]></category>

		<guid isPermaLink="false">http://sap-core.com/?p=717</guid>
		<description><![CDATA[In an earlier post, I have tried to explain what SAP ERP is. However, I realized that, while SAP ERP is a well known SAP product for people who already know something about SAP, SAP in itself may be totally unknown to the rest of the world. So today let&#8217;s try to answer this simple [...]]]></description>
			<content:encoded><![CDATA[<p>In an earlier post, I have tried to explain <a title="What is SAP ERP?" href="http://sap-core.com/blog/what-is-sap-erp/">what SAP ERP is</a>. However, I realized that, while SAP ERP is a well known SAP product for people who already know something about SAP, SAP in itself may be totally unknown to the rest of the world.</p>
<p>So today let&#8217;s try to answer this simple question: <strong>What is SAP?</strong></p>
<p>SAP is both a company and a products suite. And most people refer to both the company and its main product (the ERP solution) using the SAP acronym.</p>
<h3>SAP as a company</h3>
<p>SAP is an international company with its headquarters in Germany (in Walldorf) which develops business software that supports most of the operational processes of its customers (mainly large and midsize companies).</p>
<p>It has been funded in 1972 by former IBM engineers and has now around 50.000 employees.</p>
<p>It is today considered as the world&#8217;s largest business software company.</p>
<h3>SAP as a product</h3>
<p>SAP&#8217;s flagship product is the ERP (Enterprise Resource Planning) solution. An ERP is a business software that addresses most of the operational processes of a company covering enterprise functions like Finance, Purchasing, Ordering and Billing, Human Capital management, Project management, Analytics, &#8230; through the implementation of software modules. Main SAP ERP modules include:</p>
<ul>
<li>SAP FI (Finance)</li>
<li>SAP CO (Controlling)</li>
<li>SAP MM (Materials Management)</li>
<li>SAP SD (Sales and Distribution)</li>
<li>SAP HR (Human Resources)</li>
<li>SAP PS (Project System)</li>
<li>SAP PP (Production Planning)</li>
<li>SAP CS (Customer Service)</li>
</ul>
<p>and most of those modules contain sub-modules in order to address specific areas of the functional domains. For example, in SAP FI you will find sub-modules covering General Ledger, Accounts Receivables (i.e. customer accounting), Accounts Payables (i.e. vendor accounting), Asset Accounting, Banking, Treasury, &#8230;</p>
<p>Next to ERP, SAP is also offering:</p>
<ul>
<li>SAP BW (Business Warehouse) to cover Business Intelligence needs together with SAP Business Objects</li>
<li>CRM (Customer Relationship Management)</li>
<li>SRM (Supplier Relationship Management)</li>
<li>PLM (Product Lifecycle Management&gt;</li>
<li>SCM (Supply Chain Management)</li>
</ul>
<p>Most of these products run on a common technical platform currently known as Netweaver which provides common technologies and interfacing techniques to the functional modules ensuring a certain degree of uniformity of those modules.</p>
]]></content:encoded>
			<wfw:commentRss>http://sap-core.com/blog/what-is-sap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAP FI documents statuses</title>
		<link>http://sap-core.com/blog/sap-fi-documents-statuses/</link>
		<comments>http://sap-core.com/blog/sap-fi-documents-statuses/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 11:54:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SAP Blog]]></category>
		<category><![CDATA[SAP documents]]></category>
		<category><![CDATA[SAP Finance]]></category>

		<guid isPermaLink="false">http://sap-core.com/?p=683</guid>
		<description><![CDATA[In SAP Finance, bookings on financial accounts are stored in financial documents comprising a header and one or several line items. In the document header, different line item independent fields are defined among which a document status field. This field is used to indicate documents which have a special status with regard to the way [...]]]></description>
			<content:encoded><![CDATA[<p>In SAP Finance, bookings on financial accounts are stored in financial documents comprising a header and one or several line items.</p>
<p>In the document header, different line item independent fields are defined among which a <strong>document status</strong> field. This field is used to indicate documents which have a special status with regard to the way they impact (or not) the account balances.</p>
<p>Following FI document statuses exist in ECC6:</p>
<ul>
<li> (SPACE) &#8211; Normal document</li>
</ul>
<p>An empty document status value indicates that the document is a normal document affecting account balances as indicated by the document line items.</p>
<ul>
<li>A &#8211; Clearing Document</li>
</ul>
<p> The FI document status value A is associated to clearing documents. Clearing documents are special documents since they serve the purpose of clearing (other documents) open items by creating a link between those items. They don&#8217;t primarily serve the purpose of updating account balances but they affect the status of account items.</p>
<ul>
<li>B &#8211; Reset clearing document</li>
</ul>
<p>FI documents with status B are reset clearing documents. Reset clearing documents are FI documents that are used to reset (reverse) clearing documents. Regarding their impact on accounts balances, they have the same behaviour as the clearing documents they reverse.</p>
<ul>
<li>D &#8211; Recurring entry document</li>
</ul>
<p>A recurring entry document has the status D. Recurring document entries do not affect account balances as recurring documents  are only templates for the creation of normal documents. Documents created based on recurring document entries have the status of normal documents.</p>
<ul>
<li>L - Posting Not in Leading Ledger</li>
</ul>
<p>Used by the new G/L Accounting framework to indicate documents whose bookings are not made to the leading ledger. As such the leading ledger balances are not affected by those documents.</p>
<ul>
<li>M - Sample document</li>
</ul>
<p>Documents with status M represent sample documents and are similar to recurring document entries (status D) because they represent also templates which do not affect account balances. Account balances are only affected by normal documents that are created based on the sample document.</p>
<ul>
<li>S Noted items</li>
</ul>
<p>A document with status S comprises only noted items which do not affect account balances. Noted items are associated to special G/L indicators and are used to provide information without affecting actual financial figures.</p>
<ul>
<li>V Parked document</li>
</ul>
<p>FI document status V refers to FI documents that are in preparation. Such documents do not affect accounts balances because they are not necessarily complete so they represent drafts of future normal documents.</p>
<ul>
<li>W Parked document with change of document ID</li>
</ul>
<p>Status W is assigned to follow-on documents of parked documents. Such follow-on documents are parked documents themselves and behave like classic parked documents (status V).</p>
<ul>
<li>Z Parked document which was deleted</li>
</ul>
<p> Document status Z identifies deleted parked documents. Obviously these documents do not affect financial accounts balances.</p>
<p>Finally, note that the document status field is only visible in the document header when its value is not blank (so when the document is not a normal document):</p>
<div id="attachment_685" class="wp-caption alignnone" style="width: 239px"><a href="http://sap-core.com/wp-content/uploads/2011/10/Document-Status.jpg"><img class="size-full wp-image-685" title="Document Status" src="http://sap-core.com/wp-content/uploads/2011/10/Document-Status.jpg" alt="Document Status" width="229" height="100" /></a><p class="wp-caption-text">Document status field</p></div>
]]></content:encoded>
			<wfw:commentRss>http://sap-core.com/blog/sap-fi-documents-statuses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to identify cleared items of a payment document?</title>
		<link>http://sap-core.com/blog/how-to-find-cleared-items-of-a-payment-document/</link>
		<comments>http://sap-core.com/blog/how-to-find-cleared-items-of-a-payment-document/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 10:38:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SAP Blog]]></category>
		<category><![CDATA[SAP Finance]]></category>
		<category><![CDATA[SAP tips & tricks]]></category>

		<guid isPermaLink="false">http://sap-core.com/?p=658</guid>
		<description><![CDATA[It happens regularly that SAP users know a payment document and they would like to know what invoices and/or credit notes are cleared (paid) by that payment document. Or more generally there is often a need to identify what documents are cleared by a specific clearing document (which can be a payment document or any [...]]]></description>
			<content:encoded><![CDATA[<p>It happens regularly that SAP users know a payment document and they would like to know what invoices and/or credit notes are cleared (paid) by that payment document. Or more generally there is often a need to identify what documents are cleared by a specific clearing document (which can be a payment document or any another type of document).</p>
<p>SAP techies often start searching for line items in the SAP database on the clearing document number field. This is a workable solution but not suitable for end users. End users should use the <strong>payment usage </strong>functionality which is directly available in the display document transaction (FB03 or other document display transaction) of clearing documents.</p>
<div id="attachment_659" class="wp-caption alignnone" style="width: 441px"><a href="http://sap-core.com/wp-content/uploads/2011/10/Payment-Usage.jpg"><img class="size-full wp-image-659" title="Payment Usage" src="http://sap-core.com/wp-content/uploads/2011/10/Payment-Usage.jpg" alt="SAP Payment Usage menu" width="431" height="126" /></a><p class="wp-caption-text">SAP Payment Usage menu</p></div>
<p>This function triggers the display of a list of the line items cleared by the current clearing document.</p>
]]></content:encoded>
			<wfw:commentRss>http://sap-core.com/blog/how-to-find-cleared-items-of-a-payment-document/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forums are open!</title>
		<link>http://sap-core.com/blog/forums-are-open/</link>
		<comments>http://sap-core.com/blog/forums-are-open/#comments</comments>
		<pubDate>Sat, 01 Oct 2011 20:58:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SAP Blog]]></category>

		<guid isPermaLink="false">http://sap-core.com/?p=638</guid>
		<description><![CDATA[I am pleased to announce that discussion forums on SAP Core are now open. Use them actively and they will be helpful to you soon or late&#8230; Enjoy!]]></description>
			<content:encoded><![CDATA[<p>I am pleased to announce that <a href="http://sap-core.com/forums/" title="SAP forums">discussion forums</a> on SAP Core are now open. Use them actively and they will be helpful to you soon or late&#8230;</p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://sap-core.com/blog/forums-are-open/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forums</title>
		<link>http://sap-core.com/forums/</link>
		<comments>http://sap-core.com/forums/#comments</comments>
		<pubDate>Sat, 01 Oct 2011 20:39:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://sap-core.com/?page_id=635</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="bbp-breadcrumb"><p><a href="http://sap-core.com/" class="bbp-breadcrumb-home">Home</a> &rsaquo; <span class="bbp-breadcrumb-current">Forums</span></p></div>
	
	<table class="bbp-forums">

		<thead>
			<tr>
				<th class="bbp-forum-info">Forum</th>
				<th class="bbp-forum-topic-count">Topics</th>
				<th class="bbp-forum-reply-count">Posts</th>
				<th class="bbp-forum-freshness">Freshness</th>
			</tr>
		</thead>

		<tfoot>
			<tr><td colspan="4">&nbsp;</td></tr>
		</tfoot>

		<tbody>

			
				
	<tr id="bbp-forum-591" class="post-591 forum type-forum status-publish hentry odd">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/business-processes/" title="Business Processes">Business Processes</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">1</td>

		<td class="bbp-forum-reply-count">1</td>

		<td class="bbp-forum-freshness">

			
			<a href="http://sap-core.com/forums/topic/sap-ewm-training/" title="SAP EWM training">158 days</a>
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"><a href="http://sap-core.com/forums/users/sappractices/" title="View sappractices's profile" class="bbp-author-avatar" rel="nofollow"><img alt='' src='http://1.gravatar.com/avatar/7f03f459322dbba4ce39a0ba2e7b737d?s=14&amp;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D14&amp;r=G' class='avatar avatar-14 photo' height='14' width='14' /></a>&nbsp;<a href="http://sap-core.com/forums/users/sappractices/" title="View sappractices's profile" class="bbp-author-name" rel="nofollow">sappractices</a></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-591 -->

			
				
	<tr id="bbp-forum-593" class="post-593 forum type-forum status-publish hentry even">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/erp-financial-accounting/" title="ERP Financial Accounting">ERP Financial Accounting</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">2</td>

		<td class="bbp-forum-reply-count">2</td>

		<td class="bbp-forum-freshness">

			
			<a href="http://sap-core.com/forums/topic/intercompany-book-or-documentation/" title="Intercompany book or documentation?">83 days</a>
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"><a href="http://sap-core.com/forums/users/admin/" title="View admin's profile" class="bbp-author-avatar" rel="nofollow"><img alt='' src='http://0.gravatar.com/avatar/61a9b8d16ab096547a148f985ba1a6c3?s=14&amp;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D14&amp;r=G' class='avatar avatar-14 photo' height='14' width='14' /></a>&nbsp;<a href="http://sap-core.com/forums/users/admin/" title="View admin's profile" class="bbp-author-name" rel="nofollow">admin</a></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-593 -->

			
				
	<tr id="bbp-forum-595" class="post-595 forum type-forum status-publish hentry odd">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/erp-asset-accounting/" title="ERP Asset Accounting">ERP Asset Accounting</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">0</td>

		<td class="bbp-forum-reply-count">0</td>

		<td class="bbp-forum-freshness">

			
			No Topics
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-595 -->

			
				
	<tr id="bbp-forum-597" class="post-597 forum type-forum status-publish hentry even">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/erp-treasury/" title="ERP Treasury">ERP Treasury</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">0</td>

		<td class="bbp-forum-reply-count">0</td>

		<td class="bbp-forum-freshness">

			
			No Topics
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-597 -->

			
				
	<tr id="bbp-forum-599" class="post-599 forum type-forum status-publish hentry odd">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/erp-controlling/" title="ERP Controlling">ERP Controlling</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">0</td>

		<td class="bbp-forum-reply-count">0</td>

		<td class="bbp-forum-freshness">

			
			No Topics
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-599 -->

			
				
	<tr id="bbp-forum-601" class="post-601 forum type-forum status-publish hentry even">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/erp-human-capital-management/" title="ERP Human Capital Management">ERP Human Capital Management</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">0</td>

		<td class="bbp-forum-reply-count">0</td>

		<td class="bbp-forum-freshness">

			
			No Topics
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-601 -->

			
				
	<tr id="bbp-forum-603" class="post-603 forum type-forum status-publish hentry odd">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/erp-materials-management/" title="ERP Materials Management">ERP Materials Management</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">0</td>

		<td class="bbp-forum-reply-count">0</td>

		<td class="bbp-forum-freshness">

			
			No Topics
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-603 -->

			
				
	<tr id="bbp-forum-605" class="post-605 forum type-forum status-publish hentry even">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/erp-sales-and-distribution/" title="ERP Sales and Distribution">ERP Sales and Distribution</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">0</td>

		<td class="bbp-forum-reply-count">0</td>

		<td class="bbp-forum-freshness">

			
			No Topics
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-605 -->

			
				
	<tr id="bbp-forum-607" class="post-607 forum type-forum status-publish hentry odd">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/erp-pp/" title="ERP Production">ERP Production</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">0</td>

		<td class="bbp-forum-reply-count">0</td>

		<td class="bbp-forum-freshness">

			
			No Topics
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-607 -->

			
				
	<tr id="bbp-forum-609" class="post-609 forum type-forum status-publish hentry even">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/erp-ps/" title="ERP Projects System">ERP Projects System</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">0</td>

		<td class="bbp-forum-reply-count">0</td>

		<td class="bbp-forum-freshness">

			
			No Topics
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-609 -->

			
				
	<tr id="bbp-forum-611" class="post-611 forum type-forum status-publish hentry odd">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/srm/" title="Supplier Relationship Management">Supplier Relationship Management</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">0</td>

		<td class="bbp-forum-reply-count">0</td>

		<td class="bbp-forum-freshness">

			
			No Topics
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-611 -->

			
				
	<tr id="bbp-forum-613" class="post-613 forum type-forum status-publish hentry even">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/crm/" title="Customer Relationship Management">Customer Relationship Management</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">0</td>

		<td class="bbp-forum-reply-count">0</td>

		<td class="bbp-forum-freshness">

			
			No Topics
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-613 -->

			
				
	<tr id="bbp-forum-615" class="post-615 forum type-forum status-publish hentry odd">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/grc/" title="Governance, Risks and Compliance">Governance, Risks and Compliance</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">0</td>

		<td class="bbp-forum-reply-count">0</td>

		<td class="bbp-forum-freshness">

			
			No Topics
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-615 -->

			
				
	<tr id="bbp-forum-617" class="post-617 forum type-forum status-publish hentry even">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/solution-manager/" title="Solution Manager">Solution Manager</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">0</td>

		<td class="bbp-forum-reply-count">0</td>

		<td class="bbp-forum-freshness">

			
			No Topics
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-617 -->

			
				
	<tr id="bbp-forum-619" class="post-619 forum type-forum status-publish hentry odd">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/netweaver-technologies/" title="Netweaver technologies">Netweaver technologies</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">0</td>

		<td class="bbp-forum-reply-count">0</td>

		<td class="bbp-forum-freshness">

			
			No Topics
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-619 -->

			
				
	<tr id="bbp-forum-621" class="post-621 forum type-forum status-publish hentry even">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/portal/" title="Portal">Portal</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">0</td>

		<td class="bbp-forum-reply-count">0</td>

		<td class="bbp-forum-freshness">

			
			No Topics
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-621 -->

			
				
	<tr id="bbp-forum-623" class="post-623 forum type-forum status-publish hentry odd">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/bw-extractors/" title="BW Extractors">BW Extractors</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">0</td>

		<td class="bbp-forum-reply-count">0</td>

		<td class="bbp-forum-freshness">

			
			No Topics
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-623 -->

			
				
	<tr id="bbp-forum-625" class="post-625 forum type-forum status-publish hentry even">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/bw-data-modeling/" title="BW Data Modeling">BW Data Modeling</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">0</td>

		<td class="bbp-forum-reply-count">0</td>

		<td class="bbp-forum-freshness">

			
			No Topics
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-625 -->

			
				
	<tr id="bbp-forum-627" class="post-627 forum type-forum status-publish hentry odd">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/bw-reporting/" title="BW Reporting">BW Reporting</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">0</td>

		<td class="bbp-forum-reply-count">0</td>

		<td class="bbp-forum-freshness">

			
			No Topics
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-627 -->

			
				
	<tr id="bbp-forum-629" class="post-629 forum type-forum status-publish hentry even">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/abap/" title="ABAP">ABAP</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">0</td>

		<td class="bbp-forum-reply-count">0</td>

		<td class="bbp-forum-freshness">

			
			No Topics
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-629 -->

			
				
	<tr id="bbp-forum-631" class="post-631 forum type-forum status-publish hentry odd">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/workflow/" title="Workflow">Workflow</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">0</td>

		<td class="bbp-forum-reply-count">0</td>

		<td class="bbp-forum-freshness">

			
			No Topics
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-631 -->

			
				
	<tr id="bbp-forum-633" class="post-633 forum type-forum status-publish hentry even">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/system-maintenance/" title="System maintenance">System maintenance</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">0</td>

		<td class="bbp-forum-reply-count">0</td>

		<td class="bbp-forum-freshness">

			
			No Topics
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-633 -->

			
				
	<tr id="bbp-forum-978" class="post-978 forum type-forum status-publish hentry odd">

		<td class="bbp-forum-info">

			
			<a class="bbp-forum-title" href="http://sap-core.com/forums/forum/sap-training/" title="SAP Training">SAP Training</a>

			
			
			
			
			
			<div class="bbp-forum-description"></div>

			
		</td>

		<td class="bbp-forum-topic-count">12</td>

		<td class="bbp-forum-reply-count">12</td>

		<td class="bbp-forum-freshness">

			
			<a href="http://sap-core.com/forums/topic/sap-ewm-training/" title="SAP EWM training">158 days</a>
			
			<p class="bbp-topic-meta">

				
				<span class="bbp-topic-freshness-author"><a href="http://sap-core.com/forums/users/sappractices/" title="View sappractices's profile" class="bbp-author-avatar" rel="nofollow"><img alt='' src='http://1.gravatar.com/avatar/7f03f459322dbba4ce39a0ba2e7b737d?s=14&amp;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D14&amp;r=G' class='avatar avatar-14 photo' height='14' width='14' /></a>&nbsp;<a href="http://sap-core.com/forums/users/sappractices/" title="View sappractices's profile" class="bbp-author-name" rel="nofollow">sappractices</a></span>

				
			</p>
		</td>

	</tr><!-- bbp-forum-978 -->

			
		</tbody>

	</table>

	
]]></content:encoded>
			<wfw:commentRss>http://sap-core.com/forums/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAP jobs at your finger tips</title>
		<link>http://sap-core.com/blog/sap-jobs-at-your-finger-tips/</link>
		<comments>http://sap-core.com/blog/sap-jobs-at-your-finger-tips/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 09:35:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SAP Blog]]></category>

		<guid isPermaLink="false">http://sap-core.com/?p=508</guid>
		<description><![CDATA[It took some time and efforts but it is eventually there! SAP Core has a brand new jobs section devoted to SAP jobs all around the world. To support this new section of the website, we implemented a user registration and authentication mechanism which is valid throughout the site. The functionalities associated to user accounts [...]]]></description>
			<content:encoded><![CDATA[<p>It took some time and efforts but it is eventually there! SAP Core has a brand new <a href="/jobs/" title="SAP jobs">jobs section</a> devoted to SAP jobs all around the world. To support this new section of the website, we implemented a user registration and authentication mechanism which is valid throughout the site. The functionalities associated to user accounts are still limited and mainly related to the new jobs section but you can expect much more personalized services throughout the website in the near future&#8230;</p>
<p>Next enhancements ahead: improvements in the troubleshooting section&#8230; Stay tuned.</p>
]]></content:encoded>
			<wfw:commentRss>http://sap-core.com/blog/sap-jobs-at-your-finger-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Control Panel</title>
		<link>http://sap-core.com/admin/</link>
		<comments>http://sap-core.com/admin/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 11:16:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SAP Blog]]></category>

		<guid isPermaLink="false">http://sap-core.com/?page_id=503</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://sap-core.com/admin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is ABAP?</title>
		<link>http://sap-core.com/articles/basis/abap/what-is-abap/</link>
		<comments>http://sap-core.com/articles/basis/abap/what-is-abap/#comments</comments>
		<pubDate>Fri, 22 Apr 2011 21:27:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SAP Blog]]></category>

		<guid isPermaLink="false">http://sap-core.com/?page_id=427</guid>
		<description><![CDATA[ABAP is the programming language developed by SAP to support the development of business applications on its technical platform (currently named SAP Netweaver). ABAP runs on the SAP application server which lies between the presentation server (responsible for managing the data input from and the data output to the end user) and the database server [...]]]></description>
			<content:encoded><![CDATA[<p>ABAP is the programming language developed by SAP to support the development of business applications on its technical platform (currently named SAP Netweaver).</p>
<p>ABAP runs on the SAP application server which lies between the presentation server (responsible for managing the data input from and the data output to the end user) and the database server (responsible for managing the data input from and the data output to the database).</p>
<p>ABAP is not a system or generic purpose programming language like C, C++ or Java. It was clearly designed to be a business oriented development language (nearer to COBOL language) which means practically that it provides natively advanced instructions and functionalities that facilitate the development of business applications (e.g. built in memory management, database interface, &#8230;). It also means the language does not offer the same level of flexibility that a more generic language usually offers (pointers, advanced memory management, types casting, &#8230;).</p>
<p>The limitations of ABAP being understood in the context of its objectives, the language (together with its accompanying development environment) proves to be a robust and stable tool to develop business applications.</p>
<p>Lately, the original language has been extended to support object oriented programming. Not all features of object oriented programming are supported by the object oriented version of ABAP but the set of functionalities proposed by the language is usually sufficient to cover most business oriented developments.</p>
]]></content:encoded>
			<wfw:commentRss>http://sap-core.com/articles/basis/abap/what-is-abap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using ranges in ABAP selection screens</title>
		<link>http://sap-core.com/blog/abap-blog/using-ranges-in-abap-selection-screens/</link>
		<comments>http://sap-core.com/blog/abap-blog/using-ranges-in-abap-selection-screens/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 15:34:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ABAP]]></category>

		<guid isPermaLink="false">http://sap-core.com/?p=406</guid>
		<description><![CDATA[If you want to have a range in a selection screen, meaning From &#8211; To input fields in order to type in an interval of values without the advanced functionalities of a SELECT_OPTIONS, the right instruction to use is not RANGES as one could expect but SELECT-OPTIONS with the addition NO-EXTENSION. Using RANGES instead of [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to have a range in a selection screen, meaning From &#8211; To input fields in order to type in an interval of values without the advanced functionalities of a SELECT_OPTIONS, the right instruction to use is not RANGES as one could expect but SELECT-OPTIONS with the addition NO-EXTENSION.</p>
<p>Using RANGES instead of SELECT-OPTIONS NO-EXTENSION will have no effect on the selection-screen.</p>
<p>The flexibility of the input offered by SELECT-OPTIONS NO-EXTENSION lies between the one offered by PARAMTERS which allows only the input of a single value and the one offered by SELECT-OPTIONS (without the addition NO-EXTENSION) which allows for the input of tables of RANGES.</p>
]]></content:encoded>
			<wfw:commentRss>http://sap-core.com/blog/abap-blog/using-ranges-in-abap-selection-screens/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Transporting SAP number ranges</title>
		<link>http://sap-core.com/blog/silly-mistakes/transporting-number-ranges/</link>
		<comments>http://sap-core.com/blog/silly-mistakes/transporting-number-ranges/#comments</comments>
		<pubDate>Tue, 01 Feb 2011 16:08:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[silly-mistakes]]></category>

		<guid isPermaLink="false">http://sap-core.com/?p=400</guid>
		<description><![CDATA[Today, while searching the net for some specific information about restoring customizing tables from change logs, I encountered some posts from people being really in trouble because of silly mistakes they had done. Most of the time these are due to their lack of seniority in working with SAP. Anyhow, I decided to create a [...]]]></description>
			<content:encoded><![CDATA[<p>Today, while searching the net for some specific information about restoring customizing tables from change logs, I encountered some posts from people being really in trouble because of silly mistakes they had done. Most of the time these are due to their lack of seniority in working with SAP. Anyhow, I decided to create a little sub-section in this blog dedicated to silly mistakes not to be done if you want to keep your job in SAP! I will share with you what I know about this but I would be very happy to hear about you on this and I am sure the visitors of this blog also! Just post your not-to-be-reproduced experiences at mistakes@sap-core.com.</p>
<p>I start with a very classic one yet very efficient one in order to kill your SAP system: transporting the number ranges. These are maintained generally with SNUM or more specific transactions like FBN1 for accounting document. Although it may be tempting to store these in a transport (you save time since you don&#8217;t need to reproduce their creation in the target systems), never do that! Even at creation time since you are never sure that a transport will not be re-imported in case something goes wrong.</p>
<p>However, if you are not happy anymore with your current employer and want a quick way to get out for new challenges, this is a method to be considered seriously!</p>
]]></content:encoded>
			<wfw:commentRss>http://sap-core.com/blog/silly-mistakes/transporting-number-ranges/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rounding decimals of floating, packed or integer values in ABAP</title>
		<link>http://sap-core.com/blog/rounding-floating-packed-integer-values-in-abap/</link>
		<comments>http://sap-core.com/blog/rounding-floating-packed-integer-values-in-abap/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 16:08:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SAP Blog]]></category>
		<category><![CDATA[ABAP]]></category>

		<guid isPermaLink="false">http://sap-core.com/?p=397</guid>
		<description><![CDATA[There is often the need in ABAP to round values with a specific number of decimals. To accomplish this task, ABAP programmers often deploy a lot of imagination to finally implement fancy solutions that are not always optimal. This is a pity since SAP ERP contains a function module ready to perform this task. Guess [...]]]></description>
			<content:encoded><![CDATA[<p>There is often the need in ABAP to round values with a specific number of decimals. To accomplish this task, ABAP programmers often deploy a lot of imagination to finally implement fancy solutions that are not always optimal. This is a pity since SAP ERP contains a function module ready to perform this task. Guess its name: ROUND!</p>
<p>This function module accepts as import parameters the value (a variable in fact) to be rounded, the number of decimals to take into account for the rounding and a sign mentioning whether a round up (sign = &#8216;+&#8217;), a round down (sign = &#8216;-&#8217;) or a commercial rounding (= to nearest figure) (sign = &#8216;X&#8217;) is to be performed.</p>
<p>It provides the rounded value as output parameter.</p>
<p>As simple as that!</p>
]]></content:encoded>
			<wfw:commentRss>http://sap-core.com/blog/rounding-floating-packed-integer-values-in-abap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

