<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>SugarCRM Forums</title>
		<link>http://forums.sugarcrm.com/</link>
		<description />
		<language>en</language>
		<lastBuildDate>Tue, 21 May 2013 21:56:39 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://forums.sugarcrm.com/images/misc/rss.png</url>
			<title>SugarCRM Forums</title>
			<link>http://forums.sugarcrm.com/</link>
		</image>
		<item>
			<title>Invalid Value: Expected Close Date in popup of Opportunity module</title>
			<link>http://forums.sugarcrm.com/f22/invalid-value-expected-close-date-popup-opportunity-module-86898/</link>
			<pubDate>Tue, 21 May 2013 21:49:07 GMT</pubDate>
			<description>Hello, 
I am using Sugarcrm version 6.2.4. I have a Create Opportunity button in Opportunity popup for most of the modules where users can create new Opportunities. But, for some reason the Expected Close Date field keeps on showing error (like in the screenshot) when try to Save the record. It...</description>
			<content:encoded><![CDATA[<div>Hello,<br />
I am using Sugarcrm version 6.2.4. I have a Create Opportunity button in Opportunity popup for most of the modules where users can create new Opportunities. But, for some reason the Expected Close Date field keeps on showing error (like in the screenshot) when try to Save the record. It shows Invalid value: Expected Close Date if we put valid mm/dd/yyyy formatted date. However, if we put YYYY-MM-DD it validates but the date do not saves in database. The default date format that this very Expected Close Date field is taking mm/dd/yyyy. On the contrary, I can create Opportunity in traditional way and in sub-panel of detailView of Account.<br />
<img src="http://forums.sugarcrm.com/attachments/f22/10067d1369172739-invalid-value-expected-close-date-popup-opportunity-module-expected_close_date.jpg" border="0" alt="Name:  expected_close_date.JPG
Views: 2
Size:  90.6 KB"  /><br />
<br />
Please, let me know what could be the issue and how can we solve it? I am sure there are lots of other developers facing the same issue.</div>


	<div style="padding:10px">

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
				<div style="padding:10px">
				<img class="attach" src="http://forums.sugarcrm.com/attachments/f22/10067d1369172739-invalid-value-expected-close-date-popup-opportunity-module-expected_close_date.jpg" alt="" />&nbsp;
			</div>
		</fieldset>
	

	

	

	</div>
]]></content:encoded>
			<category domain="http://forums.sugarcrm.com/f22/">General Discussion</category>
			<dc:creator>newroseji</dc:creator>
			<guid isPermaLink="true">http://forums.sugarcrm.com/f22/invalid-value-expected-close-date-popup-opportunity-module-86898/</guid>
		</item>
		<item>
			<title>REST, but without LDAP</title>
			<link>http://forums.sugarcrm.com/f3/rest-but-without-ldap-86893/</link>
			<pubDate>Tue, 21 May 2013 13:14:37 GMT</pubDate>
			<description><![CDATA[Hi! 
 
We're having a SugarCRM instance here, that is connected to a LDAP server. Every user account, except the default "admin", was created through the LDAP connection. 
Now, we want to pull data through the REST PHP (as mentioned here: Retrieving a List of Records - REST and PHP - SugarCRM...]]></description>
			<content:encoded><![CDATA[<div>Hi!<br />
<br />
We're having a SugarCRM instance here, that is connected to a LDAP server. Every user account, except the default &quot;admin&quot;, was created through the LDAP connection.<br />
Now, we want to pull data through the REST PHP (as mentioned here: <a href="http://support.sugarcrm.com/04_Find_Answers/03_Developers/100Web_Services/100REST_API/100Examples/100PHP/Retrieving_a_list_of_records_-_REST_and_PHP" target="_blank">Retrieving a List of Records - REST and PHP - SugarCRM Support Site</a>). We noticed that it was not possible to access the data through the LDAP-accounts, so we decided to use the default &quot;admin&quot;. Now we heard from our IT Devision that the LDAP log was full of failed connects with the user &quot;admin&quot;. So SugarCRM wants to authenticate the user &quot;admin&quot; through LDAP, which is stupid. The same thing happens with local SugarCRM accounts.<br />
The only setting I found that COULD deal with this problem was disabling &quot;LDAP Authentication Only&quot; in User Settings which did not the trick.<br />
<br />
Does anyone know how to handle this problem?<br />
<br />
Thank you!</div>

]]></content:encoded>
			<category domain="http://forums.sugarcrm.com/f3/">Help</category>
			<dc:creator>urs.pamp@gmail.com</dc:creator>
			<guid isPermaLink="true">http://forums.sugarcrm.com/f3/rest-but-without-ldap-86893/</guid>
		</item>
		<item>
			<title>How to Add Relationship Through Rest In SugarCRM</title>
			<link>http://forums.sugarcrm.com/f6/how-add-relationship-through-rest-sugarcrm-86892/</link>
			<pubDate>Tue, 21 May 2013 13:05:59 GMT</pubDate>
			<description><![CDATA[Hi  
I am using one-to-many relationship between Contact And CountryCity  Module And I need to add a relationship to this using REST, 
 
I have used following code to create a relationship between these two 
 
<?php  
 
    $url = "localhost/RealEstateAgentCRM/service/v4/rest.php"; 
 
    $username...]]></description>
			<content:encoded><![CDATA[<div>Hi <br />
I am using one-to-many relationship between Contact And CountryCity  Module And I need to add a relationship to this using REST,<br />
<br />
I have used following code to create a relationship between these two<br />
<br />
&lt;?php <br />
<br />
    $url = &quot;localhost/RealEstateAgentCRM/service/v4/rest.php&quot;;<br />
<br />
    $username = &quot;admin&quot;;<br />
    $password = &quot;admin&quot;;<br />
    function call($method, $parameters, $url)<br />
    {<br />
        ob_start();<br />
        $curl_request = curl_init();<br />
        curl_setopt($curl_request, CURLOPT_URL, $url);<br />
        curl_setopt($curl_request, CURLOPT_POST, 1);<br />
        curl_setopt($curl_request, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);<br />
        curl_setopt($curl_request, CURLOPT_HEADER, 1);<br />
        curl_setopt($curl_request, CURLOPT_SSL_VERIFYPEER, 0);<br />
        curl_setopt($curl_request, CURLOPT_RETURNTRANSFER, 1);<br />
        curl_setopt($curl_request, CURLOPT_FOLLOWLOCATION, 0);<br />
        $jsonEncodedData = json_encode($parameters);<br />
        $post = array(<br />
             &quot;method&quot; =&gt; $method,<br />
             &quot;input_type&quot; =&gt; &quot;JSON&quot;,<br />
             &quot;response_type&quot; =&gt; &quot;JSON&quot;,<br />
             &quot;rest_data&quot; =&gt; $jsonEncodedData<br />
        );<br />
        curl_setopt($curl_request, CURLOPT_POSTFIELDS, $post);<br />
        $result = curl_exec($curl_request);<br />
        curl_close($curl_request);<br />
        $result = explode(&quot;\r\n\r\n&quot;, $result, 2);<br />
        $response = json_decode($result[1]);<br />
        ob_end_flush();<br />
        return $response;<br />
    }<br />
    $login_parameters = array(<br />
         &quot;user_auth&quot;=&gt;array(<br />
              &quot;user_name&quot;=&gt;$username,<br />
              &quot;password&quot;=&gt;md5($password),<br />
              &quot;version&quot;=&gt;&quot;1&quot;<br />
         ),<br />
         &quot;application_name&quot;=&gt;&quot;RestTest&quot;,<br />
         &quot;name_value_list&quot;=&gt;array(),<br />
    );<br />
   $login_result = call(&quot;login&quot;, $login_parameters, $url);<br />
    $session_id = $login_result-&gt;id;<br />
<br />
<br />
 $parameters = array( <br />
    'session' =&gt; $session_id, <br />
    'module_id' =&gt; '3671da49-2d13-aa21-7h49-519b11dgu34', // This is a contact Id<br />
    'module_name' =&gt; 'Contacts', <br />
    'link_field_name' =&gt; 'contacts_veon_country_city_list_1', <br />
    'related_ids' =&gt; array('3904da49-2d13-aa21-72a9-519b11d43b02'), // This is a City-Country id<br />
    ); <br />
<br />
 $add_relationship_result = call(&quot;set_relationship&quot;, $parameters, $url);<br />
 print_r($add_relationship_result);<br />
<br />
?&gt;<br />
<br />
<br />
<br />
Regards<br />
<br />
Madhusudan Singh</div>

]]></content:encoded>
			<category domain="http://forums.sugarcrm.com/f6/">Developer Help</category>
			<dc:creator>madhusudan2291</dc:creator>
			<guid isPermaLink="true">http://forums.sugarcrm.com/f6/how-add-relationship-through-rest-sugarcrm-86892/</guid>
		</item>
		<item>
			<title><![CDATA[modified the LDAP-settings -> locked out]]></title>
			<link>http://forums.sugarcrm.com/f22/modified-ldap-settings-locked-out-86890/</link>
			<pubDate>Tue, 21 May 2013 11:18:52 GMT</pubDate>
			<description><![CDATA[Hi! 
 
Due to our IT support I had to do some changes to our LDAP config in SugarCRM. After saving the settings I was locked out of the system (even with the default "admin" user). I wanted to reset the LDAP settings so i googled and learned that the settings were stored in the DB in the table...]]></description>
			<content:encoded><![CDATA[<div>Hi!<br />
<br />
Due to our IT support I had to do some changes to our LDAP config in SugarCRM. After saving the settings I was locked out of the system (even with the default &quot;admin&quot; user). I wanted to reset the LDAP settings so i googled and learned that the settings were stored in the DB in the table &quot;config&quot;. So opened MySQLWorkbench and connected to the server and opened the table. I noticed that I wasn't allowed to do any changes in that table. In all other tables I'm able to modify the values.<br />
<br />
Now, how can I reset the necessary LDAP settings? How can I make changes to the &quot;config&quot;-table?<br />
<br />
Thanks in advance! I'm hoping for a quick answer...:)</div>

]]></content:encoded>
			<category domain="http://forums.sugarcrm.com/f22/">General Discussion</category>
			<dc:creator>urs.pamp@gmail.com</dc:creator>
			<guid isPermaLink="true">http://forums.sugarcrm.com/f22/modified-ldap-settings-locked-out-86890/</guid>
		</item>
		<item>
			<title><![CDATA[How to add "Web to Lead form" with multiple product enquiry]]></title>
			<link>http://forums.sugarcrm.com/f3/how-add-web-lead-form-multiple-product-enquiry-86889/</link>
			<pubDate>Tue, 21 May 2013 10:55:07 GMT</pubDate>
			<description><![CDATA[Dear Friends and Mahi, 
I need to create a web to lead form . I plan to add a "One to Many" relationship in lead module to add multiple product as subpanel. But my doubt is 
how to implement same in "Web to lead" form . Because i believe subpanel entry not show in "Web to lead" creation form ....]]></description>
			<content:encoded><![CDATA[<div>Dear Friends and Mahi,<br />
I need to create a web to lead form . I plan to add a &quot;One to Many&quot; relationship in lead module to add multiple product as subpanel. But my doubt is<br />
how to implement same in &quot;Web to lead&quot; form . Because i believe subpanel entry not show in &quot;Web to lead&quot; creation form . please advise me with a <br />
solution.<br />
<br />
Thanks,<br />
Anes</div>

]]></content:encoded>
			<category domain="http://forums.sugarcrm.com/f3/">Help</category>
			<dc:creator>cent</dc:creator>
			<guid isPermaLink="true">http://forums.sugarcrm.com/f3/how-add-web-lead-form-multiple-product-enquiry-86889/</guid>
		</item>
		<item>
			<title>How to change color of date when date have been Expired</title>
			<link>http://forums.sugarcrm.com/f6/how-change-color-date-when-date-have-been-expired-86881/</link>
			<pubDate>Tue, 21 May 2013 05:03:56 GMT</pubDate>
			<description>Hi friends  
I want some help about this  
 
Case study is that I have been add new field(Date) in module , that date is showing Expiry date  
 
Need Help : when date is expire date must change the color in List view and Detail view when date is expire  
expiry duration is one year  
 
Thanks in...</description>
			<content:encoded><![CDATA[<div>Hi friends <br />
I want some help about this <br />
<br />
Case study is that I have been add new field(Date) in module , that date is showing Expiry date <br />
<br />
Need Help : when date is expire date must change the color in List view and Detail view when date is expire <br />
expiry duration is one year <br />
<br />
Thanks in advance</div>

]]></content:encoded>
			<category domain="http://forums.sugarcrm.com/f6/">Developer Help</category>
			<dc:creator>ckander</dc:creator>
			<guid isPermaLink="true">http://forums.sugarcrm.com/f6/how-change-color-date-when-date-have-been-expired-86881/</guid>
		</item>
		<item>
			<title>Looking to hire somebody to customize SugarPro for us.</title>
			<link>http://forums.sugarcrm.com/f6/looking-hire-somebody-customize-sugarpro-us-86878/</link>
			<pubDate>Mon, 20 May 2013 23:01:06 GMT</pubDate>
			<description>We currently have a self hosted SugarPro account setup that is 80% of 
the way tweaked to how we need it to provide our team optimal 
support/value. We have everything we need Sugar to do outlined and 
documented... fields, equations, reports... simply need someone to 
spend some time to make it...</description>
			<content:encoded><![CDATA[<div>We currently have a self hosted SugarPro account setup that is 80% of<br />
the way tweaked to how we need it to provide our team optimal<br />
support/value. We have everything we need Sugar to do outlined and<br />
documented... fields, equations, reports... simply need someone to<br />
spend some time to make it all work as we're finding it's taking us<br />
10x longer than we know someone who knows what they're doing would<br />
take. If you know anyone familiar with making tweaks to Sugar that can<br />
crank this stuff out quickly who wants to make some extra cash working<br />
a few hours on this, please send them our way!<br />
<br />
Will be mostly &quot;get in and make the thing function how we need it&quot; and<br />
less strategy around process as we've already spent the time to think<br />
through how we need things to operate within the system.<br />
<br />
Does anybody here do that kind of thing?</div>

]]></content:encoded>
			<category domain="http://forums.sugarcrm.com/f6/">Developer Help</category>
			<dc:creator>asia@openspectruminc.com</dc:creator>
			<guid isPermaLink="true">http://forums.sugarcrm.com/f6/looking-hire-somebody-customize-sugarpro-us-86878/</guid>
		</item>
		<item>
			<title>Modulo de prestamos notificacion via mail</title>
			<link>http://forums.sugarcrm.com/f49/modulo-de-prestamos-notificacion-via-mail-86877/</link>
			<pubDate>Mon, 20 May 2013 22:55:56 GMT</pubDate>
			<description>Hola, 
 
tengo un modulo que maneja un inventario de equipos, quiero realizar un modulo de prestamos. que notifique via mail cuando la fecha del prestamo caduque. es posible realizar esto ¿? 
 
Saludos 
muchas gracias por su ayuda.</description>
			<content:encoded><![CDATA[<div>Hola,<br />
<br />
tengo un modulo que maneja un inventario de equipos, quiero realizar un modulo de prestamos. que notifique via mail cuando la fecha del prestamo caduque. es posible realizar esto ¿?<br />
<br />
Saludos<br />
muchas gracias por su ayuda.</div>

]]></content:encoded>
			<category domain="http://forums.sugarcrm.com/f49/">Español</category>
			<dc:creator>themian</dc:creator>
			<guid isPermaLink="true">http://forums.sugarcrm.com/f49/modulo-de-prestamos-notificacion-via-mail-86877/</guid>
		</item>
		<item>
			<title>Quick create opens in a new page without formatting</title>
			<link>http://forums.sugarcrm.com/f3/quick-create-opens-new-page-without-formatting-86876/</link>
			<pubDate>Mon, 20 May 2013 21:44:52 GMT</pubDate>
			<description>Hi there,  
After bringing a perfectly working instance of 6.5.12 CE into a new server I get a strange response (Chrome, Firefow and IE) when using the quick create buttons. Sugar does not expand the submodule but opens a new page on the same window with the form to be filled. (screenshot...</description>
			<content:encoded><![CDATA[<div>Hi there, <br />
After bringing a perfectly working instance of 6.5.12 CE into a new server I get a strange response (Chrome, Firefow and IE) when using the quick create buttons. Sugar does not expand the submodule but opens a new page on the same window with the form to be filled. (screenshot attached).<br />
<br />
The server runs on CentOS 5.5 with php 5.3.25<br />
<br />
I have tried:<br />
- chmod -R 775 cache modules custom data<br />
- Installing APC caching<br />
- Restarting the server<br />
<br />
For some reason, this instance also has problems displaying the studio an module builder in Chrome. It works OK in IE.<br />
<br />
Thanks for your ideas.<br />
<br />
<img src="http://forums.sugarcrm.com/attachments/f3/10060d1369086621-quick-create-opens-new-page-without-formatting-screenshot.jpg" border="0" alt="Name:  screenshot.jpg
Views: 25
Size:  33.9 KB"  /></div>


	<div style="padding:10px">

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
				<div style="padding:10px">
				<img class="attach" src="http://forums.sugarcrm.com/attachments/f3/10060d1369086621-quick-create-opens-new-page-without-formatting-screenshot.jpg" alt="" />&nbsp;
			</div>
		</fieldset>
	

	

	

	</div>
]]></content:encoded>
			<category domain="http://forums.sugarcrm.com/f3/">Help</category>
			<dc:creator>LaFortuna</dc:creator>
			<guid isPermaLink="true">http://forums.sugarcrm.com/f3/quick-create-opens-new-page-without-formatting-86876/</guid>
		</item>
		<item>
			<title>View various revisions of audited field in KReporter report (Read from Change Log)</title>
			<link>http://forums.sugarcrm.com/f3/view-various-revisions-audited-field-kreporter-report-read-change-log-86875/</link>
			<pubDate>Mon, 20 May 2013 20:03:48 GMT</pubDate>
			<description><![CDATA[Hello, 
 
I am wondering if there is a way to view various revisions of an audited field in a KReporter report for same row. 
 
Let me give an example to explain. 
 
I added auditing for "Description" field of the Cases module. I did this because with various edits of the Case, the Description...]]></description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
I am wondering if there is a way to view various revisions of an audited field in a KReporter report for same row.<br />
<br />
Let me give an example to explain.<br />
<br />
I added auditing for &quot;Description&quot; field of the Cases module. I did this because with various edits of the Case, the Description would evolve (the way I intend to use it). Now I am wondering if it is possible to create a report that will have the various updated descriptions, this will mean it has to read from the Change Log. <br />
<br />
I don't know if this is clear enough. Your help is appreciated.<br />
<br />
Thank you.</div>

]]></content:encoded>
			<category domain="http://forums.sugarcrm.com/f3/">Help</category>
			<dc:creator>nnanna@cobranet.org</dc:creator>
			<guid isPermaLink="true">http://forums.sugarcrm.com/f3/view-various-revisions-audited-field-kreporter-report-read-change-log-86875/</guid>
		</item>
		<item>
			<title>Role Module List</title>
			<link>http://forums.sugarcrm.com/f3/role-module-list-86874/</link>
			<pubDate>Mon, 20 May 2013 19:21:17 GMT</pubDate>
			<description><![CDATA[I am trying to set up my Roles and when I am setting up the modules for each role, I do not know what each one is.  Is there a list of definitions that explain what each one is. The far left column has all of the modules that I don't know what they are. Accounts, bug Tracker, Calls, Campaigns,...]]></description>
			<content:encoded><![CDATA[<div>I am trying to set up my Roles and when I am setting up the modules for each role, I do not know what each one is.  Is there a list of definitions that explain what each one is. The far left column has all of the modules that I don't know what they are. Accounts, bug Tracker, Calls, Campaigns, Cases, Contacts, Documents, EAPM, Email Marketing, Email Templates, Emails, Leads, Meetings, Notes, Opportunities, Project Tasks, Project, Target List, Targets, Tasks are what is listed when I create a role and save it.  <br />
<br />
<br />
<br />
Please be kind as I am very new to this sort of thing. Thanks</div>

]]></content:encoded>
			<category domain="http://forums.sugarcrm.com/f3/">Help</category>
			<dc:creator>Spectrum Merchant</dc:creator>
			<guid isPermaLink="true">http://forums.sugarcrm.com/f3/role-module-list-86874/</guid>
		</item>
		<item>
			<title>sugarcrm eShop</title>
			<link>http://forums.sugarcrm.com/f22/sugarcrm-eshop-86873/</link>
			<pubDate>Mon, 20 May 2013 19:17:58 GMT</pubDate>
			<description><![CDATA[hello everyone 
i'm newbie to sugarcrm, i am looking for a crm and eshop in single bundle, i want to ask have sugarcrm built in eShop ? or i must looking for an eShop that compatible with sugarcrm ? 
thank you.]]></description>
			<content:encoded><![CDATA[<div>hello everyone<br />
i'm newbie to sugarcrm, i am looking for a crm and eshop in single bundle, i want to ask have sugarcrm built in eShop ? or i must looking for an eShop that compatible with sugarcrm ?<br />
thank you.</div>

]]></content:encoded>
			<category domain="http://forums.sugarcrm.com/f22/">General Discussion</category>
			<dc:creator>ksharifi</dc:creator>
			<guid isPermaLink="true">http://forums.sugarcrm.com/f22/sugarcrm-eshop-86873/</guid>
		</item>
		<item>
			<title>Eshop integrate with sugarcrm</title>
			<link>http://forums.sugarcrm.com/f5/eshop-integrate-sugarcrm-86872/</link>
			<pubDate>Mon, 20 May 2013 18:38:56 GMT</pubDate>
			<description>hello everyone 
i am looking for both CRM and Eshop in single bundle, i want to know did you Know an open source eshop that compatible and good integratation with sugarCRM ? 
thank you.</description>
			<content:encoded><![CDATA[<div>hello everyone<br />
i am looking for both CRM and Eshop in single bundle, i want to know did you Know an open source eshop that compatible and good integratation with sugarCRM ?<br />
thank you.</div>

]]></content:encoded>
			<category domain="http://forums.sugarcrm.com/f5/">Feature Requests</category>
			<dc:creator>ksharifi</dc:creator>
			<guid isPermaLink="true">http://forums.sugarcrm.com/f5/eshop-integrate-sugarcrm-86872/</guid>
		</item>
		<item>
			<title>Change Color when check box is ticked?</title>
			<link>http://forums.sugarcrm.com/f6/change-color-when-check-box-ticked-86871/</link>
			<pubDate>Mon, 20 May 2013 17:52:43 GMT</pubDate>
			<description>I have a questionnaire created and it contains some check boxes. I would like the checkbox and text to change color when ticked. Any idea how to accomplish this?</description>
			<content:encoded><![CDATA[<div>I have a questionnaire created and it contains some check boxes. I would like the checkbox and text to change color when ticked. Any idea how to accomplish this?</div>

]]></content:encoded>
			<category domain="http://forums.sugarcrm.com/f6/">Developer Help</category>
			<dc:creator>jayo2005</dc:creator>
			<guid isPermaLink="true">http://forums.sugarcrm.com/f6/change-color-when-check-box-ticked-86871/</guid>
		</item>
		<item>
			<title>FlexRelate Parent field for SugarCRM</title>
			<link>http://forums.sugarcrm.com/f3/flexrelate-parent-field-sugarcrm-86870/</link>
			<pubDate>Mon, 20 May 2013 16:01:27 GMT</pubDate>
			<description>Hello, 
 
Is there a way to safely change the Relate field (which relates to Accounts) in the Cases module to a FlexRelate field which will work (like the one in the Tasks module)? 
 
I created a custom module similar to the Accounts module (it contains records like accounts, but is separate) for...</description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
Is there a way to safely change the Relate field (which relates to Accounts) in the Cases module to a FlexRelate field which will work (like the one in the Tasks module)?<br />
<br />
I created a custom module similar to the Accounts module (it contains records like accounts, but is separate) for which I would haveto create Cases, and would rather use a parent flexrelate than create another standalone Relate field.<br />
<br />
Your help appreciated. Thank you.</div>

]]></content:encoded>
			<category domain="http://forums.sugarcrm.com/f3/">Help</category>
			<dc:creator>nnanna@cobranet.org</dc:creator>
			<guid isPermaLink="true">http://forums.sugarcrm.com/f3/flexrelate-parent-field-sugarcrm-86870/</guid>
		</item>
	</channel>
</rss>
