/
var
/
www
/
html
/
sugardemo
/
soap
/
Upload File
HOME
<?php /* * Your installation or use of this SugarCRM file is subject to the applicable * terms available at * http://support.sugarcrm.com/Resources/Master_Subscription_Agreements/. * If you do not agree to all of the applicable terms or do not have the * authority to bind the entity as an authorized representative, then do not * install or use this SugarCRM file. * * Copyright (C) SugarCRM Inc. All rights reserved. */ $error_defs = [ 'no_error' => ['number' => '0', 'name' => 'No Error', 'description' => 'No Error'], 'invalid_login' => ['number' => '10', 'name' => 'Invalid Login', 'description' => 'Login attempt failed please check the username and password'], 'invalid_session' => ['number' => '11', 'name' => 'Invalid Session ID', 'description' => 'The session ID is invalid'], 'user_not_configure' => ['number' => '12', 'name' => 'User Not Configured', 'description' => 'Please log into your instance of SugarCRM to configure your user. '], 'no_portal' => ['number' => '12', 'name' => 'Invalid Portal Client', 'description' => 'Portal Client does not have authorized access'], 'no_module' => ['number' => '20', 'name' => 'Module Does Not Exist', 'description' => 'This module is not available on this server'], 'no_file' => ['number' => '21', 'name' => 'File Does Not Exist', 'description' => 'The desired file does not exist on the server'], 'no_module_support' => ['number' => '30', 'name' => 'Module Not Supported', 'description' => 'This module does not support this feature'], 'no_relationship_support' => ['number' => '31', 'name' => 'Relationship Not Supported', 'description' => 'This module does not support this relationship'], 'no_access' => ['number' => '40', 'name' => 'Access Denied', 'description' => 'You do not have access'], 'duplicates' => ['number' => '50', 'name' => 'Duplicate Records', 'description' => 'Duplicate records have been found. Please be more specific.'], 'no_records' => ['number' => '51', 'name' => 'No Records', 'description' => 'No records were found.'], 'cannot_add_client' => ['number' => '52', 'name' => 'Cannot Add Offline Client', 'description' => 'Unable to add Offline Client.'], 'client_deactivated' => ['number' => '53', 'name' => 'Client Deactivated', 'description' => 'Your Offline Client instance has been deactivated. Please contact your Administrator in order to resolve.'], 'sessions_exceeded' => ['number' => '60', 'name' => 'Number of sessions exceeded.', 'description' => ''], 'upgrade_client' => ['number' => '61', 'name' => 'Upgrade Client', 'description' => 'Please contact your Administrator in order to upgrade your Offline Client'], 'no_admin' => ['number' => '70', 'name' => 'Admin credentials are required', 'description' => 'The logged-in user is not an administrator'], 'custom_field_type_not_supported' => ['number' => '80', 'name' => 'Custom field type not supported', 'description' => 'The custom field type you supplied is not currently supported'], 'custom_field_property_not_supplied' => ['number' => '81', 'name' => 'Custom field property not supplied', 'description' => 'You are missing one or more properties for the supplied custom field type'], 'resource_management_error' => ['number' => '90', 'name' => 'Resource Management Error', 'description' => 'The resource query limit specified in config.php has been exceeded during execution of the SOAP method'], 'invalid_call_error' => ['number' => '1000', 'name' => 'Invalid call for this module', 'description' => 'This is an invalid call for this module. Please look at WSDL file for details'], 'invalid_data_format' => ['number' => '1001', 'name' => 'Invalid data sent', 'description' => 'The data sent for this function is invalid. Please look at WSDL file for details'], 'invalid_set_campaign_merge_data' => ['number' => '1005', 'name' => 'Invalid set_campaign_merge data', 'description' => 'set_campaign_merge: Merge action status will not be updated, because, campaign_id is null or no targets were selected'], 'password_expired' => ['number' => '1008', 'name' => 'Password Expired', 'description' => 'Your password has expired. Please provide a new password.'], 'lockout_reached' => ['number' => '1009', 'name' => 'Password Expired', 'description' => 'You have been locked out of the Sugar application and cannot log in using existing password. Please contact your Administrator.'], 'ldap_error' => ['number' => '1012', 'name' => 'LDAP Authentication Failed', 'description' => 'LDAP Authentication failed but supplied password was already encrypted.'], 'user_loop' => ['number' => '1015', 'name' => 'Cannot have a user report to himself', 'description' => 'The system detected a reporting loop. A user cannot report to themselves, nor can any of their managers report to them.'], 'error_user_create_update' => ['number' => '1016', 'name' => 'Unable to create/update user.', 'description' => 'There was an error while creating/updating user.'], 'idm_mode_cannot_create_user' => [ 'number' => '1017', 'name' => 'Can\'t create user', 'description' => 'The user can be created only in SugarIdentity', ], ];