Basic help required

Dear All,
I am new to flash, never touched programming in any form so
actionscript means nothing! I am trying to create a list using the
component tools, which seem to be easy enough, however, how do i
make the selection then load my required flv's/swf's into the
flvplayback component. Aim - to be able to select various video
files and have them presented in same spot/display window with
navigation list down the side?
Yours in hope :-) regards Ed (PS any direction to websites,
tutorials much appreciated)

You may start with www.tutorialized.com, www.brainbell.com or
www.smartwebby.com to get some samples and tutorials.

Similar Messages

  • Basic help required for multiple files to be opened from Bridge to PS

    Hi
    I am attempting to shave off a few hours from my workflow and because I'm new to Bridge I'm unsure how to do this. I'm pretty sure anyone out there with a small working knowledge of Bridge or CS3 could help me.
    I am attempting to open three instances of the same RAW file into CS3 from Bridge. The three instances, although the same image, need to go through CameraRaw and change the exposure. One normally exposed, one +2 exposure and one -2 exposure. As you may have worked out I am attempting a pseudo-hdr effect with the one RAW file.
    How do I, with just one click, open the file three times, change the exposure each time, and then save the differently exposed files as tiffs?
    If it's ImageProcessor that I need to use then I'll admit I can't quite work out the rules for doing this!
    Any help gratefully received.

    Have a look at this thread.....
    http://forums.adobe.com/thread/623234?tstart=30

  • JUnit Basic Help Required

    hi
    I am using Junit for the first time. I need some help regarding this. i know that it is used for Unit Testing. Actually I have completed creating a part of my appication. I dont know what test cases to write. Can I write it now....now that my application is almost over.........anyway i do want to have testcases for my application.........I tried going through many tutorials but couldnt understand....anybit...........any way i am attaching a simple code below which creats a gui..........how can i write test cases for this using junit.....can some one write a simple testcase program so that i understand.............Thanks in Advance
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    import javax.swing.text.JTextComponent;
    import javax.swing.event.*;
    import java.util.*;
    import java.lang.*;
    import java.awt.datatransfer.UnsupportedFlavorException;
    import java.awt.dnd.DnDConstants;
    import java.awt.datatransfer.Transferable;
    import java.awt.datatransfer.DataFlavor;
    import java.awt.dnd.DropTarget;
    import java.awt.dnd.DropTargetDropEvent;
    import java.awt.dnd.DropTargetDragEvent;
    import java.awt.dnd.DropTargetListener;
    import java.awt.dnd.DropTargetEvent;
    public class TabTest
        JTabbedPane tabbedPane;
        MyTextAreaStatus myob = new MyTextAreaStatus();
        String fileName= null;
        static JFrame f = new JFrame();
        JMenuItem closeTabPopup;
        JMenuItem closeAllPopup;
        JPopupMenu tabPopup;
        JTextArea ta;
        public TabTest()
            tabbedPane = new JTabbedPane();
            tabbedPane.addMouseListener(new MouseListenerForTabPane());
            tabPopup = new JPopupMenu();
            tabPopup = createTabPopup();
            f.addWindowListener(new MyWindowListener());
             * DropTarget - Enable Drag and Drop
            new DropTarget(f,new MyDropTarget());
        private void loadFile(String fileName)
                StringTokenizer st = new StringTokenizer(fileName,"\\");
                String result=null;
                while(st.hasMoreTokens())
                  result = st.nextToken();
                //System.out.println(result);
                ta = new JTextArea();
                ta = makeTextPanel(result, fileName);
                try
                     ta.read(new FileReader(fileName), fileName);
                     ta.getDocument().addDocumentListener(new MyTextAreaListener());
                     //LineNumber lineNumber = new LineNumber(ta);
                     //lineNumber.setPreferredSize (9999);
                catch(IOException ioe)
                    //System.err.println("unable to read file " + fullName +" : " + ioe.getMessage());
        protected JTextArea makeTextPanel(String name, String tooltip)
            JTextArea fileArea = new JTextArea(20,15);
            fileArea.setDragEnabled(true);
            //fileArea.setTransferHandler(transferHandler);
            fileArea.setMargin(new Insets(5,5,5,5));
            JScrollPane fileScrollPane = new JScrollPane(fileArea);
            tabbedPane.addTab(name, null, fileScrollPane, tooltip);
            tabbedPane.setSelectedComponent(fileScrollPane);
            return fileArea;
        private JPanel getAddPanel()
            JButton print = new JButton("Add File");
            print.addActionListener(new ActionListener()
                public void actionPerformed(ActionEvent e)
                    JFileChooser chooser = new JFileChooser("C:/find and replace");
                        chooser.setAcceptAllFileFilterUsed(true);
                        chooser.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
                        chooser.setDialogTitle("Open File");
                        int option = chooser.showOpenDialog(null);
                        if(option == JFileChooser.APPROVE_OPTION)
                             if(chooser.accept(chooser.getSelectedFile()))
                                  fileName = chooser.getSelectedFile().toString();
                                  loadFile(fileName);
                            //writetoTextArea(fileName);
                             else
            JPanel panel = new JPanel();
            panel.add(print);
            return panel;
        public JPopupMenu createTabPopup()
            JPopupMenu popup = new  JPopupMenu();
            closeTabPopup = new JMenuItem("Close");
            closeAllPopup = new JMenuItem("Close All");
            closeAllPopup.addActionListener(new ActionListener()
                public void actionPerformed(ActionEvent e)
                    tabbedPane.removeAll();
            closeTabPopup.addActionListener(new ActionListener()
                public void actionPerformed(ActionEvent e)
                    tabbedPane.remove(tabbedPane.getSelectedIndex());
            //Add menuItems into popup menu
            popup.add(closeTabPopup);
            popup.add(closeAllPopup);
           return popup;
        private JPanel getPrintPanel()
            JButton print = new JButton("print to console");
            print.addActionListener(new ActionListener()
                public void actionPerformed(ActionEvent e)
                    JScrollPane sp = (JScrollPane)tabbedPane.getSelectedComponent();
                    JTextComponent tc = (JTextComponent)sp.getViewport().getView();
                    String text = tc.getText();
                    System.out.print(text);
            JPanel panel = new JPanel();
            panel.add(print);
            return panel;
          * This class sets the Document Listener for the TextArea.
          * This is used to detect any changes made to the text area.
         class MyTextAreaListener implements DocumentListener
              private int count = 0;
            public void changedUpdate(DocumentEvent e)
                   //System.out.println("Changed");
                   myob.setStatus(true);
                   if(count>0)
                   else
                       //enablePopUpMenuItems();
                       count++;
              public void insertUpdate(DocumentEvent e)
                   System.out.println("inserted");
                   myob.setStatus(true);
                   if(count>0)
                   else
                       //System.out.print("dsfsd");
                       //enablePopUpMenuItems();
                       count++;
              public void removeUpdate(DocumentEvent e)
                   //System.out.println("Removed");
                   myob.setStatus(true);
                   if(count>0)
                   else
                       count++;
          * This class is used to return the status of JTextArea.
          * Methods return True if contents are changed, else false
         class MyTextAreaStatus
               * booean to determine te status of textArea
              boolean currentStatus= false;
              public void setStatus(boolean tempStatus)
                   currentStatus = tempStatus;
              public boolean getStatus()
                   return currentStatus;
          * This class sets the Window Listener for the top level Container
          * i.e. JFrame. This is used while closing the window.
         class MyWindowListener implements WindowListener
              public void windowOpened(WindowEvent e)
              public void windowIconified(WindowEvent e)
              public void windowDeiconified(WindowEvent e)
              public void windowActivated(WindowEvent e)
              public void windowDeactivated(WindowEvent e)
              public void windowClosing(WindowEvent e)
                   boolean status = myob.getStatus();
                   if(status == true)
                        int option = JOptionPane.showConfirmDialog(null,"File not Saved \n Do you want to Save?","Teresa",JOptionPane.YES_NO_OPTION,JOptionPane.INFORMATION_MESSAGE);
                        if( option == JOptionPane.YES_OPTION)
                             if(fileName == "" || fileName == null)
                                  //saveAsFile();
                             else
                                  System.out.println("Eneteres");
                            //saveFile(fileName);
                             System.exit(0);
                        else
                             System.exit(0);
                             //myob.setStatus(false);
                   else
                        System.exit(0);
              public void windowClosed(WindowEvent e)
         class MouseListenerForTabPane implements MouseListener
            // catch all mouse events and redispatch them
             public void mouseMoved(MouseEvent e)
             public void mouseDragged(MouseEvent e)
             public void mouseClicked(MouseEvent e)
             public void mouseEntered(MouseEvent e)
             public void mouseExited(MouseEvent e)
             public void mousePressed(MouseEvent e)
             public void mouseReleased(MouseEvent e)
                if(e.isPopupTrigger())
                    // show the popup and return
                    tabPopup.show(e.getComponent(), e.getX(), e.getY());
          * This Class Enables Drag and Drop Features
         class MyDropTarget implements DropTargetListener
              private File file;
              private BufferedReader br;
              private FileReader fread;
              private String inLine;
              public void dragEnter(DropTargetDragEvent dtde)
              public void dragExit(DropTargetEvent dte)
              public void dragOver(DropTargetDragEvent dtde)
              public void dropActionChanged(DropTargetDragEvent dtde)
              public void drop(DropTargetDropEvent dtde)
                   try
                    System.out.println("Entering Drag");
                    /*if(!output.isEnabled())
                        output.setEnabled(true);
                        output.setBackground(Color.WHITE);
                    output.setText("");*/
                        Transferable tr = dtde.getTransferable();
                        DataFlavor[] flavors = tr.getTransferDataFlavors();
                        for (int i = 0; i < flavors.length; i++)
                             if (flavors.isFlavorJavaFileListType())
                                  dtde.acceptDrop(DnDConstants.ACTION_COPY_OR_MOVE);
                                  java.util.List list = (java.util.List)tr.getTransferData(flavors[i]);
                                  for (int j = 0; j < list.size(); j++)
                                       //fileName = list.get(j).toString();
    //file = new File(list.get(j).toString());
                                       loadFile(list.get(j).toString());
    /*fread = new FileReader(file);
                                       br = new BufferedReader(fread);
                                       while((inLine = br.readLine()) != null)
                                            output.append(inLine+"\n");
                                  dtde.dropComplete(true);
                                  myob.setStatus(false);
                        //output.setCaretPosition(0);
                        //enablePopUpMenuItems();
                   catch(UnsupportedFlavorException use)
                   catch(IOException ioe)
    public static void main(String[] args)
    TabTest test = new TabTest();
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.getContentPane().add(test.getAddPanel(), "North");
    f.getContentPane().add(test.tabbedPane);
    f.getContentPane().add(test.getPrintPanel(), "South");
    //f.addWindowListener(new MyWindowListener());
    f.setSize(400,400);
    f.setLocation(200,200);
    f.setVisible(true);
    The code looks big,but is a very simple one..........Plz Help

    GUI code is notoriously hard to test. Buddha knows I didn't even glance at
    yours, but have you separated the GUI layer from the business logic?
    Test the business layer. Also, in the future, imagine writing testing code before
    writing application code. At least where practicable, you should
    force your design to be testable from the get-go. I often redesign
    what is "non-testable" and find that improves the design! That being
    said, this doesn't extend to my GUI layer, but I know there are tools
    (I've seen one demoed in the Rational suite) for creating unit tests of
    GUIs.

  • Help required please (probably v basic)

    I'd really appreciate what is probably some basic help! Itunes no longer recognises my mini Ipod. When I plug my ipod in it no longer comes up on Itunes, so I can't move songs or purchase anything. I've bought a new Dock Connector but it doesn't help. I've reset and upgrading Itunes and again, it just doesn't seem to recognise my Ipod. I'm not that computer savvy I must admit, but I'm hoping its a simple problem that someone can kindly help me with. Thank you

    Hello - thank you for all this help....I'm afraid i think it's the Ipod. I tried it at work & it used to recognise it (as it does at home) but it doesn't anymore. I thought it was the connector so went to the Ipod shop & bought a new one.....tried it at home & work & it just doesn't realise anything has been plugged in. Luckily work v close to The Apple Shop in London, so wondering if I should just take it back to them? I've only had the computer for 6 months,so it's new & pretty up to date. Thank you again for your time with this

  • Help required in Weblogic 6 - Creation & Configuration of Web Application

    Forum Home > Enterprise JavaBeans[tm]
    Topic: Help required in Weblogic 6 - Creation & Configuration of Web Application
    Duke Dollars
    2 Duke Dollars assigned to this topic. Reward the best responses to your question
    using the icons below, or transfer additional Duke Dollars to this topic.
    Welcome moinshariff!
    Watching this topic.
    Previous Topic Next Topic
    This topic has 1 reply on 1 page (Most recent message: Jan 23, 2002 1:05 AM)
    Author: moinshariff Jan 22, 2002 4:55 AM
    Hi,
    I am using Weblogic 6. I have created a new Web
    Application called Web (I have not used the DefaultWebApp_myserver).
    And I have the following settings:
    Name : Web
    URI : Web
    and Path : C:\Web
    and placed my JSP files under c:\Web\
    I am able to access the first page, but after that I am not able to access the
    second page.
    I get "Error 404--Not Found" on the browser. Basically the class file is not getting
    created under /Web-inf/_tmp_war_myserver_myserver_Web/jsp_servlet/ folder .
    I tried a work around for this. I copied all my files under one more folder called
    web and placed this under C:\Web
    The it works. Now I have 2 copied off all the files, 1 copy under c:\web and another
    copy under c:\web\web\.
    If I have the files under DefaultWebApp_myserver and have the setting as
    Name: DefaultWebApp_myserver
    URI: DefaultWebApp_myserver
    Path: .\config\mydomain\applications
    everything works fine.
    Can any one please let me know if there is any configuration which has to be done
    so that I do not duplicate the code in 2 directories
    Thanks in advance.
    Regards,
    Moin

    Forum Home > Enterprise JavaBeans[tm]
    Topic: Help required in Weblogic 6 - Creation & Configuration of Web Application
    Duke Dollars
    2 Duke Dollars assigned to this topic. Reward the best responses to your question
    using the icons below, or transfer additional Duke Dollars to this topic.
    Welcome moinshariff!
    Watching this topic.
    Previous Topic Next Topic
    This topic has 1 reply on 1 page (Most recent message: Jan 23, 2002 1:05 AM)
    Author: moinshariff Jan 22, 2002 4:55 AM
    Hi,
    I am using Weblogic 6. I have created a new Web
    Application called Web (I have not used the DefaultWebApp_myserver).
    And I have the following settings:
    Name : Web
    URI : Web
    and Path : C:\Web
    and placed my JSP files under c:\Web\
    I am able to access the first page, but after that I am not able to access the
    second page.
    I get "Error 404--Not Found" on the browser. Basically the class file is not getting
    created under /Web-inf/_tmp_war_myserver_myserver_Web/jsp_servlet/ folder .
    I tried a work around for this. I copied all my files under one more folder called
    web and placed this under C:\Web
    The it works. Now I have 2 copied off all the files, 1 copy under c:\web and another
    copy under c:\web\web\.
    If I have the files under DefaultWebApp_myserver and have the setting as
    Name: DefaultWebApp_myserver
    URI: DefaultWebApp_myserver
    Path: .\config\mydomain\applications
    everything works fine.
    Can any one please let me know if there is any configuration which has to be done
    so that I do not duplicate the code in 2 directories
    Thanks in advance.
    Regards,
    Moin

  • Basic help with photo slideshow?

    Hi
    I am new to adobe after effects and I have recently purchased a file from videohive (http://videohive.net/item/photo-album-v2/44575) which is great.  I am trying to tweak it a little and as I am new to after effects, I would love to ask anyone for some basic help?  I will be leaving the country in 2 weeks to get married and my UK wedding reception will be a week after I return so I am in pretty much a hurry to get a slideshow rendered and put onto dvd to play in the reception.  I have mastered how to render in PAL format and get onto DVD but I am having a little trouble with basic elements such as adding keyframes.
    The file has 13 placeholders which I have replaced with my own photos. Two of which are replaced with avi videos instead of jpg. This works fine but I would like to stop the camera movement on say photo 7 and zoom in a little on the video, play the video (approx 40 seconds) then return the photo back in place and resume your camera movement.  This will be repeated for one other photo (photo 9) where the video is approx 60 seconds.  Could you possibly help me how I can do this?  I am also adding music to play throughout from start to finish and I would also like to pause (or fade volume) whilst the avi video placeholder is playing, then resume after playback.  I know this may sound a lot to ask but I know that with the knowledge - it will only take me about 30 mins work once I know what to do.  Any help you can offer will be fantastic. I am proficient with Adobe Flash so I understand the jargon of timelines etc.
    Thank you for any help anyone could provide in my panic to get complete.
    Best regards
    Sean.

    *woohoo* Here's to the ones daring marriage... For your  problems there is a number of ways to tackle them, but the specific solution may depend on how the template works. As David already said, for audio you'd be better off using Premiere, but assuming you have just a single track that realyl only requires fades, AE should serve your needs. You can reveal the audio volume by tapping the L key when the respective layer in your composition is selected, then enable the stopwatch icon to add keyframes. Layers can be trimmed by simply dragging their ends, duplicated with Ctrl+D and split by using Ctrl+Shift+D, so it should be perfectly possible to extend your audio as needed, assuming you increase the comp duration first via the composition options. For the images to come into view, you could simply scale them up. Of course the project is based on 3D layers, so it would look a lot better if you animated the camera to dolly in, but if you have no experience in AE, that may make more of a mess than it's worth. Therefore I simply recommend you create a photo flash/ film burn transition - add a  white solid with a slight color tint, set it's blending mode to add, animate it's opacity and while it's fading out, fade in your full screen video. If done in 32bpc, this can look quite real and since it's a separate effect, it won't interfere with the rest of the animation.
    Mylenium

  • XSLT mapping Help Required.

    XSLT mapping Help Required.
    Hi Experts,
    I am New to XSLT Mapping. I am practising the below Example:
    InputXML File:
    <?xml version="1.0" encoding="UTF-8"?>
    <?xml-stylesheet type="text/xsl" href="Persons111.xsl"?>
    <ns0:MT_XSLT_Source xmlns:ns0="http://XYZ.com/gen">
    <Person>
    <FirstName>Anshul</FirstName>
    <LastName>Chowdhary</LastName>
    <Gender>Male</Gender>
    <Address>
    <Street>2nd Main</Street>
    <Houseno>83/b</Houseno>
    <City>Mysore</City>
    </Address> </Person>
    </ns0:MT_XSLT_Source>
    XSL StyleSheet File:
    <?xml version='1.0' encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="http://XYZ.com/Gen"
    Xmlns:ns1=”http://XYZ.com/Test”>
    <xsl:template match="/">
    <ns1:MT_XSLT_Target>
    <Title> <xsl:value-of select="ns0:MT_XSLT_Source/Person/Gender"/> </Title>
    <Name> <xsl:value-of select="concat(concat(ns0:MT_XSLT_Source/Person/FirstName,' '), ns0:MT_XSLT_Source/Person/LastName)"/>
    </Name>
    <Street> <xsl:value-of select="concat(concat(ns0:Mt_XSLT_Source/Person/Address/Houseno,' '),
    ns0:Mt_XSLT_Source/Person/Address/Street)"/> </Street>
    <City> <xsl:value-of select="ns0:Mt_XSLT_Source/Person/Address/City"/> </City>
    </ns1:MT_XSLT_Target>
    </xsl:template>
    </xsl:stylesheet>
    The Desired Output shuold be:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns1:MT_XSLT_Target xmlns:ns1="http://XYZ.com/Test">
    <Title>Male</Title>
    <Name>Anshul Chowdhary</Name>
    <Street>83/b 2nd Main</Street>
    <City>Mysore</City>
    </ns1:MT_XSLT_Target>
    I have refered the xsl in xml and i am getting the below Oupt in a Single line like this:
    Anshul Chowdhary Male 2nd Main 83/b Mysore
    I am Unable to display in Target XML Fomrat as shown above. Please check and do the needful.
    Regards,
    GIRIDHAR

    Hi,
    I have used below for testing.
    Input xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <?xml-stylesheet type="text/xsl" href="Persons111.xsl"?>
    <ns0:MT_XSLT_Source xmlns:ns0="http://XYZ.com/gen">
    <Person>
    <FirstName>Anshul</FirstName>
    <LastName>Chowdhary</LastName>
    <Gender>Male</Gender>
    <Address>
    <Street>2nd Main</Street>
    <Houseno>83/b</Houseno>
    <City>Mysore</City>
    </Address> </Person>
    </ns0:MT_XSLT_Source>
    xsl code:
    <?xml version='1.0' encoding="UTF-8"?> 
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="http://XYZ.com/gen" 
        xmlns:ns1="http://XYZ.com/Test"> 
        <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/> 
        <xsl:template match="/"> 
            <ns1:MT_XSLT_Target> 
                <Title> <xsl:value-of select="ns0:MT_XSLT_Source/Person/Gender"/> </Title> 
                <Name> <xsl:value-of select="concat(concat(ns0:MT_XSLT_Source/Person/FirstName,' '), ns0:MT_XSLT_Source/Person/LastName)"/> 
                </Name> 
                <Street> <xsl:value-of select="concat(concat(/ns0:MT_XSLT_Source/Person/Address/Houseno,' '), 
                    /ns0:MT_XSLT_Source/Person/Address/Street)"/> </Street> 
                <City> <xsl:value-of select="/ns0:MT_XSLT_Source/Person/Address/City"/> </City> 
            </ns1:MT_XSLT_Target> 
        </xsl:template> 
    </xsl:stylesheet>
    For testing in PI ,change the extension from .txt to .xsl and zip it and upload into PI as an imported archive .
    Regards
    Venkat

  • Urgent help required: Query regarding LC Variables

    Hi All
    Sometime earlier I was working on a performance issue raised by a customer. It was shell script that was taking almost 8-9 hrs to complete. During my research I came across a fact that there were some variables which were not set, the LC variables were impacting the sort funnel operations because of which the script was taking a long time to execute.
    I asked them to export the following commands, after which the program went on smoothly and finished in a couple of mins:
    export LC_COLLATE=en_US.ISO8859-1
    export LC_MESSAGES=C
    export LC_MONETARY=en_US.ISO8859-1
    export LC_MONETARY=en_US.ISO8859-1
    export HZ=100
    export LC_CTYPE=en_US.ISO8859-1
    export LANG=en_US.UTF-8
    Later I did recover that setting the LC_COLLATE to C, is not helping and the program was again taking a lot of time. Few questions that I want to ask are:
    1. Can someone please tell me, what each of these variable mean and how these values make a difference.
    2. When I exported LC_COLLATE=en_US.ISO8859-1, it worked fine, but when i tried with the defalut value LC_COLLATE=C, then why the program didnt work.
    As this issue is still going on, hence I would request All to provide their valuable inputs and let me know as much as possible.
    Appreciate your help in this regard.
    Thanks
    Amit
    Hi All
    A new development in this regard. The customer has send us a screen shot in which they were trying to export the locale variable using the commands which I have pasted above. I can see in the screen shot that while exporting LC_COLLATE and LC_TYPE, they get a message that ""ksh: export: couldn't set locale correctly"".
    Request everyone to please give their inputs as it's a bit urgent.
    Thanks for all the help in advance.
    Thanks
    Amit
    Some help required please...
    Edited by: amitsinhaengg on Jul 22, 2009 2:03 AM
    Edited by: amitsinhaengg on Jul 22, 2009 2:06 AM

    LC_CTYPE
    Controls the behavior of character handling functions.
    LC_TIME
    Specifies date and time formats, including month names, days of the week, and common full and abbreviated representations.
    LC_MONETARY
    Specifies monetary formats, including the currency symbol for the locale, thousands separator, sign position, the number of fractional digits, and so forth.
    LC_NUMERIC
    Specifies the decimal delimiter (or radix character), the thousands separator, and the grouping.
    LC_COLLATE
    Specifies a collation order and regular expression definition for the locale.
    LC_MESSAGES
    Specifies the language in which the localized messages are written, and affirmative and negative responses of the locale (yes and no strings and expressions).
    You can use command
    # locale -k LC_CTYPE
    to see more detail about each type.

  • Help required - Sales order item is partially delivered but the item grayed

    I have a sales order 123 having say item10 with qty 1, item20 with qty 10 , item 30 qty 12
    Item 1 confirmed qty 1 and delivered qty is 1
    Item 2 confirmed qty 10 and delivered qty 10
    Item 3 confirmed qty 1 and delivered qty is 1
    Now the item3 still has open requirements of 11 to be delivered. But the item is GRAYED OUT already.
    even if I do ATP the qty is not confirming for the remaining 11 pieces.
    Why is that? How to make that item out from GRAY.
    How to confirm the remaining 11 qty for that item.
    Help required as early as possible.
    Appreciate ur help guys
    Radha

    hi Radha, how are you ?
         ---the partial deliveries in master data must have not been mentioned.
         ---the deliveries should be upto target quantity.
         ---check order type, item category and schedule line category.
         ---check unrestricted stock availability.
    thank you
    regards
    Khera.

  • Search Help with in a serach help required in SRM 4.0

    Hi,                                                     
    Requirement: Search help required for Product Category field in the Search help for Product(BBPH_PRODUCT) in SRM portal.
    This search help is used in Create shopping Cart transaction. The hyper link on Internal Goods/Services leads to the search help BBPH_PRODUCT. 
    My analysis:           
    The field Product Category (CATEGORY_ID) has search help(COM_CAT_HIER) attached to its data element. When I single test the search help BBPH_PRODUCT in SAP GUI,I can see the search help for field product category in the selection dialogue box. However the same does not appear on the corresponding screen in HTML.
    Please let me know whether I need to do some thing to make the search help appear on the HTML screen?
    With Regards,         
    Prakash Kamath

    Hi Prakash,
    I have the same problem but with another field. Unloading point. Could you please tell me how did you solve this problem with displaying F4 help on html/ SRM portal?
    Thank you very much.
    Best regards,
    Danijela ZIvanovic

  • Help required with Photoshop Elements 4.0 this has been installed on my new Toshiba laptop with windows 8.1 for some 18 months and operating well. Now it will not open, message pops up saying "attempt to access invalid address" then "application not respo

    Help required with Photoshop Elements 4.0 this has been installed on my new Toshiba laptop with windows 8.1 for some 18 months and operating well. Now it will not open, message pops up saying “attempt to access invalid address” then “application not responding” Suggestions how to access would be much appreciated. Tks. Stuart

    What is the size of your hard disk?  PSE 4 is a very old program and I suspect it is not able to access the entire hard disk on your machine.  Just a thought here.

  • Help require with installing Adobe Acrobat onto my Macbook Pro Retina.

    Help require with installing Adobe Acrobat onto my Macbook Pro Retina.
    I have successfully installed all of my creative cloud apps with the exception being acrobat.
    I cannot print from Indesign to PDF.
    I have unistalled, reinstalled and still no Adobe Acrobat.
    I now have to go back to Windows 8 and create the PDF's there.
    Any one know how to get around this issue?
    Thanks in advance
    Kelvin

    OSX has effectively killed the ability to print to pdf, (print to pdf eliminates most of the "Rich features" of current pdf).
    Export from InDesign, always, excpet for the 1% of the time where you know why print to pdf would produce a better result.

  • Help required network configuration - Gateway route settings get erased on reboot.

    Oracle Linux 7
    Linux myhostname 3.8.13-35.3.1.el7uek.x86_64 #2 SMP Wed Jun 25 15:27:43 PDT 2014 x86_64 x86_64 x86_64 GNU/Linux
    #cat /etc/sysconfig/network-scripts/ifcfg-eno16780032
    TYPE="Ethernet"
    BOOTPROTO="none"
    DEFROUTE="yes"
    IPV4_FAILURE_FATAL="no"
    IPV6INIT="yes"
    IPV6_AUTOCONF="yes"
    IPV6_DEFROUTE="yes"
    IPV6_FAILURE_FATAL="no"
    NAME="eno16780032"
    UUID="2d1107e3-8bd9-49b1-b726-701c56dc368b"
    ONBOOT="yes"
    IPADDR0="34.36.140.86"
    PREFIX0="22"
    GATEWAY0="34.36.143.254"
    DNS1="34.36.132.1"
    DNS2="34.34.132.1"
    DOMAIN="corp.halliburton.com"
    HWADDR="00:50:56:AC:3F:F9"
    IPV6_PEERDNS="yes"
    IPV6_PEERROUTES="yes"
    NM_CONTROLLED="no"
    #route -n
    Kernel IP routing table
    Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
    0.0.0.0         34.36.143.254   0.0.0.0         UG    0      0        0 eno16780032
    34.36.140.0     0.0.0.0         255.255.252.0   U     0      0        0 eno16780032
    169.254.0.0     0.0.0.0         255.255.0.0     U     1002   0        0 eno16780032
    When I reboot the machine, the first line in route table gets erased, I then run:
    #route add default gw 34.36.143.254
    After which network works fine.
    Help required. I don't want to use NetworkManager.

    The following might be useful:
    https://access.redhat.com/solutions/783533
    "When transitioning from NetworkManager to using the network initscript, the default gateway parameter in the interface's ifcfg file will be depicted as 'GATEWAY0'. In order for the ifcfg file to be compatible with the network initscript, this parameter must be renamed to 'GATEWAY'. This limitation will be addressed in an upcoming release of RHEL7."
    NetworkManager is now the default mechanism for RHEL 7. Personally I don't quite understand this, because as far as I can gather it is a program for systems to automatically detect and connect to known networks. I think such functionality can be useful when switching between wireless and wired networks, but for a server platform, I wonder.

  • Help Required - Oracle AS 10g

    hello,
    i have just downloaded oracle 10g softwares ...
    i installed database then developer suite ... everything was fine ... until i was unable to run forms ...
    a friend of mine told me that i need to install application server in order to run forms ...
    1st of all i want to know that is there any way i can run forms without using Oracle AS 10g ...
    2ndly i m facing problems in installation of Oracle AS 10g ...
    i have studied online documentation but it ain't so helpfull for me ...
    it seems like ... i have to install "Oracle AS infrastructure" first and then "Middle-tier: Business Intelligence and forms" ...
    i m using P-IV (AMD Athlon XP 2100+, MMX, 1.7GHz Processor) with 512 MB DD RAM and Windows XP Professional with Service Pack 2 as Operating System.
    During installation, the installer is warning dat only "Oracle Application Server (J2EE and Web Cache)" and "Oracle Application Server Developer Kits" are supported installations on dis platform ...
    what should i do ... urgent help required ...
    regards,
    yasir ([email protected])

    @ brusardl and rkogelhe
    thanx for replying ...
    brusardl
    i didn't changed da port while installing Oracle AS ...
    inspite i stopped all services using/listening from dat port ...
    now ... i guess there has been some conflict ... as database listner stops automatically just after starting !!!
    rkogelhe
    can u plz tell me what is BI version of Forms ...
    and can i view forms running on web without installing Oracle AS with OC4J bundled in Forms ???
    Another Problem:
    I re-installed Database, Developer suite and then Oracle AS infrastructure ...
    everthing went fine ...
    when i installed Oracle AS Middle Tier - Business Intelligence & Forms
    during installation ... some configuration assistants failed/skipped ...
    da OC4J configration assistant at 5th last position failed ... so remaining 4 configuration assistants were skipped ...
    at da end it said ... Installation Succesfull but with some configuration assistants failed/skipped ...
    is dis a installation useless ... can i fix dis ?
    regards,
    yasir

  • Help required from JDeveloper Development Team.

    HI there,
    I Download the JDeveloper 10.1.2 (1811) from OTN, But the downloaded archive file is unable to open. I did the download once again but I am facing same problem. I want to JDeveloper 10.1.2 for the installation of BI Beans 10.1.2.
    Help required from JDeveloper Development Team
    Thanks For Your Time,
    Regards,
    ViSHAL.

    Please use an informative Subject line, there is more chance that people will read the post.
    All we can suggest is that you try the download again.

Maybe you are looking for