Fire drill or other emergency issues on call centres

Hello, we've had several fire drills recently in our new building where we've had to evacuate all personell which left the phone lines open and un-staffed, so all calls coming in would either be sent to agents (if they didn't remember to log off their CAD programs before leaving) or be played some sort of High Call Volume prompt, depending on the script.
What we're looking to have is some sort of file or even steps that a manager/supervisor can quickly do to re-route all their lines to play a specific pre-recorded prompt so that callers calling in during this fire drill can hear an appropriate emergency message and be asked to call back later, or leave a message for example.
We've seen examples where we can set up an XML file similar to the Holiday.xml file that stores holiday dates and the manager/supervisor can quickly add a date to that XML file and the scripts that make reference to it will automatically play an emergency prompt. But, are there any other simpler methods to get this accomplished?
In order to have this XML file work, we have to give admin access to the IPCC server to the various managers and supervisors, and don't want to do this since this would give them access to the entire IPCC system, and they can accidentally move files around and cause issues.
Any suggestions out there?
Thanks,
Joe

Hi Joe -
There really shouldn't be a need to have that level of staff actually modifying the XML files. For static dates like Holidays or even short-notice (1 week or so) additions, the system admin should take the requests and make the XML file changes.
For dynamic changes, like the emergency evacuation (fire drill, bomb threat, etc.), the method needs to be "quick and easy". I usually recommend the allocation of a DID number (so that the process can take place via mobile phone while the supervisor is evacuating the building if needed) which triggers an Application in IPCC. The application can be protected with a configured PIN number or even use the built-in LDAP validation to allow certain users access. This application would itself modify the XML file to indicate an emergency, and the normal routing scripts would check against these before ever sending a call to queue.
What you have are 2 XML files, one which is the active file and the other which is the template.
The active file might look like this:
<?xml version="1.0" encoding="ISO-8859-1"?>
disabled
And the template like this:
<?xml version="1.0" encoding="ISO-8859-1"?>
%status%
So then the Application (after the caller verifies themselves) offers a menu of "emable" or "disable". Based on the selection, you pull up the template XML and perform a Keyword Translation (or Text Substitution for Keywords, depending on version) of keyword "status" with either "disable" or "enable" text.
Your routing scripts will simply perform a Create File Document, Create XML Document, Get XML Document Data with XPath of "/descendant::Emergency/child::Status" and take action based on the value returned.
- Bill

Similar Messages

  • Issue with calling custom function in merge command -10g

    Hi,
    I have ran into issue while calling a custom function in merge command.
    It throws error 'Invalid identifier'. Oracle doesnt understand that it is a function and take the function name as column name.
    Since no such collumn name exists, it throws 'Invalid identifier'.
    Interestingly, merge command works fine when it has a oracle function (replace, decode).
    The oracle version is 10.2.0.3
    It is very urgent.
    Any pointers will be helpful.
    Regards,
    Ravi

    I don't have privileges to create dblink, but this is working for me.
    So, i don't think function can be a issue here.
    satyaki>
    satyaki>select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for Linux: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    Elapsed: 00:00:01.02
    satyaki>
    satyaki>
    satyaki>create table hist_tab
      2     as
      3       select * from emp
      4       where sal between 2000 and 4000;
    Table created.
    Elapsed: 00:00:00.09
    satyaki>
    satyaki>select * from hist_tab;
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO JOB1      DOB
          7844 TURNER     SALESMAN        7698 08-SEP-81       2178          0         30 SALESMAN
    Elapsed: 00:00:00.00
    satyaki>
    satyaki>
    satyaki>update hist_tab
      2     set mgr = 7794;
    1 row updated.
    Elapsed: 00:00:00.01
    satyaki>
    satyaki>commit;
    Commit complete.
    Elapsed: 00:00:00.00
    satyaki>
    satyaki>select * from hist_tab;
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO JOB1      DOB
          7844 TURNER     SALESMAN        7794 08-SEP-81       2178          0         30 SALESMAN
    Elapsed: 00:00:00.00
    satyaki>
    satyaki>
    satyaki>
    satyaki>
    satyaki>create table tran_tab
      2     as
      3       select * from emp
      4       where sal between 2000 and 7000;
    Table created.
    Elapsed: 00:00:00.00
    satyaki>
    satyaki>select * from tran_tab;
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO JOB1      DOB
          7844 TURNER     SALESMAN        7698 08-SEP-81       2178          0         30 SALESMAN
          7902 FORD       ANALYST         7566 03-DEC-81    5270.76                    20 ANALYST
    Elapsed: 00:00:00.00
    satyaki>
    satyaki>ed
    Wrote file afiedt.buf
      1  create or replace function fun(c_in number)
      2     return number
      3     is
      4       c_out number(4);
      5     begin
      6       if c_in < 7900 then
      7          c_out := 0;
      8       else
      9         c_out := 1;
    10       end if;
    11       return c_out;
    12*    end;
    13  /
    Function created.
    Elapsed: 00:00:01.00
    satyaki>
    satyaki>merge into hist_tab o
      2  using (
      3     select empno,
      4            ename,
      5            job,
      6            mgr,
      7            hiredate,
      8            sal,
      9            comm,
    10            deptno,
    11            job1,
    12            dob
    13     from (
    14              select k.*,
    15                     rank() over(order by fun(k.empno)) rn
    16              from tran_tab k
    17          )
    18     where rn = 1
    19     ) n
    20  on ( o.empno = n.empno)
    21  when matched then
    22    update set o.ename = n.ename,
    23               o.job = n.job,
    24               o.mgr = n.mgr,
    25               o.hiredate = n.hiredate,
    26               o.sal = n.sal,
    27               o.comm = n.comm,
    28               o.deptno = n.deptno,
    29               o.job1 = n.job1,
    30               o.dob = n.dob
    31  when not matched then
    32    insert(
    33            o.empno,
    34            o.ename,
    35            o.job,
    36            o.mgr,
    37            o.hiredate,
    38            o.sal,
    39            o.comm,
    40            o.deptno,
    41            o.job1,
    42            o.dob
    43          )
    44    values(
    45            n.empno,
    46            n.ename,
    47            n.job,
    48            n.mgr,
    49            n.hiredate,
    50            n.sal,
    51            n.comm,
    52            n.deptno,
    53            n.job1,
    54            n.dob
    55          );
    1 row merged.
    Elapsed: 00:00:00.03
    satyaki>
    satyaki>select * from hist_tab;
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO JOB1      DOB
          7844 TURNER     SALESMAN        7698 08-SEP-81       2178          0         30 SALESMAN
    Elapsed: 00:00:00.00
    satyaki>You can check the final output with old output. It is working perfectly - i guess.
    Regards.
    Satyaki De.

  • 2 issues with call transaction to LS24

    Hello All,
    There are 2 issues with call transaction to LS24.
    <b>1) It doesn't take batch value and displays stock for all batches.
    2) When you go back, it doesn't go back to the calling program.</b>
    Any thoughts ?
    <u>Here is my code:</u>
    PARAMETERS: p_lgnum TYPE lgnum,
                p_matnr TYPE matnr,
                p_werks TYPE werks_d,
                p_lgort TYPE lgort_d,
                p_charg TYPE charg_d.
    START-OF-SELECTION.
    END-OF-SELECTION.
      PERFORM display_stock_per_batch.
    *&      Form  DISPLAY_STOCK_PER_BATCH
    FORM display_stock_per_batch .
      SET PARAMETER ID 'LGN' FIELD p_lgnum.
      SET PARAMETER ID 'MAT' FIELD p_matnr.
      SET PARAMETER ID 'WRK' FIELD p_werks.
      SET PARAMETER ID 'LAG' FIELD p_lgort.
      SET PARAMETER ID 'CHA' FIELD p_charg.
      CALL TRANSACTION 'LS24' AND SKIP FIRST SCREEN.
    ENDFORM.                    " DISPLAY_STOCK_PER_BATCH

    hello
    use this code
    perform bdc_dynpro      using 'SAPML01S' '0209'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RL01S-CHARG'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'RL01S-LGNUM'
                                  p_lgnum.
    perform bdc_field       using 'RL01S-MATNR'
                                  p_matnr.
    perform bdc_field       using 'RL01S-WERKS'
                                  p_werks.
    perform bdc_field       using 'RL01S-LGORT'
                                  p_lgort.
    perform bdc_field       using 'RL01S-BESTQ'
    perform bdc_field       using 'RL01S-SOBKZ'
    perform bdc_field       using 'RL01S-CHARG'
                                  p_charg.
    perform bdc_dynpro      using 'SAPML01S' '0209'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/EBACK'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RL01S-LGNUM'.
    perform bdc_transaction using 'LS24'.
    may be it will help u

  • PSE 11 editor has stopped importing from scanner, no longer permits drag and drop, will not permit cropping, and other bizarre issues

    Windows 8.1, PSE 11
    I am having a number of issues including loss of import functionality from scanner, I can't drag and drop photos into the editor any more as well, or at least not after the first one. The crop function stops working after the first couple of photos.  Then some freezing.  A little added crashing.  A plethora of other bizarre issues as well.  This just stated happening a couple of days ago. 
    What I have tried:
    Uninstall/Install. 
    Deleted preferences both before opening Editor (crontrol-alt-delete) and after opening it. 
    Kindly advise.  Thanks!
    Adobe Photoshop Elements Version: 11.0 (11.0 (20120830.r.32025)) x32
    Operating System: Windows 8 64-bit
    Version: 6.2
    System architecture: Intel CPU Family:6, Model:10, Stepping:9 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 8
    Processor speed: 3500 MHz
    Built-in memory: 8139 MB
    Free memory: 5185 MB
    Memory available to Photoshop Elements: 3255 MB
    Memory used by Photoshop Elements: 70 %
    Image tile size: 128K
    Image cache levels: 6
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1440, right: 2560
    Video Card Number: 1
    Video Card: NVIDIA GeForce GTX 660 Ti
    Driver Version: 9.18.13.3750
    Driver Date: 20140327000000.000000-000
    Video Card Driver: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Video Mode: 2560 x 1440 x 4294967296 colors
    Video Card Caption: NVIDIA GeForce GTX 660 Ti
    Video Card Memory: -2047 MB
    Application folder: C:\Program Files (x86)\Adobe\Photoshop Elements 11\
    Temporary file path: C:\Users\evan\AppData\Local\Temp\
    Photoshop Elements scratch has async I/O enabled
    Scratch volume(s):
      Startup, 931.2G, 805.4G free
    Required Plug-ins folder: C:\Program Files (x86)\Adobe\Photoshop Elements 11\Required\
    Primary Plug-ins folder: C:\Program Files (x86)\Adobe\Photoshop Elements 11\Plug-Ins\
    Additional Plug-ins folder: not set
    Installed components:
       ACE.dll   ACE 2011/03/29-16:11:44   63.457850   63.457850
       adbeape.dll   Adobe APE 2011/01/17-12:03:36   64.452786   64.452786
       AdobeLinguistic.dll   Adobe Linguisitc Library   5.0.0  
       AdobeOwl.dll   Adobe Owl 2012/06/20-18:39:56   4.1.9   78.509892
       AdobeOwlCanvas.dll   Adobe Owl Canvas   3.0.68   61.2954
       AdobePDFL.dll   PDFL 2011/03/29-16:11:44   63.378681   63.378681
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654  
       AdobeXMP.dll   Adobe XMP Core 2010/10/12-08:45:30   63.139439   63.139439
       AdobeXMPFiles.dll   Adobe XMP Files   5.0   61.134777
       adobe_caps.dll   Adobe CAPS   4,0,42,0  
       Adobe_OOBE_Launcher.dll   Adobe OOBE Launcher   2.2.0.4 (BuildVersion: 2.2; BuildDate: Wed Apr 27 2011 21:49:00)   1.000000
       AGM.dll   AGM 2011/03/29-16:11:44   63.457850   63.457850
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   1.486530
       aif_ogl.dll   AIF   3.0   1.486530
       amtlib.dll   AMTLib   4.2.0.4 (BuildVersion: 4.2; BuildDate: Wed Apr 27 2011 21:49:00)   1.000000
       amtservices.dll   AMTServices   4.2.0.4 (BuildVersion: 4.2; BuildDate: Wed Apr 27 2011 21:49:00)   1.000000
       ARE.dll   ARE 2011/03/29-16:11:44   63.457850   63.457850
       asneu.dll    AsnEndUser Dynamic Link Library   1, 7, 0, 1  
       AXE8SharedExpat.dll   AXE8SharedExpat   3.3   49.279053
       AXEDOMCore.dll   AXEDOMCore   3.3   49.279053
       AXSLE.dll   AXSLE   3.3   49.279053
       Bib.dll   BIB 2011/03/29-16:11:44   63.457850   63.457850
       BIBUtils.dll   BIBUtils 2011/03/29-16:11:44   63.457850   63.457850
       boost_threads.dll   DVA Product   5.0.0  
       cg.dll   NVIDIA Cg Runtime   2.0.0015  
       cgGL.dll   NVIDIA Cg Runtime   2.0.0015  
       CoolType.dll   CoolType 2011/03/29-16:11:44   63.457850   63.457850
       data_flow.dll   AIF   3.0   1.486530
       dvaadameve.dll   DVA Product   5.0.0  
       dvacore.dll   DVA Product   5.0.0  
       dvaui.dll   DVA Product   5.0.0  
       ems.dll   Elements Organizer   11.0  
       ExtendScript.dll   ExtendScript 2010/03/05-08:21:15   61.423205   61.423205
       FaceDetector.dll   FaceDetector 0000/00/00-00:00:00   2.0.1.1   2.0.1.1
       FileInfo.dll   Adobe XMP FileInfo   5.0   61.134777
       filter_graph.dll   AIF   3.0   1.486530
       hydra_filters.dll   AIF   3.0   1.486530
       icucnv36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896  
       icudt36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896  
       image_compiler.dll   AIF   3.0   1.486530
       image_flow.dll   AIF   3.0   1.486530
       image_runtime.dll   AIF   3.0   1.486530
       JP2KLib.dll   JP2KLib 2011/03/29-16:11:44   63.196876   63.196876
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       MPS.dll   MPS 2011/05/24-09:45:42   63.464027   63.464027
       MSVCP100.dll   Microsoft® Visual Studio® 2010   10.00.30319.1  
       MSVCP71.dll   Microsoft® Visual Studio .NET   7.10.3077.0  
       MSVCR100.dll   Microsoft® Visual Studio® 2010   10.00.30319.1  
       MSVCR71.dll   Microsoft® Visual Studio .NET   7.10.3052.4  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop Elements Editor   11.0  
       platform.DLL   Adobe Help System   1, 0, 0, 1  
       Plugin.dll   Adobe Photoshop Elements Editor   11.0  
       PSArt.dll   Adobe Photoshop Elements Editor   11.0  
       PSViews.dll   Adobe Photoshop Elements Editor   11.0  
       ScCore.dll   ScCore 2010/03/05-08:21:15   61.423205   61.423205
       shfolder.dll   Microsoft(R) Windows (R) 2000 Operating System   5.50.4027.300  
       Tbb.dll   Intel(R) Threading Building Blocks for Windows   2, 2, 2009, 1011  
       updaternotifications.dll   Adobe Updater Notifications Library   2.0.0.15 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   2.0.0.15
       WRServices.dll   WRServices Thursday January 21 2010 12:13:3   Build 0.11423   0.11423
    Required plug-ins:
       Accented Edges 12.0
       ADM 3.11x01
       Angled Strokes 12.0
       Auto Divide 11.0.0.0 (11.0 (20120830.r.32025))
       Average 12.0.2
       Bas Relief 12.0
       BMP 12.0.2
       Camera Raw 7.4
       Chalk & Charcoal 12.0
       Charcoal 12.0
       Chrome 12.0
       Clouds 12.0.2
       Color Halftone 12.0.2
       Color Variations 12.0.4 (12.0.4x001)
       Colored Pencil 12.0
       Comic NO VERSION
       CompuServe GIF 12.0.2
       Conté Crayon 12.0
       Correct Camera Distortion 12.0.2
       Craquelure 12.0
       Crop and Straighten Photos Filter 12.0.2
       Crosshatch 12.0
       Crystallize 12.0.2
       Cutout 12.0
       Dark Strokes 12.0
       Difference Clouds 12.0.2
       Diffuse Glow 12.0
       Displace 12.0.2
       Dry Brush 12.0
       Extrude 12.0.2
       FastCore Routines 12.0.4 (12.0.4x001)
       Fibers 12.0.2
       Film Grain 12.0
       Filter Gallery 12.0
       Fresco 12.0
       Glass 12.0
       Glowing Edges 12.0
       Grain 12.0
       Graphic Novel NO VERSION
       Graphic Pen 12.0
       Halftone Pattern 12.0
       Ink Outlines 12.0
       Lens Blur 12.0
       Lens Flare 12.0.2
       Lighting Effects 12.0.4 (12.0.4x001)
       Liquify 12.0.1
       Matlab Operation 12.0.4 (12.0.4x001)
       Mezzotint 12.0.2
       MMXCore Routines 12.0.4 (12.0.4x001)
       Mosaic Tiles 12.0
       Multiprocessor Support 12.0.4 (12.0.4x001)
       Neon Glow 12.0
       Note Paper 12.0
       Ocean Ripple 12.0
       OnEdge 1, 0, 0, 1
       Paint Daubs 12.0
       Palette Knife 12.0
       Patchwork 12.0
       Pen and Ink NO VERSION
       Photocopy 12.0
       Picture Package Filter 12.0.4 (12.0.4x001)
       Pinch 12.0.2
       Pixar 12.0.4 (12.0.4x001)
       Plaster 12.0
       Plastic Wrap 12.0
       PNG 12.0.2
       Pointillize 12.0.2
       Polar Coordinates 12.0.2
       Polar Coordinates 12.0.4 (12.0.4x001)
       Poster Edges 12.0
       Radial Blur 12.0.2
       Read Watermark 4.0
       Reticulation 12.0
       Ripple 12.0.2
       Rough Pastels 12.0
       Save for Web & Devices 12.0
       ScriptingSupport 12.0.4
       Shear 12.0.2
       Smart Blur 12.0.2
       Smudge Stick 12.0
       Solarize 12.0.2
       Spatter 12.0
       Spherize 12.0.2
       Sponge 12.0
       Sprayed Strokes 12.0
       Stained Glass 12.0
       Stamp 12.0
       Straighten and Crop Image 12.0.4 (12.0.4x001)
       Straighten Image 12.0.4 (12.0.4x001)
       Sumi-e 12.0
       Texture Fill 12.0.4 (12.0.4x001)
       TextureSelect 12.0.4 (12.0.4x001)
       Texturizer 12.0
       Tiles 12.0.2
       Torn Edges 12.0
       Twirl 12.0.2
       Underpainting 12.0
       Water Paper 12.0
       Watercolor 12.0
       Wave 12.0.2
       WIA Support 12.0.4 (12.0.4x001)
       Wind 12.0.2
       ZigZag 12.0.2
    Optional and third party plug-ins:
       Frame From Video 6.0
       Magic Extractor 12.0.4 (12.0.4x001)
       PhotomergeUI 12.0.4 (12.0.4x001)
    Plug-ins that failed to load: NONE
    Installed TWAIN devices: NONE

    Final Update: ...god willing...
    OK! Check it, like I said in previous posts I seemed to have narrowed it down to specific mp3s not converting and playing in their native sample rate which if paired with another sample would give you the "audio midi sync" error and basically screw up your clock! It appears mp3 files converting to mp3 using iTunes would not convert to the correct sample rate if set to something other than 44 in logic and cause this. A tad peculiar Apple iTunes won't work with Apple Logic. I was able to confirm this on two mac's via my friend in Florida. He's running Tiger and tried the same experiment and Booya! Mickey Mouse! It appears this insane week long adventure has came to an end (...god willing) with a super specific unlucky shot in the dark on my part finally revealed to be an perfectly normal function of Logic (obviously one i'm not fond of..) As far as the errors / crashes / system overloads / kernal panics I think I can sort those out to the mackie onyx satellite not being a good choice and trying to add and remove firewire devices in the middle of the sample rate mayhem. Wow! all I can say is, I'm glad it's over
    Wish me a lot of luck in the future.. I'm sure i'll need it!

  • Why dose not see the call waiting notification when other party in a call with some one ?

    why dose not see the call waiting notification when other party in a call with some one ?

    Because that is not a feature of the iPhone (or of most phones). If someone does not answer when you call, it means they do not want to or cannot talk to you at that time. They could be on another call or they could be simply busy doing something else. Why does it matter which?

  • TS1630 i can hear other people who is calling me but he cant hear me?

    i cant hear other person who is calling me but he can listen me.

    http://www.ifixit.com/Answers/View/59246/I+can't+hear+my+phone+calls+unless+I+pu t+it+on+speaker.
    DO this and thank me later

  • S4LEAGUE AND OTHER GAMES ISSUE - INTERFERENCE WITH...

    Infinity is fine for other stuff except certain web games e.g.
    S4LEAGUE AND OTHER GAMES ISSUE - INTERFERENCE WITH SERVERS
    Issues
    Random disconnects
    slow connection
    slow client server
    Google searches suggest it might be a BT issue.
    Can you help, thanks

    using wired or wireless connection?
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Why the iPhone dose not show the witting in case if the other person have a call and I'm on witting?

    Why the iPhone dose not show the witting in case if the other person have a call and I'm on witting? really I'm dissappointed with this point Why we do not have this service?

    That is not a feature of the iPhone (or of any phone I've ever had so apparently it's far from universal). Apple has not said why they have no such feature.
    You can request such a feature here:
    http://www.apple.com/feedback
    Either the person you're calling will answer you or they won't. What difference does it make why?

  • Mac os x . Face Time - I connect to the other person and the call futs off and ends immediately.Please could someone help?  Thanks.

    Mac os x . Face Time - I connect to the other person and the call futs off and ends immediately.Please could someone help?  Thanks.

    What version of FaceTime are you using? The current one for 10.6 is 1.0.5.
    FaceTime calls after April 16, 2014 – Unable to make or receive
    FaceTime Troubleshooting

  • I recently uninstalled itunes to fix other computer issues. I was told I was able to reinstall and through my apple account could retrieve all my music.. I just don't know how. Can someone please help me? Thanks

    I recently uninstalled itunes to work on other computer issues. I was told I would be able to reinstall itunes, and through my apple account retrieve all of my music. I just don't know how to do that. Can someone please help me? Thanks!

    okay, I figured it out. But for anyone else with this same issue. Open up your itunes. On the panel, on the left hand side, click downloads. It won't show your old stuff, but on the botttom right hand side, there will be a button you can left click that reads "download previously purchased" and everything shows. You just select all and confirm download. YAY! Glad  I got my music back :-) Hope this helps

  • Iam not able hear the other person voice while calling.

    hi there

    swonz wrote:
    I had Sony aked me to go to settings and select smart connect to delet all data. But it still had a problem. The headset jack and plug on phone are clean. One thing I believe that caused the problem is software update by Android on Lillipop. All calls on normal, WhatsApp, Viber and Line are fine for the earpiece and Mic. Only Skype for which the mic does not work. However, when I call the other person and he picks up the call, the mic works when I pull out the plug and reconnect the plug again. It works all the time that way. So it could be software for Andriod and Skype.Hi, we had the same problem on this new android version. I found a solution-need to remove the headset jack from mobile phone and then return it again then the other person can already hear you. if you do a call on skype with headset on it, the problem will happen again after the other person answer your call. then you need to remove again the headset and reconnect. hope it will temporarily solve our problem. but we need skype to help on this. 

  • Can this be safely removed and how without causing other security issues???

    Having repeated problems with FF hanging and/or closing unexpectedly. Problem listed is always "plugin-container.exe has encountered a problem and has to close". Running version 3.6.15. Can this be safely removed and how without causing other security issues???

    Disable the plugin-container for some or all 4 plugins. <br />
    http://kb.mozillazine.org/Plugin-container_and_out-of-process_plugins#Disabling_crash_protection

  • BT "customer service" and Call centre processes......

    I have been having intermittent drop outs on my wifi network for about 2-3 weeks now.  I have a laptop, desktop and two notebooks connected (not all the time).  So i took my laptop to a friend to check if it were the PC that was causing the issue, not surprisingly it did not.  As the remaining 3 networked PC's also had a common problem, it made sense that a common fault existed.  Therefore either the line into the house or the router was at fault.  so, I checked the helpful BT step by Step checklist in regards fault finding - all checked out - but then again why wouldn't it as the fault is intermittent.
    As we have had no audible issues (checked with neighbours in case the telephone exchange was faulty), I phoned the "helpdesk.  Got a nice guy called Abhay, who diligently went though his spiel.  After 25 minutes of me trying to explain that the fault was intermittent and that all I wanted was a new reliable router sending out (the current one is 2 years old) we arrived at this conclusion (and confirmed by his supervisor).
     1. I would need to be in front of my PC and home router to go through one of his technical colleagues checklists.
    2. The fault was recorded on my Call Centre Notes as intermittent and that it may not repeat under test conditions
    3. Upon completion of the checklist regardless of the outcome of the troubleshooting, I was to request a replacement router be sent out - a fact also recorded on my call centre notes.
    4. It was confirmed that this was the case that the check list would need to be completed but regardless of the outcome a router would be despatched immediately upon conclusion, "as it probably was the router given the fault and age".
    I asked then, why it was necessary to call back and waste my time and bt resource ticking a box if the act of ticking the box has not influence on the outcome.    All I want is a new router (and a good reliable service) which will be forthcoming after the fruitless box ticking exercise.  I asked if he would be able to just send me a router now, he said not.  I asked if I could escalate to someone who could authorise a new router, he said not.  So I have to phone back and waste more time to get what we all know will be the eventual outcome.
    I know there are processes, but why are there not supervisors/managers in BT who can a) think about customer expectations, b) consider the impact on customer’s time and BT resource in regards rigidity, c) think beyond a checklist, d) satisfy the needs of their customers?
    I bet that bloke out of "my family" never has this issue - and don't get me started on Infinity....Virgin media is beginning to look more and more appealing (never had a problem with Virgin customer services in the past - holidays, mobile and healthcare - there is a theme about brand evangelists and customer loyalty  here.  Virgin treat their customers as honoured guests where you (BT) seem to think you have a god given right to provide service and customers are loyally bound to the brand – I have been a BT customer as long as I’ve owned my house (25 years ish), and remained loyal but this is not the way customers should be treated.

    These people don't give a hoot.  It's not about "developing a customer relationship" or meeting basic expectations.
    Customers are treated as problems -- to be palmed off with a line (I have heard multiple stories as to what my oustanding fault is (2 months now and I phone every few days)).
    They don't appear to communicate at all with each other -- even if you have phoned up every few days for months they will act as if that is the first time you have phoned.  You will be asked the same questions again and again -- what type is your line box I have answered probably a dozen times recently.  What is your telephone number when you have already dialled it in.  I even went through a month or so last year when they were denying I was a customer. They don't record anything. They are completely disorganised.  They go through the motions of a line test again and again to seem to be effectual.  The indians are apologetic and you can believe it -- but the British aren't.
    I think you've hit it on the head that the culture of the state owned monopoly BT has perpetuated (at least in the UK). They think we owe them a living.

  • Failed Call Centre Support

    Last month, I contacted BT asking if my exchange is getting an upgrade or not, and one of the guys at call centre said that my exchange will get fibre optic today (2nd February).
    Today, I've been checking the BT Infinity availability and it says I only can get BT Total Broadband which is fed by the aging cobber cables, speedtesting and checking my exchange information on Sam Knows - nothing have altered. Obviously my exchange haven't been upgraded.
    Now, why did the call centre give a customer such inaccurate information?

    Because IMHO they tell you anything to get you off the line as quickly as possible..
    When I recently joined BT I took a package BB,Vision & Calls, I had confirmation of everything apart from when the calls would be activated so I called the helpline and turns out due to an error the order had not been placed. Fair enough these things happen and a second order was placed and was given a date of 28/01/10 for activation.
    This date passed and I was still being billed by Virgin so you guessed it called the helpline. I was told by the helpful advisor oh yes your calls are most certainly with BT now and we are billing you for calls. With this I contacted Virgin to see why they were charging me only to find BT had sent no request to cancel the CPS on the line and calls were indeed still with Virgin.
    Another call to the BT helpline confirmed this was the case and a 3rd order had to be placed. So why was I told my calls were with BT by the previous advisor, mistake or lie you make your own mind up.
    I have also had problems with broadband but that's on another thread, on one contact to the helpline discussing my IP profile it suddenly occurred to me the advisor had no clue what an IP profile was but was still quite happy to make things up as she went along. After asking if she knew what it was she put me on hold and come back saying there is a fault in my area and that is why I am being disconnected and losing internet access. Bizarre as I have not been getting disconnected or losing internet access at all.
    I concluded she did not have the technical knowledge to answer my enquiry so just decided to make this up to get me off the line. How can this be helpful in any way?
    I have worked in a call centre and not saying they are all the same but the management seem obsessed with call times, the quicker you get them off the phone the better as more calls are handled per hour/day ect. This pressure feeds down to the advisor and pressure is on to deal with your call as quickly as possible.
    This only leads to one thing, poor customer service. The thing is the ones who lie or say anything to get you off the phone have good call times and management are happy. However if like me you actually wanted to help and spent a little time trying to resolve something your calls are longer and you are under performing.
    I used to argue the case if you deal with it properly the first time yes the call is longer but it does mean the customer does not have to call several times with the same issue and it is better for the customer.
    I think this is what is happening with BT technical helpline and they much prefer shorter call times to happy customers, even if that means telling you what you want to hear because it's so much easier and quicker that way and lets face it there is no chance you will get the same person again and when you do call back angry you will get someone else to speak to anyway.
    When I come to BT I knew there were cheaper services out there and the BB is quite expensive compared to some but I assumed paying a premium price I would get a quality service and good support should I need it. Well I have needed it and it sucks!
    Apart from the moderators on this forum they are great and will do anything they can to help, shame they can't go to the call centre and teach them some good old customer service skills.

  • Business One for call centre

    Hi friends
    One of my prospect is in call centre business
    he makes outbound calls to close the deals (the item is service) he requires system generated reminders for telephone calls
    there are no production or inventory related issues.could you pl suggest how to map this in business one..

    You could also consider the addon for service call. here is a brief explanation about it :
    Repetitive Invoicing and Service Call Management for SAP Business One
    'Repetitve Invoicing and Service Call Management' is an addon module for SAP Business One. Developed inside the UI, it allows users to create and schedule repetitive service calls for their customers' sites. Users can also create customer equipment cards, based on agreed service contracts, as well as manage the recurring billing process associated with providing those services..
    Check it in the service.sap.com/smb
    Rgds,

Maybe you are looking for