Auto creation field

You can use calculated fields from Workflow.

https://docs.suitecrm.com/user/advanced-modules/workflow/#_calculated_fields

Or you can use a before save logichook to concatenate the strings into your variable:


$bean->name = $bean->country .$bean->members;

More about logichooks:
https://docs.suitecrm.com/developer/logic-hooks/