• How to disable quick create menu entry for a specific module in mobile view ?

    hi, i've have to disable create for account in mobile view only. i'already set an ACL wich works great. but i see, it remains create button in subpanel and quick create menu. how can i do to remove them in mobile view ?
  • Create an account by REST API without sending user assigned notification

    Hello There is something equivalent to the php version of $bean->save(false); to avoid user email notificacion by API REST Calls? Or some variable flag on the json of rest/v10/Accounts POST? Something like the last part of this fake json example { "id…
  • How to set multiple team when create new record via logic hook

    Hi, I try to create case record and put multiple teams, one is primary team(fetch from parent) another is team id but it doesn't work. $c = BeanFactory : : newBean ( 'Cases' ) ; $c - > name = 'Test' ; $c - > status = 'New' ; $c - > assigned_user_id =…
  • how to extend default endpoints

    i want to create a url that can go directly to the create view for a subpanel. more specifically i want a url like this http://sugarcrm/#Contacts/1234-5435-6556-6557/calls/create to load the record view for the contact and then on render run some js to…
  • How do I programmatically set a datetimecombo field?

    I have tried these examples in record.js: this.model.set('my_custom_datetime_field_c', "2016-02-01 00:00:01"); this.model.set('my_custom_datetime_field_c', Date.parse("2016-02-01 00:00:01")); The first one gave this error on save: Did not recognize my_custom_datetime_field_c…