<?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 Flow</title>
	<atom:link href="http://www.sapflow.cz/feed" rel="self" type="application/rss+xml" />
	<link>http://www.sapflow.cz</link>
	<description>Anything can be done, it&#039;s just a matter of time and money...</description>
	<lastBuildDate>Thu, 02 Feb 2012 01:18:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Enterprise Information Management with SAP &#8211; a new book</title>
		<link>http://www.sapflow.cz/archives/322</link>
		<comments>http://www.sapflow.cz/archives/322#comments</comments>
		<pubDate>Thu, 02 Feb 2012 01:18:28 +0000</pubDate>
		<dc:creator>Pavel</dc:creator>
				<category><![CDATA[HANA]]></category>
		<category><![CDATA[SAP]]></category>

		<guid isPermaLink="false">http://www.sapflow.cz/?p=322</guid>
		<description><![CDATA[SAP Press is about to issue a new book from my favourite SAP Mentor &#8211; Ginger Gatling. More info: Enterprise Information Management with SAP &#8211; SAP PRESS Bookstore Table of Contents: A business is only as good as its data. The accuracy of enterprise information is the foundation for a business’ success—or failure. With this [...]]]></description>
			<content:encoded><![CDATA[<p>SAP Press is about to issue a new book from my favourite SAP Mentor &#8211; Ginger Gatling.</p>
<p>More info: <a href="http://www.sap-press.com/products/Enterprise-Information-Management-with-SAP.html#.TynjekLPS88.wordpress">Enterprise Information Management with SAP &#8211; SAP PRESS Bookstore</a></p>
<p>Table of Contents:</p>
<p>A business is only as good as its data. The accuracy of enterprise information is the foundation for a business’ success—or failure. With this book, you’ll learn which SAP enterprise information management tools will help you to eliminate cracks in that foundation, and how to get started with these tools. Explore SAP’s different EIM products, assess which options are right for you, and then learn the basics of working with them. With just the right mix of overview information and hands-on, practical guidance, this book will help you ensure that all your decisions are based on clean and trusted information.</p>
<h2>Highlights</h2>
<p>• Managing master data<br />
• Master Data Governance<br />
• Data migration<br />
• Information Steward<br />
• SAP BusinessObjects Data Services<br />
• Open Text<br />
• Lifecycle management<br />
• <span style="text-decoration: underline;"><strong>SAP HANA</strong></span><br />
• Big data<br />
• Real-life use cases</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sapflow.cz/archives/322/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No tax calculation function in FI/CO BAPIs &#8211; Solution</title>
		<link>http://www.sapflow.cz/archives/315</link>
		<comments>http://www.sapflow.cz/archives/315#comments</comments>
		<pubDate>Thu, 19 Jan 2012 00:47:55 +0000</pubDate>
		<dc:creator>Pavel</dc:creator>
				<category><![CDATA[ABAP tips]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[FI/CO BAPI]]></category>
		<category><![CDATA[Tax calculation]]></category>
		<category><![CDATA[Tax calculation FI/CO BAPI]]></category>

		<guid isPermaLink="false">http://www.sapflow.cz/?p=315</guid>
		<description><![CDATA[Symptom (as described in SAP OSS Note 367175) During the posting to accounting via BAPIs or IDocs you expect that analogous to posting transactions in FI the tax can be calculated. These are the following BAPIs / IDocs: BAPI_ACC_INVOICE_RECEIPT_POST BAPI_ACC_BILLING_POST IDoc message types ACLPAY, ACLREC, ACC_INVOICE_RECEIPT, ACC_BILLING &#160; Additional key words BAPI, IDoc, FB01, FB60 [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Symptom (as described in SAP OSS Note 367175)</strong></p>
<p>During the posting to accounting via BAPIs or IDocs you expect that analogous to posting transactions in FI the tax can be calculated. These are the following BAPIs / IDocs:</p>
<ul>
<li>BAPI_ACC_INVOICE_RECEIPT_POST</li>
</ul>
<ul>
<li>BAPI_ACC_BILLING_POST</li>
</ul>
<ul>
<li>IDoc message types ACLPAY, ACLREC, ACC_INVOICE_RECEIPT, ACC_BILLING</li>
</ul>
<p>&nbsp;</p>
<p><strong>Additional key words</strong></p>
<p>BAPI, IDoc, FB01, FB60</p>
<p><strong>Cause and prerequisites</strong></p>
<p>In general the calculation of taxes does not belong to the BAPI processing function. No other line item is generated after an FI/CO BAPI is called.</p>
<p><strong>Explanation</strong></p>
<p>So that tax can be calculated and posted correctly the SAP system requires far more information than just tax code, tax base amount and tax account. Transaction FB60 offers far more hidden information for the tax calculation, for example whether the net or gross amount should be used. In order to pass on all the necessary data to the BAPIs the interfaces would have to be oversized. In addition the implementation of a tax calculation function would cause the risk of possible inconsistencies in the posted tax amounts. Also it would not be possible to distinguish whether the taxes were calculated in the SAP system or in an external system (for example for an SD invoice for which the taxes are calculated in the external system).</p>
<p><strong>Solution</strong></p>
<p><em><strong>A solution does not exist!</strong></em> The tax data must be determined before the BAPI is called and in the tax line items they must be passed on to the BAPI/IDoc.</p>
<p><strong>My example code:</strong></p>
<blockquote><address><!--StartFragment -->************************************************************************<br />
*         Calculate tax                                                *<br />
************************************************************************<br />
DESCRIBE TABLE gt_curr_acc LINES gv_tax_tabix. &#8221;No. of lines in currency table</address>
<address>LOOP AT gt_inp_data INTO gs_inp_data.<br />
gv_tax_tabix = gv_tax_tabix + 1. &#8221;Actual tax line*   Run calculation<br />
CALL FUNCTION &#8217;CALCULATE_TAX_FROM_NET_AMOUNT&#8217;<br />
EXPORTING<br />
i_bukrs           = gs_inp_data-bukrs<br />
i_mwskz           = gs_inp_data-mwskz<br />
i_waers           = &#8217;AUD&#8217;<br />
i_wrbtr           = lv_wrbtr<br />
TABLES<br />
t_mwdat           = lt_mwdat<br />
EXCEPTIONS<br />
bukrs_not_found   = 1<br />
country_not_found = 2<br />
mwskz_not_defined = 3<br />
mwskz_not_valid   = 4<br />
ktosl_not_found   = 5<br />
kalsm_not_found   = 6<br />
parameter_error   = 7<br />
knumh_not_found   = 8<br />
kschl_not_found   = 9<br />
unknown_error     = 10<br />
account_not_found = 11<br />
txjcd_not_valid   = 12<br />
OTHERS            = 13.<br />
IF sy-subrc &lt;&gt; 0.<br />
*   Add your error handling here<br />
*   (CALL FUNCTION &#8217;SWO_TEXT_FUNCTION_EXCEPTION&#8217;)<br />
ENDIF.</p>
<p>*  Continue with processing =&gt; Tax acc table<br />
CLEAR: ls_mwdat, gs_e1bpactx01.<br />
READ TABLE lt_mwdat INTO ls_mwdat INDEX 1.<br />
gs_e1bpactx01-itemno_acc = gv_tax_tabix.<br />
gs_e1bpactx01-acct_key = ls_mwdat-ktosl.<br />
gs_e1bpactx01-tax_code = gs_inp_data-mwskz.<br />
gs_e1bpactx01-cond_key = ls_mwdat-kschl.</p>
<p>CLEAR gs_edidd.<br />
gs_edidd-segnam = zidoc_segnam-e1bpactx01.<br />
gs_edidd-sdata  = gs_e1bpactx01.<br />
APPEND gs_edidd TO gt_tax_acc.</p>
<p>*   Currency acc table<br />
CLEAR gs_e1bpaccr01.<br />
gs_e1bpaccr01-itemno_acc = gv_tax_tabix.<br />
gs_e1bpaccr01-currency   = gs_inp_data-waers.<br />
gs_e1bpaccr01-amt_base = gs_inp_data-wrbtr.<br />
gs_e1bpaccr01-amt_doccur = ls_mwdat-wmwst.</p>
<p>ENDLOOP.</p>
</address>
</blockquote>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sapflow.cz/archives/315/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Direct posting to tax account with AC BAPIs</title>
		<link>http://www.sapflow.cz/archives/310</link>
		<comments>http://www.sapflow.cz/archives/310#comments</comments>
		<pubDate>Thu, 19 Jan 2012 00:33:13 +0000</pubDate>
		<dc:creator>Pavel</dc:creator>
				<category><![CDATA[ABAP tips]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SAP BAPI tax calculation]]></category>

		<guid isPermaLink="false">http://www.sapflow.cz/?p=310</guid>
		<description><![CDATA[Symptom When you carry out a direct posting to a tax account, the system generates error message FF747: &#8220;The tax amount must not be greater than the tax base&#8221;. Other terms AC interface, taxes, BSET-FWBAS BAPI_ACC_DOCUMENT_POST, BAPI_ACC_DOCUMENT_CHECK, BAPI_ACC_BILLING_POST, BAPI_ACC_BILLING_CHECK, BAPI_ACC_INVOICE_RECEIPT_POST, BAPI_ACC_INVOICE_RECEIPT_CHECK, BAPI_ACC_GOODS_MOVEMENT_POST, BAPI_ACC_GOODS_MOVEMENT_CHECK Reason and Prerequisites Due to the business transaction, this direct posting is [...]]]></description>
			<content:encoded><![CDATA[<div><strong>Symptom</strong></div>
<p>When you carry out a direct posting to a tax account, the system generates error message FF747: <strong>&#8220;The tax amount must not be greater than the tax base&#8221;.</strong></p>
<div><strong>Other terms</strong></div>
<p>AC interface, taxes, BSET-FWBAS BAPI_ACC_DOCUMENT_POST, BAPI_ACC_DOCUMENT_CHECK, BAPI_ACC_BILLING_POST, BAPI_ACC_BILLING_CHECK, BAPI_ACC_INVOICE_RECEIPT_POST, BAPI_ACC_INVOICE_RECEIPT_CHECK, BAPI_ACC_GOODS_MOVEMENT_POST, BAPI_ACC_GOODS_MOVEMENT_CHECK</p>
<div><strong>Reason and Prerequisites</strong></div>
<p>Due to the business transaction, this direct posting is only possible with BAPI_ACC_BILLING_POST. Otherwise this function is not provided.</p>
<div><strong>Solution</strong></div>
<p>Apply OSS Note 487064.<br />
For this purpose, the structures in the BAPI have to be filled as follows:</p>
<div><strong>Example call with 16 EUR and base amount 100 EUR:</strong></div>
<div>
<ul>
<li>ACCOUNTPAYABLE must at least contain the item number (ITEMNO_ACC) and the vendor (VENDOR). The amount in structure CURRENCYAMOUNT is to be: AMT_DOCCUR = 16;CURRENCY = EUR;ITEMNO_ACC = 1.</li>
<li> ACCOUNTGL is only provided as a dummy line item and is deleted in the AC interface. ITEMNO_ACC (2?) and G/L account (GL_ACCOUNT) are required entry fields. In CURRENCYAMOUNT, you only have to fill ITEMNO_ACC</li>
<li>ACCOUNTTAX must contain ITEMNO_ACC (3?), tax account (GL_ACCOUNT) and tax code (TAX_CODE). The currency information in CURRENCYAMOUNT must contain AMT_DOCCUR = 16; CURRENCY = EUR and AMT_BASE = 100 with identical ITEMNO_ACC (3?).</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.sapflow.cz/archives/310/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Tips and tricks on Web Dynpro for ABAP &#8211; How to use ALV and Pop Ups</title>
		<link>http://www.sapflow.cz/archives/303</link>
		<comments>http://www.sapflow.cz/archives/303#comments</comments>
		<pubDate>Mon, 22 Aug 2011 05:33:32 +0000</pubDate>
		<dc:creator>Pavel</dc:creator>
				<category><![CDATA[WebDynpro for ABAP]]></category>

		<guid isPermaLink="false">http://www.sapflow.cz/?p=303</guid>
		<description><![CDATA[Quick Tips andTtricks on Web Dynpro for ABAP &#8211; How to use ALV and Pop Ups.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sdn.sap.com/irj/scn/index?rid=%2Flibrary%2Fuuid%2F40794172-b95a-2910-fb98-b86d8a0918b4">Quick Tips andTtricks on Web Dynpro for ABAP &#8211; How to use ALV and Pop Ups</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sapflow.cz/archives/303/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use field symbols for better performance in internal tables</title>
		<link>http://www.sapflow.cz/archives/296</link>
		<comments>http://www.sapflow.cz/archives/296#comments</comments>
		<pubDate>Fri, 19 Aug 2011 04:26:11 +0000</pubDate>
		<dc:creator>Pavel</dc:creator>
				<category><![CDATA[ABAP tips]]></category>
		<category><![CDATA[SAP]]></category>

		<guid isPermaLink="false">http://www.sapflow.cz/?p=296</guid>
		<description><![CDATA[Full text &#38; code of this article on: Use field symbols for better performance in internal tables. Author: James Vander Heyden Do you want to squeeze more performance out of your Internal Table processing? The new ABAP object extensions in SAP require internal table definitions to look a little different. With this new style of [...]]]></description>
			<content:encoded><![CDATA[<p>Full text &amp; code of this article on: <a href="http://searchsap.techtarget.com/tip/Use-field-symbols-for-better-performance-in-internal-tables#.Tk3lz_GE18g.wordpress">Use field symbols for better performance in internal tables</a>.</p>
<p>Author:<br />
James Vander Heyden</p>
<p>Do you want to squeeze more performance out of your Internal Table processing? The new ABAP object extensions in SAP require internal table definitions to look a little different. With this new style of definition comes many options for better performance like hash tables and sorted tables. The use of field symbols takes this performance concept one step further.</p>
<p>The new style of definition of internal tables usually doesn&#8217;t include a header area for the internal table. Furthermore, ABAP Objects will not allow internal tables with header lines. For added performance, instead of declaring a work area&#8211;use a field symbol. The work area concept and header line format both require data to be moved from the internal table to the work area or header area. A field symbol is just a pointer that will point to the proper line of the itab. With field symbols, no data needs to be moved. The field symbol just stores the proper memory address to point at the right line. The field symbol can have structure and be made up of fields similar to a work area or header line. Because no data needs to be copied, processing is much faster.</p>
<p>The keys to the usage are:</p>
<p>1) Defining the table records and the field symbol in a similar type.</p>
<p>* just an ordinary standard table</p>
<blockquote><p>TYPES: BEGIN OF it_vbak_line,<br />
vbeln LIKE vbak-vbeln,<br />
vkorg LIKE vbak-vkorg,<br />
vtweg LIKE vbak-vtweg,<br />
spart LIKE vbak-spart,<br />
kunnr LIKE vbak-kunnr,<br />
END OF it_vbak_line.</p>
<p>DATA: it_vbak TYPE TABLE OF it_vbak_line.<br />
FIELD-SYMBOLS: &lt;it_vbak_line&gt; TYPE it_vbak_line.</p></blockquote>
<p>* or as a screaming fast hash table for keyed reads</p>
<blockquote><p>TYPES: BEGIN OF it_vbpa_line,<br />
vbeln LIKE vbak-vbeln,<br />
kunnr LIKE vbak-kunnr,<br />
END OF it_vbpa_line.</p>
<p>DATA: it_vbpa TYPE HASHED TABLE OF it_vbpa_line<br />
WITH UNIQUE KEY vbeln.<br />
FIELD-SYMBOLS: &lt;it_vbpa_line&gt; TYPE it_vbpa_line.</p></blockquote>
<p>2) In ITAB processing, utilize the ASSIGNING command.</p>
<p>* loop example</p>
<blockquote><p>LOOP AT it_vbak ASSIGNING &lt;it_vbak_line&gt;.</p></blockquote>
<p>* look at records &#8211; populate it_zpartner<br />
* read example</p>
<blockquote><p>READ TABLE it_vbpa ASSIGNING &lt;it_vbpa_line&gt; WITH TABLE KEY vbeln = &lt;it_vbak_line&gt;-vbeln.</p></blockquote>
<p>3) Refer to the field symbol&#8217;s fields in the loop or after the read.</p>
<blockquote><p>wa_zpartner-vkorg = &lt;it_vbak_line&gt;-vkorg.<br />
wa_zpartner-vtweg = &lt;it_vbak_line&gt;-vtweg.<br />
wa_zpartner-spart = &lt;it_vbak_line&gt;-spart.<br />
wa_zpartner-kunag = &lt;it_vbak_line&gt;-kunnr.<br />
wa_zpartner-kunwe = &lt;it_vbpa_line&gt;-kunnr.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.sapflow.cz/archives/296/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sanjeet Mall about SAP CRM 7.0 EhP1</title>
		<link>http://www.sapflow.cz/archives/276</link>
		<comments>http://www.sapflow.cz/archives/276#comments</comments>
		<pubDate>Thu, 17 Jun 2010 14:21:05 +0000</pubDate>
		<dc:creator>Pavel</dc:creator>
				<category><![CDATA[CRM]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[CRM 7.0]]></category>

		<guid isPermaLink="false">http://www.sapflow.cz/?p=276</guid>
		<description><![CDATA[Gregor Wolf has posted on http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/19701 his interview with Sanjeet Mall &#8211; Vice President and Chief Solution Architect for SAP CRM. He gives more information about new features and innovations in SAP CRM 7.0 EhP1. It&#8217;s definitely worth seeing.]]></description>
			<content:encoded><![CDATA[<p>Gregor Wolf has posted on <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/19701">http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/19701</a> his interview with Sanjeet Mall &#8211; Vice President and Chief Solution Architect for SAP CRM. </p>
<p>He gives more information about new features and innovations in SAP CRM 7.0 EhP1.</p>
<p>It&#8217;s definitely worth seeing.</p>
<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/mJYGAwolEhY&#038;color1=0xb1b1b1&#038;color2=0xd0d0d0&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/mJYGAwolEhY&#038;color1=0xb1b1b1&#038;color2=0xd0d0d0&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sapflow.cz/archives/276/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CRM Campaing contact list overview</title>
		<link>http://www.sapflow.cz/archives/272</link>
		<comments>http://www.sapflow.cz/archives/272#comments</comments>
		<pubDate>Mon, 19 Apr 2010 15:22:45 +0000</pubDate>
		<dc:creator>Pavel</dc:creator>
				<category><![CDATA[CRM]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[CRM 7.0]]></category>

		<guid isPermaLink="false">http://www.sapflow.cz/?p=272</guid>
		<description><![CDATA[To display overview of all the target groups and mails included in a campaign use transaction: CRMD_EMAIL_LIST You will get to overview of the campaigns run on the server and the number of e-mails, that are coming with each of the campaigns affected.]]></description>
			<content:encoded><![CDATA[<p>To display overview of all the target groups and mails included in a campaign use transaction:</p>
<p><code>CRMD_EMAIL_LIST</code></p>
<p>You will get to overview of the campaigns run on the server and the number of e-mails, that are coming with each of the campaigns affected.</p>
<p><a href="http://www.sapflow.cz/wp-content/uploads/2010/04/CRM_market_contact_list.PNG"><img src="http://www.sapflow.cz/wp-content/uploads/2010/04/CRM_market_contact_list.PNG" alt="CRM_market_contact_list" title="CRM_market_contact_list" width="786" height="115" class="alignleft size-full wp-image-273" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sapflow.cz/archives/272/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAP CRM Campaign Automation Error</title>
		<link>http://www.sapflow.cz/archives/264</link>
		<comments>http://www.sapflow.cz/archives/264#comments</comments>
		<pubDate>Mon, 19 Apr 2010 14:20:45 +0000</pubDate>
		<dc:creator>Pavel</dc:creator>
				<category><![CDATA[CRM]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[CRM 7.0]]></category>

		<guid isPermaLink="false">http://www.sapflow.cz/?p=264</guid>
		<description><![CDATA[If you try tu run campaign automation on SAP CRM Web AS, you may get an error saying &#8220;[campaign name]:Campaign has not started&#8221;. As this is really not very helpful and there are no details included, there is a solution. In transaction SPRO go to IMG -> CRM -> Marketing -> Marketing Planning and Campaign [...]]]></description>
			<content:encoded><![CDATA[<p>If you try tu run campaign automation on SAP CRM Web AS, you may get an error saying &#8220;[campaign name]:Campaign has not started&#8221;.</p>
<p>As this is really not very helpful and there are no details included, there is a solution.</p>
<p>In transaction SPRO go to  <code>IMG -> CRM -> Marketing -> Marketing Planning and Campaign Management -> Campaign Automation</code></p>
<p>There are three important task to be customized:</p>
<ul>
<li>1.Maintain standard settings for SAP business flow</li>
<li>2.Implement workflow assignment</li>
<li>3.Implement workflow customizing</li>
</ul>
<p>In the last one, make sure, that all workflows are set to &#8220;General task&#8221; (so that anybody can run them).</p>
<p>It should look like on this picture:</p>
<p><a href="http://www.sapflow.cz/wp-content/uploads/2010/04/wf_crm_assign.PNG"><img src="http://www.sapflow.cz/wp-content/uploads/2010/04/wf_crm_assign.PNG" alt="wf_crm_assign" title="wf_crm_assign" width="615" height="352" class="alignleft size-full wp-image-268" /></a>\</p>
<p>That&#8217;s it &#8211; try running the campaing once again. </p>
<p>Pavel</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sapflow.cz/archives/264/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAP CRM 7.0 &#8211; Marketing End-to-End Videos: Part I &#8211; Part V</title>
		<link>http://www.sapflow.cz/archives/258</link>
		<comments>http://www.sapflow.cz/archives/258#comments</comments>
		<pubDate>Tue, 13 Apr 2010 13:39:57 +0000</pubDate>
		<dc:creator>Pavel</dc:creator>
				<category><![CDATA[CRM]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[CRM 7.0]]></category>

		<guid isPermaLink="false">http://www.sapflow.cz/?p=258</guid>
		<description><![CDATA[To help provide an overview of the key capabilities that are supported by SAP CRM Marketing and how they can support marketers, I have created these 5 end-to-end videos. The videos should help those wanting to get an entry level overview of SAP CRM direct marketing functionality and how it is integrated with the customer [...]]]></description>
			<content:encoded><![CDATA[<p>To help provide an overview of the key capabilities that are supported by SAP CRM Marketing and how they can support marketers, I have created these 5 end-to-end videos. The videos should help those wanting to get an entry level overview of SAP CRM direct marketing functionality and how it is integrated with the customer facing interaction channels of SAP CRM.</p>
<p><a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/17056">SAP CRM 7.0 &#8211; Marketing End-to-End Videos: Part I &#8211; Part V</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sapflow.cz/archives/258/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAP Query Reporting PDF E-Book</title>
		<link>http://www.sapflow.cz/archives/250</link>
		<comments>http://www.sapflow.cz/archives/250#comments</comments>
		<pubDate>Tue, 13 Apr 2010 07:16:20 +0000</pubDate>
		<dc:creator>Pavel</dc:creator>
				<category><![CDATA[SAP]]></category>
		<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">http://www.sapflow.cz/?p=250</guid>
		<description><![CDATA[SAP Query Reporting is everything an SAP user needs to know to create your own reports in SAP using Query tools, no programming required! Designed as a hands-on learning aid, you will be able to follow along and perform each new skill learned on your own SAP system. The book&#8217;s tutorial style, step-by-step instruction will [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.sapflow.cz/wp-content/uploads/2010/02/SAP.jpg" alt="SAP" title="SAP" width="141" height="73"/></p>
<p>SAP Query Reporting is everything an SAP user needs to know to create your own reports in SAP using Query tools, no programming required! Designed as a hands-on learning aid, you will be able to follow along and perform each new skill learned on your own SAP system. The book&#8217;s tutorial style, step-by-step instruction will teach you everything you need to know to use the SAP Query tools, including its configuration, advanced usage, and integration to Microsoft. Additionally the book gives best business practice recommendations for the technology and internal business use of the tools. Learn to:</p>
<p>    * Understand query security, table reads, and table joins<br />
    * Perform basic and advanced calculations<br />
    * Incorporate pictures and graphics into reports<br />
    * Configure shortcuts and tran codes, schedule jobs and email PDFs<br />
    * Utilize SAP Reporting with Microsoft Office applications </p>
<p><a href="http://rs154.rapidshare.com/files/49135903/Sams.SAP.Query.Reporting.Jul.2006.rar">Download link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sapflow.cz/archives/250/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

