Why the capture audio program can't work in the phone?

Our capture audio program witch used MMA can run normally on the WTK simulator, but when we down the program into Motorola V303, it can�t work! The document says V303 support JSR-135, why it can�t capture audio by use MMA? The program also can�t work in Nokia 6600! Please give some suggestions!

Hiii
    In main program you have dclared subscreen area.
now First of all you have to declare a selection screen in your main program
selection-screen begin of screen 1005 as subscreen.
SELECT-OPTIONS s_bukrs1 for  v_bukrs.   "whatever you want in selection screen
selection-screen end of screen 1005.
IN PBO of your main screen (not in 1005) write
call subscreen SUB1 including sy-repid '1005'.
where SUB1 is your subscreen area name. And remember don't touch PBO or PAI of your 1005 screen, otherwise it will give you error. Yuo can just put text in layout of 1005 screen. but don't disturb other things.

Similar Messages

  • Capture Audio which can be heard from speakers..

    Hi..
    I am currently facing a problem in capturing audio which can be heard from the speakers.. i.e. i want to capture audio generated by other applications. Till now I have been successful in capturing audio from microphone using JMF and Java Sound too.. But I fail to understand what capture device should I use to capture internal sound i.e. sound generated by other applications.. pls. help me out regarding this.. Can DirectSoundCapture (capture device) be used to capture such sounds or can it just capture sounds from microphone..? Pls. help me soon.. Thanks in advance :)

    hardware issue read more here
    https://discussions.apple.com/thread/1343532?start=315&tstart=0
    more hits
    https://www.google.dk/search?client=opera&q=iphone+stuck+in+headphone+mode&sourc eid=opera&ie=utf-8&oe=utf-8&channel=suggest

  • Can someone at least give an explanation why the phone suddenly goes dead ?I've experience it and the only way to turn it on is to do a hard reset.Is it a software design.technical explanation please.Thanks

    Can someone at least give an explanation why the phone suddenly goes dead ?I've experience it and the only way to turn it on is to do a hard reset.Is it a software design.technical explanation please.Thanks

    Make sure the battery is charged.
    If it's not a battery issue, restore your iPhone.
    iTunes: Backing up, updating, and restoring your iPhone, iPad, or iPod touch software

  • HT5622 Hello! I change my ID Apple and now when I try to make an update, Iphone show me my old ID and ask the password. Why is that? Why the phone don't see my new ID Apple?

    Hello! I change my ID Apple and now when I try to make an update, Iphone show me my old ID and ask the password. Why is that? Why the phone don't see my new ID Apple? I can not make any update because the old Apple ID don't work any more. I check and I have my new user all over in my phone. Help me please!

    All apps are tied to the Apple ID that downloaded them.
    They can not be transferred to a new Apple ID.
    You will have to use the Apple ID and password used to download them.
    If you do not wish to do so, erase them and download them under the new ID. This will wipe any data in the app and you will have to pay for them again.

  • An audio program that will work well with Final Cut

    Hello everyone. I posted a similar question online the other day but I guess through all the researching and responses I haven't found much resolve. So I was wondering if you can recall I purchased Logic Studio 8 this last week and have been hesitant to open it up. The reason is because I want as much control over scoring and sound mixing over my shorts as possible. In Soundtrack Pro 2 if I want to score a film I'm limited because I can only use the loops they provide. I can't make my own music (I guess that's called MIDI sequencing?)So my dream situation would be to import my short film or music video into an audio program and mix/score them while I'm watching them in a program other than Soundtrack Pro 2. I only mention Soundtrack Pro 2 because I've used it and I have had problems with it.
    For example: If I import a Q.T.File from FCP Timeline into Soundtrack even if I select the FRAME vs. Seconds or Ruler ticks the timeline will not allow me to edit in frames.
    Now that's obviously a Soundtrack question. However, Maybe some of you FCP Editors have experience with some software that might be effective for what I'm trying to accomplish with an audio software. Now besides Soundtrack Pro 2 which is included in Studio Logic bundle is there a way to score your project in another way in Logic while watching it at the same time? Also is there a more effective or comparable software to that of Logic Studio where the same intention can be accomplished? Thank you so much for your responses.
    Erv

    Pro tools is also an industry standard for doing almost everything audio wise in production. It is very proprietary and when I played with the free version I didn't find it very intuitive. But, It is an industry standard. It can be rather expensive for a complete setup.
    I prefer Soundtrack Pro.
    Best Regards,
    David Finell

  • Why is the link 'Firefox cannot load websites but other programs can" not working?

    This link appears to be broken.

    Works fine for me: https://support.mozilla.com/en-US/kb/Firefox%20cannot%20load%20websites%20but%20other%20programs%20can
    What do you get when you try?
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • Why this Java Thread program doesn't work as expected?

    Hello all:
    I have a java code as follows:
    My question is why tryThreadB which is set as deamon thread still run
    after the main program return?
    the output of this program looks like:
    HopalongMarilyn HopalongMarilyn HopalongMarilyn HopalongMarilyn HopalongMarilyn Ending main()
    HopalongMarilyn HopalongMarilyn HopalongMarilyn HopalongMarilyn HopalongMarilyn HopalongMarilyn
    However, I think the correct output should be:
    HopalongMarilyn HopalongMarilyn HopalongMarilyn HopalongMarilyn HopalongMarilyn Ending main()
    Hopalong Hopalong Hopalong Hopalong Hopalong Hopalong Hopalong Hopalong
    ====================================
    <pre>
    import java.io.*;
    public class TryThread extends Thread {
    private String firstName;
    public TryThread(String firstName) {
    this.firstName = firstName;
    public static void main(String[] args) {
    TryThread tryThreadA = new TryThread("Hopalong");
    TryThread tryThreadB = new TryThread("Marilyn ");
    // user thread
    tryThreadA.setDaemon(false);
    // daemon thread
    tryThreadB.setDaemon(true);
    tryThreadA.start();
    tryThreadB.start();
    try {
    sleep(5000);
    catch (InterruptedException ex) {
    System.out.println("Ending main()");
    return;
    public void run() {
    try {
    while(true) {
    System.out.print(firstName);
    sleep(1000);
    catch (InterruptedException ex) {
    System.out.println(ex);
    </pre>
    ====================================
    thank you very much

    Hi,
    From the Thread documentation:
    When a Java Virtual Machine starts up, there is usually a single non-daemon thread (which typically calls
    the method named main of some designated class). The Java Virtual Machine continues to execute
    threads until either of the following occurs:
        * The exit method of class Runtime has been called and the security manager has permitted the exit
    operation to take place.
        * All threads that are not daemon threads have died, either by returning from the call to the run method
    or by throwing an exception that propagates beyond the run method.A daemon thread will not stop after the main method returns. It will stop when there are only daemon threads executing.
    So, in your case, thread B will continue to execute as long as thread A (or any other non-daemon thread) is alive.
    /Kaj

  • Asynch Change Data Capture with AutoLog - can it work off a logical standby

    Hi,
    I'm looking at using asynchronous CDC in AutoLog mode for DW extraction tasks.
    Could this work off a logical standby database, which is itself updated via logs from the real production OLTP database (as far as I know, I'm not the DBA)?
    The architecture would include:
    - OLTP database
    - logical standby for the OLTP database, as a CDC publisher
    - staging database for DW, subscriber to CDC in the logical standby
    Thanks in advance for any suggestions.
    Gabriel

    Hi,
    I'm looking at using asynchronous CDC in AutoLog mode for DW extraction tasks.
    Could this work off a logical standby database, which is itself updated via logs from the real production OLTP database (as far as I know, I'm not the DBA)?
    The architecture would include:
    - OLTP database
    - logical standby for the OLTP database, as a CDC publisher
    - staging database for DW, subscriber to CDC in the logical standby
    Thanks in advance for any suggestions.
    Gabriel

  • My wife just bought her first Iphone  a 4s a fwe months ago, its secondhand a few months ago but it came with ios7.  Now the phone has stopped working and is asking to be registered with a Developer Program portal  any ideas how I can fix this for her?

    my wife just boughtnher first apple an iphone4s she got it secondhand about last july , it came with ios7 which had not been released but today its stopped working and asking to be registered with a developers program,  how can I restore her phone and hopefullykeep her current data. Please keep your answer simple we are not it people thanks.

    Well, you have your answer perhaps as to why the phone was being sold in the first place - rather than being a registered developer, the previous owner probably downloaded and installed an illegal copy of iOS 7 beta on the phone and it has now bricked the phone.  Some people did this and of course they could not wait to get their hands on iOS 7, but now it has been released officially, everybody moans.
    The only thing you can do is try resetting the phone again.  Connect it to iTunes and install iOS 7.0.2 and restore it as new and see if that works.  This might help the phone but will not preserve data.
    If it still won't work, then I suggest that you confront the previous owner of the phone and return it for a full refund and start again, but this time buy the phone from a legitimate source.

  • Why this program don't work without the "stop"?

    can you tell me why this program don't work without "stop"?and why the "stop" of my program can not work?
    Attachments:
    N(%}QA2R@SOLAF_12~0SQ)A.jpg ‏67 KB

    Crossrulz, sometimes you can snip the URL of the image:
    http://forums.ni.com/ni/attachments/ni/170/823066/1/
    The stop button is checked once in every iteration of the while loop, which includes waiting for the for loop to complete its 9 iteration.
    The for loop takes 9 seconds to complete because of the time delay, therefore clicking the stop button can take upto 18 seconds, depending on whether the button has been read yet.
    Turn on the highlight execution )light bulb icon) to see what is happening in your code
    - Cheers, Ed

  • Java programs do not work correctly in my computer.

    This is very simple. Every java program I have, such as the Java Control Panel or the LimeWire (downloads program) can't work correctly, meaning the program's window appears but not its content; showing a blank window instead of showing me the program. I have reinstalled the complete java software several times but nothing changes.
    I will appreciate a quick answer, and sorry for my bad english, thanks...
    Tomas. Buenos Aires, Argentina.

    OHHHHH!!! HOW STUBBORN I AM!!!. You were right, the problem started after my video card was reinstalled!. Thanks for the link, in fact, the porblem is perfectly registred by Java:
    www.java.com/en/download/help/5000041100.xml
    Thanks, this forum is the bbbest one ever!.
    Tomas, Buenos Aires, Argentina.

  • If youran ATT customer and you buy a I-Phone off ebay thats undercontract with ATT all you need to do is put your sim in the phone which I did and it worked fine, is that all I need to do?

    I purchased a I-phone off ebay  that was under contract with ATT which I am also, I put my sim in it and it worked fine, is that it as far as set up????

    Yes to working , I am still under contract so thats why the phone IS working and I have the max data plan already, I had a galaxy that broke and I purchased the I-Phone off ebay and they said it was under ATT contract so it would work for me and it did, so I am all set correct?

  • Waiting for Activation i have an iphone 3g. iphone is from my old contract and i have given it to my girlfriend. she then went to the O2 store and they gave her a new sim card which is compatable with iphone 3g. O2 have told me the phone is not blocked.

    " fault code,,,,,waiting for activation, this may take some time,,,,,"       O2 gave my gf the contract and the new sim card to go into my old iphone 3g which was with O2 previous, O2 have assured us that the phone's imei number is not blocked, they have also said the sim is activated and there is no reason why the phone should not work. the phone is out of date warranty. the sim card does work in other handsets, also my sim from my iphone 3gs does not work in the iphone 3g. i have spent hours litterally on the phone to O2 and now to apple, but because i am out of warranty apple want £25 just to even listen to me over the phone. someone please help me. i am getting very frustrated for hopefully what might be an easy fix for someone. i have done all the resets that are possibly humainly possible, i have done all the resores you can do, have sync'd on many occasions all to come up with the same fault. i am still getting O2 in the top left corner but with no bars and when trying to call it fails imediately. wifi is fine, it works as an ipod.

    ONLY AT&T can legally/legitimately unlock it.  No one else at all.

  • There is a problem with the phone app. When I want to call somebody the phone screen come too late. This will cause a problem if I call the wrong number

    There is a problem with the phone app. When I want to call somebody the phone screen come too late. This will cause a problem if I call the wrong number.  Apple please please please fix it as soon as possible and also check why the phone is always restart. I prefer to let us use the iOS 7 until you finished from the IOS 8 because Ios 8 still under construction  there is a tones problems in the system.  And this Will cause undirect problem for the iPhone 6

    There is no apple here in this user to user technical forum.
    Do this Use iTunes to restore your iOS device to factory settings

  • I'm working with a Mac, with 10.10.2 system.  My Audition program has been working fine for years now.  But, there is a problem I can't solve.  All my markers on a given piece of audio allows me to left click to highlight the time signature until my audio

    I'm working with a Mac, with 10.10.2 system.  My Audition program has been working fine for years now.  But, there is a problem I can't solve.  All my markers on a given piece of audio allows me to left click to highlight the time signature until my audio reaches the one hour point.  From there on, the left click will not give me the drop down menu in order to copy and then paste into an Excel sheet I then have to submit for the proofing purposes.  After the one hour mark, I can only control/c in order to highlight, then when I slide up to my Excel sheet, I'm able to right click and paste.  Why is the program not, all of a su allowing me to left cllick the mouse and have a drop down menu give me the option to "copy, " as it does for any time signature markers up to 1:00:00.000?

    Which version of Audition? With the latest version of Audition running on a Windows 7 machine I can't get a dropdown menu at all when I left click on the time in Markers List. The only way to do it is with cntrl-c.

Maybe you are looking for