Problem routing to an external # via vector step

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • ssmokinjoe
    Hot Shot
    • Dec 2013
    • 17

    Problem routing to an external # via vector step

    Hello,
    I am trying to route a call to an external number when a digit pressed but the call gets dropped instead. I ran a trace on the vector and then displayed the even log. I will post both below in hopes that someone can hopefully tell me that I did something wrong. I have also made sure that the "Disconnect Supervision" is set to "y" on the in and out. We are Avaya on CM 6.3 Thank you for your help.

    Vector
    Number: 22 Name: MSC_Announcemen
    Multimedia? n Attendant Vectoring? n Meet-me Conf? n Lock? n
    Basic? y EAS? n G3V4 Enhanced? y ANI/II-Digits? y ASAI Routing? y
    Prompting? y LAI? n G3V4 Adv Route? y CINFO? y BSR? n Holidays? y
    Variables? n 3.0 Enhanced? n
    01 wait-time 2 secs hearing silence
    02 collect 10 digits after announcement 5733
    03 queue-to split 10 pri h
    04 announcement 5747
    05 wait-time 10 secs hearing music
    06 announcement 5707
    07 wait-time 10 secs hearing music
    08 announcement 5708
    09 wait-time 10 secs hearing music
    10 announcement 5743
    11 wait-time 10 secs hearing music
    12 announcement 5709
    13 wait-time 20 secs hearing music
    14 announcement 5711
    15 collect 1 digits after announcement 5744
    16 route-to number 9187785904xx with cov n if digit = 5
    17 wait-time 2 mins hearing music
    18 goto step 6 if unconditionally
    19 stop

    Trace
    time data
    13:27:51 TRACE STARTED 03/20/2015 CM Release String cold-03.0.124.0-21754
    13:28:13 0 0 ENTERING TRACE cid 4675
    13:28:13 22 1 vdn e450 bsr appl 0 strategy 1st-found override y
    13:28:13 22 1 wait 2 secs hearing silent
    13:28:15 22 2 collect 10 digits after annc 5733 for none
    13:28:15 22 2 announcement: board 01A15 ann ext: 5733
    13:28:23 22 3 queue-to
    13:28:23 22 3 queuing to skill 10 pri h
    13:28:23 22 4 announcement 5747
    13:28:23 22 4 announcement: board 01A15 ann ext: 5747
    13:28:51 22 5 wait 10 secs hearing music
    13:28:51 22 6 hear moh port 01A05002
    13:29:01 22 6 announcement 5707
    13:29:01 22 6 announcement: board 01A15 ann ext: 5707
    13:29:23 22 7 wait 10 secs hearing music
    time data
    13:29:23 22 8 hear moh port 01A05002
    13:29:33 22 8 announcement 5708
    13:29:33 22 8 announcement: board 01A15 ann ext: 5708
    13:29:54 22 9 wait 10 secs hearing music
    13:29:54 22 10 hear moh port 01A05002
    13:30:04 22 10 announcement 5743
    13:30:04 22 10 announcement: board 01A15 ann ext: 5743
    13:30:16 22 11 wait 10 secs hearing music
    13:30:16 22 12 hear moh port 01A05002
    13:30:26 22 12 announcement 5709
    13:30:26 22 12 announcement: board 01A15 ann ext: 5709
    13:30:49 22 13 wait 20 secs hearing music
    13:30:49 22 14 hear moh port 01A05002
    13:31:10 22 14 announcement 5711
    13:31:10 22 14 announcement: board 01A15 ann ext: 5711
    13:31:20 22 15 collect 1 digits after annc 5744 for none
    time data
    13:31:20 22 15 announcement: board 01A15 ann ext: 5744
    13:31:40 22 16 route-to number 9187785904xx cov n if digit = 5
    13:31:40 22 17 LEAVING VECTOR PROCESSING cid 4675
    13:31:40 22 17 TRACE COMPLETE cid 4675

    Event
    Event Event Event Event First Last Evnt
    Type Description Data 1 Data 2 Occur Occur Cnt
    81 No digits collected 22/16 2633 03/20/13:27 03/20/16:59 136
    31 Dial-ahead discarded 22/5 2393 03/20/14:08 03/20/16:28 3
    31 Dial-ahead discarded 22/7 2664 03/20/14:13 03/20/16:58 3
    31 Dial-ahead discarded 22/18 2236 03/20/14:21 03/20/16:15 2
    31 Dial-ahead discarded 22/11 22B4 03/20/14:30 03/20/16:18 2
    31 Dial-ahead discarded 22/13 1CFC 03/20/15:21 03/20/15:21 1
    31 Dial-ahead discarded 22/8 2004 03/20/15:54 03/20/15:54 1
    Joe Lio
    I.T. & Telephony Support
    South Florida Educational FCU
    Miami, FL
    305.270.5290
  • marzahn
    Genius
    • May 2014
    • 236

    #2
    A Different Way to "route to an external # via vector step"

    Sorry for the late reply to your very well documented issue. I had some unavoidable work load and home issues...


    Summary: You want to route calls to an external number once certain conditions are met. Before we start, here are two suggestions I would offer:
    • Start documenting (please see below) your code with the # option.
    • Use a more modular way to accomplish your goal.
    I take a different approach to all “route to” steps. Since the route-to command stops vector processing, I place those steps at the end of my vectors. And I use the “goto step” commands, which do not stop vector processing, throughout the rest of my vectors.


    Here is the way I set something like this up:
    1. Set up an entry in the coverage remote table “ch cov rem 1” for the external number.
    2. Set up a coverage path “add cov path next” that points to the new entry in the coverage remote table.
    3. Set up a virtual station pointing to the coverage path.
    4. Write the station number into the vector as below.
    15 # "Your Call maybe monitored.........."
    16 announcement 691000
    17 # Route to Q VDN
    18 route-to number 4831 with cov y if unconditionally
    19 stop
    20 # Routes out to Beacon/Boston, 800-xxx-xxxx
    21 route-to number 6680 with cov y if unconditionally
    22 stop
    Thank you,
    Bill Marzahn
    Telecommunications Administrator
    Neighborhood Health Plan of Rhode Island
    299 Promenade Street
    Providence, RI 02908-5720
    401-459-6677 (Direct "Find-me" Line)

    Comment

    • richa164
      Guru
      • Oct 2013
      • 131

      #3
      Hi Both,

      I have this working exactly as you describe , in fact i have it set so that if CM receives a valid busy signal from the route to number it will continue vector processing , this logic only happens if your route to number has coverage set to N.

      However you seem to have something else going on here can you dial this number from a local CM station??

      Comment

      • richa164
        Guru
        • Oct 2013
        • 131

        #4
        Also list trace the station that you are dialling the vdn from this will give you more info , this is probably something like COR on the VDN restricting access.

        Comment

        • marzahn
          Genius
          • May 2014
          • 236

          #5
          Dialing this number from a local CM station??

          "However you seem to have something else going on here can you dial this number from a local CM station??"

          This is precicely why I do it this way Richa. You can dial the extension internally. Moreover, if you are on a call you want to forward to this external number, it is quite easy to do so. Did that answer you question?
          Thank you,
          Bill Marzahn
          Telecommunications Administrator
          Neighborhood Health Plan of Rhode Island
          299 Promenade Street
          Providence, RI 02908-5720
          401-459-6677 (Direct "Find-me" Line)

          Comment

          • richa164
            Guru
            • Oct 2013
            • 131

            #6
            i was referring to Joe not yourself Bill with the list trace , apologies for any confusion.

            Comment

            • marzahn
              Genius
              • May 2014
              • 236

              #7
              No worries Richa!

              However, perhaps my last answer will show the benefits of this method.
              Last edited by marzahn; 04-17-2015, 06:19 AM.
              Thank you,
              Bill Marzahn
              Telecommunications Administrator
              Neighborhood Health Plan of Rhode Island
              299 Promenade Street
              Providence, RI 02908-5720
              401-459-6677 (Direct "Find-me" Line)

              Comment

              • ssmokinjoe
                Hot Shot
                • Dec 2013
                • 17

                #8
                Hello Bill,
                Thank you for the reply, I hope that the home issue have gotten better.

                I am in the process of putting your suggestion in place; I am able to dial the toll-free number from an CM phone. I will put it in place and test it. I will keep you both posted as to my results.

                Although I have been doing this job for a while I still have so much to learn.
                Joe Lio
                I.T. & Telephony Support
                South Florida Educational FCU
                Miami, FL
                305.270.5290

                Comment

                • ssmokinjoe
                  Hot Shot
                  • Dec 2013
                  • 17

                  #9
                  Originally posted by marzahn View Post
                  Sorry for the late reply to your very well documented issue. I had some unavoidable work load and home issues...



                  15 # "Your Call maybe monitored.........."
                  16 announcement 691000
                  17 # Route to Q VDN
                  18 route-to number 4831 with cov y if unconditionally
                  19 stop
                  20 # Routes out to Beacon/Boston, 800-xxx-xxxx
                  21 route-to number 6680 with cov y if unconditionally
                  22 stop
                  Bill, How do I set the description for the commented out line the way you did in the above example? I know that I can comment out a line once a valid command has been entered but not able too otherwise.

                  Thank you,

                  Joe
                  Joe Lio
                  I.T. & Telephony Support
                  South Florida Educational FCU
                  Miami, FL
                  305.270.5290

                  Comment

                  • marzahn
                    Genius
                    • May 2014
                    • 236

                    #10
                    How to Comment a Vector Step

                    I understand that you want to add just a comment lines to an existing vector. If that is not right, please let me know.

                    Since you are up to CM 6.3 Joe, using GEDI, you can comment a line or even a group of lines by entering a hash/pound (#) and pressing enter. Also since CM 5.x you get up to 99 steps and step management that was heretofore only available in the emulation editor. I can tell you that MADE MY DAY!

                    Let's say you want to add a new comment step in VEC 22 between 14 and 15. Here's how:
                    1. Press the <F6> key. this pops up the "Edit Vector" dialog.
                    2. Instead of clicking on the "Comment Line," click on the "Insert before."
                    3. Place a number in the "box" to the immediate right just like you do the the "Comment Line" selection and press enter.
                    Now then . . .How cool is that?

                    But did a answer your question?
                    Thank you,
                    Bill Marzahn
                    Telecommunications Administrator
                    Neighborhood Health Plan of Rhode Island
                    299 Promenade Street
                    Providence, RI 02908-5720
                    401-459-6677 (Direct "Find-me" Line)

                    Comment

                    • ssmokinjoe
                      Hot Shot
                      • Dec 2013
                      • 17

                      #11
                      Hi Bill,
                      That commenting feature is awesome!! I will have to go through my vectors and place a comment where appropriate.. Thanks for that tip..

                      I made the changes and added what you suggested. I still am losing the call when the option is selected. Am I missing something; I have pated my new vector below for your review.

                      Vector
                      Number: 22 Name: MSC_Announcemen
                      Multimedia? n Attendant Vectoring? n Meet-me Conf? n Lock? n
                      Basic? y EAS? n G3V4 Enhanced? y ANI/II-Digits? y ASAI Routing? y
                      Prompting? y LAI? n G3V4 Adv Route? y CINFO? y BSR? n Holidays? y
                      Variables? n 3.0 Enhanced? n
                      01 wait-time 2 secs hearing silence
                      02 collect 10 digits after announcement 5733
                      03 queue-to split 10 pri h

                      04 # Annc for BP Xfer
                      05 Collect 1 digits after announcement 5744
                      06 # Step for BP Xfer
                      07 goto step 19 if digits = 5
                      08 announcement 5707
                      09 wait-time 10 secs hearing music
                      10 announcement 5708
                      11 wait-time 10 secs hearing music
                      12 announcement 5743
                      13 wait-time 10 secs hearing music
                      14 announcement 5709
                      15 wait-time 20 secs hearing music
                      16 announcement 5711
                      17 wait-time 2 mins hearing music
                      18 goto step 6 if unconditionally
                      19 route-to number 5780 with cov y if unconditionally
                      19 stop

                      5780 is the virtual extension that I created which points to:
                      Cov pat 28 which points to:
                      Coverage remote entry 2

                      If I dial 5780 from a CM phone I get the coverage tone and the call transfers as intended; when I dial into the call center from my mobile phone and press “5” after the announcement the call gets disconnected.
                      Joe Lio
                      I.T. & Telephony Support
                      South Florida Educational FCU
                      Miami, FL
                      305.270.5290

                      Comment

                      • marzahn
                        Genius
                        • May 2014
                        • 236

                        #12
                        A Few Suggestions...

                        Joe:

                        Let's tackle the main question first. Then a few details.



                        First, that route-to should work. However I don't know wha't going on in your switch. And the vector needs work. There are two diaglostic tools that I regularly use on vectors . . .
                        1. I start with the "display events" command and select the vector This tells you if the vector is at fault.
                        2. Next I would use run: "list trace station 5780" in the emulator to see what happens when vector processing tries 5780.
                        3. If that does not would you can also use "li tra vdn 9999" where "9999" = the VDN for vec 22. This lets you watch the vector processing in its entirety until the route-to command runs.
                        If you want to figure this out yourself, try running through the above before you look at my comments below.
                        ================================================== ==========
                        01 wait-time 2 secs hearing silence
                        02 collect 10 digits after announcement 5733 . . . . . . . . {[This is not doing anything--remove or comment]}
                        03 queue-to split 10 pri h . . . . . . . . . . . . . . . . . . . . . . .{[I usually recommend a pri of "m" so you can escalate later if needed. A RONA vector is a good example.]}
                        04 # Annc for BP Xfer
                        05 Collect 1 digits after announcement 5744 . . . . . . . . .{[How many choices are there in this announcement/menu?]}
                        06 # Step for BP Xfer
                        07 goto step 19 if digits = 5 . . . . . . . . . . . . . . . . . . . . .{[I would insert a wait-time step here to give the caller a chance to respond. What are these subsequent announcements meant to do?]}
                        08 announcement 5707
                        09 wait-time 10 secs hearing music
                        10 announcement 5708
                        11 wait-time 10 secs hearing music
                        12 announcement 5743
                        13 wait-time 10 secs hearing music
                        14 announcement 5709
                        15 wait-time 20 secs hearing music
                        16 announcement 5711
                        17 wait-time 2 mins hearing music
                        18 goto step 6 if unconditionally . . . . . . . . . . . . . . . . . .{[This should goto step 4 as yoiu need to include the collect step for this to work]}
                        19 route-to number 5780 with cov y if unconditionally
                        19 stop . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . {[surely this is not a second step 19?]}

                        If I knew what each announcement said, I might have more suggestions. In any case, it might be better to reorder the vector like so:

                        01 wait-time 0 secs hearing ringback . . . . . . . . . . . . . . .{[ The way I was taught to do this]}
                        02 goto step 22 if staffed-agents in skill 1st < 1 . . . . . . . {[This insures there are agents to take calls or the calls go to 5780]}
                        03 # Q calls at MEDIUM Priority
                        04 queue-to skill 10 pri m
                        05 announcement 691015
                        06 wait-time 10 secs hearing music
                        07announcement 5707
                        08 wait-time 10 secs hearing music
                        09 announcement 5708
                        10 wait-time 10 secs hearing music
                        11 announcement 5743
                        12 wait-time 10 secs hearing music
                        13 announcement 5709
                        14 wait-time 20 secs hearing music
                        15 announcement 5711
                        16 wait-time 2 mins hearing music . . . . . . . . . . . . . . . . {[2 minutes is a pretty long wait time. This may cause some frustration and abandons]}
                        17 # BP Xfer announcement and
                        18 Collect 1 digits after announcement 5744
                        19 goto step 22 if digits = 5
                        20 wait-time 5 secs hearing silence
                        21 goto step 5 if unconditionally
                        22 route-to number 5780 with cov y if unconditionally
                        23 stop
                        Last edited by marzahn; 04-17-2015, 04:35 AM.
                        Thank you,
                        Bill Marzahn
                        Telecommunications Administrator
                        Neighborhood Health Plan of Rhode Island
                        299 Promenade Street
                        Providence, RI 02908-5720
                        401-459-6677 (Direct "Find-me" Line)

                        Comment

                        • richa164
                          Guru
                          • Oct 2013
                          • 131

                          #13
                          Bills method will work as desired , the only disadvantages are that it consumes a station licence and with your route to statement having coverage Y , it will leave vector processing ,in this scenario if the route to number is busy the call will drop , the original method you tried will retain the call in the vector and you can process to further steps in the vector.

                          But what ever works best for you.

                          Comment

                          • richa164
                            Guru
                            • Oct 2013
                            • 131

                            #14
                            What about the COR on the vdn , is that restricting via toll tables or something ??

                            Dial the VDN from your station and list trace your station and post the results.

                            Comment

                            • marzahn
                              Genius
                              • May 2014
                              • 236

                              #15
                              Possible Disadvantages?

                              Originally posted by richa164 View Post
                              Bills method will work as desired , the only disadvantages are that it consumes a station licence and with your route to statement having coverage Y , it will leave vector processing ,in this scenario if the route to number is busy the call will drop , the original method you tried will retain the call in the vector and you can process to further steps in the vector.
                              Hi Richa good to have you join the discussion. This is turning into quite a lively one.

                              May I offer these comments. You may not have noticed that I recommented a virtual extension. Plese see attached.

                              These do not use a station license as no port is required. Also I have never found that this method produces call blocking unless, of course, all trunk group (TG) members are already in use. Does this help?
                              Attached Files
                              Thank you,
                              Bill Marzahn
                              Telecommunications Administrator
                              Neighborhood Health Plan of Rhode Island
                              299 Promenade Street
                              Providence, RI 02908-5720
                              401-459-6677 (Direct "Find-me" Line)

                              Comment

                              Loading