I am pretty new to SuiteCRM and I would like to know how to create custom fields. I did search and read documentation. My understanding that I need to do PHP coding for that. Is my understading correct? Any samples for that? Any documetation how to create custom fields?
How to create for example āFull Nameā calculated field that could add automatically āFirst Nameā and āLast Nameā into new custom field āFull Nameā
So does SuiteCRM offer some kind of calculated fields? The full name was just an exampleā¦ for concatenate text. Another example would be to add numbers. Is that possbile witout coding?
SuiteCRM does not have (yet) any calculated fields on layouts. You can do those with PHP (logic hooks).
It does have calculated fields in workflows, so for simple things like addition you can still get the job done. You need to create a Workflow that runs whenever the record is saved, and updates a certain field with an expression.