• 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…
  • how to make a cloud compatible studio customization for enums

    Hi, is there a way to modify the studio view "modification of a field" in order to add some custom properties to the vardefs while being cloud compatible ? As of now we were using an admin view and the method "array_to_file" to push our custom properties…
  • Setting default values in new custom fields doesn't work

    I've created three new custom fields using a module loadable package by placing the text quoted at the bottom in manifest.php. The fields were created with no problems. When I look at these fields in Studio, I see the default values set as in manifest…
  • Can SugarBean access custom fields without using the "_c" ending?

    I have an after_save logic hook in a custom module where I'm setting the value of a field called rate_actual equal to the value of a custom field called engineer_rate_c . But, there is a typo in the code where I forgot the "_c" ending, like this: $bean…
  • Simple SugarQuery using a custom field returns no results

    I created a custom Integer field called ticket_id_c in the Cases module and I can clearly see the field having the value my code is looking for in the cases_cstm table, but I still get no results. $sq = new SugarQuery ( ) ; $sq - > select ( 'id' ) ; …