You're almost there! Please answer a few more questions for access to the Applications content. Complete registration
Interested in joining? Complete your registration by providing Areas of Interest here. Register

automatically set the value of a custom field based on the value selected on the sales method

in Sales 1 comment

We have a requirement to automatically set the value of a custom field based on the value selected in the Sales Method field in oracle cx sales app.

This functionality is working correctly in the Redwood web application. However, the same requirement is not working in the Oracle CX Sales Mobile application.

I have configured the On Field Value Change event with SalesMethodId as the dependent field and used the following script:

if (this.SalesMethodId === '3000000000') {
this.customfield_c = 'ABC';
}
else if (this.SalesMethodId === '3000001') {
this.customfield_c = 'DEF';
}
else if (this.SalesMethodId === '30000002') {
this.customfield_c = 'GHI';

Howdy, Stranger!

Log In

To view full details, sign in.

Register

Don't have an account? Click here to get started!