cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
242
Views
5
Helpful
2
Replies

Warning when enabling Expanded Call variables for Outbound Option

ln33147
Level 4
Level 4

Hi all,

It is a UCCE environment with CVP and CAD.

I'm in the process of configuring the Outbound Option and I'm facing the attached warning while trying to enable the Expanded Call Variables for Outbound in Configuration Manager.

In addition to the CVP variables, I  have added one variable for CAD layout.

Can someone help me on what could be done with this issue.

Thank you in advance.

 

2 Replies 2

If you'd like to see the amount of ECC bytes you are currently using, this is a handy SQL query:

SELECT SUM(bytes) AS 'Bytes Consumed', (2500-sum(bytes)) AS 'Bytes Available'
FROM
(SELECT SUM(len(EnterpriseName)+ MaximumLength + 4) AS bytes FROM Expanded_Call_Variable
WHERE ECCArray = 'N' AND Enabled = 'Y'
UNION ALL
SELECT SUM(MaximumArraySize *(len(EnterpriseName) + MaximumLength +5)) AS bytes FROM Expanded_Call_Variable
WHERE ECCArray = 'Y' AND Enabled = 'Y') AS MyTable

 

(Someone else on Cisco forums had built that a while back, I don't recall who)

To clear space, you will need to remove, disable, or shrink some of your active ECC variables. 2500 bytes is a hard limit on the router, and you cannot increase it.

-Jameson

-Jameson

Thank you Jameson, very helpful query.