Jmstudio failed

Hi! I'm using Debian etch with JMF 2.1.1e.
I've solved some installation problems with AWT, but now I can't execute jmstudio to view my captured device (device has been found with jmfinit).It only says "Aborted" and stops execution.
My Environment variables are :
JAVA_HOME=/opt/jdk1.5.0_07
JMFHOME=/opt/JMF-2.1.1e
CLASSPATH=/opt/JMF-2.1.1e/lib/jmf.jar:.:$CLASSPATH
LD_LIBRARY_PATH=/opt/JMF-2.1.1e/lib:.:$LD_LIBRARY_PATH
export JAVA_HOME JMFHOME CLASSPATH LD_LIBRARY_PATH
Any help ??
Thank you in advance!

Which OS ypo are working on ,
I am also facing some problem with jmstudio(jmf2.1.1e) on linux while it works well on windows.
Regards,
anuja K

Similar Messages

  • JavaSoundDemo works, JMStudio fails on Capture

    Has anyone else seen this problem?
    I wrote a simple audio driver that only outputs data at 8KHz.
    When I run the JavaSoundDemo to capture data, it works like a champ.
    When I run JMStudio, I get an error that 44Khz capture isn't supported:
    XX Audio not supported: interface TargetDataLine supporting format PCM_SIGNED, 44100.0 Hz, 16bit, stero, little-endian, audio data and buffers of 22050 to 22050 bytes.
    This message, while certainly true in my case, is slightly interesting, since I have no idea why JMStudio is requesting an inpu format of that type.
    As a matter of fact, it seems as if all types of formats are checked (my driver is reporting this info), before I get this failure message.
    Bob

    check if you have crossing use of JavaSound and JMF, they have some same-named classes.
    And try to use any of CaptureDevice-s which getCaptureDevices(null) returns.
    You can also try to set MediaLocator as javasound://44100/ or such, I dont remember in details
    Good luck

  • Jmstudio fails

    Hi! I'm using Ubuntu Breezy Badger and I'm trying to capture my webcam with JMF 2.1.1e.
    I've solved some installation problems with AWT, but now I can't execute jmstudio to view my captured device (device has been found with jmfinit).It only says "Aborted" and stops execution.
    My Environment variables are :
    JAVA_HOME=/home/local/user/jdk1.5.0_06
    JMFHOME=/home/local/user/JMF-2.1.1e
    CLASSPATH=/home/local/user/JMF-2.1.1e/lib/jmf.jar:.:$CLASSPATH
    LD_LIBRARY_PATH=/home/local/user/JMF-2.1.1e/lib:.:$LD_LIBRARY_PATH
    export JAVA_HOME JMFHOME CLASSPATH LD_LIBRARY_PATH
    Any help ??
    Thank you in advance!
    RickyTown!

    check if you have crossing use of JavaSound and JMF, they have some same-named classes.
    And try to use any of CaptureDevice-s which getCaptureDevices(null) returns.
    You can also try to set MediaLocator as javasound://44100/ or such, I dont remember in details
    Good luck

  • JMStudio: error when trying to play files from URL

    JMStudio fails when I am trying to play files from youtube.
    Error message "Could not create player for http://www.youtube.com/v/u0AXoIe9F6M".
    Nevertheless it succeeds in playing *.flv files from the disk.
    Whats the problem?

    Have you tried copying the said file over to your
    desktop and opening it from there?
    Yes, the files open when I do that. It has something to do with persmissions I guess on the other system, but I am logging in as the same user/password as when I log in directly. I ran the fix permissions under the disk utility, but still no good. It isn't just related to Excel files either; I am having these problems when I try it with Word too.

  • Jmf on ubuntu not work

    Hi all,
    I need capture video from java. I have a QuickCam Communicate STX web-camera.
    I downloaded JMF, installed and set paths:
    export JMFHOME=/home/geroz/jmf/JMF-2.1.1e
    export CLASSPATH=.:$CLASSPATH:$JMFHOME/lib/jmf.jar
    export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$JMFHOME/lib
    now, when I write "java JMStudio" into console, show window with JMStudio, but when I can open video file, not play anything
    If click into capture button, my web-camera start working, but on monitor I only see black window with any horizontally lines
    If open mov video file (in JMStudio):
    Failed to configure: com.sun.media.PlaybackEngine@142a80d
    Bad header in the media: Expected mvhd atom but got rmra
    Error: Unable to realize com.sun.media.PlaybackEngine@142a80d
    Failed to realize: failed to parse the input media
    if open mp4 video file:
    Unable to create a playerjavax.media.NoPlayerException: Cannot find a Player for :file:/home/geroz/Desktop/file.mp4
    What's wrong? How can I test the correct installation? Diagnostic applet not work.
    THX. Sorry for my bad English

    Zerog wrote:
    PS: camera have RBG or YUV encoding. http://telesoft.cz/select.png
    Just because you speak Spanish doesn't mean you can understand Cuban...
    Put another way, just because your camera supports outputting a format that JMF knows how to read, it doesn't mean JMF will be able to successfully get the stream from the camera and decode it... if your web cam drivers are doing something funky with the way they are giving JMF the stream, then JMF may very decode the stream incorrectly.

  • Custom DataSource plays in JMStudio, but not in my application

    hello everyone. I need someone to help me out who has played around a lot with DataSources.
    I have been playing around with custom DataSources for a small while and I have not been able to figure out something and its starting to get frustrating.
    First let me tell you what process I exactly follow when I want to create a Custom DataSource (using the "Generating Live Audio/Video Data" datasource code sample as an example - from JMF solutions http://java.sun.com/products/java-media/jmf/2.1.1/solutions/LiveData.html):
    1. Suppose the source files (DataSource.java and LiveStream.java) are lying at C:\customds\.
    I compile the files like this:
    javac -d . DataSource.java LiveStream.java
    As a result this directory is formed C:\customds\jmfsample\media\protocol\live which contains all the compiled (interpreted) files.
    2. Then I register 'jmfsample' in the Protocol Prefix list and commit the changes using the JMFRegistry GUI.
    3. Now if I run JMStudio and enter the URL live: it gives me an error that it can't create a player. I feel this is happening because some classpaths haven't been set correctly. Eventually I figured out that I have to place the \jmfsample\media\protocol\live\ directory inside the <JMF install dir>\lib\. Doing this fixes the problem and now I can go to JMStudio and run the protocol using the 'Open URL'. Giving it 'live://' plays the 'blue screen' like a gem.
    4. But here is the catch now. When I create an application which tries to create a player using live:// as a source, it doesn't run and keeps giving me a noPlayerException, or a noDataSourceException (as the case would apply; code given below).
    The funny part is that i checked the JMStudio source code for the method that is used to 'Open URL'. I haven't found any siginificant change in the way it opens urls.
    I also went a step further and tried to compile and run the JMStudio code myself to trace the code when it is in the process of opening a url. The weird thing is that when I try to do that, giving live:// as a URL gives me the same error that is given by my application. In other words JMStudio when compiled by me gives me same the error of "can't create a player..." when I open the url live://. Has Sun used a JMStudio compiled using a different source file?
    Please please anyone tell me what is wrong here.
    I have basically tried out these two kinds of things in my code, and both give me a noPlayerException error:
    Player guiPlayer = Manager.createRealizedPlayer(new MediaLocator("live://"));and
    DataSource ds = Manager.createDataSource("live://");
    Player guiPlayer = Manager.createRealizedPlayer(ds);Thanking in anticipation.
    regards

    Would it be possible for you to expand on your solution a little bit? I'm trying a similar approach, and having a similar problem to yours. From Googling, it appears as if this is a very common problem, and a lot of people give up before they solve it.
    I'm trying to use jmf.jag (and optionally add fobs4jmf.jar), not compile it from source. But I am trying to compile my own protocol from source and run it in a debugger. I have all the class files going out to the same output directory, and IntelliJ generally adds them all to the CLASSPATH automatically. But I keep getting NoPlayerException. (If I break down the players construction step-by-step, it seems to fail on "Processor ps = Manager.createProcessor(ds);".)
    I'm trying to play a Quicktime movie from memory, and I've confirmed that I'm returning "video.quicktime", that my stream is Seekable and isRandomAccess returns true, my prefix is in the protocol list, and that the package name is correct. I've tried with PLUGIN_PLAYER being true or false, media type being video.quicktime or unknown, and every other permutation I can think of.
    Any help would be greatly appreciated.

  • Failed to realize

    I am trying to download a mp3 content from a server using JMStudio but keep 'Failed to realize' message in the JMStudio. I captured the traffic and noticed that the Client send DESCRIBE request and the server replies with SDP content but then the client does not do anything and sends a FIN after a minute. Below is the TCP Stream:
    DESCRIBE rtsp://172.21.112.20/demo/content/KabhiKabhi.mp3 RTSP/1.0
    CSeq: 971
    Accept: application/sdp
    User-Agent: JMF RTSP Player Version 2.1.1e
    RTSP/1.0 200 OK, Success
    Session: 753125716
    CSeq: 2
    Date: Sun, 14 Aug 2005 11:45:17 EEST
    Content-base: rtsp://172.21.112.20:8081/demo/content/KabhiKabhi.mp3/
    Content-Type: application/sdp
    Content-Length: 422
    v=0
    s=<No title>
    o=- 1023412951 1023412951 IN IP4 172.21.112.20
    c=IN IP4 0.0.0.0
    t=0 0
    a=SdpplinVersion:1610645287
    a=DefaultLicenseValue:integer;1
    a=IsRealDataType:integer;0
    a=FileType:string;"QuickTime"
    i=<No author> <No copyright>
    a=range:npt=0-51.051000
    a=ASMRuleBook:string;"Marker=0,AverageBandwidth=15809,TimeStampDelivery=TRUE;"
    a=StreamCount:integer;1
    m=audio 2000 RTP/AVP 96
    a=control:streamid=0
    a=rtpmap:96 x-qt
    Can anyone please provide some hints on what is going wrong.
    Any suggestions are welcome.
    Br
    Praveen

    Sorry for not being that clear yesterday, but I didn�t really understand the problem. I have now sorted it though, so it�s ok.
    In my app, I have a JTree containing File objects, representing a directory structure of folders and mp3 files. The idea is to play whatever file is selected.
    The problem was that I had a TreeSelectionListener that would place the selected file. This was fine, if only one file was selected. But as I merrily drag my mouse across the tree, a number of files were selected at once. I believe the player got overloaded, and so now I play the selected file(s) on mouse release and only if there is at least one file selected.
    However, I have now found another place the error seems to inhabit.
    I also wish to use a JFileChooser to load and save mp3 file.
    Loading is the easy part, but it doesn�t seem to save correctly.
    Here is my code to save:
         public void saveTo(File to) throws
         FileNotFoundException,IOException
              // Create channel on the source
         FileChannel src = new FileInputStream(file).getChannel();
         // Create channel on the destination
         FileChannel dest = new FileOutputStream(to).getChannel();
         // Copy file contents from source to destination
         dest.transferFrom(src, 0, src.size());
         // Close the channels
         src.close();
         dest.close();
    However, this seems to save an object and not an exact copy of the mp3 file (file).
    Does anyone know how to make an exact copy, with the exact format, of an mp3 file?
    Any help would be greatly appreciated.
    Thanks
    Luke

  • JMStudio as client for LIVE555 and Darwin

    Hi all,
    i need to make applet for RTSP streamed content. I took a look on JMF. I tested JMStudio as client, if everything is working right with this srvrs. But i got error "Server is not responding". JMStudio generated this log:
    # JMF Version 2.1.1e
    ## Platform: Windows XP, x86, 5.1
    ## Java VM: Sun Microsystems Inc., 1.5.0
    ## Player created: com.sun.media.content.rtsp.Handler@110c31
    ## using DataSource: com.sun.media.protocol.rtsp.DataSource@13f991
    ## outgoing msg:
    ## DESCRIBE rtsp://172.31.149.238/test.mp3 RTSP/1.0
    CSeq: 377
    Accept: application/sdp
    User-Agent: JMF RTSP Player Version 2.1.1e
    ## incoming msg:
    ## RTSP/1.0 200 OK
    CSeq: 377
    Date: Tue, Jan 16 2007 11:01:52 GMT
    Content-Base: rtsp://172.31.149.238/test.mp3/
    Content-Type: application/sdp
    Content-Length: 302
    v=0
    o=- 5813127402 1 IN IP4 172.31.149.238
    s=MPEG-1 or 2 Audio
    i=test.mp3
    t=0 0
    a=tool:LIVE555 Streaming Media v2006.11.15
    a=type:broadcast
    a=control:*
    a=range:npt=0-300.769
    a=x-qt-text-nam:MPEG-1 or 2 Audio
    a=x-qt-text-inf:test.mp3
    m=audio 0 RTP/AVP 14
    c=IN IP4 0.0.0.0
    a=control:track1
    ## outgoing msg:
    ## SETUP rtsp://172.31.149.238/test.mp3/track1 RTSP/1.0
    CSeq: 378
    Transport: RTP/AVP;unicast;client_port=46674-46675
    User-Agent: JMF RTSP Player Version 2.1.1e
    ## incoming msg:
    ## RTSP/1.0 200 OK
    CSeq: 378
    Date: Tue, Jan 16 2007 11:01:52 GMT
    Transport: RTP/AVP;unicast;destination=172.31.149.238;client_port=46674-46675;server_port=6972-6973
    Session: 4
    ## outgoing msg:
    ## PLAY rtsp://172.31.149.238/test.mp3 RTSP/1.0
    CSeq: 379
    Range: npt=0.0-
    Session:
    User-Agent: JMF RTSP Player Version 2.1.1e
    ## incoming msg:
    ## RTSP/1.0 200 OK
    CSeq: 379
    Date: Tue, Jan 16 2007 11:01:52 GMT
    Range: npt=0.000-
    Session: 4
    RTP-Info: url=rtsp://172.31.149.238/test.mp3/track1;seq=35049;rtptime=1277791466
    ## RTP audio socket buffer size: 378 bytes.
    XX Failed to realize: Server is not responding
    $$ Profile: instantiation: 0 ms
    ## Player created: com.sun.media.content.unknown.Handler@747fa2
    ## using DataSource: com.sun.media.protocol.rtp.DataSource@1be16f5
    $$ Profile: parsing: 16 ms
    ## Building flow graph for: null
    ## Building Track: 0
    ## Input: mpegaudio/rtp, 44100.0 Hz, 16-bit, Stereo, LittleEndian, Signed
    ## Here's the completed flow graph:
    com.sun.media.parser.RawBufferParser@1ae90c
    connects to: com.sun.media.codec.audio.mpa.DePacketizer@ba4211
    format: mpegaudio/rtp, 44100.0 Hz, 16-bit, Stereo, LittleEndian, Signed
    com.sun.media.codec.audio.mpa.DePacketizer@ba4211
    connects to: com.sun.media.codec.audio.mpa.NativeDecoder@47a0d4
    format: mpegaudio, 44100.0 Hz, 16-bit, Stereo, Signed
    com.sun.media.codec.audio.mpa.NativeDecoder@47a0d4
    connects to: com.sun.media.renderer.audio.DirectAudioRenderer@55bb93
    format: LINEAR, 44100.0 Hz, 16-bit, Stereo, BigEndian, Signed
    $$ Profile: graph building: 125 ms
    $$ Profile: realize, post graph building: 16 ms
    What is wrong? I tried vlc and it works perfect. This mistake isn't caused by firewall, UDP and TCP works normally.
    It looks like there is something wrong with RTP transmition. Does anybody know, how to solve this problem and make JMStudio to cooperate with Darwin or Live?
    Thx a lot.
    Petr

    Hi,
    This may be of help:
    http://otn.oracle.com/products/forms/techlisting.html
    Oracle9iAS Forms Services - Using Sun's Java Plug-in:
    http://otn.oracle.com/products/forms/pdf/forms_jdk141.pdf

  • Jmstudio transmit problem

    Can someone help me solve this problem?
    I was trying to get the JMStudio to act as a streaming server but I got this message:
    Failed to realize Processor
    Exception
    Cannot find a processor for: com.omnividea.media.protocl.file.DataSource@a2220f
    Thanks!

    Take a look at
    http://java.sun.com/dev/evangcentral/totallytech/jmf2.html
    What I think you'll need to do is feed your webcam into a web-server
    Then you can access that WebCam Page/Site from your mobile phone - thus your web site should be able to feed yuo the video

  • Jmstudio.exe open mov file

    Hello I am using JMF realize reproduction mov file on java
    Installed: JMF-2.1.1e under Windows XP
    jmstudio.exe I run and try to open a file *. mov
    but get an error: "Controler Error: Failed to realize: input media not supported: mp4a audio, avc1 video"
    What's wrong?

    i found the same issue as you yesterday,I don't find the method,too!

  • Bit locker drive encryption failed due to power failer and hard disk corrupted

    I ran Bitlocker drive ecryption drive D. My pc is windows 7 ultimate, while it was in progress of 1% due to power failer the encryption failed, when power resume the drive didn't showed the file format nor the size but it shows the size in disk management.
    It showed like this in My computer
    I do Have the recovery code password and back of recovery password so I ran the "manage-bde-_unlock D:-rp[my code ]
    and my pc got hang  no other option rather than to press the restart button. 
    then I used commang "repair-bde -force D:I:-rp[my rp] and following info showed but it stucked in 1% about 8 hours, and there was no increase in the pecentage
    I also connected the hardisk to mac but all othe partation showed but didn't showed the encrypted one.
    I had lots of memorable picture and other backups so any one kindly help me to get out of this problem. Thanks for help

    Hi,
    The BitLocker encryption and decryption processes can be interrupted by turning the computer off, and it will resume where it left off the next time Windows starts. This is true even if the power is suddenly unavailable.
    Bitlocker-repair (repair-bde)  tool
    can't repair a drive that failed during the encryption or decryption process.
    In addition, could you please explain a bit for what drive you are trying to deal with? external one?
    When you first restart your PC, have you seen any signs that indicate that the encryption is in process?
    Regarding your scenario, please take a look to see if the following articles could help here:
    Scenario 11: Recovering Data Protected by BitLocker Drive Encryption (Windows 7)
    Besides, when running manage-bde command, did we followed the steps mentioned in the below article?
    Scenario 14: Using a Data Recovery Agent to Recover BitLocker-Protected Drives (Windows 7)
    Best regards
    Michael Shao
    TechNet Community Support

  • Cannot send email from my Touch (connection to smtp server fails)

    Hello,
    I have a new iPod Touch with 1.1.4 and the January apps. I am having a problem setting the Mail application.
    I am trying to connect to the IMAP/SMTP servers at my university. I am using the exact same settings and passwords I use on my laptop, which works fine. I can receive email fine on my Touch, but every time I try to send one it fails tellings me "the connection to the outgoing server smtp.myuniversity.edu failed".
    If I on purpose write a wrong password for the outgoing mail, the error message I get is different ("check the account settings for the outgoing server smtp.myuniversity.edu").
    The university IT people confirmed my settings, and told me that there is nothing blocking any handheld device from using the server.
    Does anyone know why this would happen?
    Thanks,
    Marcelo

    Thank you very much for your responses
    1) the link to mail setup is (sorry, it's quite long)
    http://www.knowledgepak.com/kpaksonline/kpol.asp?PiAlias=kpolpi17&k2dockey=04096 3251575739@kpol17&ViewLink=true&SkipHeader=false&printformat=true
    2) I am indeed using SSL, as instructed by IT
    3) I do use port 587 instead of 25 (25 does not work either)
    Any ideas? Thanks again.
    MC

  • BSI ConnectToDataSet...failed

    Hi
    We have a problem with the BSI, we had been getting a dump "RFC_ERROR_SYSTEM_FAILURE", I followed the SAP Note 1068271 for the debug, and the result is:
    =Thu Jan 22 11:53:37 2009
    =SAP AG, Walldorf - Business API for BSI TaxFactory 8.0
    =RfcAccept called
    =Mapping ABAP RFC_PAYROLL_TAX_CALC_US_80 to C function srv_Payroll_Tax_Calc_US_80
    =Mapping ABAP RFC_HR_TAXLOCATOR_US_80 to C function srv_hr_taxlocator_us_80
    =Waiting for ABAP function calls
    =Running function srv_Payroll_Tax_Calc_US_80
    =Loading import parameters
    =Loading export parameters
    =Loading internal tables
    =Calling Payroll_Tax_Calc_US
    =Running Connect_DB_Payroll_Tax_Calc_US
    BSI dataset                  -> 110
    ConnectToDataSource...Succeeded 
    ConnectToDataSet...failed 
    Error String ->  7777 - [Oracle][ODBC][Ora]ORA-00933: SQL command not properly ended
    =RFC error
    operation/code Connect_DB_Payroll_Tax_Calc_US
    key RFC_ERROR_SYSTEM_FAILURE
    status
    message See RFC trace file or SAP system log for more details
    internal status
    The RFC under sm59 is working fine, the error is on the connection to the Dataset according to the Debug log "ConnectToDataSet...failed".
    I don't know what to check about the Dataset, could you please help me?
    Best Regards

    Yes, it's correct.
    I checked it's 8.0.
    I think is a problem with the parameters under tf80server.bat.
    SET
    TF80_CONNECT_STRING=DSN=;UID=;PW
    D=;
    SET TF80_SCHEMA_NAME=.TF80
    REM for SAP trace debugging, uncomment below & see file
    errors.txt in gateway working directory
    REM C:\BSI\TAXFACTORY\tf80serverdebug.exe %*
    REM else for usual operation
    C:\BSI\TAXFACTORY\tf80server.exe %*
    I don't know what is the "ODBC_DSN_NAME"
    I have the user, password, the database name...
    Best Regards

  • Installation of IPC AP 7.0 Jar is getting Failed when uploading in CRM

    Hello Experts,
    we did some changes in the previosly uploded version of IPC AP 7.0  customer user exit Jar file in eclipse.
    While uploading the new modified jar through transaction /SAPCND/UE_DEV in CRM we are getting error :" installation of module <Jar file name > has failed ".
    when we checked the logs in SM 53 we seen the below mentioned error:
    Message: Exception of type com.sap.sql.log.OpenSQLException caught: Exception of type com.sap.sql.sqlparser.CommonSQLParserException: - statement "DELETE FROM "SVMCRT_MOD_TR_T" WHERE "MODULE_NAME" LIKE ? ESCAPE ^ (reason: Modification of ABAP tables is not permit ted)" is not supported
    caught: - statement "DELETE FROM "SVMCRT_MOD_TR_T" WHERE "MODULE_NAME" LIKE ? ESCAPE ^ (reason: Modification of ABAP tables is not permitted)" is not supported
    --> com.sap.sql.log.OpenSQLException: Exception of type com.sap.sql.sqlparser.CommonSQLParserException: - statement "DELETE FROM "SVMCRT_MOD_TR_T" WHERE "MODULE_NAME" LIKE ? ESCAPE '^' (reason: Modification of ABAP tables is n" is not suppor ted
    caught: - statement "DELETE FROM "SVMCRT_MOD_TR_T" WHERE "MODULE_NAME" LIKE ? ESCAPE '^' (reason: Modification of ABAP tables is not permitted)" is not supported
    at com.sap.sql.log.Syslog.createAndLogOpenSQLException(Ljava/lang/Class;Ljava/lang/String;[Ljava/lang/Object;)Lcom/sap/sql/log/OpenSQLException;(Syslog.java:85)
    at 
    if  required i can post the complete stack trace.
    any inputs/suggestions are most welcome.
    Thanks & regards,
    Siddharth

    Hi Mark,
    Yesterday after Posting the thread we found the same Note ,Issue occured because of  JAVA write access was not enabled on the table ,After enabling it as mentioned in SAP Note, Jar file get successfully uploaded.
    Thanks for your Help also.
    Regards,
    Siddharth

  • Upgrade to ERp6 phase STARTSAP_NBAS error: DDIC login fails

    Hi
    During an upgrade from 4.7  to ERP6  I get the following error
    message in phase STARTSAP_NBAS:
    SYSTEM START failed, code -2
    -2: the test rfc did not work.
    Try to log on to the system with user DDIC
    When I try to log on to the system as user DDIC, I get the following
    error message:
    DB-Error -0
    SAP* can log in .The password I submit is correct. I have not changed this password at
    any time.
    Any ideas are most welcome

    Hi,
    DB-Error -0 indicate problem with kernel, try to upgrade kernel.
    check Note 760175 - 6.20: Logon not possible (after DB export or system copy)
    regards,
    kaushal

Maybe you are looking for

  • How to find out what year model my Mac Mini

    I got a "message" dialog on screen from Apple telling me OSX Mavericks is available for free. The system requirements say my Mac Mini needs to be an "early 2009 or newer" model. I got my Mini at the Apple store in town in 2010, but for all I remember

  • How to input text in the SAP ERP intial screen.

    Hello. How to input text when I load the SAP ERP system. before log in. (this screen show me only the ID and password input fields) I saw the initial screen inclued some user-customized text. I can not find any information about initial scrren, as be

  • MBBE-"Quality. inspection" stock shows Inspection lot as "Unrestricted"

    Dear All, In MMBE, a material is available in "Quality Inspection" stock. We checked in "QA32". There we can see, it is in "Unrestricted use". How to move the stock from "Quality Inspection" to "Unrestricted use". Any suggestions. Regards, Mullairaja

  • How to maximize application window in Swing?

    Hello, I'm trying to make my Swing application occupy the whole screen on start with jframe.setExtendedState(JFrame.MAXIMIZED_BOTH); jrame.setVisible(true);My system supports this feature (checked this through java.awt.Toolkit). Is there a way to mak

  • Lightroom 3.4 LR 3.4 and CS3 - Raw Converter 6.4 ?

    Just upgraded to LR 3.4 and I use Photoshop CS3 - ( Canon 5D MII )  it appears that I need Raw Converter 6.4 , which I do not believe is available for CS3  - Can I get this combination of LR 3.4 and CS3 to work ?  Is there a good work around without