
Originally Posted by
julian You can customize the portal_get_entry_list() function in ./soap/SoapPortalUsers.php to use this instead of get_related_list() to pull related records. In 4.5, this should be part of the base code.
I've noticed that I had an older 4.5 version which didn't include those changes.
I thought to replace only those SOAP files but now I can't pull a thing out of it.
PHP Code:
$result = $proxy->get_relationships(
$sess,
'Accounts',
'b22b0137-00e1-f5c6-3f64-460bc6ae3506',
'Contacts',
'',
false
);
echo '<pre>';
print_r($result);
echo '</pre>';
HTML Code:
Array
(
[ids] => Array
(
)
[error] => Array
(
[number] => 0
[name] => No Error
[description] => No Error
)
) Using the SOAP functions delivered with the older 4.5.1 I received the following output HTML Code:
Array
(
[ids] => Array
(
[0] => Array
(
[id] => b50f6f78-7e9e-e211-470c-45f694aefbcc
[date_modified] => 2007-04-25 14:15:56
[deleted] => 0
)
[1] => Array
(
[id] => ebfaf5e4-2fac-feba-8f45-460cf3d9a37e
[date_modified] => 2007-06-21 09:35:57
[deleted] => 0
)
)
[error] => Array
(
[number] => 0
[name] => No Error
[description] => No Error
)
) Is this because other changes to the sugarbean has been done, or do I pass wrong variables?
Bookmarks