BookmarkSubscribeRSS Feed

How to Write Constraints that Use Percentages in SAS Marketing Optimization

Started ‎03-10-2017 by
Modified ‎03-10-2017 by
Views 1,720

Introduction

This tech tip describes how to implement constraints that use percentages in SAS Marketing Optimization (MO).

An example of these constraints would be:

 

We don’t know the total capacity of a channel in a given day, but we know that we want at most 60% of that channel capacity to be allocated to Mortgage and Deposit campaigns, and the remaining capacity (at most 40%) to be allocated to Online and Visa campaigns.

 

This tech tip uses the MO Sample Library available in all MO installations, and the example is developed using a demo instance that SAS has created for examples and education. There are four types of campaigns in this library: Mortgage, Deposit, Visa and Online.

 

Agents in MO

Agents are considered outbound channels in MO. The MO User Guide provides plenty of information about Agents. For this tech tip it will suffice with remembering these key items:

 

  1. An agent is related to many customers. A customer can only have one agent.
  2. Each agent has a unit_usage and capacity. Unit_usage specifies, on average, how much of the agent is used for each communication that uses that specific agent, and capacity indicates what is the max limit that each agent can be used during each time period when the optimization will run.

Sometimes the concepts are easier to understand if we have a concrete example. Let’s assume that the campaigns are optimized daily, and three channels are used: DM, email and Agent. Let’s assume that the agent unit_usage is 0.25 (per agent) and his capacity is 4 per day. That means, that a call from this agent takes approximately 0.25 hours (or 15 minutes), and the agent is available for 4 hours of calls, which means that he could reach up to 16 customers per day.

 

Measures in MO

Several Indicator and Calculated measures must be created to implement percentages. To illustrate that concept the goal in this Tech Tip is to create measures that allow us: a) to allocate 60% of the total agent capacity to the Mortgage and Deposit campaigns, and b) to allocate the remaining 40% of agent capacity to the Online and Visa campaigns. An indicator measure enables us to create a binary attribute that subsets the communications or customers based on character or numeric attributes. They can be used in other communication or customer filters, such as in suppression rules, constraints, or contact policies. For this Tech Tip, three Indicator measures were created: AgentsInMortgageAndDeposit, AgentsInMortgageAndDeposit and TotalAgentComm.

 

The photo below shows the filters used to create the Indicator measure AgentsInMortgageAndDeposit; this measure is related to the Agents used in the Deposit and Mortgage campaigns.

 

 a1.jpg

 

These were the filters used to create the Indicator measure AgentsOnlineAndVisa; this measure is related to the Agents used in the Online and Visa campaigns.

 

 a2.jpg

 

The Indicator variable TotalAgentComm represents all the agents used in this MO scenario, that is, all agents used for all possible campaigns in this scenario: Mortgage, Deposit, Online and Visa campaigns.

 

a3.jpg

 

 

Three calculated variables must be created one for each one of these three Indicator variables as the photo below shows.

  a4.jpg

 

Then one uses these variables to create constraints, as described in the next photos. The constraint agentsInMortAndDep indicates that at most 60% of the total agent capacity must be allocated to the Mortgage and Deposit campaigns. If one wants equality to 60%, then one must write an "at least" constraint.

 

photo 5.jpg

 

Similarly, write a constraint that indicates that at most 40% of the total agent capacity must be allocated to the Visa and Online campaigns. For equality, also write an "at least" constraint.

 

Caution: To avoid infeasible scenarios due to limited resources, start "only" with the "at most" constraints. In total four constraints must be written as the last four constraints in the photo below

 

a6.png

 

Run the scenario and check it is optimized.

 

Testing

Once the scenario is optimized, to verify the constraints are satisfied we can run in Enterprise Guide this code:

 

 

libname agentP "<path>\percentageAgentEquality_651\solution";
proc sql feedback outobs=5;
	select * from agentP.mo_solution;
proc sql;
	select sum(TOTALAGENTS) as totalAgent, 
		sum(TOTALMORTGANDDEPOSIT) as totalMortgageAndDeposit,
		sum(TOTALONLINEANDVISA) as totalOnlineAndVisa,
		calculated totalMortgageAndDeposit / calculated totalAgent as ratioMortgageAndDeposit, 
		calculated totalOnlineAndVisa / calculated totalAgent as ratioOnlineAndVisa
	from agentP.mo_solution;
quit;

  

Verification

Here is the output of running the code, which indicates the constraints are satisfied:

 

verification.jpg

Version history
Last update:
‎03-10-2017 09:33 AM
Updated by:

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

Free course: Data Literacy Essentials

Data Literacy is for all, even absolute beginners. Jump on board with this free e-learning  and boost your career prospects.

Get Started

Article Tags