Java Video Library?

Hello
Does anyone know of a library for Java that allows encoding and decoding videos frame by frame? Preferably also stepping to a given frame when decoding, and have support for as many different formats as possible. :)

I've never user JMF, but I have looked at the API once and I saw something
to extract individual frames
FrameGrabbingControl

Similar Messages

  • Problem trying to log on to my video library system

    hello.
    i am trying to log on to the video library system that i just developed. the LogOn program works to a certain extent (the appropriate programs are shown below). when i try to log onto my system time. a JOptionPane.ERROR_MESSAGE message appears on screen. when i press OK inside the message, the message disappears but the same one appears again. i press OK again + the JOptionPane messages stop appearing again. when i press ok after entering my login details in the text + password fields, a main menu (either an administrator menu or a user menu) should be displayed on screen. what should i do to make this problem go away?
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    public class HomeEntertainment extends JPanel implements ActionListener{
       private JTabbedPane jtp = new JTabbedPane();
       private JPanel cP1 = new JPanel();
       private JPanel cP2 = new JPanel();
       private JPanel cP3 = new JPanel();
       private JPanel bP1 = new JPanel();
       private JPanel bP2 = new JPanel();
       private JPanel bP3 = new JPanel();
       private JButton jbAdministratorLogOn = new JButton("Log On");
       private JButton jbNewUserRegister = new JButton("Register");
       private JButton jbExistingUserLogOn = new JButton("Log On");
       private JButton jbAdministratorExitTheSystem = new JButton("Exit the system");
       private JButton jbNewUserExitTheSystem = new JButton("Exit the system");
       private JButton jbExistingUserExitTheSystem = new JButton("Exit the system");
       public HomeEntertainment(){
          cP1.setLayout(new BorderLayout());
          cP2.setLayout(new BorderLayout());
          cP3.setLayout(new BorderLayout());
          bP1.setBorder(new TitledBorder("Make a choice"));
          bP2.setBorder(new TitledBorder("Make a choice"));
          bP3.setBorder(new TitledBorder("Make a choice"));
          bP1.add(jbAdministratorLogOn);
          bP2.add(jbNewUserRegister);
          bP3.add(jbExistingUserLogOn);
          bP1.add(jbAdministratorExitTheSystem);
          bP2.add(jbNewUserExitTheSystem);
          bP3.add(jbExistingUserExitTheSystem);
          cP1.add(bP1, BorderLayout.SOUTH);
          cP2.add(bP2, BorderLayout.SOUTH);
          cP3.add(bP3, BorderLayout.SOUTH);
          jtp.addTab("Administrator", cP1);
          jtp.addTab("New User", cP2);
          jtp.addTab("Existing User", cP3);
          JFrame jf = new JFrame("Home Entertainment");          
          jf.getContentPane().add(jtp, BorderLayout.CENTER);
          jf.setSize(500, 500);
          jf.setVisible(true);
          jbAdministratorLogOn.addActionListener(this);
          jbNewUserRegister.addActionListener(this);
          jbExistingUserLogOn.addActionListener(this);
          jbAdministratorExitTheSystem.addActionListener(this);
          jbNewUserExitTheSystem.addActionListener(this);
          jbExistingUserExitTheSystem.addActionListener(this);
       public void actionPerformed(ActionEvent e){
          if(e.getSource() == jbAdministratorLogOn){
             LogOn logOn = new LogOn();
             logOn.setVisible(true);
          if(e.getSource() == jbNewUserRegister){
             RegistrationForm r = new RegistrationForm();
             r.setVisible(true);
          if(e.getSource() == jbExistingUserLogOn){
             LogOn logOn = new LogOn();
             logOn.setVisible(true);
          if(e.getSource() == jbAdministratorExitTheSystem){
             System.exit(0);
          if(e.getSource() == jbNewUserExitTheSystem){
             System.exit(0);
          if(e.getSource() == jbExistingUserExitTheSystem){
             System.exit(0);
       public static void main(String[] args){
          new HomeEntertainment();
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class LogOn extends JFrame{
       JPanel pnlBody, pnlFooter;
       JLabel unLabel = new JLabel("Username: ");
       JLabel pwLabel = new JLabel("Password: ");
       JTextField jtfUN = new JTextField(20);
       JPasswordField jtfPW = new JPasswordField(20);
       JButton jbOK = new JButton("OK");
       JButton jbCancel = new JButton("Cancel");
       Container contentpane;
       public LogOn(){
          super("Welcome to Home Entertainment");
          contentpane = getContentPane();
          contentpane.setLayout(new BorderLayout());
          pnlBody = new JPanel();
          pnlFooter = new JPanel();
          pnlBody.add(unLabel);
          pnlBody.add(jtfUN);
          pnlBody.add(pwLabel);
          pnlBody.add(jtfPW);
          pnlFooter.add(jbOK);
          pnlFooter.add(jbCancel);
          contentpane.add(pnlBody,BorderLayout.NORTH);
          contentpane.add(pnlFooter,BorderLayout.CENTER);
          pack();
          setVisible(true);
          jbOK.addActionListener(new ActionListener(){
             public void actionPerformed(ActionEvent e){
                String username;
                String password;
                String[] userUsernameArray = {"Ann Smyth", "John Murphy"};
                String[] userPasswordArray = {"1", "2"};
                String[] adminUsernameArray = {"Administrator"};
                String[] adminPasswordArray = {"0"};
                username = jtfUN.getText().trim();
                password = new String(jtfPW.getPassword());
                if(username.equals(userUsernameArray) && password.equals(userPasswordArray)){
                   setVisible(false);     
                   UserMainMenu umm = new UserMainMenu();
                   umm.setVisible(true);
                else{
                     JOptionPane.showMessageDialog(null, "Error\n\nYou have entered an incorrect username and/or password\nPlease try again", null, JOptionPane.ERROR_MESSAGE);
                if(username.equals(adminUsernameArray) && password.equals(adminPasswordArray)){
                   setVisible(false);     
                   AdminMainMenu amm = new AdminMainMenu();
                   amm.setVisible(true);
                else{
                     JOptionPane.showMessageDialog(null, "Error\n\nYou have entered an incorrect username and/or password\nPlease try again", null, JOptionPane.ERROR_MESSAGE);
          jbCancel.addActionListener(new ActionListener(){
             public void actionPerformed(ActionEvent e){
                setVisible(false);
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class AdminMainMenu extends JFrame{
       JPanel pnlBody;
       JButton btnOrderSystem = new JButton("Order System");
       JButton btnMaintenance = new JButton("Maintenance");
       JButton btnAdminLogOff = new JButton("Log Off");
       Container contentpane;
       public AdminMainMenu(){
          super("Main Menu");
          contentpane = getContentPane();
          contentpane.setLayout(new BorderLayout());
          pnlBody = new JPanel();
          pnlBody.add(btnOrderSystem);
          pnlBody.add(btnMaintenance);
          pnlBody.add(btnAdminLogOff);
          contentpane.add(pnlBody,BorderLayout.CENTER);
          pack();
          setVisible(true);
          btnOrderSystem.addActionListener(new ActionListener(){
             public void actionPerformed(ActionEvent e){
                setVisible(false);  
                //OrderSystem os = new OrderSystem();
                //os.setVisible(true);    
          btnMaintenance.addActionListener(new ActionListener(){
             public void actionPerformed(ActionEvent e){
                setVisible(false);  
                //Maintenance m = new Maintenance();
                //m.setVisible(true);    
          btnAdminLogOff.addActionListener(new ActionListener(){
             public void actionPerformed(ActionEvent e){
                int result;
                result = JOptionPane.showConfirmDialog(null, "Are you sure you want to log off?", null, JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE);
                if(result == JOptionPane.YES_OPTION){
                   setVisible(false);
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class UserMainMenu extends JFrame{
       JPanel pnlBody;
       JButton btnUserProductMenu = new JButton("Product Menu");
       JButton btnUserMemberMenu = new JButton("Member Menu");
       JButton btnUserRentalMenu = new JButton("Rental Menu");
       JButton btnUserLogOff = new JButton("Log Off");
       Container contentpane;
       public UserMainMenu(){
          super("Main Menu");
          contentpane = getContentPane();
          contentpane.setLayout(new BorderLayout());
          pnlBody = new JPanel();
          pnlBody.add(btnUserProductMenu);
          pnlBody.add(btnUserMemberMenu);
          pnlBody.add(btnUserRentalMenu);
          pnlBody.add(btnUserLogOff);
          contentpane.add(pnlBody,BorderLayout.CENTER);
          pack();
          setVisible(true);
          btnUserProductMenu.addActionListener(new ActionListener(){
             public void actionPerformed(ActionEvent e){
                setVisible(false); 
                //UserProductMenu upm = new UserProductMenu();
                //upm.setVisible(true);    
          btnUserMemberMenu.addActionListener(new ActionListener(){
             public void actionPerformed(ActionEvent e){
                setVisible(false); 
                //UserMemberMenu umm = new UserMemberMenu();
                //umm.setVisible(true);  
          btnUserRentalMenu.addActionListener(new ActionListener(){
             public void actionPerformed(ActionEvent e){
                setVisible(false); 
                //UserRentalMenu urm = new UserRentalMenu();
                //urm.setVisible(true);  
          btnUserLogOff.addActionListener(new ActionListener(){
             public void actionPerformed(ActionEvent e){
                int result;
                result = JOptionPane.showConfirmDialog(null, "Are you sure you want to log off?", null, JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE);
                if(result == JOptionPane.YES_OPTION){
                   setVisible(false);
    }

    See my answer in your other posting on this topic.
    Please don't start new threads on the same problem; if you have new information (or a better code sample), just continue in the original thread.

  • I'm using Windows 8.  I have 2 folders in my videos library - movies and personal videos.  When I try to import a movie into iTunes, it puts it in the Home Video section and if I import a personal video, it puts it into the home video section.  what up?

    Im using Win8.  I originally had all my ripped movies in a movie folder listed in the videos library.  This imported into iTunes movies with no issue.  I later added a second folder t my library - personal videos where i put all my home videos.  I was able to import this into iTunes and it showed up in "Home Movies" - very cool and exactly what I wanted.  Now, if I add a new ripped movie and put it in my movie librairy and try to import it into iTunes, it places it in Home Movies.  And if I put a new personal video, it will also import into iTunes under 'Home Video?.  What is going on here??  Any help would be greatly appreciated - it seems like this is a bug in iTunes 11.

    I thank you for the response.  Apple does some assinine things sometimes and this is one of them.  Ask the planet the difference between a movie and a home video and with the exception of Apple, you'd get 100% consenus on the what difference is.  A home video is something that I shoot, like my kids birthday party.  A movie is something I urchased either via download or a DVD that I ripped.  Unbelievable!   The fact that Apple has chosen not to distinguish based upon which folder I tell it is Movies and which folder is Home Videos is really hard to fathom - sounds like something Windows would do. I find it funny that in my iTunes movies sub-section of the movies section, the movie icons have a cloud icon in upper right corner to distinguish it as bought from Apple iTunes versus no cloud icon for movies that I have ripped - so the distintion was already made and clearly visible.  Now - everything just defaults to "home videos" if I try to import a new ripped DVD - why even bother to have this distinction on the iTunes bar?  WOW!
    As for your direction, I do not understand what you are telling me - what Media Kind and what Options tab are you referring to?  I see no Options tab in iTunes.  Right licking on the movie icon does not yield media kind or options as well.  Gping to the source file does not yield these options either.
    Thanks again for your help.
    Clay

  • How do I transfer an old camera video that is on my old iPod  to my video library on my computer?

    How do I transfer an old camera video that is on my old iPod  to my video library on my computer?
    gsacraft

    I tried to go to my computer and open iPod device and it shows me only one item.  cannot find video from opening iPod from my computer.  If I open iTunes, it does not drop the video into my computer video folder.  unfortunately, things are still at a standstill. sorry 

  • I have installed the LATEST VERSION of itunes in my windows and i bought the new ipad with retina display ,i had moved music into the ipad from my windows through the itunes but I DONT KNOW HOW TO MOVE THE VIDEOS IN MY VIDEOS LIBRARY OF MY COMPUTER TO MY

    i have installed the LATEST VERSION of itunes in my windows and i bought the new ipad with retina display ,i had moved music into the ipad from my windows through the itunes but I DONT KNOW HOW TO MOVE THE VIDEOS IN MY VIDEOS LIBRARY OF MY COMPUTER TO MY

    Close your iTunes,
    Go to command Prompt -
    (Win 7/Vista) - START/ALL PROGRAMS/ACCESSORIES, right mouse click "Command Prompt", choose "Run as Administrator".
    (Win XP SP2 n above) - START/ALL PROGRAMS/ACCESSORIES/Command Prompt
    In the "Command Prompt" screen, type in
    netsh winsock reset
    Hit "ENTER" key
    Restart your computer.
    If you do get a prompt after restart windows to remap LSP, just click NO.
    Now launch your iTunes and see if it is working now.
    If you are still having these type of problems after trying the winsock reset, refer to this article to identify which software in your system is inserting LSP:
    Apple software on Windows: May see performance issues and blank iTunes Store
    http://support.apple.com/kb/TS4123?viewlocale=en_US

  • Adobe Video Library no longer accessible

    I'm using CS3 Design Premium, and after I recently upgraded to Mac OS 10.5.5 on my Mac Pro, I was no longer able to access the Adobe Video Library/Lynda.com training videos. I haven't tried it from other CS3 apps, but from InDesign when I click on Help, go to a topic, and click on a video link, it comes up and the progress bar appears to "progress," but nothing happens when I go to actually play it. I can't even click on the "background" window showing all the applications and lists of videos for each one. That becomes all grayed out.
    Does anyone have an idea of what might be happening and how to fix the situation?? I'd appreciate any suggestions.
    Terry

    Because Adobe uses Flash technology for all its videos, I'd reinstall the Flash Player. Here's a link to the latest version:
    http://www.versiontracker.com/dyn/moreinfo/macosx/11622

  • Rsync used STRICTLY for "photos and video" library back-up

    Hi,
    I'm hoping to get some guidance from some experienced users of rsync.
    I'm new to rsync, but have been learning about it.   I'm also new to Terminal.
    .....**For full system back-ups, I use CCC (Carbon Copy Cloner)....clean and simple.**
    However, for my large "photo & video library" (over 1 TB on an external drive), I found that CCC, while essentially doing the same as rsync, seems to take MUCH longer.  Rsync, on the other hand, is very fast.
    This leads me to FIVE questions.
    Q1:  Is this because CCC (which uses the rsync command, albeit modified), is doing a check-sum or sometime else behind the scenes?
    Also, looking through the various command lines that other contributors have suggested when using rsync, I am a little confused as to which optional commands are necessary for a PURELY "photo and video" library.
    For the optional commands, I think the ones that are a MUST for me are:
    -a  - "archive" rsync, includes ownership info and extended attributes extremely useful for moving large volumes of data and keeping AD/OD/POSIX permissions intact
    -v - "verbose" gives the user more information on the rsync display
    -x - prevents crossing filesystem boundaries
    -t   - preserves modified time
    --delete  
    This tells rsync to delete any files on the receiving side that aren't on the sending side. Files that are excluded from transfer are excluded from being deleted 
    ....Optionally, I could add the following to view the progress:
    --stats
    This tells rsync to print a verbose set of statistics on the file transfer, allowing you to tell how effective the rsync algorithm is for your data.
    Q2:  Is there anything else I should be adding?
    Q3:  Also, I saw that one contributor used "bash" at the start of the command line.  Is this necessary for my specific purpose?
    Q4:  Snow Leopard comes with rsync version 2.6.9 version 29.   I know that version 3.1.0 is already out, but this would require an installation step (possibly using come Terminal commands, or something like "MacPort"), then adding patches, and perhaps some steps that I haven't mentioned.  Is version 3.1.0 really necessary, and in what way?  Much faster?  Better Integrity of the back-up?  Other?  (o.k., that was more than one question) 
    Q5:  Is there a command to preserve the "CREATED" time of the photo?  Is this taken care of by the " -a " or the " -t "?
    Thanks,
    Sam

    sling74 wrote:
    sling74 wrote:
    Hi Tony,
    Thanks for your quick reply.  
    A few other questions:
    1.     What is the -N command for?  I could not see it on the rsync.samba.org website.
    2.     My friend does not have CCC.  She's also using Snow Leopard 10.6.8.  What are the steps to properly install the newest version of rsync?
    3.    For myself, what would be the disadvantage of using CCC directly rather than accessing it via Terminal?  When running CCC, what are the default commands being used?
    Thanks,
    Sam
    Hi Tony,
    Thanks for your quick reply.  
    A few other questions:
    1.     What is the -N command for?  I could not see it on the rsync.samba.org website.
    That's added with the crtimes patch:
         -N, --crtimes               preserve create times (newness)
    2.     My friend does not have CCC.  She's also using Snow Leopard 10.6.8.  What are the steps to properly install the newest version of rsync?
    Here's what I do:
    1. Download and unarchive rsync and its patches
        a. Move patches directory to rsync-3.1.0
        b. cd rsync-3.1.0
    2. Apply patches relevant to preserving Mac OS X metadata
           patch -p1 <patches/fileflags.diff
           patch -p1 <patches/crtimes.diff
    3. Apply patch relevant to preserving Mac OS X hfs+compression
          patch -p1 <patches/hfs-compression.diff
    4. Configure, make, install
            ./prepare-source
            ./configure
            make
            sudo make install
    5. Verify your installation
          rsync --version
    By default, rsync will be installed in /usr/local/bin.
    If that isn't in your path, you will need to call
    your new version of rsync by its absolute
    path in /usr/local/bin (you will most likely need to do this
    and --version will verify that you have the right version)
    (from: Configuring Mac OS X for Unattended Backup Using rsync and updated for hfs+compression patch)
    3.    For myself, what would be the disadvantage of using CCC directly rather than accessing it via Terminal?  When running CCC, what are the default commands being used?
    No disadvantages that I'm aware of. 
    I'm not sure what defaults that Mike is using now, but most of the the flags that I use and posted are from the link above from Mike a few years ago.

  • Set image path in java class library

    Hi,
    I created a java class library project and made .jar file. My java class library contains .jpg files in separete folder named as Images. My .jar file contains list of classes and image folder also but when i am using .jar file in applet. java class library is working but images are not shown. Let me know how to create imageicon to show images also in the class library

    ImageIcon icon = new ImageIcon(getClass().getResource(path-to-file));

  • Please help "pull videos from Video library & play in my app"

    Hi ,
    Q1:I put videos in my ipad video library using itunes.I have it so the videos are pulled from the video library, once I click on the video it opens just not in my app  but in the video library.
    How do I get the videos to play on my app? not open and play in the video library?
    Q2: When I place the videos in the ipads photo library it works but then I have a problem, The videos can be shared/emailed..I don't want the videos to be taken when the ipad is passed around to others. I could go this route if somehow I can encrypt the videos or keep them from being taken... any suggestions?
    Note:
    We are using NSURL class refrence...everything has to be local.. also this is for private use not going on app store
    This has been stomping everyone, any suggestions are greatly appriciated

    This may or may not work, but is worth a try.
    Select the clip in the trash. Then click on the Gear box in the top area of the trash. See if it gives you the option to "Put Back". If so, that should do it.
    If not, you still may be able to drag the clip back to the Event that it came from. Then restart iMovie.

  • The video library is empty in iMovie on iOS after update to iCloud photo library

    I updated to iCloud photo library and all of my photos and videos are now in the cloud instead of my iDevice. When I open iMovie in iDevice, the photo/video library is empty. How can I use my videos in projects?

    iCloud photo library will be introduced as beta in an iOS 8 update scheduled for October.  Read under "Pricing & Availability" here: http://www.apple.com/pr/library/2014/09/09Apple-Announces-iOS-8-Available-Septem ber-17.html.

  • JGSL : about java scientific library, how to use it any tutorial or etc

    Hay,
    I have a question regarding JGSL: java scientific library.
    I just download the jgsl.0.1.1 lib for my project
    It contains a bunch of file, including the lib files
    I set the lib folder path in the LD_LIBRARY_PATH and when i tried to run the testfile.class
    that comes with this library, i got an error
    main class defination not found.
    Have any one used the lib if yes can send me the working example.
    or at least tell me how to set these things, there is no documentation available with this.
    thanks

    Why don't u use a class loader. Try this code
    // loader class
    public class Loader  extends ClassLoader {
        String path;
        public Loader(String path) {
              this.path = path;
        public Class findClass(String name) {
            byte[] b = loadClassData(path+name+".class");
            return defineClass(name, b, 0, b.length);
        private byte[] loadClassData(String name) {
            File file = new File(name);
            byte[] data = null;
            try {
                InputStream in = new FileInputStream(file);
                data = new byte[ (int) file.length()];
                for (int i = 0; i < data.length; i++) {
                    data[i] = (byte) in.read();
            catch (IOException ex) {
            file = null;
            return data;
    // in your caller class use
       Loader loader = new Loader(libPath); // lib path may be taken from a command line arg
       Object main = loader.loadClass("ClassLib", true).newInstance();I think this is what u r looking for
    Uditha Nagahawatta

  • Creating a video library

    I am creating a video library of approximately 100 video
    clips - suggestions or thoughts from anyone who has done this
    before and the best way to do it, and best file format? I am
    leaning towards wmv simply because that is how the videos are now -
    and using a database to pull the file name for each link.
    It needs to be designed where it will fit in a fixed size
    player that users can resize.
    Thanks!

    oh yeah one more question - any suggestions or links to
    something that could automate this - i.e. a javascript or extension
    - where I wouldn't have to do much coding . . . yes lazy I
    know!

  • Creating a Video "Library" in Pr

    Hi,
    Recently I have decided to make the switch from Final Cut Pro X to premiere pro. This switch is mainly due to the cool dynamic link features in premiere.
    I generally edit video mashups/compilations as backdrop visuals for DJs. Some of my videos include clips from over 80 different sources. I'm currently using Final Cut Pro X to do all the editing and now feel I have outgrown it a bit. When I'm editing in FCPX I use my events and key tags as a means of organizing a wide variety of clips. What I like about this system is it allows me to bring in any of my key tagged clips into a current project. In an Ideal world I would have this same type of “library” of clips to pull from in premiere.
    So my two question are:
    1. Is there a way to easily access clips (including metadata)  from previous projects in premiere  so that I can add them to a current project?
    2. Do you have any advice about organizing a massive video library like this?
    As an important side note all of the videos I sample are by permission or a commercial Creative Commons license.
    I would love to hear a professional opinion on this, Thanks for the help!

    oh yeah one more question - any suggestions or links to
    something that could automate this - i.e. a javascript or extension
    - where I wouldn't have to do much coding . . . yes lazy I
    know!

  • Why wont my video library Load?

    Since updating to latest IOS 4.3.5 and Itunes 10.4, when I try to open my video library, the screen goes white for a while then back to home screen, I have Ipod tough 64GB 3rd  Gen with 142 video files, it used to work fine. I've taken some of the most recent videos off after the update but still the same problem any ideas?

    try resetting your settings:
    settings > general > reset > reset all settings

  • Java Video Issues in Snow Leopard

    Hello,
    After a little help and adive....
    Been trying to fathem out my trouble with Java videos and games, I have looked through previous posts and tried what has been sugested and still not working, only thing I havnt tried is reinstalling Java, as I can seem to work out how to!
    The videos are choppy, or I just get a black screen for about 15 sec, and games wont load or I cant click anything, I have been to the Java site and tested my installed Java and it showed it is working.
    The Java prefrences wont let me select between 64 and 32 bit, and I dont have the check box that is the solution via Mac Support.
    I get the same problems on Safari, Firefox and Chrome.
    I am running a Macbook Pro on:
    Version 10.6.8 Build 10K549
    Safari 5.1.5
    Java 1.6.0_41-b04-415
    Any help would be great!
    Cheers, Steve

    Java games?  What games are written in Java?
    Even more curious, what videos use Java?
    I think you are confusing Java with flash.
    I don't know about the games but the video is dependent on a number of things; whether other processes are hogging the cpu, your internet connection speed, how fast the video server is, and how high the resolution of the video is.  In the latter case most online flash videos like youtube allow you to lower the resolution.  They have a little gear in the lower right toolbar of a video which you click to lower the resolution.
    Make sure you have the latest flash plugin installed.  You should download it only from the adobe site.

Maybe you are looking for

  • How to create Invoice with ref to PO

    Dear sd gurus.. i know we can create invoice with ref to sales order not with po But i want to create Invoice with ref to po only please guide me Thanks a lot

  • Updating values in ADF

    Hi!! I am using jdeveloper 11.1.1.5 I had created RFQhdVO and RFQlnVO based on EO I had also created a Viewlink RFQhdVO.docno = RFQlnVO.docno and RFQhdVO.pfx = RFQlnVO.pfx I had dragged and dropped RFQhdVO as a af:ReadOnly Table. I had dragged and dr

  • Love my ovi maps. yaeeeeee

    i love how it works.3.04 is soo awesome.after 1 week of having the 3.04 wi fi locating doesnt work no more.no more big red ring showing about 1 mile off from your current location yaeeeeeeee.now it takes soooo long that i have to shut it off then bac

  • UOM replicated form 1st R/3 system overwritten by replication for 2nd R/3

    Dear Experts, I face a problem regarding the replication of data from R/3 to SRM (7.0, Classic). We have two R/3 systems connected to SRM. Both of these R/3 systems have their own UOMs, that need to be replicated to SRM. Here, it is also important to

  • Css export produces no results

    I have made a pretty simple layout with  a few 3 slices and I can not get anything to export at all. The page is blank?!?!?! I had updated Fireworks to 10.0.3 and the CSS export files before this started. I waited 2 years for this functionality. I lo