• For API customization in SugarCRM

    Dear All, I want to customized Some input received in Sugar by Default API . How can I customized if ? And Also share the path of default API in SugarCRM used. For Example :- I have share a case crate API with portal user and I received regularly in…
  • Count Endpoint for documents/ tasks

    Is there a best way to get a count of all documents/task etc . Like is there a URL endpoint we can just call that's like documents/count?
  • How create multiple links(relation ship) with bulk API

    Hello, I am doing rest bulk call. I want to create multiple relationships along with the bulk record creation/updation. Please advise. Thanks Sanket
  • How to make API of any module in SugarCRM

    Dear All, please tell the process of making any module's API of SugarCRM. I am new user of SugarCRM. Thanks;
  • Generate Proposal from Opportunity

    Hi , I am new to SugarCRM, and I would like to Generate a Proposal (Word doc/PDF or JSON) from SugarCRM Opportunity. What are the options I have, do I need to use the REST API's or can I create a FORM and populate the form using the Opportunity…
  • How to display Show More records in custom Subpanel

    Hi All, I have one custom subpanel in contacts module. All the record values for that subpanel are coming from other services using REST API's and also we are not saving those records in DB as well. I have overridden the filterRelated function in clients…
  • Default sort order field in subpanel not working 6.5

    This is literally driving me insane. I am trying to default sort a custom date field in a custom module subpanel. Here's what I have done: Background: PI_Personal_Injury is the parent module INV_Time_And_Expenses is the module subpanel The field I am…
  • How to access dashlet configuration variables from the server?

    When you click the "gear" icon in the top right corner of a dashlet, there are config items users can set for each of their dashlets. I'd like to be able to access those dashlet configuration values from my server code. Is there a class I can use to access…
  • Selection lists are not showing all records

    I have code that opens a selection list based on a relationship, the code looks like this find_customers : function ( ) { var self = this ; var model = self . model ; var linkModelRelName = 'accounts_in_customers_1' ; var contactBean = app . data . createBean…
  • SugarQuery N-Deep Join Issue

    I tried the N-Deep join from https://developer.sugarcrm.com/2014/04/22/sugarcrm-cookbook-sugarquery-the-basics/ but it seems to be not working. did anything changed in Sugar 7.7 $query = new SugarQuery(); $query->from(BeanFactory::getBean('Accounts')…
  • Search filter in sugar url / link

    Hi, I have a webform pre-populate with a phone number. All i need to open a sugar contact module detail / list view that match this phone number. So i need to generate a link that filter my contact module with this phone number. I know old version support…
  • want to insert into another module's Table.

    Hi Team, I have added a custom button on custom entity next to SAVE and CANCEL. On the click of custom button i want to pick some value from the FORM and want to insert into another module's Table. What is right way to achieve it. Thanks in advance. Regards…
  • Extending the moduleapi endpoint does not work

    if you put this in custom/clients/base/api/CustomModuleApi.php <?php if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); require_once("clients/base/api/ModuleApi.php"); class CustomModuleApi extends ModuleApi { public function registerApiRest…
  • web portal stuck in loading

    recently i've made a development instance copying the production instance and changing the URL and certificate, everything works fine and i can visualize all the admin portal from the browser, but whenever i tried to enter from the customer portal ,it…
  • What you need to know about the new SugarIdentity service!

    The 'idm_mode' config setting was moved out of config.php and into the database. It's now necessary to update the config table to disable this setting for a local backup. Instructions updated below. Those who have been around a while will know that SugarCRM…
  • How to build an External API Dashlet

    On October 28, 2019, we conducted a webinar on the topic of How to deploy code to SugarCloud using Module Loader . In that presentation, we demonstrated a Module Loadable Package that would do 3 things: Modify the UI via custom.less Add a post-install…
  • Integration Best Practices Break Out Session at SugarCon 2018

    Hello! I'm Justin Kuehlthau ( @justinkuehlthau ), Director of the Sugar Practice at Technology Advisors ( Technology Advisors, Inc. ). This was my 8th SugarCon and this year I was lucky enough to be selected as a Sugar Scholar! I learned a lot about the…
  • Why SugarCRM developers should care about Data Privacy and GDPR

    Please don’t hate me. It’s not really my fault. I am sorry to say that every single Sugar developer needs to care about the General Data Protection Regulation (GDPR) and data privacy in general. It is a sign of the times and part of the interrelationship…
  • Unknown platforms to be restricted in Winter '18 release

    In Sugar 8 / Spring '18, Sugar administrators can now configure API platforms using the Administration panel. The Platform extension is still available if you want to register a custom API platform as part of a Module Loadable Package. Sugar uses platforms…
  • 3 Tips for using the Sugar Metadata API

    What is the Sugar Metadata API? As you probably know, Sugar metadata encompasses the settings, data model ( Vardefs ), and visual layouts ( Viewdefs ) used by the Sugar application. The majority of changes made to Sugar using Sugar Studio, Module Builder…
  • How to fix Sugar input validation failures

    What is the Input Validation Framework? The Input Validation Framework is a centralized security framework used to validate that external input is provided in the expected format. Validating user input is critical because it is the basis for generated…
  • Custom API error message

    Hello to everybody, We need to control that some fields of type text only has numeric values (not ask why...) at both UI and API request level so when a regular user creates/edit a record and save it a popup tell them that they enter non numeric values…
  • How to control access on dashlets

    Hi, for a specific use case we would like to be able to control the access to dashlets. Currently , as far as I know, there is no way of configuring this. So any user can select the dashlet and we need to implement logic in de controller of that dashlet…
  • Run a php script on a field in each record

    Hey all, I need to hash a field in my custome module but need sugar to hash the field in every record and save the hash over the original value My php script to hash public function obfuscate ( $action , $string ) { $output = false ; $encrypt_method …
  • Create/Update multiple contacts/users via REST API for a meeting

    I am trying to add contacts/users to a created meeting as follows POST call to https://demo.sugarcrm.com/rest/v11/Meetings/ <record_id>/link/ body { "link_name": "contacts", "ids": [{"id": "<id of contact>", "accept_status_meetings": "accepted"}, {"id…
1 2 3 4 5 »