<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.imiscommunity.com" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>iMIS Community blogs</title>
 <link>http://www.imiscommunity.com/blog</link>
 <description></description>
 <language>en</language>
<item>
 <title>Asi.iBO.Errors.CErrors.NewError may throw</title>
 <link>http://www.imiscommunity.com/asi_ibo_errors_cerrors_newerror_may_throw</link>
 <description>&lt;p&gt;Since this doesn&#039;t seem to be documented anywhere online (particularly in the API&amp;nbsp;documentation), it is worth noting that CErrors.NewError will throw an exception if the ThrowExceptionOnError property of the associated IiMISUser object is set to true (assuming you are creating an Error and not a Warning).&amp;nbsp; In this case, it will always throw and never return.&amp;nbsp; At least that&#039;s what I&amp;nbsp;gather from digging around in reflector:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.imiscommunity.com/asi_ibo_errors_cerrors_newerror_may_throw&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.imiscommunity.com/asi_ibo_errors_cerrors_newerror_may_throw#comment</comments>
 <category domain="http://www.imiscommunity.com/related_to/imis/development_kits/ibo_for_net">iBO for .NET</category>
 <pubDate>Mon, 23 Aug 2010 14:04:56 -0400</pubDate>
 <dc:creator>jyoung</dc:creator>
 <guid isPermaLink="false">5314 at http://www.imiscommunity.com</guid>
</item>
<item>
 <title>Raiser&#039;s Edge Conversion (pdf files)</title>
 <link>http://www.imiscommunity.com/raisers_edge_conversion_pdf_files</link>
 <description>&lt;p&gt;Has anyone converted pdf files from Raiser&#039;s Edge to iMIS 15?&lt;/p&gt;
&lt;p&gt;I have been told the pdf files are actually stored in the RE database.&lt;/p&gt;
&lt;p&gt;Any assistance would be appreciated!&lt;/p&gt;
</description>
 <comments>http://www.imiscommunity.com/raisers_edge_conversion_pdf_files#comment</comments>
 <category domain="http://www.imiscommunity.com/related_to/imis/modules/fundraising">Fundraising</category>
 <pubDate>Tue, 10 Aug 2010 13:43:18 -0400</pubDate>
 <dc:creator>tinahaglund</dc:creator>
 <guid isPermaLink="false">5274 at http://www.imiscommunity.com</guid>
</item>
<item>
 <title>Unexpected CPayment behavior</title>
 <link>http://www.imiscommunity.com/unexpected_cpayment_behavior</link>
 <description>&lt;p&gt;This NUnit TestFixture demonstrates some unexpected behavior in CPayments.&amp;nbsp; Note that you will need to alter or provide some of the values to run on your machine, if you so choose, but I think you can see by reading this some gotchas to look out for:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;using System;&lt;br /&gt;
using System.Configuration;&lt;/p&gt;
&lt;p&gt;using Asi.iBO;&lt;br /&gt;
using Asi.iBO.Financials;&lt;br /&gt;
using NUnit.Framework;&lt;/p&gt;
&lt;p&gt;namespace Crown.Imis.IntegrationTests&lt;br /&gt;
{&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [TestFixture, Explicit(&amp;quot;demos&amp;quot;)]&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; public class CPaymentGotchaDemonstrations&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [TestFixtureSetUp]&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public void TestFixtureSetUp()&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; iboAdmin.InitializeSystem(ConfigurationManager.ConnectionStrings[&amp;quot;DataSource.iMIS.Connection&amp;quot;].ConnectionString);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Test]&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [ExpectedException(typeof(ArgumentOutOfRangeException))]&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public void Demo_Setting_CreditCardNumber_toVisaTestNumberAfterSetting_CashAccountCode_CausesUnhandledException()&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var payment = new CPayment(CStaffUser.GetDefaultStaffUser())&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CashAccountCode = &amp;quot;VISA&amp;quot;,&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CreditCardNumber = &amp;quot;4007000000027&amp;quot;&amp;nbsp; // VISA test number, eh?&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; };&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Test]&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [ExpectedException(typeof(Asi.iBO.InvalidCardNumberException))]&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public void Demo_Setting_CreditCardNumber_to011201539123After_CashAccountCode_Causes_InvalidCardNumberException()&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var payment = new CPayment(CStaffUser.GetDefaultStaffUser())&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CashAccountCode = &amp;quot;VISA&amp;quot;,&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CreditCardNumber = &amp;quot;011201539123&amp;quot;&amp;nbsp;&amp;nbsp; // it&#039;s irrelevant how I came up with this number.&amp;nbsp; No idea yet on what is wrong with it.&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; };&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Test]&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public void Demo_Setting_PaymentType_After_CreditCardNumber_Clears_CreditCardNumber()&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var payment = new CPayment(CStaffUser.GetDefaultStaffUser())&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CreditCardNumber = &amp;quot;4007000000027&amp;quot;, // VISA test number&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PaymentType = EnumPaymentType.Check&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; };&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Assert.IsNullOrEmpty(payment.CreditCardNumber);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Test]&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public void Demo_SettingCashAccountCodeChangesPaymentTypeToCreditWhenCashAccountIsCreditType()&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var payment = new CPayment(CStaffUser.GetDefaultStaffUser());&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; payment.PaymentType = EnumPaymentType.Check;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; payment.CashAccountCode = &amp;quot;VISA&amp;quot;;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Assert.AreEqual(EnumPaymentType.CreditCard, payment.PaymentType);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;
}&lt;/code&gt;&lt;/p&gt;
</description>
 <comments>http://www.imiscommunity.com/unexpected_cpayment_behavior#comment</comments>
 <category domain="http://www.imiscommunity.com/related_to/imis/development_kits/ibo_for_net">iBO for .NET</category>
 <pubDate>Thu, 05 Aug 2010 10:49:46 -0400</pubDate>
 <dc:creator>jyoung</dc:creator>
 <guid isPermaLink="false">5255 at http://www.imiscommunity.com</guid>
</item>
<item>
 <title>Blog interrupted by newly discovered shortcut</title>
 <link>http://www.imiscommunity.com/blog_interrupted_by_newly_discovered_shortcut</link>
 <description>&lt;p&gt;Last Friday, I had started to blog about a couple of new shortcuts I learned of on Lifehacker.com.&amp;nbsp; Just before posting, I&amp;nbsp;accidentally discovered another one that blew away the content of my post.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;In Windows Explorer (Vista and 7):&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://lifehacker.com/search/explorer%20rename%20shortcut/&quot;&gt;Rename Files Fast with the Tab Key&lt;/a&gt;&amp;nbsp;- I&amp;nbsp;started using this with file preview to quickly rename scanned files that the scanner delivers as datestamp.pdf.&amp;nbsp; This method also helps overcome the frustion of delays when trying to right-click to rename files on far-remote mapped drives or WebDAV drives.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://lifehacker.com/171909/rename-windows-files-in-bulk&quot;&gt;Rename Windows Files in Bulk&lt;/a&gt;&amp;nbsp; - I was happy to find this.&amp;nbsp;&amp;nbsp;Not too long ago, I&amp;nbsp;resorted to a batch file to do a very similar rename.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Also be sure to check out &lt;em&gt;&lt;a href=&quot;http://lifehacker.com/5132073/the-best-new-windows-7-keyboard-shortcuts&quot;&gt;The Best New Windows 7 Keyboard Shortcuts&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.imiscommunity.com/blog_interrupted_by_newly_discovered_shortcut&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.imiscommunity.com/blog_interrupted_by_newly_discovered_shortcut#comment</comments>
 <category domain="http://www.imiscommunity.com/related_to/imis">iMIS</category>
 <pubDate>Tue, 03 Aug 2010 15:46:32 -0400</pubDate>
 <dc:creator>Mark Dennison</dc:creator>
 <guid isPermaLink="false">5243 at http://www.imiscommunity.com</guid>
</item>
<item>
 <title>Using a Query as a source for IQA</title>
 <link>http://www.imiscommunity.com/using_a_query_as_a_source_for_iqa</link>
 <description>&lt;p&gt;I have a client who wants a list of a particular member type (REG) who reside in Canada or in Washington State.&lt;/p&gt;
&lt;p&gt;This is really easy to do with SQL: &lt;strong&gt;SELECT&lt;/strong&gt; Full_Name, ID, State_Province, Country, Member_Type &lt;strong&gt;FROM&lt;/strong&gt; Name &lt;strong&gt;WHERE&lt;/strong&gt; STATE_PROVINCE = &#039;WA&#039; &lt;strong&gt;OR&lt;/strong&gt; COUNTRY = &#039;Canada&#039;&lt;/p&gt;
&lt;p&gt;I tried using IQA in the following ways:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Create a query where I&amp;nbsp;use the CsContact BO and Filter&lt;strong&gt; Member Type = &amp;quot;Regular&amp;quot; AND State Province = &amp;quot;Washington&amp;quot;  OR Member Type = &amp;quot;Regular&amp;quot; AND Country = &amp;quot;Canada&amp;quot; &lt;/strong&gt;Depending on the order, I either get all Washington or All Canada, but never both.&amp;nbsp; If I try &lt;strong&gt;Member Type = &amp;quot;Regular&amp;quot; and State Province = &amp;quot;Washington&amp;quot; or Country = &amp;quot;Canada&amp;quot;&lt;/strong&gt; I get the same results, depending on the order &lt;br /&gt;
    &amp;nbsp;&lt;/li&gt;
&lt;li&gt;I tried creating two queries - one where&lt;strong&gt; Member Type = &amp;quot;Regular&amp;quot;&lt;/strong&gt; &lt;strong&gt;and Country = &amp;quot;Canada&amp;quot;&lt;/strong&gt; and one where&lt;strong&gt; Member Type = &amp;quot;Regular&amp;quot; and State Province = &amp;quot;Washington&amp;quot;&lt;/strong&gt; then used left outer joins to the CsContact BO for each of them, but got multiple lines for each result and only ID&amp;nbsp;numbers, no other fields&lt;br /&gt;
    &amp;nbsp;&lt;/li&gt;
&lt;li&gt;I created a query to just show &lt;strong&gt;Member Type = &amp;quot;Regular&amp;quot;&lt;/strong&gt; and then used it as my source for a query where&lt;strong&gt; Country = &amp;quot;Canada&amp;quot; or State Province = &amp;quot;Washington&amp;quot;&lt;/strong&gt; and was able to get only Canada and Washington but for every member type.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;The only solution I could find was to use State Province and select all the Canadian provinces as well as Washington.&amp;nbsp; This works for now, but in the future they will be asking me for this type of thing again and it may not be possible to make the filtering selections from one field.&amp;nbsp; Did I do something wrong with my joins or my filters?&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.imiscommunity.com/using_a_query_as_a_source_for_iqa&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.imiscommunity.com/using_a_query_as_a_source_for_iqa#comment</comments>
 <category domain="http://www.imiscommunity.com/related_to/imis/tools/iqa">IQA</category>
 <pubDate>Tue, 03 Aug 2010 14:56:23 -0400</pubDate>
 <dc:creator>Sheryl McKenna</dc:creator>
 <guid isPermaLink="false">5241 at http://www.imiscommunity.com</guid>
</item>
<item>
 <title>Checking the versions of iMIS ActiveX components</title>
 <link>http://www.imiscommunity.com/checking_the_versions_of_imis_activex_components</link>
 <description>&lt;p&gt;There are several ways to confirm that your iMIS Desktop installation has the correct versions of ActiveX components.&amp;nbsp; The installer normally handles this, but once in a while some environmental issue interferes, leaving an older version of a component installed.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;In iMIS Desktop, pick &lt;strong&gt;Help&amp;gt; About &amp;gt;System Info&lt;/strong&gt;.&lt;br /&gt;
    &lt;img alt=&quot;&quot; src=&quot;//www.imiscommunity.com/system/files/iMIS+Desktop+System+Info.png&quot; /&gt;&lt;/li&gt;
&lt;li&gt;Download the &lt;strong&gt;AsiVersion &lt;/strong&gt;utility from &lt;a href=&quot;http://www.advsol.com/downloads&quot;&gt;www.advsol.com/downloads&lt;/a&gt; - scroll down to the Diagnostic Tools folder and download AsiVersion.zip.&lt;br /&gt;
    &lt;img alt=&quot;&quot; src=&quot;//www.imiscommunity.com/system/files/ASIVersion+utility.png&quot; /&gt;&lt;/li&gt;
&lt;li&gt;Add file version to Windows Explorer
&lt;ol&gt;
&lt;li&gt;Right-click on the field columns header&lt;/li&gt;
&lt;li&gt;Pick &amp;quot;More...&amp;quot; from the context menu&lt;/li&gt;
&lt;li&gt;Check &amp;quot;File version&amp;quot; in the list.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;By default, iMIS ActiveX files are in &lt;strong&gt;C:\Program Files\ASI\iMIS15\ActiveX&lt;/strong&gt;.&amp;nbsp; Note that this checks the file version, but doesn&#039;t check the COM registered version loaded by desktop (they&#039;ll be the same, unless there&#039;s a problem).&amp;nbsp; The first two options do.&lt;br /&gt;
        &lt;img alt=&quot;&quot; src=&quot;//www.imiscommunity.com/system/files/Windows+Explorer+with+file+version.png&quot; /&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
</description>
 <comments>http://www.imiscommunity.com/checking_the_versions_of_imis_activex_components#comment</comments>
 <category domain="http://www.imiscommunity.com/related_to/imis">iMIS</category>
 <enclosure url="http://www.imiscommunity.com/system/files/Windows+Explorer+with+file+version.png" length="65014" type="image/x-png" />
 <pubDate>Tue, 03 Aug 2010 12:53:10 -0400</pubDate>
 <dc:creator>Henry Huey</dc:creator>
 <guid isPermaLink="false">5239 at http://www.imiscommunity.com</guid>
</item>
<item>
 <title>command script to refresh the IIS world</title>
 <link>http://www.imiscommunity.com/command_script_to_refresh_the_iis_world</link>
 <description>&lt;p&gt;This is a command script I use to reset the iMIS world&amp;nbsp;completely&amp;nbsp;in my local development environment, making sure nothing&#039;s cached in IIS or ASP.NET.&amp;nbsp; The script stops the Publishing and Workflow services, stops IIS, deletes the files in the ASP.NET cache, starts everything back up, and recycles the application pool used by iMIS.&lt;/p&gt;
&lt;p&gt;Copy the lines below and save them in a .cmd file.&amp;nbsp; It needs to be run as administrator.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.imiscommunity.com/command_script_to_refresh_the_iis_world&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.imiscommunity.com/command_script_to_refresh_the_iis_world#comment</comments>
 <category domain="http://www.imiscommunity.com/related_to/technology/iis">IIS</category>
 <pubDate>Tue, 03 Aug 2010 12:21:55 -0400</pubDate>
 <dc:creator>Henry Huey</dc:creator>
 <guid isPermaLink="false">5238 at http://www.imiscommunity.com</guid>
</item>
<item>
 <title>Adding public view pages to a content record</title>
 <link>http://www.imiscommunity.com/adding_public_view_pages_to_a_content_record</link>
 <description>&lt;p&gt;I don&#039;t think this is possible, but who knows, I may be wrong. My client wants to have the ablility to include public view content on a regular content record. e.g. Say they create a content record that has the format of 1 over 1. They want the abiltiy to put text in the top box and then have&amp;nbsp; the public view page content in the lower box. Is this possible? If yes, how was this accomplished?&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.imiscommunity.com/adding_public_view_pages_to_a_content_record&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.imiscommunity.com/adding_public_view_pages_to_a_content_record#comment</comments>
 <category domain="http://www.imiscommunity.com/related_to/imis/tools/web_content_management">Web Content Management</category>
 <pubDate>Fri, 30 Jul 2010 09:27:21 -0400</pubDate>
 <dc:creator>MikeMcCormack</dc:creator>
 <guid isPermaLink="false">5229 at http://www.imiscommunity.com</guid>
</item>
<item>
 <title>Why. Is New Content. Generated. From the Bottom? </title>
 <link>http://www.imiscommunity.com/why_is_new_content_generated_from_the_bottom</link>
 <description>&lt;p&gt;I am having an extrememly difficult time in MOVING&amp;nbsp;a Web part once I&#039;ve created it within a content record. It seems that if I have a content record with too much content on it, I get this error:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Error: The collection already contains the specified content item.&lt;/p&gt;
&lt;p&gt;This is as was already catalogued previuosly here and as was submitted as a ticket. I do not know if ASI has bothered to resolve it.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.imiscommunity.com/why_is_new_content_generated_from_the_bottom&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.imiscommunity.com/why_is_new_content_generated_from_the_bottom#comment</comments>
 <category domain="http://www.imiscommunity.com/related_to/imis/tools/web_content_management">Web Content Management</category>
 <pubDate>Wed, 14 Jul 2010 16:55:28 -0400</pubDate>
 <dc:creator>apryor</dc:creator>
 <guid isPermaLink="false">5152 at http://www.imiscommunity.com</guid>
</item>
<item>
 <title>off-topic - need suggestions for a Lead generation service/tool</title>
 <link>http://www.imiscommunity.com/off_topic_need_suggestions_for_a_lead_generation_service_tool</link>
 <description>&lt;p&gt;I am looking for a lead generation tool to collect contact info from visitors when the download some white papers on my site. Could any one suggest a serice they have used for this? i would prefer to have a landing page on my site that lists the documents and gathers info from visitors or use an email bulletin that send out these links to a group of people with our target market (R&amp;amp;D professionals).&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.imiscommunity.com/off_topic_need_suggestions_for_a_lead_generation_service_tool&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.imiscommunity.com/off_topic_need_suggestions_for_a_lead_generation_service_tool#comment</comments>
 <category domain="http://www.imiscommunity.com/related_to/product_development/user_experience">User Experience</category>
 <pubDate>Wed, 07 Jul 2010 11:39:02 -0400</pubDate>
 <dc:creator>Aby Singh</dc:creator>
 <guid isPermaLink="false">5131 at http://www.imiscommunity.com</guid>
</item>
<item>
 <title>IQA query to list IQA queries</title>
 <link>http://www.imiscommunity.com/iqa_query_to_list_iqa_queries</link>
 <description>&lt;p&gt;Here&#039;s a way to create an IQA query to list IQA queries and display their full document system path.&lt;/p&gt;
&lt;p&gt;First, create a view to wrap the asi_PublishedDocumentPath function.&amp;nbsp; This view definition is for published documents only (status = 40), but change it if you need different results.&lt;/p&gt;
&lt;pre&gt;
CREATE VIEW [dbo].[vDocumentPath] AS
 SELECT dbo.asi_PublishedDocumentPath([DocumentVersionKey]) AS &#039;DocumentPath&#039;, [DocumentTypeCode]
   FROM [dbo].[DocumentMain]
 WHERE [DocumentStatusCode] = 40 AND dbo.asi_PublishedDocumentPath(DocumentVersionKey) IS NOT NULL&lt;/pre&gt;&lt;p&gt;Next, in Business Object Designer, create a business object named DocumentPath.&amp;nbsp; On the Database tab, add vDocumentPath, and both columns as properties.&amp;nbsp; Save and publish.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.imiscommunity.com/iqa_query_to_list_iqa_queries&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.imiscommunity.com/iqa_query_to_list_iqa_queries#comment</comments>
 <category domain="http://www.imiscommunity.com/related_to/imis">iMIS</category>
 <enclosure url="http://www.imiscommunity.com/system/files/QueriesByPath.png" length="50036" type="image/x-png" />
 <pubDate>Fri, 02 Jul 2010 12:02:10 -0400</pubDate>
 <dc:creator>Henry Huey</dc:creator>
 <guid isPermaLink="false">5115 at http://www.imiscommunity.com</guid>
</item>
<item>
 <title>Looking for TaskCentre customer examples</title>
 <link>http://www.imiscommunity.com/looking_for_taskcentre_customer_examples</link>
 <description>&lt;p&gt;In preparing for a Discovery presentation (Sept 27-29, 2010) on how customers are using TaskCentre,  I am looking for examples of how customers are using the product: screenshot of the task design pane, with explanation of what the task does, emphasis on how TC reduces staff busy work.  &lt;/p&gt;
&lt;p&gt;Got any examples for me?  Post here or email me directly at &lt;a href=&quot;mailto:tericson@advsol.com&quot;&gt;tericson@advsol.com&lt;/a&gt;.  I&#039;ll post what I get on the TaskCentre pages, as well.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.imiscommunity.com/looking_for_taskcentre_customer_examples&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.imiscommunity.com/looking_for_taskcentre_customer_examples#comment</comments>
 <category domain="http://www.imiscommunity.com/related_to/imis/partner_modules/taskcentre">TaskCentre</category>
 <pubDate>Wed, 30 Jun 2010 12:20:34 -0400</pubDate>
 <dc:creator>Ted Ericson</dc:creator>
 <guid isPermaLink="false">5108 at http://www.imiscommunity.com</guid>
</item>
<item>
 <title>Agile Austin: Resources for learning the method</title>
 <link>http://www.imiscommunity.com/agile_austin_resources_for_learning_the_method</link>
 <description>&lt;p&gt;Agile Austin has put together a nice collection of resources for learning agile development practices:&amp;nbsp;&lt;a href=&quot;http://www.agileaustin.org/agile-resources/&quot;&gt;&lt;u&gt;http://www.agileaustin.org/agile-resources/&lt;/u&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;It recommends books, websites, listservs, blogs, videos, and podcasts, to support many learning styles. It also links to tools that members have recommended for use with agile.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.imiscommunity.com/agile_austin_resources_for_learning_the_method&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.imiscommunity.com/agile_austin_resources_for_learning_the_method#comment</comments>
 <category domain="http://www.imiscommunity.com/related_to/product_development/development_practices/concepts">Concepts</category>
 <pubDate>Tue, 22 Jun 2010 11:51:56 -0400</pubDate>
 <dc:creator>Mary Connor</dc:creator>
 <guid isPermaLink="false">5081 at http://www.imiscommunity.com</guid>
</item>
<item>
 <title>Pasting a clickable hyperlink into an Outlook 2007 message</title>
 <link>http://www.imiscommunity.com/pasting_a_clickable_hyperlink_into_an_outlook_2007_message</link>
 <description>&lt;p&gt;I&#039;m reasonably sure this was working as I expected it to (i.e. copy a URL from the browser, paste it into a message, and it created a clickable hyperlink), but recently stopped working, such that I had to go through the extra steps of Insert / Insert Hyperlink.&amp;nbsp; Maybe an Office update changed the setting, I don&#039;t know...&lt;/p&gt;
&lt;p&gt;Anyway, to switch it back, Tools / Options / Mail Format tab; Editor Options / Proofing / AutoCorrect options; check &amp;quot;Internet and network paths with hyperlinks&amp;quot; on the &amp;quot;AutoFormat As You Type&amp;quot; tab.&amp;nbsp; Note that the identical checkbox on the &amp;quot;AutoFormat&amp;quot; tab didn&#039;t affect this.&lt;br /&gt;
&amp;nbsp;&lt;/p&gt;
</description>
 <comments>http://www.imiscommunity.com/pasting_a_clickable_hyperlink_into_an_outlook_2007_message#comment</comments>
 <category domain="http://www.imiscommunity.com/related_to/imis">iMIS</category>
 <pubDate>Mon, 14 Jun 2010 12:28:06 -0400</pubDate>
 <dc:creator>Henry Huey</dc:creator>
 <guid isPermaLink="false">5045 at http://www.imiscommunity.com</guid>
</item>
<item>
 <title>Updating an iMIS standard Crystal Report? </title>
 <link>http://www.imiscommunity.com/updating_an_imis_standard_crystal_report</link>
 <description>&lt;p&gt;I need to update the ARStatement crystal report to be able to select&amp;nbsp; Meeting codes to exclude from the statement reports. How do I add a field with a label that says:&amp;nbsp;Specific Meeting Codes and make it work in iMIS. I tried putting a parameter field in the report, but can not select it.&lt;/p&gt;
&lt;p&gt;I attached the screen shot of where I need to put this info. Any help is greatly appreciated.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.imiscommunity.com/updating_an_imis_standard_crystal_report&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.imiscommunity.com/updating_an_imis_standard_crystal_report#comment</comments>
 <category domain="http://www.imiscommunity.com/related_to/imis/modules/accounts_receivable">Accounts Receivable</category>
 <enclosure url="http://www.imiscommunity.com/system/files/AR+Statement+screen+shot.doc" length="240128" type="application/msword" />
 <pubDate>Thu, 10 Jun 2010 09:57:05 -0400</pubDate>
 <dc:creator>Donna_Bailey</dc:creator>
 <guid isPermaLink="false">5043 at http://www.imiscommunity.com</guid>
</item>
<item>
 <title>WCM Navigation Code</title>
 <link>http://www.imiscommunity.com/wcm_navigation_code</link>
 <description>&lt;p&gt;Is there a way to have the site map display links to Anonymous Users but as soon as they login, those links go away.&amp;nbsp; Example when a member comes to the site anonymously, he would see the Join Us link but as soon as he logs in, that link should go away.&amp;nbsp; It looks like you should be able to use the navigation code field but I&amp;nbsp;have tried everything i know to do to make this work, short of a complete custom solution.&lt;/p&gt;
</description>
 <comments>http://www.imiscommunity.com/wcm_navigation_code#comment</comments>
 <category domain="http://www.imiscommunity.com/related_to/imis/tools/web_content_management">Web Content Management</category>
 <pubDate>Thu, 03 Jun 2010 03:18:26 -0400</pubDate>
 <dc:creator>madrion</dc:creator>
 <guid isPermaLink="false">5020 at http://www.imiscommunity.com</guid>
</item>
<item>
 <title>Upgrade 10.6.30.17 to 15.1.2.4260 issues</title>
 <link>http://www.imiscommunity.com/upgrade_10_6_30_17_to_15_1_2_4260_issues</link>
 <description>&lt;p&gt;We are trying to update iMIS from version &lt;span&gt;10.6.30.17 to 15.1.2.4260 version.&lt;/span&gt;&lt;/p&gt;
&lt;div&gt;We were using Opportunity module from the version 10.5. with custom BOs.&lt;/div&gt;
&lt;div&gt;We decided to drop .NET tables as they were causing a lot of errors when trying to upgrade to 15.0.1 on the test server (about a year ago ).&lt;/div&gt;
&lt;div&gt;Now&amp;nbsp;we are trying to go from 10.6.30.17 to the newest version 15.1.2.4260.&lt;/div&gt;
&lt;div&gt;The steps we are taking (as instructed by ASI support) are below:&lt;/div&gt;
&lt;div&gt;- &amp;nbsp;drop 10.6 .NET tables using script from ASI,&lt;/div&gt;
&lt;div&gt;- I also deleted our custom tables (&lt;span&gt;OpportunityMainAACUDonor, OppportunityMainAACUMember) and views using those tables (vBoOpportunityAACUDonor, vBoOpportunityAACUMember) as I was getting error on views if I didn&#039;t do that and the update would fail.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;- manually drop the SP called asi_CheckImisNetPrivilegeLevel&lt;/div&gt;
&lt;div&gt;-Check if we can login to IMIS as Manager not only Manager!sa&lt;/div&gt;
&lt;div&gt;-Run script for bad views and clean them up. I deleted all views using those .NET tables we dropped.&amp;nbsp;&lt;/div&gt;
&lt;div&gt;- run update&lt;/div&gt;
&lt;p&gt;&lt;a href=&quot;http://www.imiscommunity.com/upgrade_10_6_30_17_to_15_1_2_4260_issues&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.imiscommunity.com/upgrade_10_6_30_17_to_15_1_2_4260_issues#comment</comments>
 <category domain="http://www.imiscommunity.com/related_to/imis">iMIS</category>
 <pubDate>Wed, 26 May 2010 13:33:27 -0400</pubDate>
 <dc:creator>Zuzana_Kelyman</dc:creator>
 <guid isPermaLink="false">4995 at http://www.imiscommunity.com</guid>
</item>
<item>
 <title>Emailing Crystal Reports</title>
 <link>http://www.imiscommunity.com/emailing_crystal_reports</link>
 <description>&lt;p&gt;For sure someone out there has several ideas.&lt;/p&gt;
&lt;p&gt;Some of my customers want to email the Statement of Account or other types of iMIS&amp;nbsp;Standard Crystal reports.&amp;nbsp;&amp;nbsp;&amp;nbsp; I&amp;nbsp;am not that familiar with Crystal but I could not find anywhere to EMAIL&amp;nbsp;the report.&lt;/p&gt;
&lt;p&gt;Is this a feature thats availalbe in Crystal?&lt;/p&gt;
&lt;p&gt;How are others sending out statements / invoices from iMIS ?&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.imiscommunity.com/emailing_crystal_reports&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.imiscommunity.com/emailing_crystal_reports#comment</comments>
 <category domain="http://www.imiscommunity.com/related_to/imis/modules/customer_management">Customer Management</category>
 <pubDate>Fri, 21 May 2010 17:58:45 -0400</pubDate>
 <dc:creator>zjaneliunas</dc:creator>
 <guid isPermaLink="false">4977 at http://www.imiscommunity.com</guid>
</item>
<item>
 <title>Grouping in SSRS reports in iMIS.</title>
 <link>http://www.imiscommunity.com/grouping_in_ssrs_reports_in_imis_0</link>
 <description>&lt;p&gt;Here are the .rdl file and the export of the query related to my forum entry.&lt;/p&gt;
</description>
 <comments>http://www.imiscommunity.com/grouping_in_ssrs_reports_in_imis_0#comment</comments>
 <category domain="http://www.imiscommunity.com/related_to/technology/sql_server">SQL Server</category>
 <enclosure url="http://www.imiscommunity.com/system/files/Committee+Members+By+Position.rdl.txt" length="64751" type="text/plain" />
 <pubDate>Fri, 21 May 2010 08:08:20 -0400</pubDate>
 <dc:creator>mstraka</dc:creator>
 <guid isPermaLink="false">4969 at http://www.imiscommunity.com</guid>
</item>
<item>
 <title>Error: &quot;Must be unique within its containing parent.&quot;</title>
 <link>http://www.imiscommunity.com/error_must_be_unique_within_its_containing_parent</link>
 <description>&lt;p&gt;I am working on a bilingual website (FRA and ENG) using a language toggle button.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://209.217.68.142/imis15/eng/Publications/Public_Papers/eng/res/Public_Papers.aspx&quot;&gt;http://209.217.68.142/imis15/eng/Publications/Public_Papers/eng/res/Public_Papers.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I am trying to create a content area called: Public Papers&amp;quot; in French site and I am getting this error message, when trying to save it:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.imiscommunity.com/error_must_be_unique_within_its_containing_parent&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.imiscommunity.com/error_must_be_unique_within_its_containing_parent#comment</comments>
 <category domain="http://www.imiscommunity.com/related_to/imis/tools/web_content_management">Web Content Management</category>
 <pubDate>Wed, 28 Apr 2010 10:02:39 -0400</pubDate>
 <dc:creator>Ewa</dc:creator>
 <guid isPermaLink="false">4905 at http://www.imiscommunity.com</guid>
</item>
</channel>
</rss>
