<?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>The Mindporn Blog &#187; Universe Of Software</title>
	<atom:link href="http://mindporn.com/archives/category/universeofsoftware/feed/" rel="self" type="application/rss+xml" />
	<link>http://mindporn.com</link>
	<description>It's what you think...</description>
	<lastBuildDate>Sat, 26 Dec 2009 11:03:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Non-Profit Community Welfare Groups to Get Free Web Hosting from myhosting.com</title>
		<link>http://mindporn.com/archives/2009/09/20/non-profit-community-welfare-groups-to-get-free-web-hosting-from-myhostingcom/</link>
		<comments>http://mindporn.com/archives/2009/09/20/non-profit-community-welfare-groups-to-get-free-web-hosting-from-myhostingcom/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 08:17:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[House Of Hardware]]></category>
		<category><![CDATA[Online Technology Resources]]></category>
		<category><![CDATA[Universe Of Software]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[web hosting]]></category>

		<guid isPermaLink="false">http://mindporn.com/archives/2009/09/20/non-profit-community-welfare-groups-to-get-free-web-hosting-from-myhostingcom/</guid>
		<description><![CDATA[MyHosting.com, a company offering web hosting services to more than 140 countries, announced the launch of its Web Hosting Endowment program. Under the program, the company is set to donate free web hosting services to organizations that contribute to the welfare of their communities. 
We want to help organizations that are working towards the greater [...]]]></description>
			<content:encoded><![CDATA[<p>MyHosting.com, a company offering <a href="http://www.dedipower.com/managed-servers/">web hosting services</a> to more than 140 countries, announced the launch of its Web Hosting Endowment program. Under the program, the company is set to donate free web hosting services to organizations that contribute to the welfare of their communities. </p>
<p>We want to help organizations that are working towards the greater good of their communities, says Celal Ulgen, myhosting.com&#8217;s chief marketing officer. He further said that this is the company&#8217;s way of giving back to their community. <br />Through the program, non-profit organizations and contribution-based groups are going to receive web hosting, SharePoint and Exchange Email via myhosting.com. According to the company&#8217;s statement, qualified organizations are going to get free professional web hosting which covers a dedicated IP address, email accounts, both Linux and Windows 2008 hosting platforms that come with a lot of storage, bandwidth and other standard Web hosting services. The groups will also get free hosted Exchange Email under the program to replace email accounts that are included in the Professional Web Hosting package. Finally, the program will also provide free SharePoint hosting with unlimited sub-sites and users in order to allow volunteers to collaborate on the organizations&#8217; projects.</p>
<p>The Web Hosting Endowment Program will be made available to qualified organizations. These include registered non-profit causes, groups that are contributing to their communities productively and government and educational institutions that are working towards the greater good. </p>
<p>Myhosting.com is working towards providing services to charities and non-profits, particularly those that have 501(c)(3) designations as well as charities that are registered with CRA. But it is not limited to such groups. Ulgen said that the company is interested in offering its services to organizations that are selflessly contributing towards making a positive change.  </p>
]]></content:encoded>
			<wfw:commentRss>http://mindporn.com/archives/2009/09/20/non-profit-community-welfare-groups-to-get-free-web-hosting-from-myhostingcom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Great Plains: Interest Calculation Example &#8211; Stored Procedure for Crystal Report</title>
		<link>http://mindporn.com/archives/2008/05/26/microsoft-great-plains-interest-calculation-example-stored-procedure-for-crystal-report/</link>
		<comments>http://mindporn.com/archives/2008/05/26/microsoft-great-plains-interest-calculation-example-stored-procedure-for-crystal-report/#comments</comments>
		<pubDate>Tue, 27 May 2008 00:12:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Universe Of Software]]></category>

		<guid isPermaLink="false">http://mindporn.com/archives/2008/05/26/microsoft-great-plains-interest-calculation-example-stored-procedure-for-crystal-report/</guid>
		<description><![CDATA[This is intermediate level SQL scripting article for DB Administrator, Programmer, IT Specialist
Our and Microsoft Business Solutions goal here is to educate database administrator, programmer, software developer to enable them support Microsoft Great Plains for their companies. In our opinion self support is the goal of Microsoft to facilitate implementation of its products: Great Plains, [...]]]></description>
			<content:encoded><![CDATA[<p>This is intermediate level SQL scripting article for DB Administrator, Programmer, IT Specialist</p>
<p>Our and Microsoft Business Solutions goal here is to educate database administrator, programmer, software developer to enable them support Microsoft Great Plains for their companies. In our opinion self support is the goal of Microsoft to facilitate implementation of its products: Great Plains, Navision, Solomon, Microsoft CRM. You can do it for your company, appealing to Microsoft Business Solutions Techknowledge database. This will allow you to avoid expensive consultant visits onsite. You only need the help from professional when you plan on complex customization, interface or integration, then you can appeal to somebody who specializes in these tasks and can do inexpensive nation-wide remote support for you.</p>
<p>Let&#8217;s look at interest calculation techniques.</p>
<p>Imagine that you are financing institution and have multiple customers in two companies, where you need to predict interest. The following procedure will do the job:</p>
<pre>

CREATE PROCEDURE AST_Interest_Calculation

@Company1 varchar(10),	--Great Plains SQL database ID

@Company2 varchar(10),

@Accountfrom varchar(60),

@Accountto varchar(60),

@Datefrom datetime,

@Dateto datetime--,

as

declare @char39 char --for single quote mark

declare @SDatefrom as varchar(50)

declare @SDateto as varchar(50)

select @SDatefrom = cast(@Datefrom as varchar(50))

select @SDateto = cast(@Dateto as varchar(50))

select @char39=char(39)

if not exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[AST_INTEREST_TABLE]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)

CREATE TABLE [dbo].[AST_INTEREST_TABLE] (

[YEAR] [int] NULL ,

[MONTH] [int] NULL ,

[COMPANYID] [varchar] (4) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,

[ACTNUMST] [char] (129) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,

[BEGINDATE] [varchar] (19) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,

[ENDDATE] [varchar] (19) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,

[YEARDEGBALANCE] [numeric](19, 5) NULL ,

[BEGBALANCE] [numeric](38, 5) NULL ,

[ENDBALANCE] [numeric](38, 5) NULL ,

[INTERESTONBALANCE] [numeric](38, 6) NULL ,

[INTERESONTRANSACTIONS] [numeric](38, <img src='http://mindporn.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> NULL ,

[INTEREST] [numeric](38, 6) NULL
) ON [PRIMARY]

exec("

delete AST_INTEREST_TABLE where [YEAR] = year("+ @char39 + @Datefrom + @char39 +") and [MONTH]=month("+ @char39 + @Datefrom + @char39 +")

insert into AST_INTEREST_TABLE

select

year(X.BEGINDATE) as [YEAR],

month(X.BEGINDATE) as [MONTH],

X.COMPANYID,

X.ACTNUMST,

X.BEGINDATE as BEGINDATE,

X.ENDDATE as ENDDATE,

X.YEARBEGBALANCE as YEARDEGBALANCE,

X.YEARBEGBALANCE+X.BEGBALANCE as BEGBALANCE,

X.YEARBEGBALANCE+X.ENDBALANCE as ENDBALANCE,

X.INTERESTONBALANCE as INTERESTONBALANCE,

X.INTERESTONTRANSACTIONS as INTERESONTRANSACTIONS,

X.INTERESTONBALANCE+X.INTERESTONTRANSACTIONS as INTEREST

--into AST_INTEREST_TABLE

from

(

select

"+ @char39+ @Company1 + @char39+" as COMPANYID,

a.ACTNUMST,

"+ @char39 + @Datefrom + @char39 +" as BEGINDATE,

"+ @char39 + @Dateto + @char39 +" as ENDDATE,

case when

b.PERDBLNC is null then 0

else	b.PERDBLNC

end as YEARBEGBALANCE,

sum

(

case

when (c.DEBITAMT-c.CRDTAMNT is not null and c.TRXDATE ="+ @char39 + @SDatefrom + @char39 +" and c.TRXDATE =year("+ @char39 + @Datefrom + @char39 +")

where

a.ACTNUMST>="+@char39+@Accountfrom+@char39 +"

and a.ACTNUMST="+ @char39 + @SDatefrom + @char39 +" and c.TRXDATE =year("+ @char39 + @Datefrom + @char39 +")

where

a.ACTNUMST>="+@char39+@Accountfrom+@char39 +"

and a.ACTNUMST<="+@char39+@Accountto+@char39 +"

group by

a.ACTNUMST,

case when

b.PERDBLNC is null then 0

else	b.PERDBLNC

end,

d.USERDEF1

) X

")
</pre>
<p>Happy querying and customizing! if you want us to help you &#8211; give us a call 1-866-528-0577! help@albaspectrum.com</p>
<div style="float: right; padding: 0px; margin: 0px; border-width: 1px 1px 1px 1px; border-style: solid; border-color: white; background-color: white"></div>
<p>About The Author</p>
<p>Andrew Karasev is Chief Technology Officer in Alba Spectrum Technologies &#8211; USA nationwide Microsoft CRM, Microsoft Great Plains customization company, based in Chicago, Arizona, California, Colorado, Texas, New York, Georgia, Florida, Canada, UK, Australia and having locations in multiple states and internationally , he is Dexterity, SQL, C#.Net, Crystal Reports and Microsoft CRM SDK developer; akarasev@albaspectrum.com</p>
]]></content:encoded>
			<wfw:commentRss>http://mindporn.com/archives/2008/05/26/microsoft-great-plains-interest-calculation-example-stored-procedure-for-crystal-report/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
