• should be compatible with SugarBean::save

    Me ayudan, por favor estoy tratando de ejecutar la versión community 6.5.22 en xamp con php 7.0 pero me muestra estos errores Warning : Declaration of SugarEmailAddress::save($id, $module, $new_addrs = Array, $primary = '', $replyTo = '', $invalid = …
  • Get Field name by its Display label

    Hello, i want to get a field name by its display label. also to know if it exist or not in the bean (for example, Lead bean) i already know how to check if field exists by its name: $FieldDefArray = $lead->getFieldDefinition($name); but how can i get…
  • How to change Currency Fields on the DetailView using the Sugar Bean

    I am using SugarCRM 6.5.20 CE. I have access to the database and all files associated with this installation. Problem: Add the '$' sign before fields that contain currency. Solution: $this->bean->final_sale_amount_c = '$' . $this->bean->final_sale_amount_c;…