Versions Compared

Key

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

...

Normally disposition actions allow you to run an action each time a disposition is selected. This can be problematic if you need an action to fire when the lead is closed due to the No Answer retry limit being reached. This action allows you to fire a dispostion action when the limit (or some arbitry arbitrary count of No Answers) is reached.

...

Fields with the same name in each campaign are mapped automatically. You can map multiple fields by sperating separating them with an amplisand '&'.

...

To create an SQL Action you must first setup an External Connection (this is normally done by Noojee).

Arguments:

call to a stored procedure.

Example:

Code Block
linenumberstrue
call myproc(${afield}, ${anotherfield})

...


Fields

Call


Name of the stored procedure to be called.

e.g. mystoredproc

Value List

The value List can contain a comma separated list of encoded fields names that are passed to the stored procedure.

e.g.

${njLeadId}, ${phoneNo}, ${surname}, ${njDispositionAction}

This will result in a SQL call of the form:

call mystoredproc("1","0383208100", "Smith" "Sale")


Url Action


Arguments:


Arguments are formatted as name value pairs delimited by an amplersand '&'.

...