• 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…
  • Record View Dashlet - How do I edit module list in "Tabs"

    Hello, how can I edit the listed modules in the Record View Dashlet? Many Thanks in advance, Theresa
  • Regarding 3 dependent drop-down

    Dear All, Adding 3 dependent drop-down in my project with the help of coding in PHP . my current drop-down having 3 list items and currently working on depends only one but I want to change in drop-down depends on rest another category.
  • Has anyone done the connection with AWS Lambda?

    After creating a record we need to run a function in AWS Lambda, sending a special payload. I see that in the composer.json I have access to the AWS SDK for PHP in version 3. I was thinking of occupying a custom SugarBPM node for this task, I am hesitating…
  • Anyone had tried to implement "Least Busy" assignment disturb method on BPM?

    Hi, Have any of your SugarCRM experts tried to use the " Least Busy" method from Inbound Email to create a case in BPM? We are currently using BPM (Advanced Workflow) in our 10.2 Enterprise Cloud instance to assign any new case coming from Email. But…
  • How to get Scheduler details while a Job running?

    Hi, I have a custom scheduler and for which I have a created a scheduler job. I want to read the fields like Job URL, Status, Interval, etc from Job record in the custom scheduler code as I need to manipulate one of these field while the job is running…
  • why doesn't work the 'include(config.php)'?

    Hello everybody I am sending data by ajax from a custom module to make inquiries with the data sent, so I include a connectionDB.php with this data: include('config.php'); $db_host_name=$sugar_config[dbconfig][db_host_name]; $db_user_name=$sugar_config…
  • Notes attachment in documents module

    Good Morning. I'm trying to display the notes attachment in documents module through programmatically. But I don't know how to start the task. Will it be done through API? Francesca Shiekh
  • Which platform to use for REST API? Also questions about PHP codes and extending endpoints.

    Hello, I am in the final stages of connecting SugarCRM to our website using the REST API. There seems to be a small problem using the platform. I am using the platform "base" and it seems to be causing problems, and the website logs out when I try using…
  • Download button in popupview

    Hello been trying to add a download function in a button in popup window but its not working. im trying to add a download button that downloads a pdf file but when i press the button it doesnt do anything instead i get a blank page. ive created a file…
  • Add download pdf button in popup view

    Is it possible to add a custom button that downloads pdf ? ive tried doing it but i only get create button from this example: Link here 'searchInputs' => array ( 1 => 'payment_date' , 2 => 'payment_stage' , 3 => 'or_no' , ) , 'create' => array ( 'formBase…
  • My custom pdf not working in sugarcrm 8

    Ive been trying to generate an example pdf file in sugarcrm using the example code in the documentation in this link and tried accessing it through this url: http://sugarpro8.local.com /index.php?module=Meetings&action=sugarpdf&sugarpdf=clientpdf here…
  • How to filter through records using bean factory

    Hello Sugar Developer Community I am having difficulties accomplishing the following -- Entrypoint :: create leads JSON is sent over and the creation of the lead is underway I am passed a value that would represent a company name to place into a company…
  • Send Mail in a job

    Hi, I work with SugarCRM pro 7.6 and I want to send a mail in one of my scheduled jobs. I have tried to search a full example which explains how to send a mail in PHP but i can't find it. I try the solutions in this post: https://community.sugarcrm.com…
  • MySQL query works in NaviCat but not in SugarCRM

    If any additional information is needed that would help you solve the problem, just let me know. I'm running SugarCRM 6.5.20 CE I have a logic hook that fires for a custom module and when I go to check the log, the query shows an execution time and appears…
  • 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;…