Recording and Sending voice through a modem

hello there,
i am using JavaTM Communication API to send and receive voice though my serial modem. Firstly, it easily receives voice but i couldnot record it. Secondly, i cannot tranmit my voice to a telephone through my modem.
Can anybody help me.
thanks in advance
Sarad Thapa

Well, what have you tried?
Exactly what problem are you having recording voices? Do you have any working code? Is it returning an error message or throwing an exception? Are you certain that it's receiving the right input?
Exactly what problem are you having sending your voice? Is the phone ringing at their end? Do they hear beeps, whistles, or just plain silence when they pick up the phone? Or alternatively, are you certain that your code is sending your voice to the right modem device? Is it throwing an error message?
What you are doing right now is going to a car mechanic and saying "my car doesn't work" but you can't specify what kind of car or what's not working. Very fustrating to the mechanic.

Similar Messages

  • Modify control record and send out to external (TAMA) system using ALE

    Hi All,
    I have a scenario to send idoc from ECC 5.0 to 3.1R/3 and then to TAMA system (external system-through TRFC)
    In the inbound process code of 3.1R/3, I have to write a custom FM to modify the control record and point to TAMA system and then send it out to TAMA system.
    Has anybody got idea about this and what function module need to use for modifying the control record and send it out. Any help is really appreciated
    Thanks
    Ricky

    Hi Ricky,
    To access IDoc data and modify it in your custom FM, you could investigate the following FM's:
    EDI_DOCUMENT_OPEN_FOR_PROCESS
    EDI_SEGMENTS_GET_ALL
    They should allow you to access the EDIDD, EDIDC tables.
    The IDoc related functions are contained in the function group EDI1, it may be helpful to start from there.

  • Modify control record and send out to external (TAMA) system

    Hi All,
    I have a scenario to send idoc from ECC 5.0 to 3.1R/3 and then to TAMA system (external system-through TRFC)
    In the inbound process code of 3.1R/3, I have to write a custom FM to modify the control record and point to TAMA system and then send it out to TAMA system.
    Has anybody got idea about this and what function module need to use for modifying the control record and send it out. Any help is really appreciated
    Thanks
    Ricky

    Hi Ricky,
    To access IDoc data and modify it in your custom FM, you could investigate the following FM's:
    EDI_DOCUMENT_OPEN_FOR_PROCESS
    EDI_SEGMENTS_GET_ALL
    They should allow you to access the EDIDD, EDIDC tables.
    The IDoc related functions are contained in the function group EDI1, it may be helpful to start from there.

  • Send SMS through GSM modem

    Hello,
    We have a requirement of sending SMS after PGI . Could anybody please help me on how to use GSM Modem to send SMS through SAP?

    Hey, I can give you another tip. I am using a very reliable integration program. Its name is Ozeki NG SMS Gateway. I hope they dont cut my tip out, because this software is very useful and stable. You are also able to add this message sending function to different clients for example HP Openview or Sharepoint etc.
    Sorry again, I did not intend to advertise or something like that.
    http://www.sms-integration.com/
    Have a nice day
    Jozef

  • HOW TO SEND FAX THROUGH INTERNAL MODEM

    Hi,
    I am trying to use my computer to send a recieve faxs. I am connected to the internet via infar red port. And I am under the impression I can use my internal modem to send and receive faxes.
    I have hooked the phone socket to internal modem input on my Lap top and have tried many times to send and receive but it says my modem is not set up.
    Looking in prefs it is not set up, but it wants a telephone number for dial up.
    I have broadband so have no idea about a telephone number for dial up.
    Is there a way to set the modem up to receive and send faxes and still be connected to broadband internet?
    Hope you can help,
    Jamie

    If you want to use the modem to send and receive faxes, then you don't want to have the Network trying to control it, you should disable the modem port in the Network prefs and use only the Ethernet port. You can use the Network prefs to troubleshoot to ensure that the modem is in working condition, but you can't have the network dial-up taking control of the modem at the same time as you want to be waiting for a fax or sending a fax. This can cause the modem to get hung, and you will get the waiting behavior that you described.
    You should just be able to receive faxes by checking the "Receive faxes on this computer" button in the Print & Fax Prefs. If you had an external modem you could see some activity lights come on as soon as you check the box as it goes into standby to answer a call mode, with an internal the only way to know it's working is to send yourself a fax.
    To send a fax, I think you might need to configure a Fax printer, if you don't seem to have one already. Click the "Setup Fax Modem..." button at the bottom of that Print & Fax Prefs. IF you launch /Applications/Utilities/Printer Setup Utility can you select from the View Menu: Show Fax List and does anything show up in the list? You should have a Fax List and fax printer in that list similar to your Printer List and whatever printer you have installed.
    To check if the modem is even working you may have to use some modem terminal utility like ZTerm that will let you type simple commands and check the modem response. For example AT should result in an OK. With the internal you can't check the activity lights to see if you are receiving data or sending data, so I'm not sure how else you can verify the internal modem is actually functioning. It might be worthwhile checking that first, or if you know you can use it for dial-up, I still use my modem as a backup for when DSL goes out (rarely).

  • How to upload a template in sharepoint and send notification through labview?

    Hi,
    i am trying to make a form in LabView and want to send notification through labview if possible and upload it on sharepoint site. Can it be done?
    I am attaching the vi. in this i have few questions?
    In front panel if you click STANDARD there will be several options through which we can choose from. For every  option which is clicked by user i need to get a pop up box in which there will be options which user want to choose. example if user select A then pop up box pops out and there will be 5 things in which he need to tick depending on what he wants. I tried to make case for each options but could not understand how to do it.
    And
    How to make Submit, Exit, preview order buttons?
    Thank You
    Attachments:
    WEB_TEST.vi ‏13 KB

    Hello Hnagpal,
    I just wanted to clarify the question first. Are you basically wanting to create a LabVIEW VI that you can upload to a Microsoft SharePoint site, and then have users who go to the SharePoint site run this VI directly from the site, and essentially see the front panel on SharePoint site? If this is the case, I don't believe this currently supported in LabVIEW. There may be a way to do it by creating a web service with your VI first, and then using this web service file in conjunction with sharepoint, but that may be tricky to get working.
    As for making case structures, the case structure you have in your VI will only run once (you need to put it in a while loop if you want the functionality of having it update when the user changes their selection). The case structure will choose the case that is selected when the user first runs the VI. You also need to put the code you want to run for each case inside the respective cases of the structure (I assume this was your next step since there is currently nothing inside the case structure).
    To make various buttons, you can go to the front panel, right click and go to "modern" then "boolean" and put and "ok button" on your front panel. You can then change the name of the button to whatever you want and edit the text it displays (like Submit, Exit, or Preview). I hope this helps!
    -Nathan H
    Software Developer
    National Instruments

  • I recorded a panel presentation on my Ipod and would like to edit the recording on my itunes so I can export the recording and send it to my colleagues over the internet.  I was able to import the recording to my itunes library but need help editing it.

    Hello, thanks in advance for your help.  I recorded a panel presentation on an ipod and would like to edit the audio recording to just one portion of the recording.  I was able to import the audio into my itunes 11.1.3 music library but I have not been able to edit the length of the recording.  I followed an online tutorial and was able to edit when the recording starts and stops on the recording but I haven't been able to edit out the parts of the recording that I dont want.  Also when I try to export it to my Desktop or to Garageband (not sure if that helps or not) I am not able to export it.  It is currently a .WAV file.  I would like to edit the length of the recording and then export the file onto my desktop.  I would like to email the presentations to my colleagues online so I could also use advice on how to make it a smaller file since it is current 945.6 MB.

    iTunes isn't an editor. You need an app that's intended for editing audio files, like Adobe Audition (http://www.adobe.com/products/audition.html) or Audacity (free in the App Store).

  • Converting OTF to EXCEL  or PDF to ECXEL  and sending Excel through mail

    Hi ,
    I need a solution for Converting OTF into EXCEL  or PDF into ECXEL  and sending Excel as a attachment to the mail.
    In my current Program I am getting OTF data from script and converting into PDF using Function module ' CONVERT_OTF'
    And sending PDF as a mail attachment using Function module 'SO_NEW_DOCUMENT_SEND_API1' it is working fine but
    My current requirement is I need to send Excel as a mail attachment instead of PDF.
    Hope it is clear for you, please give me solutions with sample code..

    Hi!
    Because OTF is not a grid, like Excel, and PDF can also contain anything, I think it is not possible to convert an OTF, or PDF into an excel spreadsheet.
    You can convert an ALV into excel and send it via email.
    Regards
    Tamá

  • Read spool data and send it through e-mail as .txt or .xls attachment

    Hi All,
    I have to read the spool data and send it via e-mail as .txt or .xls attachment. I have used FMs LIST_TO_ASCI, RSPO_RETURN_SPOOLJOB and SO_SOLITAB_TO_SOLIXTAB. I am using FM SO_DOCUMENT_SEND_API1 to send e-mail.
    My problem is, the text file being sent is not showing entire data. It's getting truncated after 255 characters. Is this a standard? If yes, then is there any work around for it?
    Alternatively, I can send the file as excel attachment. How can this be done?
    Thanks,
    Ashwini

    You will have to convert string to Xstring and then to binary to acheive this.
    Check this wiki to send a mail attachment with more than 255 characters.
    [https://wiki.sdn.sap.com/wiki/display/Snippets/Tosendamailattachmentwithmorethan255charactersinaline]
    Vikranth

  • Wallpapers, Voice Recorder and sending pictures

    I dont know how to get different wallpapers on my iphone. And does anyone know if we will ever get a voice recorder or be able to send pictures from our phone

    Wallpapers, as in the image you see behind "Slide to Unlock" can be any picture you've taken from your iPhone, any image you've synced to your iPhone, or any of the preset images.
    No one knows for sure if audio recording will be a future feature, but you can request it in a future update/version here: http://www.apple.com/feedback/iphone.html
    While iPhone doesn't officially support MMS, there are plenty of ways to work around it. If you're sending a picture and don't know the email address for the person's phone you're trying to send it to, use this link (http://en.wikipedia.org/wiki/SMS_gateway) to identify that person's carrier and then insert their 10-digit mobile number before the email address provided in the link

  • Recording and burning voice from ipod 2

    Is it possible to burn onto CD a 1hour voice recording recorded via your ipod2 directly to a USB external hardrive CD burner attached to your ipod via USB, without having to use itunes or be online (wifi).
    i would like to reduce my carry load when traveling abroad with work, and if this did work then great no more lumpy laptops Mmmmmmmm nice.

    No, you cannot do that at this time.

  • Can't send voice over fax modem

    HP Pavilion A6009N with a CTI softdata fax modem installed...
    I have connected the RJ11 connector on the modem card to my home phone line and everything is okay, except...
    I can dial out using built in phone dialer, make connection, I can hear the party on the other end but they can't hear me. I know the microphone works because I tested it on the sound recorder. Any ideas?
    Dave

    Which program are you using to make phone calls?Skype and other apps have audio tuning wizards to check setup of mic.
    Message Edited by CherylG on 09-28-2009 10:44 PM
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • Cannot send fax through Apple modem

    In Tiger I regularly sent out faxes through my external Apple modem. However, after upgrading to Leopard, I can no longer send out faxes. Instead I get a "Preparing to send the fax document" message, but it never sends it out.
    Does anyone else have this problem? Is this a known bug in Leopard?

    I'm sorry but I don't know what you mean by "/var/log/cups/error_log". I typed it into Spotlight, but nothing came up.

  • How to fetch background joblog content and send it through mail??

    Hi all,
    I want to send the content of the job log through mail for the failed jobs.
    Can anybody tell me how to get the content of the joblog in an internal table?
    I am able to check the status of the job from the table TBTCO.But unable to
    find how the joblog information is being fetched??
    Please help me out with this.
    Thanks and Regards.
    syed.

    hi
      use fm BP_JOBLOG_READ to get the log of the background jobs
    if helpful, reward
    Sathish. R

  • Convert ALV or layout in HTML or xls and send attachment through mail

    Dear Expert,
    Actually i have a ALV program and layout.
    Now i want to open these program in HTML and XLS both the option, according to Radio Button selection for Html or XLS.
    Then send  this output to concern person via email as an attachment.
    Plz. Help me as soon as posible
    Bye

    Hi Shalini,
    based on your radio button call fm:
    call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          exporting
            document_data              = lv_document_data
            put_in_outbox              = space
            commit_work                = 'X'
          tables
            packing_list               = i_objpack
            object_header              = i_objhead
            contents_bin               = i_audit_output
            contents_txt               = i_objtxt
            receivers                  = i_reclist
          exceptions
            too_many_receivers         = 1
            document_not_sent          = 2
            document_type_not_exist    = 3
            operation_no_authorization = 4
            parameter_error            = 5
            x_error                    = 6
            enqueue_error              = 7
            others                     = 8.
        if sy-subrc  0.
          message id sy-msgid type sy-msgty number sy-msgno
                  with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      Display message saying email was sent successfully.
        else.
          write: /1 text-t23.
        endif.

Maybe you are looking for

  • I am trying to Show Package contents of iMovie and it freezes at the hr.lprog folder

    While doing a virus scan my machine would freeze on the file Applications/iMovie/Contents/Resource/hr.lprog/Title-SidewaysDrifting.nib/keyedo bjects.nib. Bitdefender said to send them the file. I am able to "Show package contents" of iMovie, and open

  • Image preview not working with 3rd party photo apps in iPhoto/Image Capture

    I haven't had a problem until recently with the iPhone 4. Pictures taken with third party photo apps such as Shake It Photo or Hipstamatic no longer generate a thumbnail preview in either iPhoto or Image Capture. It's just a generic jpg icon. All pic

  • Audio Grayed Out

    I can't figure out what the issue is what my audio. I currently have it running through a system via HDMI. I've had it this way for a few months now. Today I came home and my audio wasnt working and it is grayed out. I option clicked it and selected

  • Replacing Assets

    Here's the Q, I have an existing Enc Project. I changed the video in Premiere with some Soundbooth updates and new audio files for the same video. It will not allow me to store over the orig (unedited avi). SO my chapter links and asset assignments a

  • Strange entries in WRT400N Routing Tables

    I was trying to setup some static routes (unsuccessfully) when I noted some wierd entries in the routing table shown when clicking the "Show Routing Table" button in the Advanced Routing section of Setup. The entries are: Destination LAN IP