How can I put a filter to message type COND_A

I am creating message types: COND_A from Change Pointer.
I have an active filter on element: Condition type. (BD64). This is working OK.
I also want to set the filter on element: Material type.
This is not working, probably because this element is not an active field in any delivered IDoc Segments. (Ref. WE05). The result is that no messages (IDoc's) are delivered.
How can I get this filter to work for COND_A?
In other words: How can I select on Material type = 'XXXX' creating message type COND_A from Change Pointer?

No, however, you can have Favorites and Recents show on the App Switcher (Multitasking) screen, assuming you are running iOS 8: Settings App > Mail,Contacts,Calendars > Show in App Switcher [under CONTACTS]

Similar Messages

  • How to send inforecord conditions using ALE (message type COND_A)?

    Hi,
    I have sent Purchasing Inforecords through ALE using t-code ME18.
    Now, I would like to know how to transfer the conditions through ALE (message type is COND_A).
    Thanks a lot,
    Kaveri

    Hi,
    Please go through this thread.
    [Pricing Condition Records initial upload - COND_A]

  • I've got my email folders showing but how can i put back my email messages into the folders from time machine

    my mac has been restored & i can see my email folders but how do i put back the saved emails from my time macine i can locate n see them but cant restore them

    Csound1 wrote:
    Into one of the domain accounts, or a specific mailbox in a domain account, that's your choice but:
    Remember that you are moving mail over the internet, and you are uploading (slower). If the quantities are large you must use caution.
    1. Copy, don't move, in the event of a failure the original will still exist, delete it later.
    2. Limit copies to <500 emails
    3. Single copy operations are more reliable than multiple.
    Take your time.
    Thanks, but impractical. Many of the folders have more than 500 emails. Total is about 2 GB (which I have free on iCloud btw)
    I tried creating a folder "Archive" in my iCloud, then tried dragging one iMac folder into the new "iCloud > Archive" folder on my iMac. I got the error message:
         Some items could not be created:
         The IMAP command “CREATE” failed with server error: Invalid mailbox name.

  • How can I put all output error message into a String Variable ??

    Dear Sir:
    I have following code, When I run it and I press overflow radio button, It outputs following message:
    Caught RuntimeException: java.lang.NullPointerException
    java.lang.NullPointerException
         at ExceptionHandling.ExceptTest.actionPerformed(ExceptTest.java:72)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.JToggleButton$ToggleButtonModel.setPressed(JToggleButton.java:291)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.Component.processMouseEvent(Component.java:6038)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3260)
         at java.awt.Component.processEvent(Component.java:5803)
         at java.awt.Container.processEvent(Container.java:2058)
         at java.awt.Component.dispatchEventImpl(Component.java:4410)
         at java.awt.Container.dispatchEventImpl(Container.java:2116)
         at java.awt.Component.dispatchEvent(Component.java:4240)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3986)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)
         at java.awt.Container.dispatchEventImpl(Container.java:2102)
         at java.awt.Window.dispatchEventImpl(Window.java:2429)
         at java.awt.Component.dispatchEvent(Component.java:4240)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)Caught RuntimeException: java.lang.NullPointerException
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)I hope to catch all these error message into a String Variable such as StrErrorMsg, then I can use System.out.println(StrErrorMsg) to print it out or store somewhere, not only display at runtime,
    How can I do this??
    Thanks a lot,
    See code below.
    import java.awt.Frame;
    import java.awt.GridLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import java.io.FileInputStream;
    import javax.swing.ButtonGroup;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JRadioButton;
    public class ExceptTest extends JFrame implements ActionListener {
        private double[] a;
      private JRadioButton divideByZeroButton;
      private JRadioButton badCastButton;
      private JRadioButton arrayBoundsButton;
      private JRadioButton nullPointerButton;
      private JRadioButton negSqrtButton;
      private JRadioButton overflowButton;
      private JRadioButton noSuchFileButton;
      private JRadioButton throwUnknownButton;
      public ExceptTest() {
        JPanel p = new JPanel();
        ButtonGroup g = new ButtonGroup();
        p.setLayout(new GridLayout(8, 1));
        divideByZeroButton = addRadioButton("Divide by zero", g, p);
        badCastButton = addRadioButton("Bad cast", g, p);
        arrayBoundsButton = addRadioButton("Array bounds", g, p);
        nullPointerButton = addRadioButton("Null pointer", g, p);
        negSqrtButton = addRadioButton("sqrt(-1)", g, p);
        overflowButton = addRadioButton("Overflow", g, p);
        noSuchFileButton = addRadioButton("No such file", g, p);
        throwUnknownButton = addRadioButton("Throw unknown", g, p);
        getContentPane().add(p);
      private JRadioButton addRadioButton(String s, ButtonGroup g, JPanel p) {
        JRadioButton button = new JRadioButton(s, false);
        button.addActionListener(this);
        g.add(button);
        p.add(button);
        return button;
      public void actionPerformed(ActionEvent evt) {
        try {
          Object source = evt.getSource();
          if (source == divideByZeroButton) {
            a[1] = a[1] / a[1] - a[1];
          } else if (source == badCastButton) {
            Frame f = (Frame) evt.getSource();
          } else if (source == arrayBoundsButton) {
            a[1] = a[10];
          } else if (source == nullPointerButton) {
            Frame f = null;
            f.setSize(200, 200);
          } else if (source == negSqrtButton) {
            a[1] = Math.sqrt(-1);
          } else if (source == overflowButton) {
            a[1] = 1000 * 1000 * 1000 * 1000;
            int n = (int) a[1];
          } else if (source == noSuchFileButton) {
            FileInputStream is = new FileInputStream("Java Source and Support");
          } else if (source == throwUnknownButton) {
            throw new UnknownError();
        } catch (RuntimeException e) {
          System.out.println("Caught RuntimeException: " + e);
          e.printStackTrace();
          System.out.println("Caught RuntimeException: " + e);
        } catch (Exception e) {
          System.out.println("Caught Exception: " + e);
      public static void main(String[] args) {
        JFrame frame = new ExceptTest();
        frame.setSize(150, 200);
        frame.addWindowListener(new WindowAdapter() {
          public void windowClosing(WindowEvent e) {
            System.exit(0);
        frame.show();
    }

    yes, I update as follows,
    but not looks good.
    import java.io.*;
    public class UncaughtLogger implements Thread.UncaughtExceptionHandler {
        private File file;
        private static String errorMessage;
        public UncaughtLogger(File file) {
            this.file = file;
            //Thread.setDefaultUncaughtExceptionHandler(this);
        public UncaughtLogger(String str) {
            this.errorMessage = str;
            Thread.setDefaultUncaughtExceptionHandler(this);
        //@Override()
        public void uncaughtException(Thread t, Throwable e){
            try {
                log(e);
            } catch (Throwable throwable) {
                System.err.println("error in logging:");
                throwable.printStackTrace();
        private void log(Throwable e) throws IOException {
            PrintWriter out = new PrintWriter(new FileWriter(file, true));
            try {
                e.printStackTrace(out);
            } finally {
                out.close();
        private static UncaughtLogger logger = new UncaughtLogger(new File("C:/temp/log.txt"));
        private static UncaughtLogger logger2 = new UncaughtLogger(errorMessage);
        public static void main(String[] args) {
                String s1 = "Hello World!";
                s1 = null;
                String s2 = s1.getClass().getName();
                System.out.println(s1);
                System.out.println(s2);
                System.out.println("errorMessage =" + errorMessage);
    }

  • How can we put the filter

    Hi OBIEE Guru,
    I have one requirement ,which would display the records only 10 from the presentation table,The tricky is I don't have any column in my presentation table like rownum or represents the no of records,How would I restrict only 10 records in my filter in OBIEE answers.
    eg:- select * from emp
    where rownum<=10; -- like this i need to put in obiee answers...
    Thanks in advance.

    Example:
    RCOUNT(CHANNEL_DESC)-----CHANNEL_DESC----QUANTITY_SOLD
    1-------------------------------------------Catalog--------------96488.00
    2-------------------------------------------Direct Sales--------1550224.00
    3-------------------------------------------Internet------------396876.00
    4-------------------------------------------Partners------------834700.00
    5-------------------------------------------Tele Sales---------10081747.00
    Put the filter on the column rcount(channel_desc) <= 10, for example.
    Regards
    Goran
    http://108obiee.blogspot.com

  • Hi I've got a I phone 5 c how can I put my number for I message instead ov email

    HI I have a I phone5 c how can I put number for I message instead of e mail

    It is there - at the bottom below the section - you can be reached by iMessage at.
    The iPhone's cell phone number is automatically registered with iMessage along with your Apple ID email address.

  • How can i put my own text sound

    i need help, how can you put my own text message sound in my iphone....p.s i'm new the the apple family

    Welcome to the family. Tell your Uncle Steve you would like custom text tones: http://www.apple.com/feedback/iphone.html

  • How can i put an attribute in a message part?

    Hi all,
    i need to put an attribute in a message part. Now my message-declaration looks like this:
    <wsdl:message name="GetCapabilitiesIn">
    <wsdl:part name="GetCapabilities" type="xsd:string"/>
    </wsdl:message>
    and it generates this message:
    </GetCapabilities>
    But i need to generate this message:
    </GetCapabilities service="XYZ">
    How can i wangle that?
    thanks
    Alli

    the type should point to a complex type that can define elements and attribtues .. such as you are used to it ..
    so just create a complex type => that has your attributes in it, and replace the type="xsd:string" with your new complex type ..
    /clemens

  • How can I put my icloud photos to camera roll or photo stream?

    I got a nee iphone, i backed up everything and restored it into mu new iphone, but the pictures didn't restore so i did it manually but now on my phone i got different albums icloud photo stream and camera roll. How can i put the icloud picture into camera roll or photo stream. Any ideas?? On my old iphone ive deleted everything.

    Hello Ozzie94,
    Thanks for the additional information. The camera roll is designed for photos taken on your device, or saved images from Mail and other applications. Photos synced from a computer are organized into their own album(s):
    View photos and videos - iPhone
    http://help.apple.com/iphone/7/#/iph3d267610
    - Camera Roll—photos and videos you took on iPhone, or saved from an email, text message, webpage, or screenshot
    - Shared photos and videos—Photos and videos that you’ve shared with iCloud Photo Sharing or that others have shared with you (see iCloud Photo Sharing)
    - Photos and videos synced from your computer (see Sync with iTunes)
    Additionally, you may find more information by using another one of Apple's support resources - https://getsupport.apple.com
    Thanks,
    Matt M.

  • How can I make a filter in number app

    How can I make a filter in a row in number apps? Sometimes i need to filter my name in a list from an excel sheet. What I need is to know if I van use data filtering in number app.

    It's best to never move iTunes media around in Finder. Add it to the Library through the iTunes interface by dragging them into the window. Once they've been added to the library, you can try using Get Info on the files in iTunes and change the tag info to make them group together. (A unique album name should do this.) If you want them to be included with TV Shows, you can try using Get Info to set the Kind to TV Show (found under the Options tab in Get Info), but I'm not sure if it will work. Otherwise, you could make a playlist and drag them into to access them all in one convenient spot.
    If you add the items as noted above and they still do not appear in your library, it's probably because they are not a compatible format.
    Message was edited by: Diane Wordsmith

  • How can I put a movie on my ipod without deleting other movies?

    I have a movie (and extras) on my ipod nano that I downloaded years ago and placed my ipod. Unfortunately, that computer crashed and I no longer have the computer.
    I recently downloaded a digital copy of a movie that came with the DVD I bought on my new computer. When I tried to put this movie on my ipod, I received a message saying that in order to do this, I would have to link my ipod to this itunes library on my computer and it would delete my old movie. I don't want this happen so how can I put my new movie on my ipod without deleting my old movie (and extras)?
    (Also, I have no idea if this will be necessary information, but I want to give all the information for this question...the e-mail address I used to download the 1st movie is no longer in use due to security reasons. I've been using a new e-mail that has worked fine for downloading music and my new movie.)
    I hope someone can help me!
    Thank you in advance.

    Are you sure you have enough space on the ipod for the new movie? If you do, make sure it's loaded in i-tunes, and it's check box is checked, then click sync, or apply, and everything should load.

  • How can I put a parenthesis around the number?

    Hi expert people!!!
    One question:  How can I put a parenthesis around the number because I have this
    write:   /123 t_bsid-pago1, 141 t_bsid-pago2,
              157 t_bsid-pago3, 175 t_bsid-pago4,
              193 t_bsid-pago5.
    and if I put the parenthesis hardcoded like this:
    write:   /123 '(', t_bsid-pago1,')'.
    when the variable are printed the parenthesis is write very separated from the amount.
    I know that maybe I can use the CONDENSE or CONCATENATE statement but for that I need to create a variable type N, or STRING and if I do that I don't know how can I put the decimals points back.
    Thanks!!

    Hi Carlos,
    Try this:
    REPORT  ZTESTRAJ.
    data: v_val(10) type p decimals 2 value '123456.75',
          v_text type string.
    start-of-selection.
      write:/ v_val.
      v_text = v_val.
      concatenate '(' v_text ')' into v_text.
      condense v_text no-gaps.
      write:/ v_text.
    <b>Output:</b>
    test program...      
    123,456.75 
    <b>(123456.75)</b>          
    Regards,
    Raj
    Message was edited by: Rajasekhar Dinavahi

  • How can i put a "/" or "\" in a file name with filewriter?????

    hi there
    how can i put "/" or "\" in a file name? i am using filewriter to create file, here is my code
    String fileName = year+"\\"+month+"\\"+date+":"+hour+":"+minute+":"+second+FILE_EXTENSION;
    fw = new FileWriter("users"+"/"+userDirectory+"/"+OUTPATH+"/"+fileName, false);
    i keep getting error message :"invalid file name, path, directory...", i want to have the following format in my file name: yyyy/mm/dd:hh:mm:ss.txt,
    do you know how to get date and time in this format: ie. March 10, 2002 14:01:32, or something like this?
    thank you

    You are using invalid characters in you name. For example,
    : - is used to separate the drive from the path
    / - is used to separate directories
    therefore they can't be used in the filename.
    Open an editor and try creating a file using the format you want and see if the editor can save it, before attempting to do it in Java.

  • As a grand parent, how can I put some apps on an ipod touch and then give it as a gift?

    As a grand parent, how can I put some apps on an ipod touch and then give it as a gift?

    Apps and many other purchases are tied to the iTunes Store account via which they were purchased. So if you buy the app, that app is tied to your iTunes Store account. Without that account information, the child could not update the app nor back it up.
    I'd also suggest giving the child an iTunes gift card or gift certificate along with the iPod. If the child is too young to have and manage his or her own iTunes Store account, then his or her parent could set up an iTunes Store account to purchase the apps. That could be done with that gift card and not need a credit card. You can also gift specific apps, though again that would require the child or a parent to open an iTunes Store account through which to redeem the gift. For more information on gift options, see:
    http://support.apple.com/kb/HT2736
    Regards.
    Message was edited by: Dave Sawyer

  • Ipod is disabled for 22,849,620 minutes how can I open ipod with this message?

    Ipod is disabled for 22,849,620 minutes how can I open ipod with this message?

    Disabled
    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up     
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        

Maybe you are looking for

  • AT&T customers service reps. (Phone) and in the store not on the same page!

    On 6/27/15, I called into the 1(800) number to order a new phone and change my plan to the "Next" plan.  I went through whole process with the rep over the phone.  I asked if I could pick up the phone from the AT&T store in my area.  She told me I wo

  • Itunes won't open after installing 10.6

    The OTA upgrade to 5.1 went great but after I installed itunes 10.6 and restarted my computer (laptop with windows vista) itunes won't open if I ununstall & reinstall will I lose everything?

  • Muvo TX FM - suddenly no left channel ? Pls he

    I have been using the same earphone (bought seperately) with no problem for about a year and suddenly the left channel has no sound. If I test it with the "Creative PDE Experience Demo.wma", it will only have the lady say "right channel" but no "left

  • Timeline Best Practices?

    I am fairly new to flash and I have been trying to make a product demo. Basically I want some text to fade in and then some pictures to show up one by one and then disappear and then some new text fades in etc. This is to talk about a product and sho

  • Help required in derby database

    * Main.java * Created on August 31, 2007, 9:30 PM * To change this template, choose Tools | Template Manager * and open the template in the editor. package javaapplication5; * @author d import java.sql.*; import java.util.Properties; public class Mai