SI have included a clip of the playlist hoping someone can explain what the issue may be.mart Playlist Not Working Correctly

I set up a smart playlist that seemed to work fine, but now it's playing songs I don't want it to play.  I have placed all my Christmas songs into their own playlist.  I also made rule to eliminate the word Christmas showing up in any other field.  Yet recently, I find Christmas songs being played when I select this playlist.

Can you send me a PM with the serial number? I'll look into it more. Click here to send me a Private Message.
- Peter

Similar Messages

  • When I try to download apps, a message appears saying that to move forward I have to agree to the new terms of the contract, but does not allow me to agree and not low Apps. Someone can explain what is happening?? thank you

    When I try to download apps, a message appears saying that to move forward I have to agree to the new terms of the contract, but does not allow me to agree and not low Apps. Someone can explain what is happening?? thank you

    Delete some stuff to make room on the device.
    iCloud is not local storage and has nothing to do with your situation.

  • Can someone pls explain what the Dynamic Range setting does?

    Hello All,
    In the STB's Audio menu there's an option for Dynamic Range.  The available settings for Dynamic Range are None, Light, or Heavy.   I'm not noticing any difference in the sound regardless of the option chosen.   What is this option supposed to do?  

    http://en.wikipedia.org/wiki/Dynamic_range gives you a bit of a winded explantion of what it is.  In a nutshell dynamic range is the difference between the quietest and loudest sound.
    I beleive the dynamic range setting is designed is to help users that have a certain connections (eg HDMI) deal with fluctationing volume.  Heavy compresses the highs and lows to a narrower range, light uses less compression and none of course is no change.  If you have trouble hearing some channels and commercials are loud you might want to try heavy.  Keep in mind that heavy distorts audio the most and none the least.
    My audio system is a Pioneer Amp with a Polk 5.1 speaker system.  I've noticed no difference but to be fair I don't think I've tried it under condtions that I would notice it.  In addition I'm currently using an optical connection for my audio which apparently doesn't change with dynamic range.
    There is a few other threads that discuss this including ....
    http://forums.verizon.com/t5/FiOS-TV-Technical-Assistance/anyone-else-having-problems-with-volume-ou...
    http://forums.verizon.com/t5/FiOS-TV-Technical-Assistance/Intermittent-Audio-Distortion-with-HDMI-ho...

  • Hopeing someone can explain the error im getting

    The error I am getting is this:
    C:\P2_Methods_DataFile.java:45: cannot find symbol
    symbol : method readDataFile(P2_Methods_DataFile.Pack4Int)
    location: class P2_Methods_DataFile
    fileFlag = readDataFile (myValue);
    ^
    1 error
    Process completed.
    The code is as follow, im sorry i forget how to make it show up colored
    import java.util.Scanner;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    public class P2_Methods_DataFile
    // ==================== method main ====================
    public static void main (String[] args)
    int myAge = 0;
    int fileFlag = 0;
    // Declare a reference to Pack4Int and set to null
    Pack4Int myValue = null;
    // Allocate storage for a Pack4Int & assign reference to myValue
    myValue = new Pack4Int ();
    // Call the readDataFile method to read data from a file
    fileFlag = readDataFile (myValue);
    // If fileFlag equals 1, the data file exists.
    if (fileFlag == 1)
    myAge = myValue.get_intValue ();
    outputInfo (myAge);
    // Always have this output statement at the end of main.
    System.out.println ("\n\n\n\n");
    return;
    // End of public static void mail
    // ==================== method readDataFile ====================
    METHOD DESCRIPTION:
    This method assigns a data file, reads an int value from the data file,
    and returns the value through the parameter list.
    If the assigned data file exists, the method returns 1 (one).
    Otherwise, it returns 0 (zero).
    public static int readDataFile (Pack4Int myData_int)
    int age;
    int dataFileFlag = 1;
    Scanner scanInput = null; // Create a Scanner called scanInput.
    try
    // Assign data file to scanInput
    scanInput = new Scanner
    (new FileInputStream ("P2_Methods_DataFile.dat"));
    // If file assignment is successful, execute the following.
    // Otherwise execute catch.
    // Input age from assigned data file
    age = scanInput.nextInt ();
    // Assign age to the object myData_int
    myData_int.set_intValue (age);
    scanInput.close();
    catch (FileNotFoundException e)
    System.out.println ("\n\n\n\n"
    + "**** The following data file was not found. ****");
    System.out.println
    ( "**** P2_Methods_DataFile.dat ****");
    dataFileFlag = 0;
    finally // If file was assigned, free the file.
    if (scanInput != null)
    scanInput.close();
    return dataFileFlag;
    }     // End of public static int readDataFile
    // ==================== method outputinfo ====================
    METHOD DESCRIPTION:
    This method prints an outline of program items and then information
    about the programmer.
    public static void outputInfo (int age)
    // Display text in command window.
    System.out.println ("\n\n\n\n My First Java Program that "
    + "Uses Methods & Data File Input\n");
    System.out.println (" Input Method: ");
    System.out.println (" 1. Uses one object parameter.");
    System.out.println (" 2. Assigns a data file.");
    System.out.println (" 3. Checks the existence of the data file.");
    System.out.println (" 4. Reads a value from the data file.");
    System.out.println (" 5. Returns teh value to method main using "
    + "a parameter.\n");
    System.out.println (" Output Method:");
    System.out.println (" 1. Uses one input parameter.");
    System.out.println (" 2. Prints outline information.");
    System.out.println (" 3. Prints information about the programmer.\n\n");
    System.out.println ( " Name: Chase LeBlanc #35");
    System.out.println ( " Course: CSC 102.004");
    System.out.println ( " Due Date: October 2, 2007");
    System.out.println ( " My Age: " + age);
    return;
    } // End of public static void outputInfo
    // ==================== class Pack4Int ====================
    CLASS DESCRIPTION:
    An object of this type is used as a parameter in a method to return a
    value of type int to the calling program.
    public static class Pack4Int
    private int intValue = 0;
    // Method used to assign a value to intValue.
    void set_intValue (int value)
    intValue = value;
    return;
    // Method used to get an int value from age.
    int get_intValue ()
    return intValue;
    } // End of public static class Pack4Int
    } // End of public class P2_Methods_DataFile

    import java.util.Scanner;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    public class P2_Methods_DataFile
    //  ====================  method main  ====================
         public static void main (String[] args)
              int myAge = 0;
              int fileFlag = 0;
                      // Declare a reference to Pack4Int and set to null
              Pack4Int myValue = null;
                      // Allocate storage for a Pack4Int & assign reference to myValue
              myValue = new Pack4Int ();
                      // Call the readDataFile method to read data from a file
              fileFlag = readDataFile (myValue);
                      // If fileFlag equals 1, the data file exists.
              if (fileFlag == 1)
                   myAge = myValue.get_intValue ();
                   outputInfo (myAge);
                      // Always have this output statement at the end of main.
              System.out.println ("\n\n\n\n");
              return;
                      // End of public static void mail
    // ====================  method readDataFile  ====================
    METHOD DESCRIPTION:
        This method assigns a data file, reads an int value from the data file,
        and returns the value through the parameter list.
        If the assigned data file exists, the method returns 1 (one).
        Otherwise, it returns 0 (zero).
        public static int readDataFile (Pack4Int myData_int)
            int age;
            int dataFileFlag = 1;
            Scanner scanInput = null;     // Create a Scanner called scanInput.
            try
                        // Assign data file to scanInput
                scanInput = new Scanner
                    (new FileInputStream ("P2_Methods_DataFile.dat"));
                    // If file assignment is successful, execute the following.
                    // Otherwise execute catch.
                            // Input age from assigned data file
                age = scanInput.nextInt ();
                            // Assign age to the object myData_int
                myData_int.set_intValue (age);
                scanInput.close();
            catch (FileNotFoundException e)
                System.out.println ("\n\n\n\n"
                        + "****  The following data file was not found.  ****");
                System.out.println
                        ( "****  P2_Methods_DataFile.dat                 ****");
                dataFileFlag = 0;
            finally     // If file was assigned, free the file.
                if (scanInput != null)
                    scanInput.close();
            return dataFileFlag;
        }            // End of public static int readDataFile
    // ====================  method outputinfo  ====================
    METHOD DESCRIPTION:
        This method prints an outline of program items and then information
        about the programmer.
        public static void outputInfo (int age)
                               // Display text in command window.
            System.out.println ("\n\n\n\n My First Java Program that "
                    + "Uses Methods & Data File Input\n");
            System.out.println (" Input Method: ");
            System.out.println (" 1. Uses one object parameter.");
            System.out.println (" 2. Assigns a data file.");
            System.out.println (" 3. Checks the existence of the data file.");
            System.out.println (" 4. Reads a value from the data file.");
            System.out.println (" 5. Returns teh value to method main using "
                    + "a parameter.\n");
            System.out.println (" Output Method:");
            System.out.println (" 1. Uses one input parameter.");
            System.out.println (" 2. Prints outline information.");
            System.out.println (" 3. Prints information about the programmer.\n\n");
            System.out.println (        "     Name: Chase LeBlanc #35");
            System.out.println (        "   Course: CSC 102.004");
            System.out.println (        " Due Date: October 2, 2007");
            System.out.println (        "   My Age: " + age);
            return;
        }           // End of public static void outputInfo
    // ====================  class Pack4Int  ====================
    CLASS DESCRIPTION:
        An object of this type is used as a parameter in a method to return a
        value of type int to the calling program.
        public static class Pack4Int
            private int intValue = 0;
                    // Method used to assign a value to intValue.
            void set_intValue (int value)
                intValue = value;
                return;
                    // Method used to get an int value from age.
            int get_intValue ()
                return intValue;
        }           // End of public static class Pack4Int
    }              // End of public class P2_Methods_DataFile
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Hopefully someone can help.... I have an Iphone 5 and want to create a music video playlist on my phone so then i can play through my apple tv... but when i make a playlist in itunes and try to add it over to my iphone it wont let me sync the playlist...?

    Hopefully someone can help.... I have an Iphone 5 and want to create a music video playlist on my phone so then i can play through my apple tv... but when i make a playlist in itunes and try to add it over to my iphone it wont let me sync the playlist...? I have already added the music videos to my iphone so that is not the problem.... i cant seem to figure out how to make a playlist for them... IE: to make the videos play consecutively in the order i want without stopping after each video and gong back to the list.... this is what i have had to resort to make it work....what i want to do....is be able to make a playlist of videos on my iphone 5....take my apple tv to friends houses and with wifi....set up apple tv and play videos at the party and not have to stand by with the remote and find a new video to play stopping the music between the songs/videos....very annoying....and have spent over 4 hours one day and an hour and a half today on the phone today with a sr. advisor with apple and they have no clue.... this seems sooooo simple.... please somebody that really knows how to do this....i will be indebted forever...............
    Mike

    Thank you for replying.    Yes I deleted the old email address..   

  • I have a keynote presentation that includes a significant amount of video.  When I edit the keynote slides (not the video slides) how can I save the changes without re-saving the videos (because that takes a VERY long time)?

    I have a keynote presentation that includes a significant amount of video.  When I edit the keynote slides (not the video slides) how can I save the changes without re-saving the videos (because that takes a VERY long time)?  I edit the presentation depending on the audience to which I am presenting.

    If you add a new  slide with just a text box (therefore a very small amount of data),  to an existing presentation then save,  Keynote will only save the new content to the file,  it wont save  pre-existing content as its already included in the file.
    The time  taken to "save" will be very much shorter than a "save as" when all of the existing content is saved again.

  • Hello, I have includes a Web link in an image. When I convert the document in PDF, the link remains inactive. Could use me? Thank you.

    Hello,
    I have includes a Web link in an image.
    When I convert the document in PDF, the link remains inactive. Could use me?
    Thank you.

    No version of Pages will allow images to be links. We always got around this by bracketting the image with text and making the link in that.
    Pages 5 has lost the ability to have cross links in pdfs and seems to have a bug that disables any links after the first page.
    Peter

  • HELP!Please have patient on my English. HELP!  Since i upgraded my iphone 4s to iOS 6.0, i can no longer watch or view my Movies or Video's in my Music Playlist. I can still view them in my Videos which is not in orderly manner or arragement like i wanted

    Please have patient on my English.
    HELP!
    Since i upgraded my iphone 4s to iOS 6.0, i can no longer watch or view my Movies or Video's in my Music Playlist. I can still view them in my Videos which is not in orderly manner or arragement like i wanted unlike in the Playlist. There is some sort of restrictions i guess. I already checked the Allow All Movies but still the videos does'nt appear. What should I do?
    Please HELP ME.
    Thank you very much.

    Similar problem here. My Ical refuses to edit or delete events. Viewing is possible, though sometimes the whole screen turns grey. Adding new events from mail is still possible. The task-pane completely disappeared. My local apple technic-centre messed about with disk utility for a bit and than told me to reinstall leopard. I could of course do that, but it seems to me that reinstalling Leopard just to fix iCal events is a bit invasive.
    I tried also tried removing everything, installing a new copy of iCal from the leopard-cd, software updates, all to no avail.
    At the moment I'm open to all suggestions that do not include a complete leopard reinstall.

  • Please have patient on my English. HELP! Since i upgraded my iphone 4s to iOS 6.0, i can no longer watch or view my Movies or Video's in my Music Playlist. I can still view them in my Videos which is not in orderly manner or arragement like i wanted unlik

    Please have patient on my English.
    HELP!
    Since i upgraded my iphone 4s to iOS 6.0, i can no longer watch or view my Movies or Video's in my Music Playlist. I can still view them in my Videos which is not in orderly manner or arragement like i wanted unlike in the Playlist. There is some sort of restrictions i guess. I already checked the Allow All Movies but still the videos does'nt appear. What should I do?
    Please HELP ME.
    Thank you very much.

    Similar problem here. My Ical refuses to edit or delete events. Viewing is possible, though sometimes the whole screen turns grey. Adding new events from mail is still possible. The task-pane completely disappeared. My local apple technic-centre messed about with disk utility for a bit and than told me to reinstall leopard. I could of course do that, but it seems to me that reinstalling Leopard just to fix iCal events is a bit invasive.
    I tried also tried removing everything, installing a new copy of iCal from the leopard-cd, software updates, all to no avail.
    At the moment I'm open to all suggestions that do not include a complete leopard reinstall.

  • I have been exporting lightroom webgaleries to my iweb site without any problem.  Suddenly I get the error message "finder can't complete the operation because some data can't be read or written" - error code -36 - thoughts?

    i have been exporting lightroom web galleries to my iweb site without any problem.  Suddenly I get the error message "finder can't complete the operation because some data can't be read or written" - error code -36 - and the move to the sites folder on my idisk fails..... thoughts?

    Try this community: MobileMe on my Mac: MobileMe: Apple Support Communities.
    And you can continue to use iWeb for some time to come. The following will explain:
    It's now confirmed that iWeb and iDVD have been discontinued by Apple. This is evidenced by the fact that new Macs are shipping with iLife 11 installed but without iWeb and iDVD.
    On June 30, 2012 MobileMe will be shutdown. HOWEVER, iWeb will still continue to work but without the following:
    Features No Longer Available Once MobileMe is Discontinued:
    ◼ Password protection
    ◼ Blog and photo comments
    ◼ Blog search
    ◼ Hit counter
    ◼ MobileMe Gallery
    All of these features can be replaced with 3rd party options.
    I found that if I published my site to a folder on my hard drive and then uploaded with a 3rd party FTP client subscriptions to slideshows and the RSS feed were broken.  If I published directly from iWeb to the FPT server those two features continued to work correctly.
    There's another problem and that's with iWeb's popup slideshows.  Once the MMe servers are no longer online the popup slideshow buttons will not display their images.
    Click to view full size
    However, Roddy McKay and I have figured out a way to modify existing sites with those slideshows and iWeb itself so that those images will display as expected once MobileMe servers are gone.  How to is described in this tutorial: #26 - How to Modify iWeb So Popup Slideshows Will Work After MobileMe is Discontinued.
    In addition the iLife suite of applications offered on disc is now a discontinued product and the remaining supported iApps will only be available thru the App Store from now on.
    HOWEVER, the iLife 11 boxed version that is still currently available at the online Apple Store (Store button at the top of the page) and those copies still on the shelves of retailers will include iWeb and iDVD.

  • I'm trying to reverb an audio clip in my timeline and I can't find the effect tab in the browser to drag to my audio clip to reverb. I can reverb the clip in the viewer but can't it won't drag to the timeline. I'm using FCE

    I'm trying to reverb an audio clip in my timeline and I can't find the effect tab in the browser to drag to my audio clip to reverb. I can reverb the clip in the viewer but it won't drag to the timeline. I'm using FCE

    You cannot drag the effects themselves to the timeline.  You add them to a clip in the Viewer, just as you have done. 
    If the clip was already in the timeline when you  opened it in the Viewer (by double-clicking it in the timeline to open it in the Viewer) and then added the reverb effect, there is nothing further to do, you have added the effect to the clip.  You don't drag it back to the timeline.
    You only have to drag the clip to the timeline if the clip was not already in the timeline (for example, if you opened the clip from the FCE Browser; or set different In and Out points in a master clip to use a different portion of the master clip in a different location in your timeline).
    Depending on the effect you add, you may have to render the timeline after adding the effect.  But I don't think reverb requires immediate rendering.  One other note, you said you were working with an audio clip ... audio clips need to be AIFF (not MP3 or something else) and preferably 16-bit stereo.

  • I am a teacher of IT Information Technology for high school students of a public school in the state of Minas My Brazil, and would like to know if you guys have dreamweaver cs5 for students and flash, so I can teach students the construction of these site

    I am a teacher of IT Information Technology for high school students of a public school in the state of Minas My Brazil, and would like to know if you guys have dreamweaver cs5 for students and flash, so I can teach students the construction of these sites trough applications

    Hi,
    In addition to what Ken said, I would suggest that you give Edge Animate a shot as well.
    Creative Cloud is available as trial version for 30 days and almost all creative software is bundled with the Creative Cloud. Tutorials are included for each of the products on the respective sections of the website. For instance, this site Website builder | Download free Adobe Dreamweaver CC trial gives you access to the trial version as well as tutorials.
    I suggest that you go to http://creative.adobe.com and explore the various options available.
    For any purchase related information, feel free to send me a private message if you need further clarification. Click on my picture and use the message option. The experts on this forum can help you with other questions you have on using Creative Cloud.
    Thanks,
    Preran

  • I have a MacBookPro5,1 using OSX 10.6.8 can I upgrade the OSX to 10.7 in order to use Norton Multi-Device?

    I have a MacBookPro5,1 using OSX 10.6.8 can I upgrade the OSX to 10.7 in order to use Norton Multi-Device?

    You can upgrade to Lion or Mountain Lion.
    Upgrade Paths to Snow Leopard, Lion, and/or Mountain Lion
    You can upgrade to Mountain Lion from Lion or directly from Snow Leopard. Mountain Lion can be downloaded from the Mac App Store for $19.99. To access the App Store you must have Snow Leopard 10.6.6 or later installed.
    Upgrading to Snow Leopard
    You must purchase Snow Leopard through the Apple Store: Mac OS X 10.6 Snow Leopard - Apple Store (U.S.). The price is $19.99 plus tax. You will be sent physical media by mail after placing your order.
    After you install Snow Leopard you will have to download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store. Access to the App Store enables you to download Mountain Lion if your computer meets the requirements.
         Snow Leopard General Requirements
           1. Mac computer with an Intel processor
           2. 1GB of memory
           3. 5GB of available disk space
           4. DVD drive for installation
           5. Some features require a compatible Internet service provider;
               fees may apply.
           6. Some features require Apple’s MobileMe service; fees and
               terms apply.
    Upgrading to Lion
    If your computer does not meet the requirements to install Mountain Lion, it may still meet the requirements to install Lion.
    You can purchase Lion by contacting Customer Service: Contacting Apple for support and service - this includes international calling numbers. The cost is $19.99 (as it was before) plus tax.  It's a download. You will get an email containing a redemption code that you then use at the Mac App Store to download Lion. Save a copy of that installer to your Downloads folder because the installer deletes itself at the end of the installation.
         Lion System Requirements
           1. Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7,
               or Xeon processor
           2. 2GB of memory
           3. OS X v10.6.6 or later (v10.6.8 recommended)
           4. 7GB of available space
           5. Some features require an Apple ID; terms apply.
    Upgrading to Mountain Lion
    To upgrade to Mountain Lion you must have Snow Leopard 10.6.8 or Lion installed. Purchase and download Mountain Lion from the App Store. Sign in using your Apple ID. Mountain Lion is $19.99 plus tax. The file is quite large, over 4 GBs, so allow some time to download. It would be preferable to use Ethernet because it is nearly four times faster than wireless.
         OS X Mountain Lion - System Requirements
           Macs that can be upgraded to OS X Mountain Lion
             1. iMac (Mid 2007 or newer)
             2. MacBook (Late 2008 Aluminum, or Early 2009 or newer)
            3. MacBook Pro (Mid/Late 2007 or newer)
             4. MacBook Air (Late 2008 or newer)
             5. Mac mini (Early 2009 or newer)
             6. Mac Pro (Early 2008 or newer)
             7. Xserve (Early 2009)
         Are my applications compatible?
             See App Compatibility Table - RoaringApps.
         For a complete How-To introduction from Apple see Upgrade to OS X Mountain Lion.

  • I have an Apple MacBook Pro with 2 USB ports and a MiniDisplay Port. I also have an HDTV with a HDMI port. How can I use the TV as a display without any tethering wires between my computer and the TV?

    I have an Apple MacBook Pro with 2 USB ports and a MiniDisplay Port. I also have an HDTV with a HDMI port. How can I use the TV as a display without any tethering wires between my computer and the TV? I have a MiniDisplay Port to VGA adapter, but there are two issues with it: The new display doesn't have a VGA port, and even if it did, I wouldn't want to have my mac constantly attached to the display by a cable. I was looking for a way to use the TV as a display without any wires. Is there some type of bluetooth setup I could use? Please let me know if you have any suggestions.

    As I wrote above, I think you should look into the Apple TV yourself. The best place to find information about what it can and can't do and to ask your own specific questions is probably in the Apple TV forum, here:
    https://discussions.apple.com/community/appletv/appletv

  • I have problem with Itunes losing where podcasts and some purchased music is located. Don't know how Itunes losing the locations of the files and I can't find the files on my hard drive. What can I do to stop Itunes losing location and restore my files?

    I have problem with Itunes losing where podcasts and some purchased music is located. Don't know how Itunes losing the locations of the files and I can't find the files on my hard drive. What can I do to stop Itunes losing location and restore my files?

    Try assigning Queen as the Album Artist on the compilations in iTunes on your computer.

Maybe you are looking for

  • I WOULD LIKE TO DELETE MY ACCOUNT OR SOLVE THIS TROUBLE PLEASE SEE THIS

    VERY URGENT (MY EMAIL IS PLENTY OF THESE QUESTIONS This is for the administrator(s) I Am receiving from your forum site many of THESE: aemme, You are watching the category "System Management and Integration", which was updated Nov 11, 2010 4:32:18 AM

  • Nokia E51 problem in the recorder or push to talk ...

    sometimes the recorder button (on left side) works and sometimes it doesnt.does any body have this problem?

  • How to handle subscreen in bdc?

    Hi friends, I am processing  the BDC using the Call Transaction Method. Here during the processing of Payment posting I need to select all invoice documents using the select all button and perform deactive discount. so that I can able to create and m

  • Button to launch another application

    what is js for launching another applicatoin?

  • RFC fail to connect to CI from DI

    Hi All, During sm59 RFC test from the DIs to the CI, it failed. In t-code smgw, all entries which are connecting to the CI are stated as "connecting" instead of connected. When drill in to the entry, it stated that the connection is pointing to 192.1