<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.method.me/cs/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Search results by user ID 6165</title><link>http://forums.method.me/cs/search/SearchResults.aspx?o=DateDescending&amp;u=6165</link><description>Search results by user ID 6165</description><dc:language>en-US</dc:language><generator>CommunityServer 2007.1 SP2 (Build: 31113.47)</generator><item><title>Re: Is there any db schema documentation?</title><link>http://forums.method.me/cs/forums/p/5353/20617.aspx#20617</link><pubDate>Tue, 21 Jan 2014 00:44:27 GMT</pubDate><guid isPermaLink="false">3393c1ec-311b-4812-96cb-ad8c611bba4f:20617</guid><dc:creator>kenlyle</dc:creator><description>&lt;p&gt;&lt;span id="mce_0_start" style="overflow:hidden;"&gt;Hey Aaron,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;The team I was on had a lot of the same questions and issues.&lt;/p&gt;
&lt;p&gt;Keep in mind that the schema is largely the schema from Quickbooks, not something that the Method guys created to be cruel.&lt;/p&gt;
&lt;p&gt;There are some online resources from Quickbooks related companies :&amp;nbsp;&lt;a href="http://doc.qodbc.com/qodbc/Qodbc_20_us.html" target="_blank"&gt;http://doc.&lt;span class="il"&gt;qodbc&lt;/span&gt;.com/&lt;span class="il"&gt;qodbc&lt;/span&gt;/Qodbc_20_us.html&lt;/a&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Along those lines, if you can insert records in QB Desktop using ODBC or QB Online via the IPP, you could assume that the sync engine would pick them up. &amp;nbsp;Could that work for you?&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Re: Add IsSMS checkbox field to all Phones</title><link>http://forums.method.me/cs/forums/p/5245/20297.aspx#20297</link><pubDate>Wed, 18 Dec 2013 02:53:04 GMT</pubDate><guid isPermaLink="false">3393c1ec-311b-4812-96cb-ad8c611bba4f:20297</guid><dc:creator>kenlyle</dc:creator><description>&lt;p&gt;&lt;span id="mce_0_start" style="overflow:hidden;"&gt;Thanks, Naeem!&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span id="mce_0_start" style="overflow:hidden;"&gt;&lt;/span&gt;So there are 4 custom Yes/No fields on Entity, the IsSMS* fields. IsSMSPhone, IsSMSAltPhone, IsSMSMobile and the composite, IsSMSAny.&lt;/p&gt;
&lt;p&gt;Maybe I should just campaign for a new Action...&amp;quot;Logical OR&amp;quot;, which takes a list of fields as input, and adjusts a target field with the result on any update to those fields.&lt;/p&gt;
&lt;p&gt;Is there an Action which lets me set a linked field which may or may not be on screen, say during update of an IsSMS field on a Contact record?&lt;/p&gt;
&lt;p&gt;Also, setting IsSMSAny to True based on any IsSMS seems easier than unsetting it should the last checked field be unchecked.&lt;/p&gt;
&lt;p&gt;I am still not sure how to get this done, and am very interested in detailed ideas.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;</description></item><item><title>Re: Add IsSMS checkbox field to all Phones</title><link>http://forums.method.me/cs/forums/p/5245/20295.aspx#20295</link><pubDate>Tue, 17 Dec 2013 19:29:39 GMT</pubDate><guid isPermaLink="false">3393c1ec-311b-4812-96cb-ad8c611bba4f:20295</guid><dc:creator>kenlyle</dc:creator><description>&lt;p&gt;&lt;span id="mce_0_start" style="overflow:hidden;"&gt;Ok, Now...in my Grids, I want to put a little Composite Flag to indicate that we do have at least one SMS number for that Customer or Contact.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;I see some SQL Overrides, but they are mostly just simple HTML to concatenate fields.&lt;/p&gt;
&lt;p&gt;How would I write &amp;quot;Show this checkbox as true if any of these 3 chackboxes is true for this entity&amp;quot;?&lt;span id="mce_0_start" style="overflow:hidden;"&gt;&lt;span id="mce_1_start" style="overflow:hidden;"&gt;&amp;nbsp; ...I see some Advanced CASE logic like:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="overflow:hidden;"&gt;&lt;span style="overflow:hidden;"&gt;&amp;#39;&amp;lt;b&amp;gt;&amp;#39; + ISNULL(viewContacts.Phone,&amp;#39;&amp;#39;) + &amp;#39;&amp;lt;/b&amp;gt;&amp;#39; + &amp;#39;&amp;lt;i&amp;gt;&amp;#39; + (CASE WHEN viewContacts.AltPhone IS NULL OR viewContacts.AltPhone=&amp;#39;&amp;#39; THEN &amp;#39;&amp;#39; ELSE &amp;#39;&amp;lt;br /&amp;gt;&amp;#39; + viewContacts.AltPhone END) &amp;nbsp;+ &amp;#39;&amp;lt;/i&amp;gt;&amp;#39; + (CASE WHEN viewContacts.Mobile IS NULL OR viewContacts.Mobile=&amp;#39;&amp;#39; THEN &amp;#39;&amp;#39; ELSE &amp;#39;&amp;lt;br /&amp;gt;&amp;#39; + viewContacts.Mobile END) but I don&amp;#39;t know the syntax for IS TRUE...or &amp;#39;OR&amp;#39;.&lt;span id="mce_0_start" style="overflow:hidden;"&gt;&lt;span id="mce_1_start" style="overflow:hidden;"&gt;&lt;span id="mce_2_start" style="overflow:hidden;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Maybe Conditional based on Value from Row?&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;</description></item><item><title>Re: Add IsSMS checkbox field to all Phones</title><link>http://forums.method.me/cs/forums/p/5245/20292.aspx#20292</link><pubDate>Tue, 17 Dec 2013 18:41:49 GMT</pubDate><guid isPermaLink="false">3393c1ec-311b-4812-96cb-ad8c611bba4f:20292</guid><dc:creator>kenlyle</dc:creator><description>&lt;p&gt;&lt;span style="overflow:hidden;"&gt;EDIT: Per&amp;nbsp;&lt;a href="http://method.me/cs/forums/t/5181.aspx" class="external-link" rel="nofollow"&gt;http://method.me/cs/forums/t/5181.aspx&lt;/a&gt;&amp;nbsp;I see that modding Entity is an accepted, perhaps even bast practice. &amp;nbsp;I&amp;#39;ll leave the original post for anyone else who may have the same question or concern.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span id="mce_0_start" style="overflow:hidden;"&gt;&lt;span id="mce_0_start" style="overflow:hidden;"&gt;---Below, the original post:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span id="mce_0_start" style="overflow:hidden;"&gt;&lt;span id="mce_0_start" style="overflow:hidden;"&gt;&lt;/span&gt;&lt;/span&gt;Thanks!&lt;/p&gt;
&lt;p&gt;I was reading&amp;nbsp;&lt;a href="http://method.me/cs/forums/t/454.aspx"&gt;http://method.me/cs/forums/t/454.aspx&lt;/a&gt;&amp;nbsp;- at some point, Entity may have been unmodifiable(?) - I am a bit nervous about modifying a &amp;quot;special&amp;quot; table.&lt;/p&gt;
&lt;p&gt;But, since I do want this behavior to apply to Contacts, Customers, and probably even Vendors...is this the way to go? &amp;nbsp;Otherwise, I would have to add these three fields to as many as 3 tables that I mentioned?&lt;span id="mce_1_start" style="overflow:hidden;"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Then these fields would have to be added to the Contacts, etc. based screens and grids as linked fields?&lt;/p&gt;
&lt;p&gt;Just checking that there aren&amp;#39;t &lt;span id="mce_2_start" style="overflow:hidden;"&gt;negative&amp;nbsp;&lt;/span&gt;implications...&lt;/p&gt;
&lt;p&gt;Best,&lt;/p&gt;
&lt;p&gt;Ken&lt;/p&gt;</description></item><item><title>Re: Placing fields in the customizing screen</title><link>http://forums.method.me/cs/forums/p/2293/20170.aspx#20170</link><pubDate>Mon, 09 Dec 2013 18:39:16 GMT</pubDate><guid isPermaLink="false">3393c1ec-311b-4812-96cb-ad8c611bba4f:20170</guid><dc:creator>kenlyle</dc:creator><description>&lt;p&gt;&lt;span id="mce_0_start" style="overflow:hidden;"&gt;Hey Ben,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span id="mce_0_start" style="overflow:hidden;"&gt;&lt;/span&gt;I hope that it&amp;#39;s not out of line, and apologies in advance....but it would be great if you guys did cross-browser testing and, preferably made it work, but, alternatively, popped some kind of notice when an attempted action is unsupported?&lt;/p&gt;
&lt;p&gt;Some could interpret the current situation as lack of care by Method...possibly...&lt;/p&gt;</description></item><item><title>Re: Placing fields in the customizing screen</title><link>http://forums.method.me/cs/forums/p/2293/20159.aspx#20159</link><pubDate>Mon, 09 Dec 2013 16:47:03 GMT</pubDate><guid isPermaLink="false">3393c1ec-311b-4812-96cb-ad8c611bba4f:20159</guid><dc:creator>kenlyle</dc:creator><description>&lt;p&gt;&lt;span style="overflow:hidden;" id="mce_0_start"&gt;Is there any update on this, or has the issue perhaps resurfaced?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="overflow:hidden;" id="mce_0_start"&gt;&lt;/span&gt;I had issues today trying to drag and drop fields in Chrome.&amp;nbsp; Can you guys maybe do browser agent detection, and push some kind of notice about what might not work?&lt;/p&gt;
&lt;p&gt;Thanks for any updates.&lt;/p&gt;
&lt;p&gt;Best,&lt;/p&gt;
&lt;p&gt;Ken&lt;/p&gt;</description></item><item><title>Re: Add IsSMS checkbox field to all Phones</title><link>http://forums.method.me/cs/forums/p/5245/19981.aspx#19981</link><pubDate>Tue, 26 Nov 2013 08:16:26 GMT</pubDate><guid isPermaLink="false">3393c1ec-311b-4812-96cb-ad8c611bba4f:19981</guid><dc:creator>kenlyle</dc:creator><description>&lt;p&gt;&lt;span id="mce_0_start" style="overflow:hidden;"&gt;Ok, I think I have figured out the workaround...I just need to make multiple fields, one per phone type, assuming, I guess, that each Entity has only one Mobile number, etc., like:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span id="mce_0_start" style="overflow:hidden;"&gt;&lt;/span&gt;IsSMSMobile, IsSMSPhone, IsSMSAltPhone, etc.? &amp;nbsp;And put these adjacent to the related field on my screens?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;</description></item><item><title>Re: Add IsSMS checkbox field to all Phones</title><link>http://forums.method.me/cs/forums/p/5245/19977.aspx#19977</link><pubDate>Tue, 26 Nov 2013 01:28:09 GMT</pubDate><guid isPermaLink="false">3393c1ec-311b-4812-96cb-ad8c611bba4f:19977</guid><dc:creator>kenlyle</dc:creator><description>&lt;p&gt;&lt;span id="mce_0_start" style="overflow:hidden;"&gt;Thanks, Naeem.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span id="mce_0_start" style="overflow:hidden;"&gt;&lt;/span&gt;It looks like a near miss.&lt;/p&gt;
&lt;p&gt;Here is why: &amp;nbsp;In Entity, I see a bunch of fields, which are things/data attached to an &amp;quot;Entity&amp;quot;.&lt;/p&gt;
&lt;p&gt;The problem is that both AltPhone and Phone are in there, as well as any other custom phone fields there may be.&lt;/p&gt;
&lt;p&gt;A single IsSMS field is not going to cover it, because the idea is to indicate for EACH phone numbe whether that particular number, is, in fact, SMS capable.&lt;/p&gt;
&lt;p&gt;Is there some other way of accomplishing this?&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;</description></item><item><title>Complex Queries for a Report</title><link>http://forums.method.me/cs/forums/p/5247/19955.aspx#19955</link><pubDate>Mon, 25 Nov 2013 01:16:55 GMT</pubDate><guid isPermaLink="false">3393c1ec-311b-4812-96cb-ad8c611bba4f:19955</guid><dc:creator>kenlyle</dc:creator><description>&lt;p&gt;&lt;span id="mce_0_start" style="overflow:hidden;"&gt;I am being asked for a &amp;quot;Customer&amp;quot; report including:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span id="mce_0_start" style="overflow:hidden;"&gt;&lt;/span&gt;&lt;span&gt;Alternate contacts (email addresses) List&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span&gt;Monthly fee Invoicing/subscription date - A complex query/join to the InvoiceLines table? Pseudocode maybe like: DayofMonth(Max(TxnDate)) where InvoiceLine like &amp;quot;*Monthly*Fee*&amp;quot;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span&gt;Items Owned - A list of items from a custom table.&lt;/span&gt;&lt;br /&gt;&lt;span&gt;Sign up date - Probably the minimum invoice date for the customer. &amp;nbsp;Can I also use conversion date?&lt;/span&gt;&lt;br /&gt;&lt;span&gt;Open cases/closed cases&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;The lists should probably be comma separated lists, so that they can display on one line. &amp;nbsp;Or maybe they can be sub-reports, like in Access?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Any advice is appreciated.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thanks!&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Add IsSMS checkbox field to all Phones</title><link>http://forums.method.me/cs/forums/p/5245/19953.aspx#19953</link><pubDate>Sun, 24 Nov 2013 01:09:52 GMT</pubDate><guid isPermaLink="false">3393c1ec-311b-4812-96cb-ad8c611bba4f:19953</guid><dc:creator>kenlyle</dc:creator><description>&lt;p&gt;&lt;span id="mce_0_start" style="overflow:hidden;"&gt;I&amp;nbsp;&lt;/span&gt;am trying to, as globally as possible,&amp;nbsp;Add an &amp;quot;IsSMS&amp;quot; checkbox field to all Phone Numbers displayed and stored in Method.&lt;/p&gt;
&lt;p&gt;I hope it&amp;#39;s perfectly clear...the idea is to be able to flag phone numbers which can receive SMS messages.&lt;/p&gt;
&lt;p&gt;I am not sure what all the entities are, even, but I beileve I was told that there is a programmatic &amp;quot;class&amp;quot;, perhaps a phone number class, which can be abstracted, OOP-like? But there are no Google results for searching OOP or abstraction, for example, OOP site:methodintegration.com.&lt;span id="mce_0_start" style="overflow:hidden;"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;It would be particularly swell if this additional property/field only had to be added in a single place...I am thinking that if phone numbers are normalized into a single table in Method like it used to be in SugarCRM, that this might be possible. &amp;nbsp;It would also be nice if the new property displayed automatically on screens with phones, but it shouldn&amp;#39;t be a huge deal to place the field.&lt;/p&gt;
&lt;p&gt;Thanks in advance for any guidance.&lt;/p&gt;</description></item></channel></rss>