<?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>Software Talk &#187; great plains</title>
	<atom:link href="http://filezilla-download.com/tag/great-plains/feed/" rel="self" type="application/rss+xml" />
	<link>http://filezilla-download.com</link>
	<description>All About Software</description>
	<lastBuildDate>Tue, 14 Jun 2011 06:00:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Microsoft Great Plains Integrations  Retail Management Sample</title>
		<link>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2417/</link>
		<comments>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2417/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 12:51:41 +0000</pubDate>
		<dc:creator>Software Talk</dc:creator>
				<category><![CDATA[Software Talk]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[great plains]]></category>
		<category><![CDATA[microsoft RMS]]></category>
		<category><![CDATA[retail management system]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Microsoft Business Solutions is emerging as very attractive vendor for mid-size companies. The strength of its products is in their cross integration potential. This integration strategy will be the software development direction for this Microsoft subdivision. Meanwhile, as of right now ? we have to recommend just to stake on it and deal with custom [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft Business Solutions is emerging as very attractive vendor for mid-size companies.  The strength of its products is in their cross integration potential.  This integration strategy will be the software development direction for this Microsoft subdivision.  Meanwhile, as of right now ? we have to recommend just to stake on it and deal with custom or in-house developed integration.</p>
<p>If you are developer who needs some sample code to start with ? we are placing Accounts Receivable level integration code ? it pulls info from Microsoft RMS and places it into work tables in Great Plains.</p>
<p>Be aware, that Microsoft Great Plains version 7.5 has out of the box integration with Microsoft RMS 1.2, but it is on GL and POP level only.  You can?t do check book reconciliation, for example.  Currently Microsoft is in decision on who will be coding the integration for Great Plains 8.0 and what the functionality should be.  More likely ? it will be Nodus Technologies with the integration on SOP and GL level ? it will deploy Great Plains Dexterity and MS SQL Server stored procs.</p>
<p>And here is the code, you have to deal with RM10301 and distribution RM, also we recommend insert new customers into RM00101 and RM00102:</p>
</p>
<p>&#8211; Sales Transaction Record</p>
<p>insert into RM10301</p>
<p>(</p>
<p>DOCTYPE,</p>
<p>RMDTYPAL,</p>
<p>RMDNUMWK,</p>
<p>DOCNUMBR,</p>
<p>DOCDESCR,</p>
<p>DOCDATE,</p>
<p>BACHNUMB,</p>
<p>BCHSOURC,</p>
<p>CUSTNMBR,</p>
<p>CUSTNAME,</p>
<p>ADRSCODE,</p>
<p>COSTAMNT,</p>
<p>SLSAMNT,</p>
<p>MISCAMNT,</p>
<p>FRTAMNT,</p>
<p>TAXAMNT,</p>
<p>DOCAMNT,</p>
<p>CASHAMNT,</p>
<p>CBKIDCSH,</p>
<p>CASHDATE,</p>
<p>DCNUMCSH,</p>
<p>CHEKAMNT,</p>
<p>CBKIDCHK,</p>
<p>CBKIDCRD,</p>
<p>CHEKNMBR,</p>
<p>CHEKDATE,</p>
<p>DCNUMCHK,</p>
<p>CRCRDAMT,</p>
<p>DCNUMCRD,</p>
<p>CRCRDNAM,</p>
<p>RCTNCCRD,</p>
<p>CRCARDDT,</p>
<p>TRDISAMT,</p>
<p>ACCTAMNT,</p>
<p>DISCDATE,</p>
<p>DUEDATE,</p>
<p>LSTEDTDT,</p>
<p>LSTUSRED,</p>
<p>GLPOSTDT,</p>
<p>PSTGSTUS,</p>
<p>CURNCYID,</p>
<p>TXENGCLD</p>
<p>)</p>
<p>select</p>
<p>DOCTYPE = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 7</p>
<p>end),</p>
<p>RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end),</p>
<p>RMDNUMWK = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID),</p>
<p>DOCNUMBR = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID),</p>
<p>DOCDESCR = left(a.ReferenceNumber, 29),</p>
<p>DOCDATE = convert(varchar(10), a.[Time, 101),</p>
<p>BACHNUMB = &#8216;SMS&#8217;</p>
<p>  replicate(&#8217;0&#8242;,</p>
<p>2 &#8211; datalength(convert(varchar(2), a.StoreID)))  </p>
<p>convert(varchar(2), a.StoreID)</p>
<p>  replicate(&#8217;0&#8242;,</p>
<p>9 &#8211; datalength(convert(varchar(11), a.BatchNumber)))  </p>
<p>convert(varchar(11), a.BatchNumber),</p>
<p>BCHSOURC = &#8216;RMSales&#8217;,</p>
<p>CUSTNMBR=&#8217;CASH&#8217;,</p>
<p>CUSTNAME = &#8216;CASH&#8217;,</p>
<p>ADRSCODE = &#8216;PRIMARY&#8217;,</p>
<p>COSTAMNT = (case</p>
<p>when isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0) > 0 and a.Total > 0 then</p>
<p>abs(isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0))</p>
<p>when isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0)  0 and</p>
<p>a.StoreID = &#8217;1&#8242; and</p>
<p>not exists (select 1 from RM10301 c</p>
<p>where c.RMDNUMWK = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID) and</p>
<p>c.RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end)) and</p>
<p>not exists (select 1 from RM00401 c</p>
<p>where c.DOCNUMBR = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID) and</p>
<p>c.RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end))</p>
<p>and a.[Time > &#8217;01/01/2004&#8242; </p>
<p>Happy integrating!  if you want us to do the job or use our product &#8211; give us a call 1-866-528-0577! help@albaspectrum.com</p>
<p>About The Author</p>
<p>Andrew Karasev is Chief Technology Officer in Alba Spectrum Technologies ? USA nationwide Great Plains, Microsoft CRM, Microsoft RMS customization company, based in Chicago, Arizona, California, Colorado, Texas, Georgia, New York, Florida and having locations in multiple states and internationally (www.albaspectrum.com), he is Dexterity, SQL, C#.Net, Crystal Reports and Microsoft CRM SDK developer.  akarasev@albaspectrum.com</p>
]]></content:encoded>
			<wfw:commentRss>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2417/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Great Plains Integrations  Retail Management Sample</title>
		<link>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2407/</link>
		<comments>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2407/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 20:51:06 +0000</pubDate>
		<dc:creator>Software Talk</dc:creator>
				<category><![CDATA[Software Talk]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[great plains]]></category>
		<category><![CDATA[microsoft RMS]]></category>
		<category><![CDATA[retail management system]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Microsoft Business Solutions is emerging as very attractive vendor for mid-size companies. The strength of its products is in their cross integration potential. This integration strategy will be the software development direction for this Microsoft subdivision. Meanwhile, as of right now ? we have to recommend just to stake on it and deal with custom [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft Business Solutions is emerging as very attractive vendor for mid-size companies.  The strength of its products is in their cross integration potential.  This integration strategy will be the software development direction for this Microsoft subdivision.  Meanwhile, as of right now ? we have to recommend just to stake on it and deal with custom or in-house developed integration.</p>
<p>If you are developer who needs some sample code to start with ? we are placing Accounts Receivable level integration code ? it pulls info from Microsoft RMS and places it into work tables in Great Plains.</p>
<p>Be aware, that Microsoft Great Plains version 7.5 has out of the box integration with Microsoft RMS 1.2, but it is on GL and POP level only.  You can?t do check book reconciliation, for example.  Currently Microsoft is in decision on who will be coding the integration for Great Plains 8.0 and what the functionality should be.  More likely ? it will be Nodus Technologies with the integration on SOP and GL level ? it will deploy Great Plains Dexterity and MS SQL Server stored procs.</p>
<p>And here is the code, you have to deal with RM10301 and distribution RM, also we recommend insert new customers into RM00101 and RM00102:</p>
</p>
<p>&#8211; Sales Transaction Record</p>
<p>insert into RM10301</p>
<p>(</p>
<p>DOCTYPE,</p>
<p>RMDTYPAL,</p>
<p>RMDNUMWK,</p>
<p>DOCNUMBR,</p>
<p>DOCDESCR,</p>
<p>DOCDATE,</p>
<p>BACHNUMB,</p>
<p>BCHSOURC,</p>
<p>CUSTNMBR,</p>
<p>CUSTNAME,</p>
<p>ADRSCODE,</p>
<p>COSTAMNT,</p>
<p>SLSAMNT,</p>
<p>MISCAMNT,</p>
<p>FRTAMNT,</p>
<p>TAXAMNT,</p>
<p>DOCAMNT,</p>
<p>CASHAMNT,</p>
<p>CBKIDCSH,</p>
<p>CASHDATE,</p>
<p>DCNUMCSH,</p>
<p>CHEKAMNT,</p>
<p>CBKIDCHK,</p>
<p>CBKIDCRD,</p>
<p>CHEKNMBR,</p>
<p>CHEKDATE,</p>
<p>DCNUMCHK,</p>
<p>CRCRDAMT,</p>
<p>DCNUMCRD,</p>
<p>CRCRDNAM,</p>
<p>RCTNCCRD,</p>
<p>CRCARDDT,</p>
<p>TRDISAMT,</p>
<p>ACCTAMNT,</p>
<p>DISCDATE,</p>
<p>DUEDATE,</p>
<p>LSTEDTDT,</p>
<p>LSTUSRED,</p>
<p>GLPOSTDT,</p>
<p>PSTGSTUS,</p>
<p>CURNCYID,</p>
<p>TXENGCLD</p>
<p>)</p>
<p>select</p>
<p>DOCTYPE = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 7</p>
<p>end),</p>
<p>RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end),</p>
<p>RMDNUMWK = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID),</p>
<p>DOCNUMBR = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID),</p>
<p>DOCDESCR = left(a.ReferenceNumber, 29),</p>
<p>DOCDATE = convert(varchar(10), a.[Time, 101),</p>
<p>BACHNUMB = &#8216;SMS&#8217;</p>
<p>  replicate(&#8217;0&#8242;,</p>
<p>2 &#8211; datalength(convert(varchar(2), a.StoreID)))  </p>
<p>convert(varchar(2), a.StoreID)</p>
<p>  replicate(&#8217;0&#8242;,</p>
<p>9 &#8211; datalength(convert(varchar(11), a.BatchNumber)))  </p>
<p>convert(varchar(11), a.BatchNumber),</p>
<p>BCHSOURC = &#8216;RMSales&#8217;,</p>
<p>CUSTNMBR=&#8217;CASH&#8217;,</p>
<p>CUSTNAME = &#8216;CASH&#8217;,</p>
<p>ADRSCODE = &#8216;PRIMARY&#8217;,</p>
<p>COSTAMNT = (case</p>
<p>when isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0) > 0 and a.Total > 0 then</p>
<p>abs(isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0))</p>
<p>when isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0)  0 and</p>
<p>a.StoreID = &#8217;1&#8242; and</p>
<p>not exists (select 1 from RM10301 c</p>
<p>where c.RMDNUMWK = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID) and</p>
<p>c.RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end)) and</p>
<p>not exists (select 1 from RM00401 c</p>
<p>where c.DOCNUMBR = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID) and</p>
<p>c.RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end))</p>
<p>and a.[Time > &#8217;01/01/2004&#8242; </p>
<p>Happy integrating!  if you want us to do the job or use our product &#8211; give us a call 1-866-528-0577! help@albaspectrum.com</p>
<p>About The Author</p>
<p>Andrew Karasev is Chief Technology Officer in Alba Spectrum Technologies ? USA nationwide Great Plains, Microsoft CRM, Microsoft RMS customization company, based in Chicago, Arizona, California, Colorado, Texas, Georgia, New York, Florida and having locations in multiple states and internationally (www.albaspectrum.com), he is Dexterity, SQL, C#.Net, Crystal Reports and Microsoft CRM SDK developer.  akarasev@albaspectrum.com</p>
]]></content:encoded>
			<wfw:commentRss>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2407/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Great Plains Integrations  Retail Management Sample</title>
		<link>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2395/</link>
		<comments>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2395/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 20:50:26 +0000</pubDate>
		<dc:creator>Software Talk</dc:creator>
				<category><![CDATA[Software Talk]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[great plains]]></category>
		<category><![CDATA[microsoft RMS]]></category>
		<category><![CDATA[retail management system]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Microsoft Business Solutions is emerging as very attractive vendor for mid-size companies. The strength of its products is in their cross integration potential. This integration strategy will be the software development direction for this Microsoft subdivision. Meanwhile, as of right now ? we have to recommend just to stake on it and deal with custom [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft Business Solutions is emerging as very attractive vendor for mid-size companies.  The strength of its products is in their cross integration potential.  This integration strategy will be the software development direction for this Microsoft subdivision.  Meanwhile, as of right now ? we have to recommend just to stake on it and deal with custom or in-house developed integration.</p>
<p>If you are developer who needs some sample code to start with ? we are placing Accounts Receivable level integration code ? it pulls info from Microsoft RMS and places it into work tables in Great Plains.</p>
<p>Be aware, that Microsoft Great Plains version 7.5 has out of the box integration with Microsoft RMS 1.2, but it is on GL and POP level only.  You can?t do check book reconciliation, for example.  Currently Microsoft is in decision on who will be coding the integration for Great Plains 8.0 and what the functionality should be.  More likely ? it will be Nodus Technologies with the integration on SOP and GL level ? it will deploy Great Plains Dexterity and MS SQL Server stored procs.</p>
<p>And here is the code, you have to deal with RM10301 and distribution RM, also we recommend insert new customers into RM00101 and RM00102:</p>
</p>
<p>&#8211; Sales Transaction Record</p>
<p>insert into RM10301</p>
<p>(</p>
<p>DOCTYPE,</p>
<p>RMDTYPAL,</p>
<p>RMDNUMWK,</p>
<p>DOCNUMBR,</p>
<p>DOCDESCR,</p>
<p>DOCDATE,</p>
<p>BACHNUMB,</p>
<p>BCHSOURC,</p>
<p>CUSTNMBR,</p>
<p>CUSTNAME,</p>
<p>ADRSCODE,</p>
<p>COSTAMNT,</p>
<p>SLSAMNT,</p>
<p>MISCAMNT,</p>
<p>FRTAMNT,</p>
<p>TAXAMNT,</p>
<p>DOCAMNT,</p>
<p>CASHAMNT,</p>
<p>CBKIDCSH,</p>
<p>CASHDATE,</p>
<p>DCNUMCSH,</p>
<p>CHEKAMNT,</p>
<p>CBKIDCHK,</p>
<p>CBKIDCRD,</p>
<p>CHEKNMBR,</p>
<p>CHEKDATE,</p>
<p>DCNUMCHK,</p>
<p>CRCRDAMT,</p>
<p>DCNUMCRD,</p>
<p>CRCRDNAM,</p>
<p>RCTNCCRD,</p>
<p>CRCARDDT,</p>
<p>TRDISAMT,</p>
<p>ACCTAMNT,</p>
<p>DISCDATE,</p>
<p>DUEDATE,</p>
<p>LSTEDTDT,</p>
<p>LSTUSRED,</p>
<p>GLPOSTDT,</p>
<p>PSTGSTUS,</p>
<p>CURNCYID,</p>
<p>TXENGCLD</p>
<p>)</p>
<p>select</p>
<p>DOCTYPE = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 7</p>
<p>end),</p>
<p>RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end),</p>
<p>RMDNUMWK = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID),</p>
<p>DOCNUMBR = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID),</p>
<p>DOCDESCR = left(a.ReferenceNumber, 29),</p>
<p>DOCDATE = convert(varchar(10), a.[Time, 101),</p>
<p>BACHNUMB = &#8216;SMS&#8217;</p>
<p>  replicate(&#8217;0&#8242;,</p>
<p>2 &#8211; datalength(convert(varchar(2), a.StoreID)))  </p>
<p>convert(varchar(2), a.StoreID)</p>
<p>  replicate(&#8217;0&#8242;,</p>
<p>9 &#8211; datalength(convert(varchar(11), a.BatchNumber)))  </p>
<p>convert(varchar(11), a.BatchNumber),</p>
<p>BCHSOURC = &#8216;RMSales&#8217;,</p>
<p>CUSTNMBR=&#8217;CASH&#8217;,</p>
<p>CUSTNAME = &#8216;CASH&#8217;,</p>
<p>ADRSCODE = &#8216;PRIMARY&#8217;,</p>
<p>COSTAMNT = (case</p>
<p>when isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0) > 0 and a.Total > 0 then</p>
<p>abs(isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0))</p>
<p>when isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0)  0 and</p>
<p>a.StoreID = &#8217;1&#8242; and</p>
<p>not exists (select 1 from RM10301 c</p>
<p>where c.RMDNUMWK = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID) and</p>
<p>c.RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end)) and</p>
<p>not exists (select 1 from RM00401 c</p>
<p>where c.DOCNUMBR = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID) and</p>
<p>c.RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end))</p>
<p>and a.[Time > &#8217;01/01/2004&#8242; </p>
<p>Happy integrating!  if you want us to do the job or use our product &#8211; give us a call 1-866-528-0577! help@albaspectrum.com</p>
<p>About The Author</p>
<p>Andrew Karasev is Chief Technology Officer in Alba Spectrum Technologies ? USA nationwide Great Plains, Microsoft CRM, Microsoft RMS customization company, based in Chicago, Arizona, California, Colorado, Texas, Georgia, New York, Florida and having locations in multiple states and internationally (www.albaspectrum.com), he is Dexterity, SQL, C#.Net, Crystal Reports and Microsoft CRM SDK developer.  akarasev@albaspectrum.com</p>
]]></content:encoded>
			<wfw:commentRss>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2395/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Great Plains Integrations  Retail Management Sample</title>
		<link>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2379/</link>
		<comments>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2379/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 04:49:44 +0000</pubDate>
		<dc:creator>Software Talk</dc:creator>
				<category><![CDATA[Software Talk]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[great plains]]></category>
		<category><![CDATA[microsoft RMS]]></category>
		<category><![CDATA[retail management system]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Microsoft Business Solutions is emerging as very attractive vendor for mid-size companies. The strength of its products is in their cross integration potential. This integration strategy will be the software development direction for this Microsoft subdivision. Meanwhile, as of right now ? we have to recommend just to stake on it and deal with custom [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft Business Solutions is emerging as very attractive vendor for mid-size companies.  The strength of its products is in their cross integration potential.  This integration strategy will be the software development direction for this Microsoft subdivision.  Meanwhile, as of right now ? we have to recommend just to stake on it and deal with custom or in-house developed integration.</p>
<p>If you are developer who needs some sample code to start with ? we are placing Accounts Receivable level integration code ? it pulls info from Microsoft RMS and places it into work tables in Great Plains.</p>
<p>Be aware, that Microsoft Great Plains version 7.5 has out of the box integration with Microsoft RMS 1.2, but it is on GL and POP level only.  You can?t do check book reconciliation, for example.  Currently Microsoft is in decision on who will be coding the integration for Great Plains 8.0 and what the functionality should be.  More likely ? it will be Nodus Technologies with the integration on SOP and GL level ? it will deploy Great Plains Dexterity and MS SQL Server stored procs.</p>
<p>And here is the code, you have to deal with RM10301 and distribution RM, also we recommend insert new customers into RM00101 and RM00102:</p>
</p>
<p>&#8211; Sales Transaction Record</p>
<p>insert into RM10301</p>
<p>(</p>
<p>DOCTYPE,</p>
<p>RMDTYPAL,</p>
<p>RMDNUMWK,</p>
<p>DOCNUMBR,</p>
<p>DOCDESCR,</p>
<p>DOCDATE,</p>
<p>BACHNUMB,</p>
<p>BCHSOURC,</p>
<p>CUSTNMBR,</p>
<p>CUSTNAME,</p>
<p>ADRSCODE,</p>
<p>COSTAMNT,</p>
<p>SLSAMNT,</p>
<p>MISCAMNT,</p>
<p>FRTAMNT,</p>
<p>TAXAMNT,</p>
<p>DOCAMNT,</p>
<p>CASHAMNT,</p>
<p>CBKIDCSH,</p>
<p>CASHDATE,</p>
<p>DCNUMCSH,</p>
<p>CHEKAMNT,</p>
<p>CBKIDCHK,</p>
<p>CBKIDCRD,</p>
<p>CHEKNMBR,</p>
<p>CHEKDATE,</p>
<p>DCNUMCHK,</p>
<p>CRCRDAMT,</p>
<p>DCNUMCRD,</p>
<p>CRCRDNAM,</p>
<p>RCTNCCRD,</p>
<p>CRCARDDT,</p>
<p>TRDISAMT,</p>
<p>ACCTAMNT,</p>
<p>DISCDATE,</p>
<p>DUEDATE,</p>
<p>LSTEDTDT,</p>
<p>LSTUSRED,</p>
<p>GLPOSTDT,</p>
<p>PSTGSTUS,</p>
<p>CURNCYID,</p>
<p>TXENGCLD</p>
<p>)</p>
<p>select</p>
<p>DOCTYPE = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 7</p>
<p>end),</p>
<p>RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end),</p>
<p>RMDNUMWK = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID),</p>
<p>DOCNUMBR = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID),</p>
<p>DOCDESCR = left(a.ReferenceNumber, 29),</p>
<p>DOCDATE = convert(varchar(10), a.[Time, 101),</p>
<p>BACHNUMB = &#8216;SMS&#8217;</p>
<p>  replicate(&#8217;0&#8242;,</p>
<p>2 &#8211; datalength(convert(varchar(2), a.StoreID)))  </p>
<p>convert(varchar(2), a.StoreID)</p>
<p>  replicate(&#8217;0&#8242;,</p>
<p>9 &#8211; datalength(convert(varchar(11), a.BatchNumber)))  </p>
<p>convert(varchar(11), a.BatchNumber),</p>
<p>BCHSOURC = &#8216;RMSales&#8217;,</p>
<p>CUSTNMBR=&#8217;CASH&#8217;,</p>
<p>CUSTNAME = &#8216;CASH&#8217;,</p>
<p>ADRSCODE = &#8216;PRIMARY&#8217;,</p>
<p>COSTAMNT = (case</p>
<p>when isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0) > 0 and a.Total > 0 then</p>
<p>abs(isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0))</p>
<p>when isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0)  0 and</p>
<p>a.StoreID = &#8217;1&#8242; and</p>
<p>not exists (select 1 from RM10301 c</p>
<p>where c.RMDNUMWK = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID) and</p>
<p>c.RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end)) and</p>
<p>not exists (select 1 from RM00401 c</p>
<p>where c.DOCNUMBR = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID) and</p>
<p>c.RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end))</p>
<p>and a.[Time > &#8217;01/01/2004&#8242; </p>
<p>Happy integrating!  if you want us to do the job or use our product &#8211; give us a call 1-866-528-0577! help@albaspectrum.com</p>
<p>About The Author</p>
<p>Andrew Karasev is Chief Technology Officer in Alba Spectrum Technologies ? USA nationwide Great Plains, Microsoft CRM, Microsoft RMS customization company, based in Chicago, Arizona, California, Colorado, Texas, Georgia, New York, Florida and having locations in multiple states and internationally (www.albaspectrum.com), he is Dexterity, SQL, C#.Net, Crystal Reports and Microsoft CRM SDK developer.  akarasev@albaspectrum.com</p>
]]></content:encoded>
			<wfw:commentRss>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2379/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Great Plains Integrations  Retail Management Sample</title>
		<link>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2346/</link>
		<comments>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2346/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 16:52:54 +0000</pubDate>
		<dc:creator>Software Talk</dc:creator>
				<category><![CDATA[Software Talk]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[great plains]]></category>
		<category><![CDATA[microsoft RMS]]></category>
		<category><![CDATA[retail management system]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Microsoft Business Solutions is emerging as very attractive vendor for mid-size companies. The strength of its products is in their cross integration potential. This integration strategy will be the software development direction for this Microsoft subdivision. Meanwhile, as of right now ? we have to recommend just to stake on it and deal with custom [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft Business Solutions is emerging as very attractive vendor for mid-size companies.  The strength of its products is in their cross integration potential.  This integration strategy will be the software development direction for this Microsoft subdivision.  Meanwhile, as of right now ? we have to recommend just to stake on it and deal with custom or in-house developed integration.</p>
<p>If you are developer who needs some sample code to start with ? we are placing Accounts Receivable level integration code ? it pulls info from Microsoft RMS and places it into work tables in Great Plains.</p>
<p>Be aware, that Microsoft Great Plains version 7.5 has out of the box integration with Microsoft RMS 1.2, but it is on GL and POP level only.  You can?t do check book reconciliation, for example.  Currently Microsoft is in decision on who will be coding the integration for Great Plains 8.0 and what the functionality should be.  More likely ? it will be Nodus Technologies with the integration on SOP and GL level ? it will deploy Great Plains Dexterity and MS SQL Server stored procs.</p>
<p>And here is the code, you have to deal with RM10301 and distribution RM, also we recommend insert new customers into RM00101 and RM00102:</p>
</p>
<p>&#8211; Sales Transaction Record</p>
<p>insert into RM10301</p>
<p>(</p>
<p>DOCTYPE,</p>
<p>RMDTYPAL,</p>
<p>RMDNUMWK,</p>
<p>DOCNUMBR,</p>
<p>DOCDESCR,</p>
<p>DOCDATE,</p>
<p>BACHNUMB,</p>
<p>BCHSOURC,</p>
<p>CUSTNMBR,</p>
<p>CUSTNAME,</p>
<p>ADRSCODE,</p>
<p>COSTAMNT,</p>
<p>SLSAMNT,</p>
<p>MISCAMNT,</p>
<p>FRTAMNT,</p>
<p>TAXAMNT,</p>
<p>DOCAMNT,</p>
<p>CASHAMNT,</p>
<p>CBKIDCSH,</p>
<p>CASHDATE,</p>
<p>DCNUMCSH,</p>
<p>CHEKAMNT,</p>
<p>CBKIDCHK,</p>
<p>CBKIDCRD,</p>
<p>CHEKNMBR,</p>
<p>CHEKDATE,</p>
<p>DCNUMCHK,</p>
<p>CRCRDAMT,</p>
<p>DCNUMCRD,</p>
<p>CRCRDNAM,</p>
<p>RCTNCCRD,</p>
<p>CRCARDDT,</p>
<p>TRDISAMT,</p>
<p>ACCTAMNT,</p>
<p>DISCDATE,</p>
<p>DUEDATE,</p>
<p>LSTEDTDT,</p>
<p>LSTUSRED,</p>
<p>GLPOSTDT,</p>
<p>PSTGSTUS,</p>
<p>CURNCYID,</p>
<p>TXENGCLD</p>
<p>)</p>
<p>select</p>
<p>DOCTYPE = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 7</p>
<p>end),</p>
<p>RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end),</p>
<p>RMDNUMWK = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID),</p>
<p>DOCNUMBR = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID),</p>
<p>DOCDESCR = left(a.ReferenceNumber, 29),</p>
<p>DOCDATE = convert(varchar(10), a.[Time, 101),</p>
<p>BACHNUMB = &#8216;SMS&#8217;</p>
<p>  replicate(&#8217;0&#8242;,</p>
<p>2 &#8211; datalength(convert(varchar(2), a.StoreID)))  </p>
<p>convert(varchar(2), a.StoreID)</p>
<p>  replicate(&#8217;0&#8242;,</p>
<p>9 &#8211; datalength(convert(varchar(11), a.BatchNumber)))  </p>
<p>convert(varchar(11), a.BatchNumber),</p>
<p>BCHSOURC = &#8216;RMSales&#8217;,</p>
<p>CUSTNMBR=&#8217;CASH&#8217;,</p>
<p>CUSTNAME = &#8216;CASH&#8217;,</p>
<p>ADRSCODE = &#8216;PRIMARY&#8217;,</p>
<p>COSTAMNT = (case</p>
<p>when isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0) > 0 and a.Total > 0 then</p>
<p>abs(isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0))</p>
<p>when isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0)  0 and</p>
<p>a.StoreID = &#8217;1&#8242; and</p>
<p>not exists (select 1 from RM10301 c</p>
<p>where c.RMDNUMWK = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID) and</p>
<p>c.RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end)) and</p>
<p>not exists (select 1 from RM00401 c</p>
<p>where c.DOCNUMBR = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID) and</p>
<p>c.RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end))</p>
<p>and a.[Time > &#8217;01/01/2004&#8242; </p>
<p>Happy integrating!  if you want us to do the job or use our product &#8211; give us a call 1-866-528-0577! help@albaspectrum.com</p>
<p>About The Author</p>
<p>Andrew Karasev is Chief Technology Officer in Alba Spectrum Technologies ? USA nationwide Great Plains, Microsoft CRM, Microsoft RMS customization company, based in Chicago, Arizona, California, Colorado, Texas, Georgia, New York, Florida and having locations in multiple states and internationally (www.albaspectrum.com), he is Dexterity, SQL, C#.Net, Crystal Reports and Microsoft CRM SDK developer.  akarasev@albaspectrum.com</p>
]]></content:encoded>
			<wfw:commentRss>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2346/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Great Plains Integrations  Retail Management Sample</title>
		<link>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2340/</link>
		<comments>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2340/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 16:52:35 +0000</pubDate>
		<dc:creator>Software Talk</dc:creator>
				<category><![CDATA[Software Talk]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[great plains]]></category>
		<category><![CDATA[microsoft RMS]]></category>
		<category><![CDATA[retail management system]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Microsoft Business Solutions is emerging as very attractive vendor for mid-size companies. The strength of its products is in their cross integration potential. This integration strategy will be the software development direction for this Microsoft subdivision. Meanwhile, as of right now ? we have to recommend just to stake on it and deal with custom [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft Business Solutions is emerging as very attractive vendor for mid-size companies.  The strength of its products is in their cross integration potential.  This integration strategy will be the software development direction for this Microsoft subdivision.  Meanwhile, as of right now ? we have to recommend just to stake on it and deal with custom or in-house developed integration.</p>
<p>If you are developer who needs some sample code to start with ? we are placing Accounts Receivable level integration code ? it pulls info from Microsoft RMS and places it into work tables in Great Plains.</p>
<p>Be aware, that Microsoft Great Plains version 7.5 has out of the box integration with Microsoft RMS 1.2, but it is on GL and POP level only.  You can?t do check book reconciliation, for example.  Currently Microsoft is in decision on who will be coding the integration for Great Plains 8.0 and what the functionality should be.  More likely ? it will be Nodus Technologies with the integration on SOP and GL level ? it will deploy Great Plains Dexterity and MS SQL Server stored procs.</p>
<p>And here is the code, you have to deal with RM10301 and distribution RM, also we recommend insert new customers into RM00101 and RM00102:</p>
</p>
<p>&#8211; Sales Transaction Record</p>
<p>insert into RM10301</p>
<p>(</p>
<p>DOCTYPE,</p>
<p>RMDTYPAL,</p>
<p>RMDNUMWK,</p>
<p>DOCNUMBR,</p>
<p>DOCDESCR,</p>
<p>DOCDATE,</p>
<p>BACHNUMB,</p>
<p>BCHSOURC,</p>
<p>CUSTNMBR,</p>
<p>CUSTNAME,</p>
<p>ADRSCODE,</p>
<p>COSTAMNT,</p>
<p>SLSAMNT,</p>
<p>MISCAMNT,</p>
<p>FRTAMNT,</p>
<p>TAXAMNT,</p>
<p>DOCAMNT,</p>
<p>CASHAMNT,</p>
<p>CBKIDCSH,</p>
<p>CASHDATE,</p>
<p>DCNUMCSH,</p>
<p>CHEKAMNT,</p>
<p>CBKIDCHK,</p>
<p>CBKIDCRD,</p>
<p>CHEKNMBR,</p>
<p>CHEKDATE,</p>
<p>DCNUMCHK,</p>
<p>CRCRDAMT,</p>
<p>DCNUMCRD,</p>
<p>CRCRDNAM,</p>
<p>RCTNCCRD,</p>
<p>CRCARDDT,</p>
<p>TRDISAMT,</p>
<p>ACCTAMNT,</p>
<p>DISCDATE,</p>
<p>DUEDATE,</p>
<p>LSTEDTDT,</p>
<p>LSTUSRED,</p>
<p>GLPOSTDT,</p>
<p>PSTGSTUS,</p>
<p>CURNCYID,</p>
<p>TXENGCLD</p>
<p>)</p>
<p>select</p>
<p>DOCTYPE = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 7</p>
<p>end),</p>
<p>RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end),</p>
<p>RMDNUMWK = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID),</p>
<p>DOCNUMBR = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID),</p>
<p>DOCDESCR = left(a.ReferenceNumber, 29),</p>
<p>DOCDATE = convert(varchar(10), a.[Time, 101),</p>
<p>BACHNUMB = &#8216;SMS&#8217;</p>
<p>  replicate(&#8217;0&#8242;,</p>
<p>2 &#8211; datalength(convert(varchar(2), a.StoreID)))  </p>
<p>convert(varchar(2), a.StoreID)</p>
<p>  replicate(&#8217;0&#8242;,</p>
<p>9 &#8211; datalength(convert(varchar(11), a.BatchNumber)))  </p>
<p>convert(varchar(11), a.BatchNumber),</p>
<p>BCHSOURC = &#8216;RMSales&#8217;,</p>
<p>CUSTNMBR=&#8217;CASH&#8217;,</p>
<p>CUSTNAME = &#8216;CASH&#8217;,</p>
<p>ADRSCODE = &#8216;PRIMARY&#8217;,</p>
<p>COSTAMNT = (case</p>
<p>when isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0) > 0 and a.Total > 0 then</p>
<p>abs(isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0))</p>
<p>when isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0)  0 and</p>
<p>a.StoreID = &#8217;1&#8242; and</p>
<p>not exists (select 1 from RM10301 c</p>
<p>where c.RMDNUMWK = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID) and</p>
<p>c.RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end)) and</p>
<p>not exists (select 1 from RM00401 c</p>
<p>where c.DOCNUMBR = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID) and</p>
<p>c.RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end))</p>
<p>and a.[Time > &#8217;01/01/2004&#8242; </p>
<p>Happy integrating!  if you want us to do the job or use our product &#8211; give us a call 1-866-528-0577! help@albaspectrum.com</p>
<p>About The Author</p>
<p>Andrew Karasev is Chief Technology Officer in Alba Spectrum Technologies ? USA nationwide Great Plains, Microsoft CRM, Microsoft RMS customization company, based in Chicago, Arizona, California, Colorado, Texas, Georgia, New York, Florida and having locations in multiple states and internationally (www.albaspectrum.com), he is Dexterity, SQL, C#.Net, Crystal Reports and Microsoft CRM SDK developer.  akarasev@albaspectrum.com</p>
]]></content:encoded>
			<wfw:commentRss>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2340/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Great Plains Integrations  Retail Management Sample</title>
		<link>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2328/</link>
		<comments>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2328/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 16:51:58 +0000</pubDate>
		<dc:creator>Software Talk</dc:creator>
				<category><![CDATA[Software Talk]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[great plains]]></category>
		<category><![CDATA[microsoft RMS]]></category>
		<category><![CDATA[retail management system]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Microsoft Business Solutions is emerging as very attractive vendor for mid-size companies. The strength of its products is in their cross integration potential. This integration strategy will be the software development direction for this Microsoft subdivision. Meanwhile, as of right now ? we have to recommend just to stake on it and deal with custom [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft Business Solutions is emerging as very attractive vendor for mid-size companies.  The strength of its products is in their cross integration potential.  This integration strategy will be the software development direction for this Microsoft subdivision.  Meanwhile, as of right now ? we have to recommend just to stake on it and deal with custom or in-house developed integration.</p>
<p>If you are developer who needs some sample code to start with ? we are placing Accounts Receivable level integration code ? it pulls info from Microsoft RMS and places it into work tables in Great Plains.</p>
<p>Be aware, that Microsoft Great Plains version 7.5 has out of the box integration with Microsoft RMS 1.2, but it is on GL and POP level only.  You can?t do check book reconciliation, for example.  Currently Microsoft is in decision on who will be coding the integration for Great Plains 8.0 and what the functionality should be.  More likely ? it will be Nodus Technologies with the integration on SOP and GL level ? it will deploy Great Plains Dexterity and MS SQL Server stored procs.</p>
<p>And here is the code, you have to deal with RM10301 and distribution RM, also we recommend insert new customers into RM00101 and RM00102:</p>
</p>
<p>&#8211; Sales Transaction Record</p>
<p>insert into RM10301</p>
<p>(</p>
<p>DOCTYPE,</p>
<p>RMDTYPAL,</p>
<p>RMDNUMWK,</p>
<p>DOCNUMBR,</p>
<p>DOCDESCR,</p>
<p>DOCDATE,</p>
<p>BACHNUMB,</p>
<p>BCHSOURC,</p>
<p>CUSTNMBR,</p>
<p>CUSTNAME,</p>
<p>ADRSCODE,</p>
<p>COSTAMNT,</p>
<p>SLSAMNT,</p>
<p>MISCAMNT,</p>
<p>FRTAMNT,</p>
<p>TAXAMNT,</p>
<p>DOCAMNT,</p>
<p>CASHAMNT,</p>
<p>CBKIDCSH,</p>
<p>CASHDATE,</p>
<p>DCNUMCSH,</p>
<p>CHEKAMNT,</p>
<p>CBKIDCHK,</p>
<p>CBKIDCRD,</p>
<p>CHEKNMBR,</p>
<p>CHEKDATE,</p>
<p>DCNUMCHK,</p>
<p>CRCRDAMT,</p>
<p>DCNUMCRD,</p>
<p>CRCRDNAM,</p>
<p>RCTNCCRD,</p>
<p>CRCARDDT,</p>
<p>TRDISAMT,</p>
<p>ACCTAMNT,</p>
<p>DISCDATE,</p>
<p>DUEDATE,</p>
<p>LSTEDTDT,</p>
<p>LSTUSRED,</p>
<p>GLPOSTDT,</p>
<p>PSTGSTUS,</p>
<p>CURNCYID,</p>
<p>TXENGCLD</p>
<p>)</p>
<p>select</p>
<p>DOCTYPE = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 7</p>
<p>end),</p>
<p>RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end),</p>
<p>RMDNUMWK = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID),</p>
<p>DOCNUMBR = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID),</p>
<p>DOCDESCR = left(a.ReferenceNumber, 29),</p>
<p>DOCDATE = convert(varchar(10), a.[Time, 101),</p>
<p>BACHNUMB = &#8216;SMS&#8217;</p>
<p>  replicate(&#8217;0&#8242;,</p>
<p>2 &#8211; datalength(convert(varchar(2), a.StoreID)))  </p>
<p>convert(varchar(2), a.StoreID)</p>
<p>  replicate(&#8217;0&#8242;,</p>
<p>9 &#8211; datalength(convert(varchar(11), a.BatchNumber)))  </p>
<p>convert(varchar(11), a.BatchNumber),</p>
<p>BCHSOURC = &#8216;RMSales&#8217;,</p>
<p>CUSTNMBR=&#8217;CASH&#8217;,</p>
<p>CUSTNAME = &#8216;CASH&#8217;,</p>
<p>ADRSCODE = &#8216;PRIMARY&#8217;,</p>
<p>COSTAMNT = (case</p>
<p>when isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0) > 0 and a.Total > 0 then</p>
<p>abs(isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0))</p>
<p>when isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0)  0 and</p>
<p>a.StoreID = &#8217;1&#8242; and</p>
<p>not exists (select 1 from RM10301 c</p>
<p>where c.RMDNUMWK = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID) and</p>
<p>c.RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end)) and</p>
<p>not exists (select 1 from RM00401 c</p>
<p>where c.DOCNUMBR = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID) and</p>
<p>c.RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end))</p>
<p>and a.[Time > &#8217;01/01/2004&#8242; </p>
<p>Happy integrating!  if you want us to do the job or use our product &#8211; give us a call 1-866-528-0577! help@albaspectrum.com</p>
<p>About The Author</p>
<p>Andrew Karasev is Chief Technology Officer in Alba Spectrum Technologies ? USA nationwide Great Plains, Microsoft CRM, Microsoft RMS customization company, based in Chicago, Arizona, California, Colorado, Texas, Georgia, New York, Florida and having locations in multiple states and internationally (www.albaspectrum.com), he is Dexterity, SQL, C#.Net, Crystal Reports and Microsoft CRM SDK developer.  akarasev@albaspectrum.com</p>
]]></content:encoded>
			<wfw:commentRss>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2328/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Great Plains Integrations  Retail Management Sample</title>
		<link>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2301/</link>
		<comments>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2301/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 04:50:38 +0000</pubDate>
		<dc:creator>Software Talk</dc:creator>
				<category><![CDATA[Software Talk]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[great plains]]></category>
		<category><![CDATA[microsoft RMS]]></category>
		<category><![CDATA[retail management system]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Microsoft Business Solutions is emerging as very attractive vendor for mid-size companies. The strength of its products is in their cross integration potential. This integration strategy will be the software development direction for this Microsoft subdivision. Meanwhile, as of right now ? we have to recommend just to stake on it and deal with custom [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft Business Solutions is emerging as very attractive vendor for mid-size companies.  The strength of its products is in their cross integration potential.  This integration strategy will be the software development direction for this Microsoft subdivision.  Meanwhile, as of right now ? we have to recommend just to stake on it and deal with custom or in-house developed integration.</p>
<p>If you are developer who needs some sample code to start with ? we are placing Accounts Receivable level integration code ? it pulls info from Microsoft RMS and places it into work tables in Great Plains.</p>
<p>Be aware, that Microsoft Great Plains version 7.5 has out of the box integration with Microsoft RMS 1.2, but it is on GL and POP level only.  You can?t do check book reconciliation, for example.  Currently Microsoft is in decision on who will be coding the integration for Great Plains 8.0 and what the functionality should be.  More likely ? it will be Nodus Technologies with the integration on SOP and GL level ? it will deploy Great Plains Dexterity and MS SQL Server stored procs.</p>
<p>And here is the code, you have to deal with RM10301 and distribution RM, also we recommend insert new customers into RM00101 and RM00102:</p>
</p>
<p>&#8211; Sales Transaction Record</p>
<p>insert into RM10301</p>
<p>(</p>
<p>DOCTYPE,</p>
<p>RMDTYPAL,</p>
<p>RMDNUMWK,</p>
<p>DOCNUMBR,</p>
<p>DOCDESCR,</p>
<p>DOCDATE,</p>
<p>BACHNUMB,</p>
<p>BCHSOURC,</p>
<p>CUSTNMBR,</p>
<p>CUSTNAME,</p>
<p>ADRSCODE,</p>
<p>COSTAMNT,</p>
<p>SLSAMNT,</p>
<p>MISCAMNT,</p>
<p>FRTAMNT,</p>
<p>TAXAMNT,</p>
<p>DOCAMNT,</p>
<p>CASHAMNT,</p>
<p>CBKIDCSH,</p>
<p>CASHDATE,</p>
<p>DCNUMCSH,</p>
<p>CHEKAMNT,</p>
<p>CBKIDCHK,</p>
<p>CBKIDCRD,</p>
<p>CHEKNMBR,</p>
<p>CHEKDATE,</p>
<p>DCNUMCHK,</p>
<p>CRCRDAMT,</p>
<p>DCNUMCRD,</p>
<p>CRCRDNAM,</p>
<p>RCTNCCRD,</p>
<p>CRCARDDT,</p>
<p>TRDISAMT,</p>
<p>ACCTAMNT,</p>
<p>DISCDATE,</p>
<p>DUEDATE,</p>
<p>LSTEDTDT,</p>
<p>LSTUSRED,</p>
<p>GLPOSTDT,</p>
<p>PSTGSTUS,</p>
<p>CURNCYID,</p>
<p>TXENGCLD</p>
<p>)</p>
<p>select</p>
<p>DOCTYPE = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 7</p>
<p>end),</p>
<p>RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end),</p>
<p>RMDNUMWK = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID),</p>
<p>DOCNUMBR = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID),</p>
<p>DOCDESCR = left(a.ReferenceNumber, 29),</p>
<p>DOCDATE = convert(varchar(10), a.[Time, 101),</p>
<p>BACHNUMB = &#8216;SMS&#8217;</p>
<p>  replicate(&#8217;0&#8242;,</p>
<p>2 &#8211; datalength(convert(varchar(2), a.StoreID)))  </p>
<p>convert(varchar(2), a.StoreID)</p>
<p>  replicate(&#8217;0&#8242;,</p>
<p>9 &#8211; datalength(convert(varchar(11), a.BatchNumber)))  </p>
<p>convert(varchar(11), a.BatchNumber),</p>
<p>BCHSOURC = &#8216;RMSales&#8217;,</p>
<p>CUSTNMBR=&#8217;CASH&#8217;,</p>
<p>CUSTNAME = &#8216;CASH&#8217;,</p>
<p>ADRSCODE = &#8216;PRIMARY&#8217;,</p>
<p>COSTAMNT = (case</p>
<p>when isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0) > 0 and a.Total > 0 then</p>
<p>abs(isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0))</p>
<p>when isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0)  0 and</p>
<p>a.StoreID = &#8217;1&#8242; and</p>
<p>not exists (select 1 from RM10301 c</p>
<p>where c.RMDNUMWK = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID) and</p>
<p>c.RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end)) and</p>
<p>not exists (select 1 from RM00401 c</p>
<p>where c.DOCNUMBR = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID) and</p>
<p>c.RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end))</p>
<p>and a.[Time > &#8217;01/01/2004&#8242; </p>
<p>Happy integrating!  if you want us to do the job or use our product &#8211; give us a call 1-866-528-0577! help@albaspectrum.com</p>
<p>About The Author</p>
<p>Andrew Karasev is Chief Technology Officer in Alba Spectrum Technologies ? USA nationwide Great Plains, Microsoft CRM, Microsoft RMS customization company, based in Chicago, Arizona, California, Colorado, Texas, Georgia, New York, Florida and having locations in multiple states and internationally (www.albaspectrum.com), he is Dexterity, SQL, C#.Net, Crystal Reports and Microsoft CRM SDK developer.  akarasev@albaspectrum.com</p>
]]></content:encoded>
			<wfw:commentRss>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2301/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Great Plains Integrations  Retail Management Sample</title>
		<link>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2258/</link>
		<comments>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2258/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 09:49:50 +0000</pubDate>
		<dc:creator>Software Talk</dc:creator>
				<category><![CDATA[Software Talk]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[great plains]]></category>
		<category><![CDATA[microsoft RMS]]></category>
		<category><![CDATA[retail management system]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Microsoft Business Solutions is emerging as very attractive vendor for mid-size companies. The strength of its products is in their cross integration potential. This integration strategy will be the software development direction for this Microsoft subdivision. Meanwhile, as of right now ? we have to recommend just to stake on it and deal with custom [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft Business Solutions is emerging as very attractive vendor for mid-size companies.  The strength of its products is in their cross integration potential.  This integration strategy will be the software development direction for this Microsoft subdivision.  Meanwhile, as of right now ? we have to recommend just to stake on it and deal with custom or in-house developed integration.</p>
<p>If you are developer who needs some sample code to start with ? we are placing Accounts Receivable level integration code ? it pulls info from Microsoft RMS and places it into work tables in Great Plains.</p>
<p>Be aware, that Microsoft Great Plains version 7.5 has out of the box integration with Microsoft RMS 1.2, but it is on GL and POP level only.  You can?t do check book reconciliation, for example.  Currently Microsoft is in decision on who will be coding the integration for Great Plains 8.0 and what the functionality should be.  More likely ? it will be Nodus Technologies with the integration on SOP and GL level ? it will deploy Great Plains Dexterity and MS SQL Server stored procs.</p>
<p>And here is the code, you have to deal with RM10301 and distribution RM, also we recommend insert new customers into RM00101 and RM00102:</p>
</p>
<p>&#8211; Sales Transaction Record</p>
<p>insert into RM10301</p>
<p>(</p>
<p>DOCTYPE,</p>
<p>RMDTYPAL,</p>
<p>RMDNUMWK,</p>
<p>DOCNUMBR,</p>
<p>DOCDESCR,</p>
<p>DOCDATE,</p>
<p>BACHNUMB,</p>
<p>BCHSOURC,</p>
<p>CUSTNMBR,</p>
<p>CUSTNAME,</p>
<p>ADRSCODE,</p>
<p>COSTAMNT,</p>
<p>SLSAMNT,</p>
<p>MISCAMNT,</p>
<p>FRTAMNT,</p>
<p>TAXAMNT,</p>
<p>DOCAMNT,</p>
<p>CASHAMNT,</p>
<p>CBKIDCSH,</p>
<p>CASHDATE,</p>
<p>DCNUMCSH,</p>
<p>CHEKAMNT,</p>
<p>CBKIDCHK,</p>
<p>CBKIDCRD,</p>
<p>CHEKNMBR,</p>
<p>CHEKDATE,</p>
<p>DCNUMCHK,</p>
<p>CRCRDAMT,</p>
<p>DCNUMCRD,</p>
<p>CRCRDNAM,</p>
<p>RCTNCCRD,</p>
<p>CRCARDDT,</p>
<p>TRDISAMT,</p>
<p>ACCTAMNT,</p>
<p>DISCDATE,</p>
<p>DUEDATE,</p>
<p>LSTEDTDT,</p>
<p>LSTUSRED,</p>
<p>GLPOSTDT,</p>
<p>PSTGSTUS,</p>
<p>CURNCYID,</p>
<p>TXENGCLD</p>
<p>)</p>
<p>select</p>
<p>DOCTYPE = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 7</p>
<p>end),</p>
<p>RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end),</p>
<p>RMDNUMWK = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID),</p>
<p>DOCNUMBR = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID),</p>
<p>DOCDESCR = left(a.ReferenceNumber, 29),</p>
<p>DOCDATE = convert(varchar(10), a.[Time, 101),</p>
<p>BACHNUMB = &#8216;SMS&#8217;</p>
<p>  replicate(&#8217;0&#8242;,</p>
<p>2 &#8211; datalength(convert(varchar(2), a.StoreID)))  </p>
<p>convert(varchar(2), a.StoreID)</p>
<p>  replicate(&#8217;0&#8242;,</p>
<p>9 &#8211; datalength(convert(varchar(11), a.BatchNumber)))  </p>
<p>convert(varchar(11), a.BatchNumber),</p>
<p>BCHSOURC = &#8216;RMSales&#8217;,</p>
<p>CUSTNMBR=&#8217;CASH&#8217;,</p>
<p>CUSTNAME = &#8216;CASH&#8217;,</p>
<p>ADRSCODE = &#8216;PRIMARY&#8217;,</p>
<p>COSTAMNT = (case</p>
<p>when isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0) > 0 and a.Total > 0 then</p>
<p>abs(isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0))</p>
<p>when isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0)  0 and</p>
<p>a.StoreID = &#8217;1&#8242; and</p>
<p>not exists (select 1 from RM10301 c</p>
<p>where c.RMDNUMWK = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID) and</p>
<p>c.RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end)) and</p>
<p>not exists (select 1 from RM00401 c</p>
<p>where c.DOCNUMBR = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID) and</p>
<p>c.RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end))</p>
<p>and a.[Time > &#8217;01/01/2004&#8242; </p>
<p>Happy integrating!  if you want us to do the job or use our product &#8211; give us a call 1-866-528-0577! help@albaspectrum.com</p>
<p>About The Author</p>
<p>Andrew Karasev is Chief Technology Officer in Alba Spectrum Technologies ? USA nationwide Great Plains, Microsoft CRM, Microsoft RMS customization company, based in Chicago, Arizona, California, Colorado, Texas, Georgia, New York, Florida and having locations in multiple states and internationally (www.albaspectrum.com), he is Dexterity, SQL, C#.Net, Crystal Reports and Microsoft CRM SDK developer.  akarasev@albaspectrum.com</p>
]]></content:encoded>
			<wfw:commentRss>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2258/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Great Plains Integrations  Retail Management Sample</title>
		<link>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2233/</link>
		<comments>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2233/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 05:49:46 +0000</pubDate>
		<dc:creator>Software Talk</dc:creator>
				<category><![CDATA[Software Talk]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[great plains]]></category>
		<category><![CDATA[microsoft RMS]]></category>
		<category><![CDATA[retail management system]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Microsoft Business Solutions is emerging as very attractive vendor for mid-size companies. The strength of its products is in their cross integration potential. This integration strategy will be the software development direction for this Microsoft subdivision. Meanwhile, as of right now ? we have to recommend just to stake on it and deal with custom [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft Business Solutions is emerging as very attractive vendor for mid-size companies.  The strength of its products is in their cross integration potential.  This integration strategy will be the software development direction for this Microsoft subdivision.  Meanwhile, as of right now ? we have to recommend just to stake on it and deal with custom or in-house developed integration.</p>
<p>If you are developer who needs some sample code to start with ? we are placing Accounts Receivable level integration code ? it pulls info from Microsoft RMS and places it into work tables in Great Plains.</p>
<p>Be aware, that Microsoft Great Plains version 7.5 has out of the box integration with Microsoft RMS 1.2, but it is on GL and POP level only.  You can?t do check book reconciliation, for example.  Currently Microsoft is in decision on who will be coding the integration for Great Plains 8.0 and what the functionality should be.  More likely ? it will be Nodus Technologies with the integration on SOP and GL level ? it will deploy Great Plains Dexterity and MS SQL Server stored procs.</p>
<p>And here is the code, you have to deal with RM10301 and distribution RM, also we recommend insert new customers into RM00101 and RM00102:</p>
</p>
<p>&#8211; Sales Transaction Record</p>
<p>insert into RM10301</p>
<p>(</p>
<p>DOCTYPE,</p>
<p>RMDTYPAL,</p>
<p>RMDNUMWK,</p>
<p>DOCNUMBR,</p>
<p>DOCDESCR,</p>
<p>DOCDATE,</p>
<p>BACHNUMB,</p>
<p>BCHSOURC,</p>
<p>CUSTNMBR,</p>
<p>CUSTNAME,</p>
<p>ADRSCODE,</p>
<p>COSTAMNT,</p>
<p>SLSAMNT,</p>
<p>MISCAMNT,</p>
<p>FRTAMNT,</p>
<p>TAXAMNT,</p>
<p>DOCAMNT,</p>
<p>CASHAMNT,</p>
<p>CBKIDCSH,</p>
<p>CASHDATE,</p>
<p>DCNUMCSH,</p>
<p>CHEKAMNT,</p>
<p>CBKIDCHK,</p>
<p>CBKIDCRD,</p>
<p>CHEKNMBR,</p>
<p>CHEKDATE,</p>
<p>DCNUMCHK,</p>
<p>CRCRDAMT,</p>
<p>DCNUMCRD,</p>
<p>CRCRDNAM,</p>
<p>RCTNCCRD,</p>
<p>CRCARDDT,</p>
<p>TRDISAMT,</p>
<p>ACCTAMNT,</p>
<p>DISCDATE,</p>
<p>DUEDATE,</p>
<p>LSTEDTDT,</p>
<p>LSTUSRED,</p>
<p>GLPOSTDT,</p>
<p>PSTGSTUS,</p>
<p>CURNCYID,</p>
<p>TXENGCLD</p>
<p>)</p>
<p>select</p>
<p>DOCTYPE = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 7</p>
<p>end),</p>
<p>RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end),</p>
<p>RMDNUMWK = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID),</p>
<p>DOCNUMBR = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID),</p>
<p>DOCDESCR = left(a.ReferenceNumber, 29),</p>
<p>DOCDATE = convert(varchar(10), a.[Time, 101),</p>
<p>BACHNUMB = &#8216;SMS&#8217;</p>
<p>  replicate(&#8217;0&#8242;,</p>
<p>2 &#8211; datalength(convert(varchar(2), a.StoreID)))  </p>
<p>convert(varchar(2), a.StoreID)</p>
<p>  replicate(&#8217;0&#8242;,</p>
<p>9 &#8211; datalength(convert(varchar(11), a.BatchNumber)))  </p>
<p>convert(varchar(11), a.BatchNumber),</p>
<p>BCHSOURC = &#8216;RMSales&#8217;,</p>
<p>CUSTNMBR=&#8217;CASH&#8217;,</p>
<p>CUSTNAME = &#8216;CASH&#8217;,</p>
<p>ADRSCODE = &#8216;PRIMARY&#8217;,</p>
<p>COSTAMNT = (case</p>
<p>when isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0) > 0 and a.Total > 0 then</p>
<p>abs(isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0))</p>
<p>when isnull((select round(sum(round(Cost * Quantity,2)),2)</p>
<p>from LINKEDSERVER.HQ.dbo.TransactionEntry</p>
<p>where TransactionNumber = a.TransactionNumber and</p>
<p>StoreID = a.StoreID),0)  0 and</p>
<p>a.StoreID = &#8217;1&#8242; and</p>
<p>not exists (select 1 from RM10301 c</p>
<p>where c.RMDNUMWK = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID) and</p>
<p>c.RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end)) and</p>
<p>not exists (select 1 from RM00401 c</p>
<p>where c.DOCNUMBR = &#8216;SMS&#8217;   replicate(&#8217;0&#8242;,</p>
<p>13 &#8211; datalength(convert(varchar(13), a.TransactionNumber)))  </p>
<p>convert(varchar(13), a.TransactionNumber)   convert(varchar(10), a.StoreID) and</p>
<p>c.RMDTYPAL = (case</p>
<p>when a.Total > 0 then 1</p>
<p>else 8</p>
<p>end))</p>
<p>and a.[Time > &#8217;01/01/2004&#8242; </p>
<p>Happy integrating!  if you want us to do the job or use our product &#8211; give us a call 1-866-528-0577! help@albaspectrum.com</p>
<p>About The Author</p>
<p>Andrew Karasev is Chief Technology Officer in Alba Spectrum Technologies ? USA nationwide Great Plains, Microsoft CRM, Microsoft RMS customization company, based in Chicago, Arizona, California, Colorado, Texas, Georgia, New York, Florida and having locations in multiple states and internationally (www.albaspectrum.com), he is Dexterity, SQL, C#.Net, Crystal Reports and Microsoft CRM SDK developer.  akarasev@albaspectrum.com</p>
]]></content:encoded>
			<wfw:commentRss>http://filezilla-download.com/microsoft-great-plains-integrations-retail-management-sample-2233/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

