Can anybdy help in developing one sample interface in 7.4 as I'm new to this environment.

Hellow Guys,
Can anybdy help in developing one sample interface in 7.4  as I'm new to this environment.
I want some small interface developed in ESR and ID and walkthru me so that I can develop on my own in my environment..
I need in a clear way.
Plz help me
Thanks,
Danii

Hi,
Go through below vedeos for step by step approach .
SAP PI Online Training : File 2 File Scenario / XML 2 XML System Landscape Directory Scenario - YouTube
SAP PI Online Training : File 2 File Scenario - XML 2 XML Scenario ESR Service Repository Part 2 - YouTube
SAP PI Online Training : File 2 File Scenario / XML 2 XML Scenario Integration Directory Part -3 - YouTube
SAP PI Online Training : File 2 File Scenario - XML 2 XML Scenario Runtime Work Bench(RWB) Part -4 - YouTube
Regards
Venkat

Similar Messages

  • Can somebody help in getting a sample code to upload a csv file

    Can somebody help in getting a sample code to upload csv file from folder every 30 minutes that will update a particular record in crm ondemand

    Hi,
    I'm sorry but I do not have a code sample which performs the scenario you have described below. The samples I did provide are meant to illustrate the use of CRM On Demand Web Services and can be used as a guide to those developing integrations.
    If you have specific questions or issues that arise during the development of your integration please don't hesitate to post them, however, I would recommend that you contact Oracle Consulting Services or one of the many system integrators who actively develop applications which integrate with CRMOD if you require more in-depth assistance.
    Thanks,
    Sean

  • Hello can anybody  help me to build an interface

    hello can you help me to build an interface that can work with this english to private talk converter code
    import java.util.Map;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.BufferedReader;
    import java.io.FileReader;
    public class Translate
    public static void main(String [] args) throws IOException
    if (args.length != 2)
    System.err.println("usage: Translate wordmapfile textfile");
    System.exit(1);
    try
    HashMap words = ReadHashMapFromFile(args[0]);
    System.out.println(ProcessFile(words, args[1]));
    catch (Exception e)
    e.printStackTrace();
    // static helper methods
    * Reads a file into a HashMap. The file should contain lines of the format
    * "key\tvalue\n"
    * @returns a hashmap of the given file
    @SuppressWarnings("unchecked")
    private static HashMap ReadHashMapFromFile(String filename) throws FileNotFoundException, IOException
    BufferedReader in = null;
    HashMap map = null;
    try
    in = new BufferedReader(new FileReader(filename));
    String line;
    map = new HashMap();
    while ((line = in.readLine()) != null)
    String[] fields = line.split("\\t", 2);
    if (fields.length != 2) continue; //just ignore "invalid" lines
    map.put(fields[0], fields[1]);
    finally
    if(in!=null) in.close(); //may throw IOException
    return(map); //returning a reference to local variable is safe in java (unlike C/C++)
    * Process the given file
    * @returns String contains the whole file.
    private static String ProcessFile(Map words, String filename) throws FileNotFoundException, IOException
    BufferedReader in = null;
    StringBuffer out = null;
    try
    in = new BufferedReader(new FileReader(filename));
    out = new StringBuffer();
    String line = null;
    while( (line=in.readLine()) != null )
    out.append(SearchAndReplaceWordsInText(words, line)+"\n");
    finally
    if(in!=null) in.close(); //may throw IOException
    return out.toString();
    * Replaces all occurrences in text of each key in words with it's value.
    * @returns String
    private static String SearchAndReplaceWordsInText(Map words, String text)
    Iterator it = words.keySet().iterator();
    while( it.hasNext() )
    String key = (String)it.next();
    text = text.replaceAll("\\b"+key+"\\b", (String)words.get(key));
    return text;
    * @returns: s with the first letter capitalized
    String capitalize(String s)
    return s.substring(0,0).toUpperCase() + s.substring(1);
    ... here's the head of my pirate_words_map.txt
    hello     ahoy
    hi     yo-ho-ho
    pardon me     avast
    excuse me     arrr
    yes     aye
    my     me
    friend     me bucko
    sir     matey
    madam     proud beauty
    miss     comely wench
    stranger     scurvy dog
    officer     foul blaggart
    where     whar
    is     be
    are     be
    am     be
    the     th'
    you     ye
    your     yer
    tell     be tellin'

    hakimade wrote:
    hello can you help me to build an interface that can work with this english to private talk converter codeYou might want to re-ask this question in such a way that it can be answered.
    Also, when posting your code, please use code tags so that your code will retain its formatting and be readable. To do this, either use the "code" button at the top of the forum Message editor or place the tag [code] at the top of your block of code and the tag [/code] at the bottom, like so:
    [code]
      // your code block goes here.
      // note the differences between the tag at the top vs the bottom.
    [/code]or
    {code}
      // your code block goes here.
      // note here that the tags are the same.
    {code}Good luck.

  • Can anybody help me to build an interface that can work with this code

    please help me to build an interface that can work with this code
    import java.util.Map;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.BufferedReader;
    import java.io.FileReader;
    public class Translate
    public static void main(String [] args) throws IOException
    if (args.length != 2)
    System.err.println("usage: Translate wordmapfile textfile");
    System.exit(1);
    try
    HashMap words = ReadHashMapFromFile(args[0]);
    System.out.println(ProcessFile(words, args[1]));
    catch (Exception e)
    e.printStackTrace();
    // static helper methods
    * Reads a file into a HashMap. The file should contain lines of the format
    * "key\tvalue\n"
    * @returns a hashmap of the given file
    @SuppressWarnings("unchecked")
    private static HashMap ReadHashMapFromFile(String filename) throws FileNotFoundException, IOException
    BufferedReader in = null;
    HashMap map = null;
    try
    in = new BufferedReader(new FileReader(filename));
    String line;
    map = new HashMap();
    while ((line = in.readLine()) != null)
    String[] fields = line.split("
    t", 2);
    if (fields.length != 2) continue; //just ignore "invalid" lines
    map.put(fields[0], fields[1]);
    finally
    if(in!=null) in.close(); //may throw IOException
    return(map); //returning a reference to local variable is safe in java (unlike C/C++)
    * Process the given file
    * @returns String contains the whole file.
    private static String ProcessFile(Map words, String filename) throws FileNotFoundException, IOException
    BufferedReader in = null;
    StringBuffer out = null;
    try
    in = new BufferedReader(new FileReader(filename));
    out = new StringBuffer();
    String line = null;
    while( (line=in.readLine()) != null )
    out.append(SearchAndReplaceWordsInText(words, line)+"\n");
    finally
    if(in!=null) in.close(); //may throw IOException
    return out.toString();
    * Replaces all occurrences in text of each key in words with it's value.
    * @returns String
    private static String SearchAndReplaceWordsInText(Map words, String text)
    Iterator it = words.keySet().iterator();
    while( it.hasNext() )
    String key = (String)it.next();
    text = text.replaceAll("\\b"key"
    b", (String)words.get(key));
    return text;
    * @returns: s with the first letter capitalized
    String capitalize(String s)
    return s.substring(0,0).toUpperCase() + s.substring(1);
    }... here's the head of my pirate_words_map.txt
    hello               ahoy
    hi                    yo-ho-ho
    pardon me       avast
    excuse me       arrr
    yes                 aye
    my                 me
    friend             me bucko
    sir                  matey
    madam           proud beauty
    miss comely    wench
    where             whar
    is                    be
    are                  be
    am                  be
    the                  th'
    you                 ye
    your                yer
    tell                be tellin'

    please help me i don t know how to go about this.my teacher ask me to build an interface that work with the code .
    Here is the interface i just build
    import java.util.Map;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.BufferedReader;
    import java.io.FileReader;
    import java.awt.*;
    import javax.swing.*;
    public class boy extends JFrame
    JTextArea englishtxt;
    JLabel head,privatetxtwords;
    JButton translateengtoprivatewords;
    Container c1;
    public boy()
            super("HAKIMADE");
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            setBackground(Color.white);
            setLocationRelativeTo(null);
            c1 = getContentPane();
             head = new JLabel(" English to private talk Translator");
             englishtxt = new JTextArea("Type your text here", 10,50);
             translateengtoprivatewords = new JButton("Translate");
             privatetxtwords = new JLabel();
            JPanel headlabel = new JPanel();
            headlabel.setLayout(new FlowLayout(FlowLayout.CENTER));
            headlabel.add(head);
            JPanel englishtxtpanel = new JPanel();
            englishtxtpanel.setLayout(new FlowLayout(FlowLayout.CENTER,10,40));
            englishtxtpanel.add(englishtxt);
             JPanel panel1 = new JPanel();
             panel1.setLayout(new BorderLayout());
             panel1.add(headlabel,BorderLayout.NORTH);
             panel1.add(englishtxtpanel,BorderLayout.CENTER);
            JPanel translateengtoprivatewordspanel = new JPanel();
            translateengtoprivatewordspanel.setLayout(new FlowLayout(FlowLayout.CENTER,10,40));
            translateengtoprivatewordspanel.add(translateengtoprivatewords);
             JPanel panel2 = new JPanel();
             panel2.setLayout(new BorderLayout());
             panel2.add(translateengtoprivatewordspanel,BorderLayout.NORTH);
             panel2.add(privatetxtwords,BorderLayout.CENTER);
             JPanel mainpanel = new JPanel();
             mainpanel.setLayout(new BorderLayout());
             mainpanel.add(panel1,BorderLayout.NORTH);
             mainpanel.add(panel2,BorderLayout.CENTER);
             c1.add(panel1, BorderLayout.NORTH);
             c1.add(panel2);
    public static void main(final String args[])
            boy  mp = new boy();
             mp.setVisible(true);
    }..............here is the code,please make this interface work with the code
    public class Translate
    public static void main(String [] args) throws IOException
    if (args.length != 2)
    System.err.println("usage: Translate wordmapfile textfile");
    System.exit(1);
    try
    HashMap words = ReadHashMapFromFile(args[0]);
    System.out.println(ProcessFile(words, args[1]));
    catch (Exception e)
    e.printStackTrace();
    // static helper methods
    * Reads a file into a HashMap. The file should contain lines of the format
    * "key\tvalue\n"
    * @returns a hashmap of the given file
    @SuppressWarnings("unchecked")
    private static HashMap ReadHashMapFromFile(String filename) throws FileNotFoundException, IOException
    BufferedReader in = null;
    HashMap map = null;
    try
    in = new BufferedReader(new FileReader(filename));
    String line;
    map = new HashMap();
    while ((line = in.readLine()) != null)
    String[] fields = line.split("
    t", 2);
    if (fields.length != 2) continue; //just ignore "invalid" lines
    map.put(fields[0], fields[1]);
    finally
    if(in!=null) in.close(); //may throw IOException
    return(map); //returning a reference to local variable is safe in java (unlike C/C++)
    * Process the given file
    * @returns String contains the whole file.
    private static String ProcessFile(Map words, String filename) throws FileNotFoundException, IOException
    BufferedReader in = null;
    StringBuffer out = null;
    try
    in = new BufferedReader(new FileReader(filename));
    out = new StringBuffer();
    String line = null;
    while( (line=in.readLine()) != null )
    out.append(SearchAndReplaceWordsInText(words, line)+"\n");
    finally
    if(in!=null) in.close(); //may throw IOException
    return out.toString();
    * Replaces all occurrences in text of each key in words with it's value.
    * @returns String
    private static String SearchAndReplaceWordsInText(Map words, String text)
    Iterator it = words.keySet().iterator();
    while( it.hasNext() )
    String key = (String)it.next();
    text = text.replaceAll("\\b"key"
    b", (String)words.get(key));
    return text;
    * @returns: s with the first letter capitalized
    String capitalize(String s)
    return s.substring(0,0).toUpperCase() + s.substring(1);
    }... here's the head of my pirate_words_map.txt
    hello               ahoy
    hi                    yo-ho-ho
    pardon me       avast
    excuse me       arrr
    yes                 aye
    my                 me
    friend             me bucko
    sir                  matey
    madam           proud beauty
    miss comely    wench
    where             whar
    is                    be
    are                  be
    am                  be
    the                  th'
    you                 ye
    your                yer
    tell                be tellin'

  • HT1209 My Hard Drive Crashed on my computer and I thought that the music on my Ipod WAS the backup.  Found out that it is a one way street.....can you help me...I tried what the article said to do about authorizing this computer, and then transfering purc

    Can you please help me get my music that I have recorded/loaded from CD's ...and purchased back on my new hard drive...
    thanks!!!!!

    I used a program called sharepod when my hard drive crashed. it lets you add all the songs from your ipod/phone/etc back onto your pc.
    http://www.getsharepod.com/
    There is one for mac and one for windows. I hope this helps! I lost ALL of my music once and the second time i sure didn't want to again!

  • Can anyone help me develop an app for iOS?

    Im trying to develop an application for iOS 8, and I'm looking for anyone who can help me create the idea or maybe even create the idea with me.

    https://itunes.apple.com/us/app/dragon-express/id458613689?mt=12
    http://www.nuance.com/for-individuals/by-product/dragon-for-mac/dragon-dictate/i ndex.htm

  • Can anyone help me Select one choice [Attn to Frank][Solve]

    Hi I am doing dependent list boxes and have followed the steps of Frank in his tutorial about dependent list boxes. I am using EJB 3.0.
    My problem is as follows when i select the first combo box and select a value. the second list is populated with the values depending on the first combo box.
    Bu when I select a value in the second list that I get the following errors......
    Feb 26, 2008 12:57:53 PM com.sun.faces.lifecycle.ProcessValidationsPhase execute
    SEVERE: SelectOne submittedValue's index 1 is out of bounds. It should be between 0 and -1
    java.lang.IndexOutOfBoundsException: SelectOne submittedValue's index 1 is out of bounds. It should be between 0 and -1
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.SimpleSelectOneRenderer.__getIndex(SimpleSelectOneRenderer.java:347)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.SimpleSelectOneRenderer._convertIndexedSubmittedValue(SimpleSelectOneRenderer.java:189)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.SimpleSelectOneRenderer.getConvertedValue(SimpleSelectOneRenderer.java:157)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.InputLabelAndMessageRenderer.getConvertedValue(InputLabelAndMessageRenderer.java:42)
         at oracle.adf.view.faces.component.UIXEditableValue.getConvertedValue(UIXEditableValue.java:455)
         at oracle.adf.view.faces.component.UIXEditableValue.validate(UIXEditableValue.java:198)
         at oracle.adf.view.faces.component.UIXEditableValue._executeValidate(UIXEditableValue.java:522)
         at oracle.adf.view.faces.component.UIXEditableValue.processValidators(UIXEditableValue.java:302)
         at oracle.adf.view.faces.component.UIXComponentBase.validateChildrenImpl(UIXComponentBase.java:855)
         at oracle.adf.view.faces.component.UIXComponentBase.validateChildren(UIXComponentBase.java:839)
         at oracle.adf.view.faces.component.UIXComponentBase.processValidators(UIXComponentBase.java:689)
         at javax.faces.component.UIForm.processValidators(UIForm.java:190)
         at oracle.adf.view.faces.component.UIXComponentBase.validateChildrenImpl(UIXComponentBase.java:855)
         at oracle.adf.view.faces.component.UIXComponentBase.validateChildren(UIXComponentBase.java:839)
         at oracle.adf.view.faces.component.UIXComponentBase.processValidators(UIXComponentBase.java:689)
         at oracle.adf.view.faces.component.UIXComponentBase.validateChildrenImpl(UIXComponentBase.java:855)
         at oracle.adf.view.faces.component.UIXComponentBase.validateChildren(UIXComponentBase.java:839)
         at oracle.adf.view.faces.component.UIXComponentBase.processValidators(UIXComponentBase.java:689)
         at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:932)
         at javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:362)
         at com.sun.faces.lifecycle.ProcessValidationsPhase.execute(ProcessValidationsPhase.java:98)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:110)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:213)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:231)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:200)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:122)
         at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:106)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:162)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:619)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Thank you four your kind considerations
    Regards
    Lutchumaya
    Message was edited by:
    Lutchumaya

    Thanks Frank for your reply. But I am not using the version 11 am still on the version 10.1.3.xxxx .
    Yeah the problem is as follows:-
    When i select the value from the second list the it execute the query to get the task for this project with projectId to null now ...
    Why the first time it retrieve the tasks for this project but when i select a value from the second list it reexecute the query this time with projectId null also when i commit it take the default value for the task when the form is loaded.
    Why is this so ... I can't move on with it ... Please help me Frank am stuck with this more than 2 weeks now.
    Regards
    Lutchumaya

  • Hi.I want to program a VI to configure Epix's PICXI D2X board and to take images. can anybody help me with any sample programs showing the functions used to configure and communicate with the board.Thanks.

    I am a student. Just started with Labview. hence, any sample VIs will be of real help to start with.

    You might be interested in this post:
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RNAME=ViewQuestion&HOID=506500000008000000D4700000&ECategory=Vision
    Best of luck.

  • Can anyone help me to explain sample code in the KM sample

    Hi all ,I read a sample of resposity manager ,
    public class Node{
    protected List getProperties() throws ResourceException
              properties.add(SystemPropertyFactory.createHiddenProperty(false));
              properties.add(SystemPropertyFactory.createReadOnlyProperty(false));
                                    return properties;
    this is a short description of the customized reposiory manager Node code .
    I don't understand SystemPropertyFactory.createReadOnlyProperty(false); meaning
    the above programming API 's meanning ,can anyone explain to me ,it will used in which situdation?
    if I set SystemPropertyFactory.createReadOnlyProperty(true); so what's difference between these two method ?

    Hi,
    Is this ok?
    public class NewJFrameSep extends javax.swing.JFrame {
            public NewJFrameSep() {
            initComponents();
        private void initComponents() {
            jSeparator1 = new javax.swing.JSeparator();
            jButton1 = new javax.swing.JButton();
            jButton2 = new javax.swing.JButton();
            getContentPane().setLayout(null);
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            getContentPane().add(jSeparator1);
            jSeparator1.setBounds(110, 120, 170, 100);
            jButton1.setText("jButton1");
            getContentPane().add(jButton1);
            jButton1.setBounds(160, 80, 71, 23);
            jButton2.setText("jButton2");
            getContentPane().add(jButton2);
            jButton2.setBounds(160, 140, 71, 23);
            pack();
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new NewJFrameSep().setVisible(true);
       private javax.swing.JButton jButton1;
        private javax.swing.JButton jButton2;
        private javax.swing.JSeparator jSeparator1;
    }regards
    dina

  • It is SAP-ABAP Topic Can u Help me some one.........

    Hi,
        I need some help in the PGP encryption / Decryption. We are getting a file from a third
    Party vendor in the enrypted format. The encryption has been done using PGP.
    We need to decrypt that file.
    Q1 ) what is the Sun OS command for decryption ????
    Q2) How can I give my private key in the ABAP code to decrypt it ????
    Q3) How to know the Private Key that has been generated in the Unix Box for this third party ????
    Regards,
    sree
    <b></b>

    Hi,
        I need some help in the PGP encryption / Decryption. We are getting a file from a third
    Party vendor in the enrypted format. The encryption has been done using PGP.
    We need to decrypt that file.
    Q1 ) what is the Sun OS command for decryption ????
    Q2) How can I give my private key in the ABAP code to decrypt it ????
    Q3) How to know the Private Key that has been generated in the Unix Box for this third party ????
    Regards,
    sree
    <b></b>

  • Can anybody help me out for sample questions for ABAP certification

    Hi
    i am going to appear for ABAP certification exam , i just wanted to have a look of types of questions asked in exam. can you please tell me where can i find these kind of questions.
    Thanks

    Refer this thread from SDN and a lot more are there on ABAP certification exam details and material.
    /message/515239#515239 [original link is broken]
    /message/279409#279409 [original link is broken]
    There is a pdf called ABAP certification.
    http://www.esnips.com/web/SAP-ABAP?
    If you have a firm stand in the ABAP dictionary (BC430), have already done some programming (BC400) and know the basics of ABAP-OO (BC401) you are on the safe side for the exam.
    Also have a look at below links:
    http://www.sap.com/services/education/index.epx
    http://www.sap-img.com/ab040.htm
    http://www.sapdomain.com/testimonials.php
    http://www.planetsap.com/Abap_certification_requirements.htm
    http://www50.sap.com/useducation/curriculum/group.asp?tid=8
    http://www50.sap.com/useducation/curriculum/curriculum.asp?rid=256&TID=
    http://www.amazon.com/exec/obidos/ASIN/0071341617/qid=1120754726/sr=2-1/ref=pd_bbs_b_2_1/103-7699884-1772649
    I hope it helps.
    Best Regards,
    Vibha
    *Please mark all the helpful answers

  • Can we have more than one loopback interfaces in Mac OS X?  which IOKit class we need to derive inorder to write driver to get loopback interface lo1.

    Help me..

    Let me append this info for future reference:
    http://discussions.apple.com/message.jspa?messageID=6978539
    copy from there:
    1. Reset Open Firmware. As you turn on the machine, press & hold CmdOption+OF until you get a screen that says "Welcome to Open Firmware". At the prompt, enter "reset-nvram" (without the quotes). Press return. Enter "reset-all". Press return and the machine will restart.
    2. Open network preferences. In airport, go to advanced. Check the box that says disconnect the wireless network when logging out. (It seems incredible that it would work, but apparently it sometimes does.)
    3. Restart in "Safe" mode (hold down "Shift" while restarting). Once in Safe mode simply restart again in regular mode. http://docs.info.apple.com/article.html?artnum=306879
    4. Go into your keychain and find the password key for your network. If you connect to a WAP it will be the name of that WAP. Then in the key click on the access control tab. It probably shows selected applications. Change this to "Allow all applications to access this item".
    5. (The following apparently works temporarily, but it is not very clean. I would not recommend it except as a last resort.) Remove all the files and folders from the non-user Library/Preferences folder and reboot.

  • How can I delete more than one Email (but not ALL) at once in the new Mail program?

    In OS X 10.7 it was possible to just right click an email and then scroll down or up to delete i.e. 10 Emails at once. But in OS X 10.8 this doesn't work anymore. I have to delete one mail after the other which is exhausting after a while and with a lot of emails! But I don't want to delete all of them (would be too easy with CTRL-A and then Return) just a few. Any ideas? I didn't find it out yet and I want it the easy Mac-Way and not the complicated Windows-way
    Thanks for any inout on that!!

    You can now double-click and drag down the list of emails to select multiple, consecutive messages to delete.
    For non-consecutive messages, command-click on the ones you want to delete.

  • Can anyone help me solve the problem of text displaying very rough on my new ASUS PA279Q display monitor running off my MacBook Pro?

    This is regarding a brand new ASUS PA 279Q, 2560 x 1440 IPS monitor. I'm connected via mini display port (into thunderbolt port on MacBook Pro) to display port on ASUS monitor; using cable ASUS included with the monitor. Mid 2012 MacBook Pro…full specs at bottom of this post.
    I have resolution set at 2560 x 1440 which is the native resolution according to the ASUS spec. I tried the other resolutions available in my System Preferences and text displayed rough with those settings too. I've tried adjusting contrast, brightness and sharpness via the ASUS control panel and didn't solve the problem. Also tried calibrating via Mac's system preferences/display and that did not improve text display either. All the text on this monitor (no matter what software I launch, Finder, InDesign, Illustrator, MS Word, Excel, VMWare Windows XP, Windows versions of Word, Excel, Acrobat, etc, all are consistently rendering text the same way ---  ROUGH and with "HALOS" around each letter.
    All point sizes of text and at various scales, display very rough on the screen. (My comparison is the retina display of my MBP and a Thunderbolt…so those two displays are my expectations.) I'm using the same MBP for both a Thunderbolt display (at work) and this ASUS at my home office.
    On the ASUS it's not as noticeable when the text is on white backgrounds, but I'm a graphic designer and compose images with text all day everyday. Not to mention the specs on this ASUS PA279Q indicate it's built for the professional so I would expect better text rendering. I haven't even addressed color calibration and balance yet, because that won't matter to me if the text won't display any better than it is now.
    I was so hopeful after researching all the specs on this monitor it would be a viable alternative to the glossy display of the Thunderbolt display. (Which, I do love the Thunderbolt display for it's clarity and how it displays crisp, clean text at all sizes. (This ASUS actually displays text decently if I increase the text so each letter is about 4" high. Which is pointless for practical purposes -- that'd be like doing page layout through a microscope!)
    I kept holding off on getting a monitor for the home office thinking the Thunderbolt would be updated soon. I'd be sick if I dropped a grand on piece of 2011 technology only to learn a few days later an updated Thunderbolt display hit the market! Not to mention, I'm praying Apple comes out with a less reflective Thunderbolt display. The glare and reflection is the main reason I looked elsewhere for a large monitor; hence my asking for help. Hoping the ASUS text display issue can be worked out. My expectation is for it to display like the MBP retina and Thunderbolt display text. That possible?
    Alternatively, I guess I could do the Apple Refurb Thunderbolt at $799. And see if there's a decent aftermarket anti-glare I could stick on it?
    Thanks for reading my post. Hope someone can help; offer any suggestions? Words or wisdom?
    Has anyone else had similar issues and figured out a resolution? Help!
    MacBook Pro
    Retina, Mid 2012, 2.3 Ghz Intel i7
    8GB 1600 MHz DDR3
    OS X 10.8.5
    NVIDIA GeForce GT 650M 1024 MB
    ASUS PA279Q

    I uninstalled those two items. It still runs slow on start-up and when opening safari, firefox, iphoto, itunes, etc. It's not snappy like it used to be. Any other ideas? Thanks.

  • I have just purchased a new computer, please can someone help me.  How do I move my itunes library onto the new computer? I thought with my apple id and password, I would be able to use as before. Please help?!

    I have had to purchase a new computer, as my last laptop died!! I have tried to add music onto my iphone, and my childrens ipod touch's, but its looking like it will clear their memory completely. Please can someone advise me what I need to do. Many thanks.

    See iTunes: How to move your music to a new computer
    BTW this list os for discussing the list itself. You'll get better response to questiosn you post if you post them to the correct list. I'll ask to have this moved to the iTunes list.
    regards

Maybe you are looking for

  • How do I figure out if my hdd is broken or what else happened

    Hi there, last thursday I turned on my computer, started k3b to burn a data dvd (on a dvd+rw), started kaffeine to watch tv (dvb-t) while the dvd was being burned and I ran pacman -Syu. Then kaffeine was behaving weirdly, it was only playing tv for a

  • Tax code issue

    HI,     Creaged a tax code, but changes are nor reflecting in the target system. I have even done the export and import in the source system, but even then the tax rate and accounts are not update in the target system. Do we need to do anything else.

  • BY Yahoo Anytime Plus Broadband : BT can't find my...

    Hi all, I wonder if someone could help me please? I've been a BT Internet customer for over eight years.  I set up a connection while still living with my parents and kept it on, on their phone line, when I moved out.  They pay for the phone line, an

  • Adobe Premiere Pro CS4 has unexpectedly quit

    I just installed the trial to adobe premiere pro cs4. Once I start it, and it's about to load it crashes and I get a window that says "adobe has detected that the application adobe premiere pro cs4 has unexpectedly quit". I reinstalled it but the sam

  • Log for Exports?

    Is there  a log for when you export directly inside Premiere?  I know where it is in the Media Encoder, but where is it in Premiere itself?  I mainly want to see exactly how long a render took if I'm not sitting there watching the counter.