• Extending Advanced Workflow - Customizing actions

    Hello, Accordingly to Sugar 7.8 Technical Overview, I am trying to extend the advanced workflow by followingthe exemple given (Capitallize action ). The goal is to capitallize every fields of the bean given. I created 3 files : My JSGrouping located in…
  • Attributes.metadata missing in SugarCRM 8.0.0

    If you examine Sugar 7.8.2.2 using Chrome's DevTools, you'll see that there are many attributes under App.controller.layout.model.attributes , one of those being metadata . If you examine Sugar 8.0.0 the same way, there are much less attributes available…
  • Sugar 7.8.2.0 is not working this.model.get('field_name')

    Hi All, Sugar 7.8.2.0 is not working this.model.get('field_name'). custom/modules/Accounts/clients/base/views/record/record.js console.log( this.model.get('website') + '---'); it's return "undefined". /** * @class View.Views.Base.Accounts.RecordView …
  • Module Loader open_basedir restriction warning

    When try installing my module using the Module loader it installs successfully and works, but this is what I see in the log: Warning: is_dir(): open_basedir restriction in effect. File(custom/Extension/modules/Calls/Ext/clients/base/views/record/record…
  • 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' ) ; …
  • Unable to set HTML field of a SugarBean

    On my custom endpoint that does not require authentication I am trying to save an HTML string to a custom HTML field . Outputting the HTML string to a TextArea field shows that it is definitely working and the string is correct . In the screenshot below…
  • Cannot add related Account and Contact to a Case record on a custom API endpoint

    I have a working custom REST API endpoint in Sugar 7.8 and I even created Note records to test that it works. This endpoint does not require authentication but sets the global $current_user to the system user in order to allow the use of BeanFactory.…
  • Remove a checkbox from user profile preferences

    I want to remove the Email all invitees checkbox from the User Profile Advanced settings. I know the Users module is legacy BWC, but the Meetings module isn't and contains data for this, yet uses Smarty templates. I've been searching around but cannot…
  • sugarcrm fileDownload error after upgrade

    I received this error after I upgraded sugar7.8, Which calling my filedownload. { "error" : "need_login" , "error_message" : "No valid authentication for user." } After some Investigation found tht sugar upgraded the API calls for OAuth. Following is…