Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

width60%

...

If enabled for your account, you can create a custom rule that determines whether ContactWorld records a call based on the outbound, or dialed, number.

The custom rule that you create takes precedence for individual calls over your default ContactWorld account settings. You can use this feature in various ways depending on how your Salesforce org is set up.

Your custom

...

rule applies to all outbound calls, whether they were initiated using Connect, Click to dial or the Make Call button in ContactPad.

To automate outbound call recording,

...

create a custom Apex class that implements the NVMContactWorld.ICustomValueProvider interface and defines the GetCustomValue method. Your GetCustomValue method must describe the logic that determines whether or not to record the call for a given number, and return a String object that tells ContactWorld the outcome.

Note
When using this feature you should make sure that your default account configuration complies with any regional legislation.

To create the custom class,

...

familiarize yourself with creating Apex classes in Salesforce. For information on creating Apex classes, see Salesforce help.

...

width40%

...

borderColor#eeeeee
bgColorwhite
titleColorwhite
borderWidth1
titleBGColor#0367a0
borderStylesolid
titleProgress

...

NVMContactWorld.ICustomValueProvider interface definition

global interface ICustomValueProvider {

...