<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Microsoft AX ERP with QV in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Microsoft-AX-ERP-with-QV/m-p/215100#M68580</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load CustTrans and VendTrans Table concatenated in custVendTrans Table and sum(AmountMST) field in expresión.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The statement of balanceMST display method is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select sum(AmountMST) from custVendTrans&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where custVendTrans.AccountNum&amp;nbsp; == this.AccountNum&amp;nbsp; &amp;amp;&amp;amp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; custVendTrans.TransDate&amp;nbsp;&amp;nbsp; &amp;gt;= _fromDate&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;amp;&amp;amp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; custVendTrans.TransDate&amp;nbsp;&amp;nbsp; &amp;lt;= _toDate;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;return custVendTrans.AmountMST;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope to help you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Jul 2012 13:18:40 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-07-25T13:18:40Z</dc:date>
    <item>
      <title>Microsoft AX ERP with QV</title>
      <link>https://community.qlik.com/t5/QlikView/Microsoft-AX-ERP-with-QV/m-p/215095#M68575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any of you developed QV reports on top of Microsoft AXEPTA ERP.If it is please let me knw asap&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Jai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2010 12:23:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Microsoft-AX-ERP-with-QV/m-p/215095#M68575</guid>
      <dc:creator />
      <dc:date>2010-01-18T12:23:01Z</dc:date>
    </item>
    <item>
      <title>Microsoft AX ERP with QV</title>
      <link>https://community.qlik.com/t5/QlikView/Microsoft-AX-ERP-with-QV/m-p/215096#M68576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jai&lt;/P&gt;&lt;P&gt;We use Axapta as ERP, and have created a lot of reports/Applications on top of that as our mainly (and only BI).&lt;/P&gt;&lt;P&gt;I have gained a pretty good insight of the structure in Axapta since i started building apps with QlikView for this company.&lt;/P&gt;&lt;P&gt;Anything specifik you want to know?&lt;/P&gt;&lt;P&gt;/Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2010 13:04:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Microsoft-AX-ERP-with-QV/m-p/215096#M68576</guid>
      <dc:creator />
      <dc:date>2010-01-18T13:04:44Z</dc:date>
    </item>
    <item>
      <title>Microsoft AX ERP with QV</title>
      <link>https://community.qlik.com/t5/QlikView/Microsoft-AX-ERP-with-QV/m-p/215097#M68577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Martin,&lt;/P&gt;&lt;P&gt;First of all I am very glad to see your kind reply.Thing is our client using AX.In sales cube in AX there are several reports.In some of the reports fields coming directly from the base table.No issues with that.In some of reports they are using &lt;B&gt;methods()&lt;/B&gt; to process the calucation.There,fields were calling from temp table and it is invoked to another &lt;B&gt;clause&lt;/B&gt; again from there values passed to another &lt;B&gt;clause&lt;/B&gt;.Every thing happening here is on the fly.So just let me knwo in qv how it should be proceed.For your calrification here I ahve attached AX script.Have a look and let me know how it should be proceed further&lt;/P&gt;&lt;P&gt;Normal 0 false false false EN-US X-NONE X-NONE&lt;/P&gt;&lt;P&gt;Script in AX:&lt;/P&gt;&lt;P&gt;display AmountMST balance()&lt;/P&gt;&lt;P&gt;{;&lt;/P&gt;&lt;P&gt;return custTable.balanceMST();&lt;/P&gt;Normal 0 false false false EN-US X-NONE X-NONE &lt;P&gt;display AmountMST balanceMST(FromDate _fromDate = dateNull(),&lt;/P&gt;&lt;P&gt;ToDate _toDate = dateMax()&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;return this.CustVendTable::balanceMST(_fromDate, _toDate);&lt;/P&gt;&lt;P style="font-weight: bold"&gt;}&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 06:02:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Microsoft-AX-ERP-with-QV/m-p/215097#M68577</guid>
      <dc:creator />
      <dc:date>2010-01-19T06:02:55Z</dc:date>
    </item>
    <item>
      <title>Microsoft AX ERP with QV</title>
      <link>https://community.qlik.com/t5/QlikView/Microsoft-AX-ERP-with-QV/m-p/215098#M68578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Martin,&lt;/P&gt;&lt;P&gt;I hope you got my reply.Just let me know how to proceed further.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jan 2010 10:27:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Microsoft-AX-ERP-with-QV/m-p/215098#M68578</guid>
      <dc:creator />
      <dc:date>2010-01-25T10:27:31Z</dc:date>
    </item>
    <item>
      <title>Microsoft AX ERP with QV</title>
      <link>https://community.qlik.com/t5/QlikView/Microsoft-AX-ERP-with-QV/m-p/215099#M68579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Jai, &lt;/P&gt;&lt;P&gt;i am facing the same problem. Have u got the solution?..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if so pls share with me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2012 09:24:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Microsoft-AX-ERP-with-QV/m-p/215099#M68579</guid>
      <dc:creator />
      <dc:date>2012-04-16T09:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: Microsoft AX ERP with QV</title>
      <link>https://community.qlik.com/t5/QlikView/Microsoft-AX-ERP-with-QV/m-p/215100#M68580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load CustTrans and VendTrans Table concatenated in custVendTrans Table and sum(AmountMST) field in expresión.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The statement of balanceMST display method is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select sum(AmountMST) from custVendTrans&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where custVendTrans.AccountNum&amp;nbsp; == this.AccountNum&amp;nbsp; &amp;amp;&amp;amp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; custVendTrans.TransDate&amp;nbsp;&amp;nbsp; &amp;gt;= _fromDate&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;amp;&amp;amp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; custVendTrans.TransDate&amp;nbsp;&amp;nbsp; &amp;lt;= _toDate;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;return custVendTrans.AmountMST;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope to help you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2012 13:18:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Microsoft-AX-ERP-with-QV/m-p/215100#M68580</guid>
      <dc:creator />
      <dc:date>2012-07-25T13:18:40Z</dc:date>
    </item>
  </channel>
</rss>

