How to record calls ?

Dear All,
I have CME version 4.1 and required from me to record calls (Internal and external)and I  searched about that issue with Cisco but nothing found .Please I need confirmation to this info and if so what third party application I can use it .
Thanks

you need third party server and software application.
try google search voip recording
there are many including free

Similar Messages

  • How can I call multiple records(40) at same time as webservice ?

    Hi All
      My scenario is some thing like calling SOAP(Webservice) to Rfc(BAPI)
      Thing is how can i call multiple records at the same time using the SOAP
       adapter i.e i need to make a request to BAPI and in the BAPI response
       based on the fields, i need to send to different records....it is Sync call
    Can any explain me how to implement this scenario ?
    Regards
    Kiran lvs

    HI,
    Please see the below link
    http://help.sap.com/saphelp_nw04/helpdata/en/42/ed364cf8593eebe10000000a1553f7/content.htm
    Regards
    Chilla..

  • How to record a phone call in my iphone?

    how to record a phone call in my iphone?

    That's not a feature of the iPhone. You would have to route your calls through a 3rd party service to do so.

  • How can i record call when i use handfree

    How can i record call when i use handfree

    Define hands-free, are you using a headset/Bluetooth?
    To note, Recording is not a natively supported function of the iPhone. There are laws regarding this... and in America, both parties have to be notified/in-knowledge of being recorded.
    Where are you from? If outside the USA, Google Voice won't work.
    Have you looked into a VoIP provider that supports what you wish to do?

  • How do I call an Application Module method from a EntityImpl class?

    Guys and Gals,
    Using Studio Edition Version 11.1.1.3.0.
    I've got a price update form, that when submitted, takes the part numbers and prices in the form and updates the corresponding Parts' price in the Parts table. Anytime this Parts view object's ReplacementPrice attribute is changed, an application module method needs to be called which updates a whole slew of related view objects. I know you can modify view objects via associations (How do I call an Application Module method from a ViewObjectImpl class? but that's not what I'm trying to do. These AppModuleImpl methods are the hub for all price updates, as many different operations may affect related pricing (base price lists, price buckets, etc) and hence, call the updatePartPricing(key) method.
    For some reason, the below code does not call / run / activate the application module's method. The AppModuleDataControl exists and recordPartHistory(key) is registered and public. At runtime, the am.<method> code is simply ignored, and as a weird side-effect, I cannot navigate out of my current page flow.
      public void setReplacementPrice(Number value)
        setAttributeInternal(REPLACEMENTPRICE, value);
        AppModuleImpl am = (AppModuleImpl)this.getDBTransaction().findApplicationModule("AppModuleDataControl");
        Key key = new Key(new Object[]
            { getPartNumber() });
        am.recordPartHistory(key);  // AppModuleImpl method which records pricing history
        am.updatePartPricing(key); // AppModuleImpl method which updates a whole slew of related pricing tables
      }Any ideas?

    Thanks Timo.
    Turns out the code provided was correct, but the AppModuleImpl method being called was not. A dependent ViewObject wasn't returning the row I was expecting. I then tried to perform some operations on that row, which in turn ... just stopped everything, but didn't give me an error.
    It was the lack of the error that threw me off. I had never messed with calling an AppModuleImpl method from the EntityImpl so I assumed that's what was messing up.
    You are correct. It is available from the ViewRow, but I thought it better to put it in the EntityImpl. This method will be called every time the replacement cost is modified. If I didn't put it in the EntityImpl, I'd have to remember to call it every time a replacement cost changed.

  • How to record incoming

    hi
    can u pls tell me how to record incoming and outgoing calls on iphone 4s? plsssssssss

    That's not a feature of the phone. There is no way to do that without routing the call through a 3rd party service.

  • How to record the users who opened the email?

    Hi,
    After the email reaches the users' mailbox, I would like to record if a user opened the email or not. How can I call back to one of the commands in my server to make the recording? In other words, what should I include in the html or jsp file when I generate the email content in my server? Thanks a lot!
    best regards,
    Jen

    Answer is log files.... develop your program in such a way that it keeps logs for
    events like... sending a email, retrieving emails... which user is logged in and
    so on...
    i think this is the most simple and practical way to do this task
    have fun

  • How do we track how many records INSERT/UPDATE/DELETE per day

    Hi All,
    We have around 150 tables in database. so many members/persons can access these table and every one can have rights to do INSERT,DELETE,UPDATE the records. I wanted to know How many records are UPDATED,INSERTED,DELETED for a day. is it possible to find out.
    I have some questions please clarify the doubts.
    1> If we create any table, this table gets store in All_OBJECTS/USER_OBJECTS, tabs/tab/user_tables...... we can find out table name,columns what tables were created in database.
    2> if we enter records/ delete records / update records in a table. we can able to find corresponding table. Apart from corresponding table . is there any way to find out records.
    above i said that if i create any table it will store in objects table.

    Schedule a periodic DBMS_STATS.FLUSH_DATABASE_MONITORING_INFO and query USER_TAB_MODIFICATIONS. This view shows DML activity against each table and is updated when database monitoring info is flushed. The flush is automatic but if you need control over the frequency of updates, you can explicitly call the FLUSH.
    In 9i you have to "ALTER TABLE table_name MONITORING ;" before you can use this method.
    In 10g, this is enabled by default unless STATISTICS_LEVEL is set to BASIC.
    See http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/statviews_4465.htm#sthref2375
    and
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/tables.htm#ADMIN01508
    Another useful view is V$SEGMENT_STATISTICS (or the faster view V$SEGSTAT) which provides information in the same manner as in the V$SYSTAT / V$SESSTAT views.
    Hemant K Chitale
    http://hemantoracledba.blogspot.com

  • How to keep track of how many records to display in a page.

    Hi All:
    I am using Weblogic 9.2, Web Services Client, and Struts.
    I have a java client in struts that calls a web services.
    The "ID" field contains a Java integer.
    The "First_Name" is a Java String.
    The "Effective_Date" field is a Java date field.
    The web service returns an arrayList of a class called Result.
    Code for Result.java:
    >
    public class Result
    int id;
    String first_Name;
    Date effective_Date;
    public int getId
    return id;
    public void setId(int id)
    this.id=id;
    public String getFirst_Name()
    return first_Name;
    public void setFirst_Name(String first_Name)
    this.first_Name = first_Name;
    public Date getEffective_Date()
         return effective_Date;
    public void setEffective_Date(Date effective_Date)
         this.effective_Date=effective_Date;
    From the arrayList, I displayed the result as the following:
    ID FIRST_NAME EFFECTIVE_DATE
    3 John 9/10/2007
    2 Andrew 1/11/2006
    5 Peter 3/4/2006
    The "ID" header is a link.
    The "First Name" header is a link.
    The "EFFECTIVE_Date" is a link.
    If I clicked on the link "ID", the first time, it will sort the rows in ascending
    order like the following:
    ID FIRST_NAME EFFECTIVE_DATE
    2 Andrew 1/11/2006
    3 John 9/10/2007
    5 Peter 3/4/2006
    If I clicked on the link "ID", the second time, it will sort the rows in descending
    order like the following:
    ID FIRST_NAME EFFECTIVE_DATE
    5 Peter 3/4/2006
    3 John 9/10/2007
    2 Andrew 1/11/2006
    If I clicked on the "First_Name" field the first time, it will sort the rows in
    desceding order.
    If I clicked on the "First_Name" field the second time, it will sort the rows in
    ascending order.
    This applies the same for the "EFFECTIVE_DATE".
    If the arrayList returns 80 records of class Results.java.
    I needed to displayed only the first 50 records for the first page and 30 records for the second page.
    How do I keep track of that so that when I am in the second page, I know to display only record 51 to 80?
    If I have a arrayList that returns 120 records of class Results.java.
    In the first page, it displayed only 50 records.
    In the second page, it displayed only 50 records.
    In the third page, it displayed only 20 records.
    Assuming I am able to sort the rows by ID, FirstName and Effective_Date by using Results.java implementing the
    Java Comparator class. Is it still possible to keep track of how many records displayed in the first page and how many records should
    be dispalyed in the second page?
    Any hint would be greatly appreciate.
    Yours,
    Frustrated.

    Hi,
    Access the table through SM30. It comes blank as standard. Click "New Entries" and make entries for changes to be tracked. For example, whenever an org. unit changes 002 and 003 relationship, you will make entries like:
    01 O 1001 B002 Activate box checked
    01 O 1001 B003 Activate box checked
    Here, 01 is your active plan version, O is org. unit, 1001 is infotype and B002 and B003 are the subtypes. You can also use * for infotype and subtype which means every change will be logged.
    If you then run the report RHCDOC_DISPLAY through SA38, it will pick up all the changes pertaining to B002 and B003 relationship for org. units (in the above example).
    Similarly, you can set up this table for other object types.
    For more information, follow SPRO>Personnel Management>OM>Basic Settings>Activate change documents and go through the documentation for that node. Also, read up the documentation for the report.
    Hope this helps.
    Donnie

  • How to record the data against time?

    Hi there,
    I am doing a real-time measurement, and i get a 1-D dataflow  from the loading cell without time stamp.  I know how to record it and save it to a file. However, how to store the data against time? I know I can use "get date time in seconds.vi" to obtain the system time, but how to integrate it with the dataflow from the loading cell? it would be best if I can view the dataflow changing with respect to the system time in a waveform chat.
    Thanks.
    Mike

    You are doing a measurement with what? NI DAQ card or something else? The chart and saving to file are two different things. For an example of displaying time in a chart, look at the example called Real-Time Chart. How exactly do you want the time/measurement data written to file?

  • How to record AutoAttendant Unity Express 8.6

    Hi,
    I was wondering how to record an AutoAttendant message in Unity Express 8.6?  I would rather call into the system to do it rather than create a .wav file and upload it.  
    I think there is a way to call in and record it but I sure have not found out how.  I was reading about the AvT system but not sure how to use that either.

    HI Suresh,
    Thanks for reply,
    1)i have create the one CTI route point in CUCM, add one dn no:8000 and check the forward all checkbox.
    2) I have upload the greeting through System----> Prompts
    3) Create one Script(aascript.aef),  System---Script--map to .wav greeting
    4) Go to Voice mail option--Voice mail--- Click on -autoattedant--add to call-in no:8000 and script.--Save.
    but i am dailing 8000, it says---there is no mail box is creating this number.
    please help on this any configuration are missing.
    thanks & regards,
    Johnson. 

  • Nokia 1661: speakerphone, audio recording, call h...

    The Nokia 1661 support page specifications state that this phone has:
    "Integrated hands-free speakerphone"
    "Voice and audio recording"
    "Call waiting, call hold"
    Searching the Nokia site and five different Nokia 1661 manuals have provided no assistance in using these features much less what the odd symbols next to 1, *, and # keys represent and what the 3rd port (between charge and earphone) is for.  Are these keys somehow related to "hold", "record", and "speaker" functions?
    How do I use the advertised features listed above?
    What are the alternate functions for the 1, #, and * keys?
    Is there a PC data cable made for this phone (I verified this phone supported Nokia PC Suite before purchased, but now...)? 
    Thanks for any help, I am getting discouraged,
    Scott

    Integrated hands free speaker phone> during a call move the phone from your far and look at it you'll see a loud speaker option(usually the left selection key) Voice and audio recording> should be under Menu>media this can be used to record conversation or anything else(on some phones it can record the radio playing on the phone or telephone conversations) Call waiting> this tells the network to alert you with a beep when you're on a call and there's another incoming call, if you look at the phone it will show you who's calling and will give you the option to answer and the other call is automatically put on hold. You can also put a call on hold by pressing options>hold then when you're done options>unhold to get back to your conversation
    Show your appreciation. Hit that kudos button real hard

  • How to record drawing strokes ?

    hi,
    My goal is to make a flash application that can do this things :
    - basic drawing application (i can handle this part)
    - record the strokes of the user
    - save the datas that record each strokes in a single file, let's call it my-drawing-data-file
    - load my-drawing-data-file back in the flash application
    - playback my-drawing-data-file in order to watch a kind of movie which shows the drawing that "draw" itself
    A good example of that application can be found on drawingnow.com. So i know it is possible but how...?
    Any ideas how they make it ?

    Hi,
    Here is a very rough idea on how to record and playback drawing.
    Capture the drawing:
    - the drawing points are stored in an array "_pointArray"
    - the json encoded string of "_pointArray" is posted to the server.
    - In server-side, save the string to a file or database.
              private function mouseDownHandler(e:MouseEvent):void{
                   //start new segment
                   moveTo(stage.mouseX,stage.mouseY);
                   //mark the point as starting point , "newline=true"
                   _pointArray.push({x:stage.mouseX, y:stage.mouseY, time:getTimer(), newline:true});
              private function mouseMoveHandler(e:MouseEvent):void{
                   if(e.buttonDown){
                        //draw line
                        drawLine(stage.mouseX, stage.mouseY);
                        //record the points
                        _pointArray.push({x:stage.mouseX, y:stage.mouseY, time:getTimer()});
              private function moveTo(x:Number, y:Number):void{
                   this.graphics.moveTo(x,y);
              private function drawLine(x:Number, y:Number):void{
                   this.graphics.lineTo(x,y);
              private function saveData():void{
                   var json:JSONEncoder = new JSONEncoder(_pointArray);
                   var urlVariable:URLVariables = new URLVariables();
                   var urlRequest:URLRequest = new URLRequest('{URL_TO_POST_AND_SAVE_POINTS}');
                   urlVariable.points = json.getString();
                   urlRequest.method = URLRequestMethod.POST;
                   urlRequest.data = urlVariable;
                   var urlLoader:URLLoader = new URLLoader();
                   urlLoader.load(urlRequest);
                   urlLoader.addEventListener(Event.COMPLETE, saveCompleteHandler);
              private function saveCompleteHandler(e:Event):void{
                   trace("Saved the animation");
    Load and replay the animation:
    - load the json string
    - Decode the json string to array
    - Play the animation
                             private function loadData():void{
                        var urlRequest:URLRequest = new URLRequest('{REQUEST_URL_TO_LOAD_POINTS}');
                        var urlLoader:URLLoader = new URLLoader();
                        urlLoader.addEventListener(Event.COMPLETE,loadCompleteHandler);
                        urlLoader.load(urlRequest);
                   private function loadCompleteHandler(e:Event):void{
                        var loader:URLLoader = e.target as URLLoader;
                        var json:JSONDecoder = new JSONDecoder(loader.data as String);
                        _pointArray = json.getValue() as Array;
                        //start the animation
                        playAnimation();
                   //Playback the drawing on an EnterFrame/Timer event
                   private function playBackHandler(e:Event):void{
                        var nextPoint:Object = _pointArray[_currentIndex];
                        var nextMilliSec:Number =  nextPoint.time;
                        var timeLapsed:Number = getTimer() - _startTime;
                        while(timeLapsed >= nextMilliSec){
                             if(nextPoint.newline){
                                  //stating point
                                  moveTo(nextPoint.x, nextPoint.y);
                             }else{
                                  //draw line
                                  drawLine(nextPoint.x, nextPoint.y);
                             //next array index
                             _currentIndex++;
                             //reached the end?
                             if(_currentIndex >= _pointArray.length){
                                  stopPlayBack();
                                  break;
                             }else{
                                  nextPoint = _pointArray[_currentIndex];
                                  nextMilliSec =  nextPoint.time;
    Manjith

  • Received recorded call from 800-922-0204

    Received a recorded call from the above number telling me to go to
    www.44.verizon.com
    Tried and it says no such address or site?  Is this a scam or what?
    Thanks

        YouDoNoKnowMe, thanks for this heads up! I can confirm that this is not a Verizon Wireless text message or promotional offer.We want you to know that protecting your privacy is a priority for us. We encourage you to take every precaution in guarding your personal information from third parties like this. For your safety, we reccommend that you do not personal information such as credit card numbers, passwords, account data, or any other valuable information through fraudulent emails masking as emails from legitimate businesses. For more information regarding how to guard your personal information, click http://vz.to/1gawtxu
    LasinaH_VZW
    Follow us on Twitter @VZWSupport

  • How to discontinue calling package so that i shoul...

    I purchased a package for singapore calling that was for one month but when one month gets over amount has been deducted from my card without asking me or confirming me again in the next month. i m unable to stop these charges . Please guide me how to discontinue this package..

    discontinue wrote:
    I purchased a package for singapore calling that was for one month but when one month gets over amount has been deducted from my card without asking me or confirming me again in the next month. i m unable to stop these charges . Please guide me how to discontinue this package..
    You can visit the link below for instructions on how to cancel your subscription;
    https://support.skype.com/en/faq/FA1881/how-do-i-cancel-my-subscription
    In in case you may need more specific instructions, encounter any problems, or for further assistance, you can also contact customer service;
    http://community.skype.com/t5/General-Discussion/How-to-Contact-Skype-Customer-Service/m-p/431911
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES

Maybe you are looking for

  • Tables not visible in sqldeveloper

    Hi, I can't see any tables when I connect to my Orace9. I've priviliges to read only. Do you know why is it so? Michal

  • Are there any compatibility issues between Firefox 6-beta and Norton internet security?

    I received a warning before installing it that Firefox 6-beta is incompatible with the Norton toolbar - does this imply any deeper compatibility problems with Norton?

  • [SOLVED] Installation on UEFI from usb stick

    Greetings, I'm trying to figure out this uefi thing and install arch on my laptop. I swear, I've been trying so many times now that I have a headache. My girlfriend too because of all my ranting. I downloaded the latest arch iso and "burned" it to a

  • Capture-db-schema with my-sql

    hello everybody , i create a jdbc resorce and connection pool with Server admin Console and ping everything is ok, but when i get a schema the console bring me this capture-db-schema: [java] using dburl:jdbc:mysql://localhost:3306/comut [java] using

  • App is crashing on iOS6 with presentViewController, iOS5 works well

    This code is crashing when i run my app on iOS6 Simulator with Xcode 4.5 GM Seed: if ([[[UIDevice currentDevice] systemVersion] isEqualToString:@"6.0"]) {     XLog(@"hier checken");     self.tabBarController = [[UITabBarController alloc] init];     s