Does anyone know if is is possible to set up a field value in business rules by combining 2 strings? For example change the title to something like "Account name - Customer need"? Hope this is achievable without programming as this is really a basic "no code" functionality...
You could do it with a no code approach by creating a process that starts on the record added or modified that reads the record, then sets the field value by combining the two values. The down side to this approach is that the user won't see this value until they refresh the page.
I realize you're after a no code approach, however, if you want to do this with code, you can add something like this to the methods of the page - this will set the name when the record is saved (assuming the field names are correct):
save: function(){
var account =this.get("Account");
var need =this.get("LeadType");if(account && need){this.set("Name", account.displayValue+" - "+ need.displayValue);}this.callParent(arguments);}
(btw, I don't know why formatted code doesn't format code correctly on these forums, but the && is supposed to be &&)
You need to save string text as localizable strings in the required edit page schema. While saving, save the string as below,
Name: UsrAlertText
Value: "The number of concert halls is limited and no more than {0} daily programs can be active at a time."
As Akshaya mentioned above, you can get the system setting value using the code given by her. The replacement of text can be done using the below mentioned code.
var Text = Ext.String.format(this.get("Resources.Strings.UsrAlertText"),SystemSettingValue);
Here, in Text variable you will get the needed text.