Syncing problems for playlists created from coverting 33 records

My kids recently purchased Deck USB turntable that converts older 33 records into MP3 file format. I successfully converted and loaded to I-tunes. They play inside I-tunes, but are not synced or moved to I-Touch. Help!!

did you get a solution for this issue. I am trying to generate a stub to connect to a webservice i created by exposing my stateless session EJB as a web service, using annotations. I want to create a client stub using the clientgen from weblogic 81. I am unable to do this, do you have any solution to this.

Similar Messages

  • Adobe Acrobat Pro XI problems printing PDFs created from AutoCAD.

    Just installed Adobe Acrobat Pro XI and am having problems printing PDFs created from AutoCAD.  Printing other PDF created by MS Word works well.  Had a similar problem in an earlier version of Pro.  The fix I figure out then was to print the PDF file as another PDF.  Using the second PDF to print to a plotter typically worked.  It does not work for Adoabe Acrobat Pro XI.

    Hi presottom
    Please refer ; http://helpx.adobe.com/acrobat/kb/troubleshoot-pdf-printing-acrobat-reader.html
    or
    Let us know more details about it to help you better ?
    What is the OS ?
    is there any error message , etc .. ?

  • IOS5 sync problems for iPhone4

    IOS5 download sync problems for iphone4
    Can't now get NOTES and CALENDAR synced, just deletes any information inserted since download. Furthermore some music files have been corrupted. My PC has Windows XP and IE8. Had no problems with previous iphone 3GS with IOS4.3. Could do with advice on solution or a fix (IOS5.1?) from apple.

    Go into stiings >general > reset>reset all settings
    wait for phone to finish process
    i finally figured out after trying for 1 hr
    enjoy

  • BADI BBP_CREATE_BE_PO_NEW  for PO created from Bid.

    Hi gurus.
    Iu2019m working in classic scenario, and I need to change PO data before to create the PO in ECC.
    When we create a PO form SC we can change data in BADI BBP_CREATE_BE_PO_NEW (methods FILL_PO_INTERFACE and FILL_PO_INTERFACE1) without problem. But when we create a PO from a BID the BADI doesnu2019t work.
    If we fix a break-point the system stop for PO created from SC, but doesnu2019t stop for PO from Bid.
    Any suggest?
    Thanks and regards.
    Raúl.

    What you can try is to use the BBP_DOC_CHANGE_BADI for BID: when price is 0: clear IR_IND (invoice expected) and GR_IND (goods receipt expected) on item level. Be prepared for SRM putting back those indicators though (SRM gets these from the vendor details).
    The badi you mentioned in your first post should be the one you have to use as you are in classic mode. I would raise an OSS note because the way you use the badi is correct - it should be called and if it doesn't SAP has to provide a solution.
    Maybe there is a user-exit in ECC in the function module that creates the order (BAPI_PO_CREATE1) as a (hopefully temporary) work around.
    Regards,
    Robin

  • What are the naming conventions used for aggregates created from Query?

    What are the naming conventions used for aggregates created from Query?

    Hi Reddy,
    As you know aggregates are baby cubes right.
    Aggregate names by default system has given as 6 digit number like 100831 but write the description by yourself.
    Here you have to remember fact table is created with the name
    like for ex: /BIC/F100831.
    while creating aggregates you can observe all options carefully till complete the creation process then after I am sure about
    your can get idea .
    If problem still persists with you let me know the same until
    get out of that.
    else assign points if this is sufficient.
    Thanks,
    Ramki

  • FramePosicioningControl for processor created from list of images

    Hi,
    I need to create a FramePositioningControl for processor created from a list of bufferedimages.
    I 've followed the instructions in the next code:
    http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/JpegImagesToMovie.html and
    http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/Cut.html
    First thing i do is create a source stream for the list of bufferedimage: SourceStream class.
    Then i created a data source that contains an instance of SourceStream: ListImageDataSource class
    Finally i created a processor using an instance of ListImageDataSource.
    I get the next error when i try to create FramePositioningControl control for that processor:
    The processor does not support FramePositioningControl.
    The example program is the next. Its a little long but easily understandable.
    I test my program with a video file and it works but when i try test it from a list of images i get the error.
    Can it be because format chosen of every image? i use RGB but i dont know if that is correct
    I need to have a method called getFrame(int index) that returns the frame at the specified index.
    If a processor doesnt support framepositioningcontrol when it is created from a list of image, can i use a interface (seekable or other) to do that?
    import java.awt.Dimension;
    import java.awt.image.BufferedImage;
    import java.io.IOException;
    import java.util.Vector;
    import java.net.*;
    import java.io.*;
    import javax.imageio.*;
    import com.sun.image.codec.jpeg.JPEGCodec;
    import com.sun.image.codec.jpeg.JPEGImageEncoder;
    import javax.media.Buffer;
    import javax.media.ConfigureCompleteEvent;
    import javax.media.ControllerEvent;
    import javax.media.ControllerListener;
    import javax.media.EndOfMediaEvent;
    import javax.media.Format;
    import javax.media.Manager;
    import javax.media.PrefetchCompleteEvent;
    import javax.media.Processor;
    import javax.media.RealizeCompleteEvent;
    import javax.media.ResourceUnavailableEvent;
    import javax.media.Time;
    import javax.media.control.FrameGrabbingControl;
    import javax.media.control.FramePositioningControl;
    import javax.media.control.TrackControl;
    import javax.media.format.VideoFormat;
    import javax.media.protocol.ContentDescriptor;
    import javax.media.protocol.PullBufferDataSource;
    import javax.media.protocol.PullBufferStream;
    public class PositionableVideo implements ControllerListener{
         Processor p = null;
         Object waitSync = new Object();
        boolean stateTransitionOK = true;
        int width = 0;
        int height = 0;
        FramePositioningControl fpc = null;
        FrameGrabbingControl fgc = null;
        int totalFrames = 0;
        ListImageDataSource ids = null;
        public static void main(String args[]){
             String [] images = {"http://farm3.static.flickr.com/2084/2068533005_87b8b15914_m.jpg",
                       "http://farm1.static.flickr.com/158/336360357_3a183e2e61_m.jpg"};
             Vector<BufferedImage> bivector = new Vector<BufferedImage>(images.length);
             for(int i = 0; i < images.length; i++){
                  System.out.println("Reading image: "+(i+1)+"/"+images.length);
                  try{
                       URL url = new URL(images);
                   bivector.add(ImageIO.read(url));
              }catch(Exception e){
                   System.err.println("Error loading images: "+e);
         System.out.println("Images read");
         PositionableVideo pv = new PositionableVideo(bivector, 25);
         pv.getClass();
    public PositionableVideo(Vector<BufferedImage> images, int frameRate) throws NullPointerException{
              if(images != null){
                   ids = new ListImageDataSource(images, frameRate);
              if(!open(ids)){ return; }
              System.out.println("JMFVideo created");
              else{
                   throw new NullPointerException();
         private boolean open(ListImageDataSource ids){
              try {
              p = Manager.createProcessor(ids);
              } catch (Exception e) {
              System.err.println("Cannot create a processor from the data source");
              return false;
              p.addControllerListener(this);
              p.configure();
              if (!waitForState(p.Configured)) {
              System.err.println("Failed to configure the processor");
              return false;
              // p.setContentDescriptor(null);
              // Query for the processor for supported formats.
              // Then set it on the processor.
              /*TrackControl tcs[] = p.getTrackControls();
              Format f[] = tcs[0].getSupportedFormats();
              for(int i = 0; i <tcs.length; i++){
                   Format fc[] = tcs[i].getSupportedFormats();
              if (f == null || f.length <= 0) {
              System.err.println("The mux does not support the input format: " + tcs[0].getFormat());
              return false;
              tcs[0].setFormat(f[0]);
              System.out.println("Setting the track format to: " + f[0]);
              // Put the Processor into realized state.
              p.realize();
              if (!waitForState(p.Realized)) {
              System.err.println("Failed to realize the processor");
              return false;
              // Prefetch the processor.
              p.prefetch();
              if (!waitForState(p.Prefetched)) {
              System.err.println("Failed to prefetch the processor");
              return false;
              System.out.println("start processing...");
              // OK, we can now start the actual transcoding.
              p.start();          
              //wait to images are ready: try{Thread.sleep(3000);}catch(Exception e){}
              // Create a frame positioner.
              fpc = (FramePositioningControl) p.getControl("javax.media.control.FramePositioningControl");
              if (fpc == null) {
              System.err.println("The processor does not support FramePositioningControl");
              return false;
              // Create a frame grabber.
              fgc = (FrameGrabbingControl) p.getControl("javax.media.control.FrameGrabbingControl");
              if (fgc == null) {
              System.err.println("The processor does not support FrameGrabbingControl");
              return false;
              return true;
         private boolean waitForState(int state) {
              synchronized (waitSync) {
              try {
                   while (p.getState() != state && stateTransitionOK)
                   waitSync.wait();
              } catch (Exception e) {}
              return stateTransitionOK;
         public void controllerUpdate(ControllerEvent evt) {
              if (evt instanceof ConfigureCompleteEvent ||
              evt instanceof RealizeCompleteEvent ||
              evt instanceof PrefetchCompleteEvent) {
              synchronized (waitSync) {
                   stateTransitionOK = true;
                   waitSync.notifyAll();
              } else if (evt instanceof ResourceUnavailableEvent) {
              synchronized (waitSync) {
                   stateTransitionOK = false;
                   waitSync.notifyAll();
              } else if (evt instanceof EndOfMediaEvent) {
              p.close();
              System.exit(0);
         class ListImageDataSource extends PullBufferDataSource{
    SourceStream streams[] = null;
    Time duration = null;
    public ListImageDataSource(Vector<BufferedImage> images, int frameRate) throws NullPointerException{
              if(images != null){
                   streams = new SourceStream[1];
              streams[0] = new SourceStream(images, frameRate);
              duration = new Time( ((double) images.size() / frameRate) ); //seconds
              else{
                   throw new NullPointerException();
         public PullBufferStream[] getStreams() { return streams; }
         public void connect(){}
         public void disconnect(){}
         public void start(){}
         public void stop(){}
         //Content type is of RAW since we are sending buffers of video frames without a container format
         public String getContentType() { return ContentDescriptor.RAW; }
         public Time getDuration(){ return duration; }
         public Object[] getControls() { return new Object[0]; }
         public Object getControl(String type) { return null; }
         class SourceStream implements PullBufferStream {
         Vector <BufferedImage> images;
              int width, height;
              VideoFormat format;
              int frameRate;
              int nextImage = 0;     // index of the next image to be read.
              boolean ended = false;
              public SourceStream(Vector <BufferedImage> images, int frameRate) {
              this.width = images.get(0).getWidth();
              this.height = images.get(0).getHeight();
              this.frameRate = frameRate;
              this.images = images;
              format = new VideoFormat(VideoFormat.RGB, new Dimension(width, height),
                        Format.NOT_SPECIFIED, Format.intArray, (float) frameRate);
              public boolean willReadBlock() { return false; }
              public int getFrameRate() { return frameRate; }
              public void read(Buffer buf) throws IOException {
              if (nextImage >= images.size()) { // Check if we've finished all the frames.
                   buf.setEOM(true);
                   buf.setOffset(0);
                   buf.setLength(0);
                   ended = true;
                   return;
              Object data = buf.getData();
              int maxDataLength = width * height * 3;
              // Check to see the given buffer is big enough for the frame.
              if (data == null || !(data.getClass() == Format.intArray) ||
    ((int[]) data).length < maxDataLength) {
                   data = new int[maxDataLength];
                   buf.setData(data);
              BufferedImage bi = images.get(nextImage);
              bi.getRGB(0, 0, width, height, (int[]) data, 0, width);          
              Save every image. It works
              try{
              OutputStream salida = new FileOutputStream( "frame"+data.toString()+".jpeg" );
              JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder( salida );
              encoder.encode(bi);
              salida.close();
              } catch(IOException e){}
              buf.setOffset(0);
              buf.setLength(maxDataLength);
              buf.setFormat(format);
              buf.setFlags(buf.getFlags() | buf.FLAG_KEY_FRAME);
    buf.setSequenceNumber(nextImage);
              buf.setTimeStamp( (long) (nextImage * (1000 / frameRate) * 1000000) );
              nextImage++;          
              public ContentDescriptor getContentDescriptor() {
              return new ContentDescriptor(ContentDescriptor.RAW);
              public Format getFormat() { return format; }
              public long getContentLength() { return 0; }
              public boolean endOfStream() { return ended; }
              public Object[] getControls() { return new Object[0]; }
              public Object getControl(String type) { return null; }
    Thanks so much                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Thanks.
    I found a way of doing it by creating a view and calling it recursively everytime a user swipes

  • Ios7 music sync problems for iPhone 4S

    Like many other folks I made the huge mistake of updating (NOT upgrading) to io7, in my case 7.0.4, then trying to sync musci from iTunes.  I first upgraded (ha!) to iTunes 11.1.3, then found I was lost in the 'waiting for changes' zone.  I've now been working on this problem for hours, along with a host of other ios7-related changes (e.g. the inability to limit the number of gmail messages ported into active memory).  I've tried most of the fixes others have listed [remove all sync flags, rebuild playlist, clean out chinese characters, etc.] and finally got one sync to make it through the 'veil', but subsequent syncs now get stuck as well.  I have not tried a full restore and really don't want to go down that path. This is pathetic, and the total cone of Apple silence about this issue makes you wonder where their customer focus disappeared to.  Any other ideas?

    This is a user to user forum, there is no Apple here.

  • Problem in Monitor ('391 From 0 Records')

    Hi Guys,
    My standard extrator (2LIS_11_VAHDR) is extracting records properly.
    When i am uploading the data to BW, data has added properly into the cube.
    But in the monitor it is giving '391 From 0 Records' and always in yellow state.
    I am waiting more than an hour, but now also same thing.
    Can anyone give suggestion to overcome this problem?
    Regards,
    Vivek.V

    Hi Vivek,
    It is sometimes happens that, though the job is completed successfully it has still in yellow. Check in SM37 or SM50 or SM66 and see if the process is really completed or not. if so, you can change the status to green provided you make sure that the data is updated in data target and is also available for reporting.
    Hope it helps...
    Best Regards,
    DMK
    *Assign points if it helps...

  • Change item category for PR created from SCM system

    Hi All,
    I want to change the item category field from value '7' to '0' for the purchase requests created from SCM system.
    I have tried the exit CIFPUR02.
    But the PRs are not getting created if change hte item category.
    Please advice how I can achieve this.
    Regards,
    Shobana.K

    Fixed it myself

  • Release strategy for PREQs created from PM work order

    Hi All,
    I have an issue with determining  release strategy for purchase requisition for external services created via PM work order (iw31 transaction).
    We have activated release strategy for Purchase requisition based on the following characteristics:
    CEBAN_PLANT
    CEBAN_COST_CENTER_GROUP
    CEBAN_MANUAL
    Characteristic CEBAN_COST_CENTER_GROUP is defined via user exit based on the cost center used in the PREQ and a z table which contains all cost centers mapped to the corresponding  cost center goups.
    In the user exit we have consider to cases:
    The first one is when a purchase requisition is created with account assignment K (cost center) then system is checking the z table and determines the right cost center group.
    The second case is when a purchase requisition is created with account assignment F (internal order) then based on the order type and number the cost center in the order is defined and based on it the corresponding entry in the z table cost center group is assigned.
    The third case is when purchase requisition for services is created automatically from PM work order. In this case the PREQ is again with account assignment F, but at the time when user exit is checking the input parameters the real number of the work order does not exist and system can not defined the other parameters.
    We have defined  for this requisitions in the release strategy for characteristic CEBAN_MANUAL creation indicator " F".
    Has anybody of you defined release strategy for PREQs created out of work order before. How did you manage to trigger the release strategy?
    Best Regards,
    Desislava

    Hi,
    For PM order find the costcenter in the settlement rule of the order or else find the costcenter in the Location tab of the order.
    Consider this filed from order & write in the Z program to pick up the costcenter from there to find out the cost center group.
    Regards,
    Raj

  • Problem with files created from a template

    I've never had this problem before and I can't seem to figure
    out how to fix it. I have DW 8 and we've created a new website, and
    we have a root cfm template named root.dwt.cfm. Everything works as
    normal when you're editing code in the template, but when you go to
    edit code in a file you created from the template, all the text is
    black and it doesn't offer code hints or anything. It's like it
    doesn't know what type of file it is or something? This is the
    first template I've created in DW 8, so is this some sort of bug?
    Is there anything I can try to check to figure out what's going on?
    I'm at a loss.
    Thanks!!!
    Holli

    Show me one of these pages, please.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Wolli World" <[email protected]> wrote in
    message
    news:e35f95$aft$[email protected]..
    > I've never had this problem before and I can't seem to
    figure out how to
    > fix
    > it. I have DW 8 and we've created a new website, and we
    have a root cfm
    > template named root.dwt.cfm. Everything works as normal
    when you're
    > editing
    > code in the template, but when you go to edit code in a
    file you created
    > from
    > the template, all the text is black and it doesn't offer
    code hints or
    > anything. It's like it doesn't know what type of file it
    is or something?
    > This is the first template I've created in DW 8, so is
    this some sort of
    > bug?
    > Is there anything I can try to check to figure out
    what's going on? I'm
    > at a
    > loss.
    >
    > Thanks!!!
    > Holli
    >

  • BAPI needed for goods receipt for delivery created from sales order

    Hi experts,
    I need help.
    I want to post goods receipt for the delivery created from sales order. I have tried out BAPI BAPI_GOODSMVT_CREATE but I am not able to post it.
    Is there any way to post this? I need BAPI and not FM MB_*....
    Thanks & REgards,
    Bhavin A. Shah

    Hi,
    Please refer to link,
    https://wiki.sdn.sap.com/wiki/display/Snippets/BAPI_GOODSMVT_CREATE-ABAP
    Regards
    Shree

  • Different sync settings for 2 aTVs from 1 iTunes library

    Is it possible to have separate sync settings for 2 different aTVs using the same itunes library?
    I'd like to view movies and TV shows only from the aTV in my bedroom but I'd like to see all my iTunes content on the aTV in my den? Is this possible without streaming? Can the iTunes library sync one way with the den aTV and a different way with the bedroom aTV?
    tomw

    tomw wrote:
    Is it possible to have separate sync settings for 2 different aTVs using the same itunes library?
    Yes, absolutely.
    I'd like to view movies and TV shows only from the aTV in my bedroom but I'd like to see all my iTunes content on the aTV in my den? Is this possible without streaming? Can the iTunes library sync one way with the den aTV and a different way with the bedroom aTV?
    Your only limitation here would be the size of the tv HDD, if your library is larger than the space on the tv drive then you will need to stream some content.

  • Audio sync problem with videos imported from iPod Touch

    I have an iPod Touch 4th Generation that I used to shoot video at a family birthday party. When I imported the footage into iMovie '11, the audio is not in sync with the video (video is about two seconds behind audio) and there is only the left channel of audio. I verified that the video on the iPod plays just fine--no audio sync problem, both left and right channels work. I just upgraded to iOS 5 on the iPod Touch. The iMac is running Snow Leopard 10.6.8.
    As a workaround, I can import the video into iPhoto instead. When I play the video in iPhoto, there are no audio sync problems and both channels of audio can be heard. I have imported other iPod Touch videos successfully into iMovie '11 in the past few months, but this has been the first time these problems have occurred. Any help would be appreciated.

    Premiere cannot handle clips with variable framerate.
    Your converted clips need to have constant framerate.
    Otherwise use a converter like Handbrake.

  • Release Strategy for reservation created from PM and PS

    Dear All,
    How to configure the release strategy for reservation generated  from PM and PS.
    Regards,
    Atanu

    do you talk about release strategie for requisitions, or really reservations?

Maybe you are looking for

  • TS3212 There is a problem with this windows installer package.

    When I try to download the most current version of iTunes, I receive this message: "There is a problem with this Windows Installer package.  A program run as part of the setup did not finish as expected.  Contact your support personnel or package ven

  • [pcmanfm] How to deactivate no-icon-theme-message [solved]

    Hello guys, I don't need any icon theme because I use a shell in most of the cases. But as I have to use pcmanfm it always appears that annoying message. Can it be deactivated in any way? Thank you in advance orschiro Last edited by orschiro (2009-06

  • PDF prints with little boxes and question marks

    I prepared a document in Microsoft Publisher 360 and created a pdf with creative cloud. Looks great and prints great for me. I emailed it to a few people and it looks great on their screens. However, when they print it, it comes out with little boxes

  • BGP Update Messages

    Can a bgp UPDATE message carry more than a single prefix ? I have read a lot of text about this ( Halabi, Doyle, RFC 1771 ) but I think the wording that this literature is never clear to me about what they are exactly saying. below is a quote from RF

  • A quick straight RAID answer for an Editor

    So I'm on my spankin' new 8 core with 3 500 Gig Drives (main is my boot and apps) and 2 others in the bay. On my old Dual 2 Gig PPC I am using a Cal Digit S2VR Duo for my DVCPROHD work. On the new 8 Core, I've striped the 2 internals (not my boot) as