Software Information



Articles Main Page | Main Site Home Page





Text Ad's by TextAdPro.com
Make Money For Real doing nothing - 3 ways to profit - EZmatic.com.

ThatsNeato.com - That's Neato!

Home Business Money Making - How to make money on the net.

2coolhair.com - Over 5,000 Hairstyles Pitcures.



Microsoft CRM Programming Secrets - Tips For Developers


This article is for advanced Microsoft CRM SDK C# developers. It describes the technique of direct SQL programming, when SDK doesn't have the functionality to do the job.

Introduction. Looks like Microsoft CRM becomes more and more popular, partly because of Microsoft muscles behind it. Now it is targeted to the whole spectrum of horizontal and vertical market clientele. It is tightly integrated with other Microsoft Business Solutions products such as Microsoft Great Plains, Solomon, Navision (the last two in progress).Here we describe the technique of creating closed activity-email using MS CRM SDK and direct SQL programming.

Imaging something like this. You need to handle incoming email before it is committed to MS Exchange database. You need to analyze if incoming email doesn't have GUID in its Subject (GUID will allow MS CRM Exchange Connector to move email to Microsoft CRM and attach it to the Contact, Account or Lead) - then you still need to lookup MS CRM in case if one of the accounts, contacts or leads has email address that matches with sender email address - then you need to create closed activity-email in MS CRM, attached to the object and placed into general queue.

How to create MS Exchange handler is outside of the scope, please see this article:http://www.albaspectrum.com/Customizations_Whitepapers/Dexterity_SQL_VBA_Crystal/ExchangeHandlerExample.htm

Now the code below is classical MS CRM SDK and it will create activity email:

public Guid CreateEmailActivity(Guid userId, int objectType, Guid objectId, string mailFrom, CRMUser crmUser, string subject, string body) {try {

log.Debug("Prepare for Mail Activity Creating");

// BizUser proxy object

Microsoft.Crm.Platform.Proxy.BizUser bizUser = new Microsoft.Crm.Platform.Proxy.BizUser();

ICredentials credentials = new NetworkCredential(sysUserId, sysPassword, sysDomain);

bizUser.Url = crmDir + "BizUser.srf";

bizUser.Credentials = credentials;

Microsoft.Crm.Platform.Proxy.CUserAuth userAuth = bizUser.WhoAmI();

// CRMEmail proxy object

Microsoft.Crm.Platform.Proxy.CRMEmail email = new Microsoft.Crm.Platform.Proxy.CRMEmail();

email.Credentials = credentials;

email.Url = crmDir + "CRMEmail.srf";

// Set up the XML string for the activity

string strActivityXml = "";

strActivityXml += "";

strActivityXml += "") + "]]>";

strActivityXml += "";

strActivityXml += userId.ToString("B") + "";

strActivityXml += "";

// Set up the XML string for the activity parties

string strPartiesXml = "";

strPartiesXml += "";

strPartiesXml += "" + crmUser.GetEmailAddress() + "";

strPartiesXml += "" + Microsoft.Crm.Platform.Types.ObjectType.otSystemUser.ToString() + "";

strPartiesXml += ""+ crmUser.GetId().ToString("B") + "";

strPartiesXml += "";

strPartiesXml += Microsoft.Crm.Platform.Types.ACTIVITY_PARTY_TYPE.ACTIVITY_PARTY_TO_RECIPIENT.ToString();

strPartiesXml += "";

strPartiesXml += "";

strPartiesXml += "";

strPartiesXml += "" + mailFrom + "";

if (objectType == Microsoft.Crm.Platform.Types.ObjectType.otAccount) {

strPartiesXml += "" + Microsoft.Crm.Platform.Types.ObjectType.otAccount.ToString() + "";

}

else if (objectType == Microsoft.Crm.Platform.Types.ObjectType.otContact) {

strPartiesXml += "" + Microsoft.Crm.Platform.Types.ObjectType.otContact.ToString() + "";

}

else if (objectType == Microsoft.Crm.Platform.Types.ObjectType.otLead) {

strPartiesXml += "" + Microsoft.Crm.Platform.Types.ObjectType.otLead.ToString() + "";

}

strPartiesXml += ""+ objectId.ToString("B") + "";

strPartiesXml += "";

strPartiesXml += Microsoft.Crm.Platform.Types.ACTIVITY_PARTY_TYPE.ACTIVITY_PARTY_SENDER.ToString();

strPartiesXml += "";

strPartiesXml += "";

strPartiesXml += "";

log.Debug(strPartiesXml);

// Create the e-mail object

Guid emailId = new Guid(email.Create(userAuth, strActivityXml, strPartiesXml));

return emailId;}catch (System.Web.Services.Protocols.SoapException e) {log.Debug("ErrorMessage: " + e.Message + " " + e.Detail.OuterXml + " Source: " + e.Source);}catch (Exception e) {log.Debug(e.Message + "rn" + e.StackTrace);}return new Guid();}

Now I would like to share the trick with you - there is no method to make this activity closed in MS CRM SDK 1.2 (if somebody knows the one - I owe you small pocket aquarium - smile!). Obviously Microsoft doesn't support if you do direct SQL programming bypassing SDK. However I would say this is not direct objects creation - this is rather flags correction. So here is what we have - this procedure will do the job and make activity closed:

public void UpdateActivityCodes(Guid emailId) {try {

OleDbCommand command = conn.CreateCommand();

command.CommandText = "UPDATE ActivityBase SET DirectionCode = (?), StateCode = (?), PriorityCode = (?) WHERE ActivityId = (?)";

command.Prepare();

command.Parameters.Add(new OleDbParameter("DirectionCode", Microsoft.Crm.Platform.Types.EVENT_DIRECTION.ED_INCOMING));

command.Parameters.Add(new OleDbParameter("StateCode", Microsoft.Crm.Platform.Types.ACTIVITY_STATE.ACTS_CLOSED));

command.Parameters.Add(new OleDbParameter("PriorityCode", Microsoft.Crm.Platform.Types.PRIORITY_CODE.PC_MEDIUM));

command.Parameters.Add(new OleDbParameter("ActivityId", emailId));

log.Debug("Prepare to update activity code " + emailId.ToString("B") + " in ActivityBase");

command.ExecuteNonQuery();

}

catch(Exception e) {

log.Debug(e.Message + "rn" + e.StackTrace);

}}

Happy customizing! if you want us to do the job - give us a call 1-866-528-0577! help@albaspectrum.com

Andrew Karasev is Chief Technology Officer in Alba Spectrum Technologies - USA nationwide Microsoft CRM, Microsoft Great Plains customization company, based in Chicago, Boston, San Francisco, San Diego, Los Angeles, Houston, Atlanta, New York, and Miami and having locations in multiple states and internationally (www.albaspectrum.com), he is Dexterity, SQL, VB/C#.Net, Crystal Reports and Microsoft CRM SDK developer.


MORE RESOURCES:
table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/0-0fd=Rurl=http://www.marketwatch.com/news/story/WorkForce-Software-Host-its-First/story.aspx%3Fguid%3D%257B48B209E3-58EF-4A15-A6CA-BF0854FDE997%257Dcid=1277502452ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNHywzSgxmvU2doTfrxPyxiabztvmQWorkForce bSoftware/b to Host its First Annual Career Fair in Michigan/abrfont size=-1font color=#6f6f6fMarketWatchnbsp;-/font nobr3 hours ago/nobr/fontbrfont size=-1Due to our rapid expansion, we are hiring for several positions within our bsoftware/b development and implementation departments. b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/0-1fd=Rurl=http://www.marketwatch.com/news/story/WorkForce-Software-Delivers-430-ROI/story.aspx%3Fguid%3D%257B4238B00B-C8BF-4D69-AA1B-DA091D0FAD62%257Dcid=1277502452ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNEc_RzQDaWQkBw4oSSnhzWaqakvQAWorkForce bSoftware/b Delivers 430% ROI for University with EmpCenter/a font size=-1 color=#6f6f6fnobrMarketWatch/nobr/font/fontbrfont class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1277502452hl=ennobrall 12 news articles/nobr/a/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/1-0fd=Rurl=http://online.wsj.com/article/SB122840422009579487.html%3Fmod%3Dgooglenews_wsjcid=1277452365ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNHePxH6A8cjHbLf9MWR074ejv5CsgJDA bSoftware/b, i2 Scrap Merger/abrfont size=-1font color=#6f6f6fWall Street Journalnbsp;-/font nobr3 hours ago/nobr/fontbrfont size=-1By KERRY E. GRACE I2 Technologies Inc. ended its planned $346 million sale to JDA bSoftware/b Group Inc., under which the two supply-chain bsoftware/b companies b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/1-1fd=Rurl=http://www.reuters.com/article/mergersNews/idUSBNG30148820081204cid=1277452365ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNHIh2JE4ge2n1KwUKdnaU6xsy8fBwUPDATE 1-I2 Technologies ends merger deal with JDA bSoftware/b/a font size=-1 color=#6f6f6fnobrReuters/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/1-2fd=Rurl=http://www.bizjournals.com/dallas/stories/2008/12/01/daily43.htmlcid=1277452365ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNGO48RmkbI7iktNPju_GF-c3HtFkwi2 Technologies: No sale to JDA bSoftware/b/a font size=-1 color=#6f6f6fnobrBizjournals.com/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/1-3fd=Rurl=http://blogs.barrons.com/techtraderdaily/2008/12/04/i2-shrs-tumble-20-sale-to-jda-software-terminated/cid=1277452365ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNGj6mU9Nerknq38FZ-QNjRNsVIjkAi2 Shrs Tumble 20%; Sale To JDA bSoftware/b Terminated/a font size=-1 color=#6f6f6fnobrBarron's Blogs/nobr/font/fontbrfont size=-1 class=pa href=http://news.google.com/news/url?sa=Tct=us/1-4fd=Rurl=http://newsticker.welt.de/index.php%3Fchannel%3Dfin%26module%3Dsmarthouse%26id%3D819028cid=1277452365ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNFTH2lmHZev-EPRdXeqRl-dKRPnUQnobrWELT ONLINE/nobr/anbsp;- a href=http://news.google.com/news/url?sa=Tct=us/1-5fd=Rurl=http://www.dallasnews.com/sharedcontent/dws/bus/stories/120508dnbusjdai2.2d693dad.htmlcid=1277452365ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNFTgKN-L8_q2w-z-_kDMcdnrmS1awnobrDallas Morning News/nobr/a/fontbr/font class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1277452365hl=ennobrall 27 news articles/nobr/a/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd width=80 align=center valign=topfont style=font-size:85%;font-family:arial,sans-serifa href=http://news.google.com/news/url?sa=Tct=us/2i-0fd=Rurl=http://news.cnet.com/8301-10805_3-10112904-75.htmlcid=1277436405ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNFmum_-6rIKgQAP2V826YsVIoAOywimg src=http://news.google.com/news?imgefp=HBRLgL3DerAJimgurl=news.cnet.com/i/bto/20081203/blue_2_270x284.JPG width=76 height=80 alt= border=1brfont size=-2CNET News/font/a/font/tdtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/2-0fd=Rurl=http://www.crn.com/software/212201891cid=1277436405ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNEzVedvUqJKZTmXkOLWr4FOCHd05gMicrosoft Warns Against Fake #39;Blue Edition#39; bSoftware/b/abrfont size=-1font color=#6f6f6fCRN,nbsp;NYnbsp;-/font nobr3 hours ago/nobr/fontbrfont size=-1Microsoft said it has been receiving complaints from unsuspecting customers having been stung after buying counterfeit Windows XP bsoftware/b and quot;illicit b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/2-1fd=Rurl=http://www.sfgate.com/cgi-bin/blogs/sfgate/detail%3Fblogid%3D19%26entry_id%3D33206cid=1277436405ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNH00qWO8rQCLJ08lJ886JmrCMjz1AMicrosoft goes after bsoftware/b pirates/a font size=-1 color=#6f6f6fnobrSan Francisco Chronicle/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/2-2fd=Rurl=http://www.computerworld.com/action/article.do%3Fcommand%3DviewArticleBasic%26articleId%3D9122479%26intsrc%3Dnews_ts_headcid=1277436405ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNGhTP1wawilxfDjU4vUASfSp4o2wAMicrosoft targets Blue Edition#39; bsoftware/b sales scams/a font size=-1 color=#6f6f6fnobrComputerworld/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/2-3fd=Rurl=http://www.techflash.com/microsoft/New_Microsoft_piracy_case_targets_bogus_Blue_Edition_software35512684.htmlcid=1277436405ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNH-97zrkTpnhohAYYEvGPSO7cEKtwNew Microsoft piracy case targets bogus ‘Blue Edition’ bsoftware/b/a font size=-1 color=#6f6f6fnobrTechFlash/nobr/font/fontbrfont size=-1 class=pa href=http://news.google.com/news/url?sa=Tct=us/2-4fd=Rurl=http://seattlepi.nwsource.com/business/390552_msftpiracy04.htmlcid=1277436405ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNE8IYsyhihq4kstxQZMhX2FI3sCugnobrSeattle Post Intelligencer/nobr/anbsp;- a href=http://news.google.com/news/url?sa=Tct=us/2-5fd=Rurl=http://uk.sys-con.com/node/767835cid=1277436405ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNE0ANCDPBC4T5lXEFbIyYeY-491lQnobrSYS-CON Media/nobr/a/fontbr/font class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1277436405hl=ennobrall 35 news articles/nobr/a/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/3-0fd=Rurl=http://www.marketwatch.com/news/story/Everest-Software-Partners-Foxfire-Offer/story.aspx%3Fguid%3D%257B092D7510-C1DD-4358-989F-CEB7B9B6375F%257Dcid=1277511233ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNGI92frCSMMhgcfdyyOhvD9A2sDxgEverest bSoftware/b Partners with Foxfire to Offer Integrated b.../b/abrfont size=-1font color=#6f6f6fMarketWatchnbsp;-/font nobr3 hours ago/nobr/fontbrfont size=-1The partnership creates a powerful integrated bsoftware/b product suite that includes ecommerce, point of sale, accounting, and real-time inventory and b.../b/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd width=80 align=center valign=topfont style=font-size:85%;font-family:arial,sans-serifa href=http://news.google.com/news/url?sa=Tct=us/4i-0fd=Rurl=http://www.dailytech.com/Apple%2BTells%2BUsers%2BGet%2Ba%2BMac%2BAntivirus%2BProgram/article13562.htmcid=1276552788ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNFOe-CeC697eu7mKbuHaw_jVHNHkAimg src=http://news.google.com/news?imgefp=sqbp0eow7VcJimgurl=images.dailytech.com/frontpage/fp__mac_pc_guy.jpg width=80 height=80 alt= border=1brfont size=-2DailyTech/font/a/font/tdtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/4-0fd=Rurl=http://computerworld.com/action/article.do%3Fcommand%3DviewArticleBasic%26articleId%3D9122359cid=1276552788ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNGsV4pdxMFdr32MBjb2PviH-Vo18wApple yanks antivirus advice from its Web site/abrfont size=-1font color=#6f6f6fComputerworld,nbsp;MAnbsp;-/font nobr4 hours ago/nobr/fontbrfont size=-1quot;The Mac is designed with built-in technologies that provide protection against malicious bsoftware/b and security threats right out of the box,quot; he went on. b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/4-1fd=Rurl=http://www.informationweek.com/news/hardware/mac/showArticle.jhtml%3FarticleID%3D212201455%26subSection%3DNewscid=1276552788ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNGxXyU6w9rVjs5_tzKtQcAx7r6vVAApple Recommends Antivirus bSoftware/b For Mac OS X/a font size=-1 color=#6f6f6fnobrInformationWeek/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/4-2fd=Rurl=http://blog.wired.com/business/2008/12/apple-on-the-ne.htmlcid=1276552788ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNHiscyYgfKGfm5uslETxqggn2ZEvwApple on the Need for Anti-Virus bSoftware/b: Now You Do, Now You Don#39;t/a font size=-1 color=#6f6f6fnobrWired News/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/4-3fd=Rurl=http://news.cnet.com/8301-1009_3-10110852-83.htmlcid=1276552788ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNHwxwwY3TnSZlBycekpVrONkd0G5wApple suggests Mac users Install antivirus bsoftware/b/a font size=-1 color=#6f6f6fnobrCNET News/nobr/font/fontbrfont size=-1 class=pa href=http://news.google.com/news/url?sa=Tct=us/4-4fd=Rurl=http://www.toptechnews.com/story.xhtml%3Fstory_id%3D0030003Q2LU6cid=1276552788ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNGlQuKBoAehDbck6_VZS7io4S-gkwnobrCIO Today/nobr/anbsp;- a href=http://news.google.com/news/url?sa=Tct=us/4-5fd=Rurl=http://www.businessweek.com/magazine/content/08_50/b4112084938245.htm%3Fchan%3Dtechnology_tech%2Bmaven%2Bpage%2B-%2Bnew_this%2Bweek%27s%2Bcolumncid=1276552788ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNFPdd6xI_5bcvWevH_D1_fPhhAAxQnobrBusinessWeek/nobr/a/fontbr/font class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1276552788hl=ennobrall 251 news articles/nobr/a/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/5-0fd=Rurl=http://www.marketwatch.com/news/story/stable-management-helps-synopsys-tough/story.aspx%3Fguid%3D%257B19A4FCAB-E07B-4D35-9B34-907314C9D7F2%257Dcid=1277546157ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNGb-RTd8P3Q6rlOyMZDbDJ37OIc-wbSoftware/b maker beats Wall Street estimates, wins praise for b.../b/abrfont size=-1font color=#6f6f6fMarketWatchnbsp;-/font nobr1 hour ago/nobr/fontbrfont size=-1By Benjamin Pimentel, MarketWatch SAN FRANCSICO (MarketWatch) -- Shares of Synopsys Inc. were up more than 12% Thursday after the chip design bsoftware/b b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/5-1fd=Rurl=http://money.cnn.com/news/newsfeeds/articles/apwire/b3dd00bd9cc8669d439b6787e7adc0a8.htmcid=1277546157ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNEfY5pXRsLg-cIid7JL__74-Ig3iQSynopsys shares jump on 4Q earnings/a font size=-1 color=#6f6f6fnobrCNNMoney.com/nobr/font/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/5-2fd=Rurl=http://www.marketwatch.com/news/story/Teen-retailers-zigzag-sales-Fortress/story.aspx%3Fguid%3D%257B603147C5-8804-4B48-BDAF-496D3DEAB5B6%257Dcid=1277546157ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNE1NJ81P0Ut8wtZrHYpjDc8M5YMtgTeen retailers zigzag on sales, Fortress tumbles/a font size=-1 color=#6f6f6fnobrMarketWatch/nobr/font/fontbrfont class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1277546157hl=ennobrall 15 news articles/nobr/a/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/6-0fd=Rurl=http://www.marketwatch.com/news/story/Insight-Distribution-Software-Announces-Advanced/story.aspx%3Fguid%3D%257BEA529B5C-8845-470E-B3B6-26488038BA9D%257Dcid=1277531206ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNEvfsXKOEIA_O4Ls8Z2dia0bBlcnAInsight Distribution bSoftware/b Announces Advanced Route Accounting b.../b/abrfont size=-1font color=#6f6f6fMarketWatchnbsp;-/font nobr2 hours ago/nobr/fontbrfont size=-1PORTLAND, Ore., Dec 04, 2008 (BUSINESS WIRE) -- Insight Distribution bSoftware/b, a leading provider of supply chain bsoftware/b solutions for the beverage and b.../b/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/7-0fd=Rurl=http://www.marketwatch.com/news/story/FOX-Systems-Relies-Robust-Neocase/story.aspx%3Fguid%3D%257B2B1D87CC-52EE-47CD-849A-9C4D52B3DB32%257Dcid=1277479348ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNGfJPlv0Y4M3nDW0SZ5uWdydHs8ZAFOX Systems Relies on Robust Neocase bSoftware#39;s/b Solutions for b.../b/abrfont size=-1font color=#6f6f6fMarketWatchnbsp;-/font nobr5 hours ago/nobr/fontbrfont size=-1SAN FRANCISCO, Dec 04, 2008 (BUSINESS WIRE) -- Neocase bSoftware/b, a leading provider of customer service solutions for shared service centers and customer b.../b/fontbrfont size=-1a href=http://news.google.com/news/url?sa=Tct=us/7-1fd=Rurl=http://www.zdnetasia.com/toptech/2008/0,3800017271,62048725,00.htmcid=1277479348ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNHoXTLb15ObEI7fF8U5ffNlHUca9gSiemens IT Solutions and Services/a font size=-1 color=#6f6f6fnobrZDNet Asia/nobr/font/fontbrfont class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1277479348hl=ennobrall 13 news articles/nobr/a/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/8-0fd=Rurl=http://www.marketwatch.com/news/story/AVG-Named-Spicies-Award-Winner/story.aspx%3Fguid%3D%257B2BE49DE2-DF59-40AC-B4FA-7FB27CFBB10A%257Dcid=1277469304ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNG6cZNJbJokjGSbm3SA2K-_-hmAjwAVG Named #39;Spicies Award#39; Winner for Top Anti-Virus bSoftware/b for b.../b/abrfont size=-1font color=#6f6f6fMarketWatchnbsp;-/font nobr6 hours ago/nobr/fontbrfont size=-1AMSTERDAM, Netherlands, Dec 04, 2008 /PRNewswire via COMTEX/ -- AVG Technologies today announced that its anti-virus bsoftware/b was voted a winner in the 2008 b.../b/font/div/font/td/tr/table

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://news.google.com/news/url?sa=Tct=us/9-0fd=Rurl=http://www.marketwatch.com/news/story/Bottomline-Technologies-Named-Software-Magazines/story.aspx%3Fguid%3D%257B4B0DF5D8-04C5-410F-9965-A7CF49923044%257Dcid=1277550002ei=9DE4SZLHFpGQmAenhryjDwusg=AFQjCNFG5m2nXZPU5cajn3KuxMShVls_sABottomline Technologies Named to bSoftware/b Magazine#39;s 26th Annual b.../b/abrfont size=-1font color=#6f6f6fMarketWatchnbsp;-/font nobr3 hours ago/nobr/fontbrfont size=-1a leading provider of collaborative payment, invoice and document automation solutions, today announced that the company has been named to the 2008 bSoftware/b b.../b/font/div/font/td/tr/table

Software - Google News




Articles Home Page | Site Map | Main Site Home Page
GETsonic | TrafficFish | WildThingsDesigns | NeatoDomains.com | Games | Ken J Wagner | iNetcome

© 2008