vectors

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • sutto18
    Member
    • Jun 2016
    • 5

    vectors

    My question is about building a vector
    My CM is at G3 Version V16
    this is what I want to do.
    I want to program a 2500 set with a hot line destination to a VDN.
    The VDN and vector would then give the person a choice of 1 to route to a assigned extension or press 2 to make a different call.

    My question would be for the option 2. How do I get back to DT so the person can dial a number to make a call.
  • derekf
    Whiz
    • Nov 2015
    • 29

    #2
    Something like this?

    CALL VECTOR

    Number: 27 Name: Example
    Multimedia? n Meet-me Conf? n Lock? n
    Basic? y EAS? y G3V4 Enhanced? y ANI/II-Digits? y ASAI Routing? y
    Prompting? y LAI? y G3V4 Adv Route? y CINFO? y BSR? y Holidays? y
    Variables? y 3.0 Enhanced? y
    01 wait-time 0 secs hearing ringback
    02 # Announcement 18001 plays "to route to bob, press 1. To call someone
    03 # else, press 2"
    04 collect 1 digits after announcement 18001 for none
    05 route-to number 5835 with cov y if digit = 1
    06 goto step 9 if digits = 2
    07 goto step 4 if unconditionally
    08 # Annoucncement 18002 plays "Enter the 4 digit extension"
    09 collect 4 digits after announcement 18002 for none
    10 route-to digits with coverage y
    11 stop
    12

    Comment

    • sutto18
      Member
      • Jun 2016
      • 5

      #3
      Thanks for the help. It working great

      Comment

      Loading