<?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>Fatih DEMİRCİ &#187; Sum</title>
	<atom:link href="http://www.fatihdemirci.net/index.php/tag/sum/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.fatihdemirci.net</link>
	<description>Microsoft MVP &#124; MCT &#124; Solution Architect &#124; AI-Ready ERP &#38; CRM Copilot &#38; Agentic Business Applications</description>
	<lastBuildDate>Sat, 30 May 2026 11:09:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Bir Fetch Metodu Örneği</title>
		<link>https://www.fatihdemirci.net/index.php/2010/04/01/bir-fatch-orengi/</link>
		<comments>https://www.fatihdemirci.net/index.php/2010/04/01/bir-fatch-orengi/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 11:36:32 +0000</pubDate>
		<dc:creator>Fatih Demirci</dc:creator>
				<category><![CDATA[Dynamics AX]]></category>
		<category><![CDATA[x++]]></category>
		<category><![CDATA[Ax 2009]]></category>
		<category><![CDATA[Axapta]]></category>
		<category><![CDATA[Fatch]]></category>
		<category><![CDATA[Sum]]></category>

		<guid isPermaLink="false">http://www.fatihdemirci.net/?p=304</guid>
		<description><![CDATA[Merhaba Kısa bir süre önce yaptığım bir raporda kullandığım fetch() metodunu örnek olsun diye paylaşıyorum. Datasource olarak TaxReportJournal ve inner join ile bağlı  TaxReportJournalLine bulunmakta ayrıca Voucher ve transdate e göre group by alınaktadır. public boolean fetch() {     boolean ret;     TaxReportJournalLine     TaxReportJournalL,TaxReportJournalL2;     LedgerJournalId                CalculationId ;     Voucher                                voucher;     InvoiceId                              invoiceId;     [...]]]></description>
		<wfw:commentRss>https://www.fatihdemirci.net/index.php/2010/04/01/bir-fatch-orengi/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Query nesneleri ile GroupBy ve Sum Almak</title>
		<link>https://www.fatihdemirci.net/index.php/2010/02/09/query-nesneleri-ile-groupby-ve-sum-almak/</link>
		<comments>https://www.fatihdemirci.net/index.php/2010/02/09/query-nesneleri-ile-groupby-ve-sum-almak/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 09:48:22 +0000</pubDate>
		<dc:creator>Fatih Demirci</dc:creator>
				<category><![CDATA[Dynamics AX]]></category>
		<category><![CDATA[x++]]></category>
		<category><![CDATA[Ax 2009]]></category>
		<category><![CDATA[Axapta]]></category>
		<category><![CDATA[Query]]></category>
		<category><![CDATA[Sum]]></category>

		<guid isPermaLink="false">http://www.fatihdemirci.net/?p=150</guid>
		<description><![CDATA[Select Sum(AmountMst) from LedgerTrans Group By LedgerTrans.Voucher, LedgerTrans.TransDate   koduna denk olan query alttaki gibi yazılabilir:    Query q; QueryRun qr; QueryBuildDataSource qbdsLedgerTrans; LedgerTrans ledgerTrans; ;  q = new Query(); qbdsLedgerTrans = q.addDataSource(tableNum(LedgerTrans)); qbdsLedgerTrans.addSortField(FieldNum(LedgerTrans, Voucher)); qbdsLedgerTrans.addSortField(FieldNum(LedgerTrans, TransDate)); qbdsLedgerTrans.orderMode(OrderMode::GroupBy); qbdsLedgerTrans.addSelectionField(FieldNum(LedgerTrans, AmountMST), SelectionField::Sum); qr = new QueryRun(q); while(qr.next()) {  ledgerTrans = qr.get(TableNum(LedgerTrans)); this.send(ledgerTrans); }]]></description>
		<wfw:commentRss>https://www.fatihdemirci.net/index.php/2010/02/09/query-nesneleri-ile-groupby-ve-sum-almak/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Axapta’da Gelen Kriterlere Göre Toplam Bulan bir Metod Örneği</title>
		<link>https://www.fatihdemirci.net/index.php/2010/02/03/axapta-inventtrans-tablosundaki-degeri-bulan-bir-metod/</link>
		<comments>https://www.fatihdemirci.net/index.php/2010/02/03/axapta-inventtrans-tablosundaki-degeri-bulan-bir-metod/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 14:32:40 +0000</pubDate>
		<dc:creator>Fatih Demirci</dc:creator>
				<category><![CDATA[Dynamics AX]]></category>
		<category><![CDATA[x++]]></category>
		<category><![CDATA[Ax 2009]]></category>
		<category><![CDATA[Axapta]]></category>
		<category><![CDATA[Metod]]></category>
		<category><![CDATA[Query]]></category>
		<category><![CDATA[Sum]]></category>

		<guid isPermaLink="false">http://www.fatihdemirci.net/?p=134</guid>
		<description><![CDATA[Geçen gün bir rapor için yazdığım metodu paylaşıyorum. Daha hızlı bir çözümü olabilir belki ama ben en son bu şekilde çözdüm.   public Amount sumBBQty(ItemId _itemId,TransDate _startDate, TransDate _endDate ,InventDimId _inventDimId = &#8220;&#8221;) {     InventTrans tmpInevnttrans,inventTrans;     Amount     sumTotal;     ;     if(_inventDimId)     {         select sum(Qty) from tmpInevnttrans         group by tmpInevnttrans.inventDimId         [...]]]></description>
		<wfw:commentRss>https://www.fatihdemirci.net/index.php/2010/02/03/axapta-inventtrans-tablosundaki-degeri-bulan-bir-metod/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
