Fixing import error for non compilation CDs

I've noticed that iTunes imports some CDs into the Compilations folder on XP when they are not compliation CDs. Does anybody know the procedure for moving these to the correct folder under the artists name ?

All you have to do is first, in iTUnes, Goto goto edit>preferences>advanced>general and make sure "Keep Itunes Music organized" is checked. Then goto the main Library. Now in the top right corner, in the search field type the name of the album thats incorrectly in the "Compilation" folder. you will now only see a list of tracks on that album.
Select the first track, hold down the shift key, then select the last track. this will highlight all of the tracks. Rightclick and hit "Get Info". In the section "Part of a Compilation" near the bottom, change it to No. iTunes will now move the folder under the correct artist.
Next time you import a CD just use the same method of highlighting all tracks, selecting "Get Info" and making sure its not saying "Yes" to non compilation CDs

Similar Messages

  • Please fix these errors for me...

    Here is my code...
    When I compiled it, it said
    Exception in thread "main" java.lang.NullPointException
    at java.awt.Container.addImpl(Unknown Source)
    at java.awt.Container.add(Unknown Source)
    at javax.swing.JFrame.addImpl(Unknown Source)
    at java.awt.Container.add(Unknown Source)
    at SecondsCalc.<init>(SecondsCalc.java:43)
    at SecondsCalc.main(SecondsCalc.java.166)
    Please fix these errore for me..Thank you!!
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    public class SecondsCalc extends JFrame
    private JPanel panel;   // To reference a panel
    private JLabel messageLabel1; // To reference a label for days
    private JLabel messageLabel2; // To reference a label for hours
    private JLabel messageLabel3; // To reference a label for minutes
    private JLabel messageLabel4; // To reference a label for minutes
    private JTextField daysTextField; // To reference a text field for days
    private JTextField hoursTextField; // To reference a text field for hours
    private JTextField minutesTextField; // To reference a text field for minutes
    private JTextField secondsTextField; // To reference a text field for seconds
    private JButton calcButton;  // To reference a calculate button
    private JButton exitButton;  // To reference a exit button
    private final int WINDOW_WIDTH = 310; // Window width
    private final int WINDOW_HEIGHT = 100; // Window height
      Constructor
    public SecondsCalc()
      // Set the window title.
      setTitle("Seconds Calculator");
      // Set the size of the window.
      setSize(WINDOW_WIDTH, WINDOW_HEIGHT);
      // Specify what happens when the close button is clicked.
      setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      // Add a GridLayout manager to the content pane.
      setLayout(new GridLayout(6, 1));
      // Build the panel and add it to the frame.
      buildPanel();
      // Add the panel to the frame's content pane.
      add(panel);
      // Display the window.
      setVisible(true);
      The buildPanel method adds a label, text field, and
      add buttons to a panel.
    private void buildPanel()
      // Create a label for days to display instructions.
      messageLabel1 = new JLabel("days");
      // Create a text field for days 10 characters wide.
      daysTextField = new JTextField(10);
      // Create a label for hours to display instructions.
      messageLabel2 = new JLabel("hours");
      // Create a text field for hours 10 characters wide.
      hoursTextField = new JTextField(10);
      // Create a label for minutes to display instructions.
      messageLabel3 = new JLabel("minutes");
      // Create a text field for minutes 10 characters wide.
      minutesTextField = new JTextField(10);
      // Create a label for seconds to display instructions.
      messageLabel4 = new JLabel("seconds");
      // Create a text field for seconds 10 characters wide.
      secondsTextField = new JTextField(10);
      // Create a calculate button with the caption "Calculate".
      calcButton = new JButton("Calculate");
      // Create a exit button with the caption "Exit".
      exitButton = new JButton("Exit");
      // Register the action listeners.
      calcButton.addActionListener(new CalcButtonListener());
      exitButton.addActionListener(new ExitButtonListener());
      // Create a JPanel object and let the panel
      // field reference it.
      JPanel panel1 = new JPanel();
      JPanel panel2 = new JPanel();
      JPanel panel3 = new JPanel();
      JPanel panel4 = new JPanel();
      JPanel panel5 = new JPanel();
      JPanel panel6 = new JPanel();
      // Add the label, text field, and button
      // components to the panel.
      panel1.add(messageLabel1);
      panel2.add(messageLabel2);
      panel3.add(messageLabel3);
      panel4.add(messageLabel4);
      panel1.add(daysTextField);
      panel2.add(hoursTextField);
      panel3.add(minutesTextField);
      panel4.add(secondsTextField);
      panel5.add(calcButton);
      panel6.add(exitButton);
      add(panel1);
      add(panel2);
      add(panel3);
      add(panel4);
      add(panel5);
      add(panel6);
      CalcButtonListener is an action listener class for
      the Calculate button.
    private class CalcButtonListener implements ActionListener
            public void actionPerformed(ActionEvent e)
                int seconds; // The number of seconds
                int min;
                int day;
                int hour;
                long result;
                // Get the text entered by the user into the
                // text fields.
                day = Integer.parseInt(daysTextField.getText());
       hour = Integer.parseInt(hoursTextField.getText());
                min = Integer.parseInt(minutesTextField.getText());
                seconds = Integer.parseInt(secondsTextField.getText());
       //Actullly gettext method returns string and you need to convert it into int or double value using Integer.parseInt method.
                // Calculate to seconds.
       result = (day *((hour * 60 * 60) + (min * 60) +seconds));
       // Display the result.
                 JOptionPane.showMessageDialog(null, result + " seconds");
      Private inner class that handles the event when
      the user clicks the Exit button.
    private class ExitButtonListener implements ActionListener
      public void actionPerformed(ActionEvent e)
       System.exit(0);
    public static void main(String[] args)
      SecondsCalc ac = new SecondsCalc();
    }

    fgb wrote:
    Exception in thread "main" java.lang.NullPointException
    at SecondsCalc.<init>(SecondsCalc.java:43)
    at SecondsCalc.main(SecondsCalc.java.166)Something is null on line 43. What does that line do and why is it needed?That's right!!
    I did not need to put line 43, which was
    // Add the panel to the frame's content pane.
    add(panel);
    Thank you very much!!!

  • [svn] 4735: Fixing id selectors for non-visual components.

    Revision: 4735
    Author: [email protected]
    Date: 2009-01-29 10:53:55 -0800 (Thu, 29 Jan 2009)
    Log Message:
    Fixing id selectors for non-visual components. This required a special modification to the compiler to include id properties in generated code if a component was guaranteed to have an id property. A new mx.core.IID interface was introduced to opt in to the id property to be included. This change also required TextGraphicElement based components to implement IAdvancedStyleClient instead of just IStyleClient (though note that pseudo-selectors have no meaning for these components as they do not possess states).
    QE: Yes
    Doc: It's reasonably advanced, but we may want to document mx.core.IID for the case where a custom component exists that needs to be styled but is not based on UIComponent or GraphicElement.
    Checkintests: Pass
    Reviewers: Glenn, Paul R
    Bugs:
    SDK-18651 - Advanced CSS not setting styles on FXG elements correctly when styling using IDs
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-18651
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/graphicsClasses/GraphicElement.a s
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/graphicsClasses/TextGraphicEleme nt.as
    flex/sdk/trunk/frameworks/projects/framework/src/FrameworkClasses.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/IAdvancedStyleClient.as
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/InterfaceCompiler.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/ComponentBuilder.jav a
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/lang/AttributeHandler.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/lang/StandardDefs.java
    Added Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/core/IID.as

    Anyone able to help?

  • How to fix export error - unable to compile movie?

    I can seem to find any concrete / concise solution for this.

    I am not having any lucky fixing this export error (unable to compile movie) in Premiere Pro CC.  All available articles seem to run me in circles and dont seem to help.  I am running on macbook pro 17" and OS X 10.8.4.
    I have about 200 GB available for storage and 8 GB RAM. 
    This problem just began a couple of days ago and has been frustrating to say the least.   I have uninstalled program and reinstalled it to no avail.
    Help.
    Bill

  • How to import Province for NON US Leads?

    I couldn't find a separte Province Field on the Lead wsdl instead it only has oneState/Province field.
    We have both US and NON USA Leds which needs to be imported. I'm mapping the USA Address to State/Province field. But I dont know which field to be mapped for Province. Also, if I try to import address for a NON USA Country, it throws a picklist mismatch error stating State values doesn't match as it is verifying against the State field, which would only allow the valid USA Sate Codes.
    Please advice.

    Hi Danpiel and welcome to Apple Discussions,
    Try on ebay. Click this link to ebay.co.uk
    http://www.ebay.co.uk/sch/Software-/18793/i.html?_nkw=snow+leopard&_catref=1&_tr ksid=p3286.c0.m1538
    As Latvia is in the European Union you should find a seller that will mail to you.
    Good luck,
    Alan

  • HANA STUDIO SPS06: IMPORT ERROR FOR A SCHEMA

    Hi HANA Experts,
    I have a problem for exporting and importing data  for a schema.
    For exporting I used interface of HANA Studio SPS06 , while importing I used command
    IMPORT "SFLIGHT" ."*" AS BINARY from "/tmp/SFLIGHT" WITH RENAME SCHEMA "SFLIGHT" TO "SHANA"
    I am getting the error as
    SAP DBTech JDBC:[2048]:column store error: table import failed: [30134] out of memory
    Kindly suggest. Thank you
    Regards

    PrPro will come to you. It has fewer "automations," and "big-button" solutions, than PowerDirector (and Magix and PrE), but with that comes power!
    It is the same with Encore vs the limited authoring capabilities of PowerDirector, Magix, Roxio and PrE. Again, more hand-work, but oh, so much more power!
    Can you tell that I am a control freak, and do not mind getting my hands dirty to access the power?
    There are a few things that Encore cannot do, that programs like Sonic Scenarist can do, but there are usually workarounds, either in the design, or in the implementation, that will get you "there," or close.
    I strongly recommend that any new user to Encore purchase and read Jeff Bellune's excellent book, The Focal Easy Guide to Adobe EncoreDVD 2.0, Focal Press. That book covers everything that Encore can do, with two current exceptions - Adobe Dynamic Link (CS4 version) and BD authoring. Both of those were added after the book and EncoreDVD 2.0, were released. However, the Help files cover both of those newer additions well.
    Along with the fundamentals of Encore, Jeff covers all sorts of tricks and tips for getting more out of Encore, than the DVD-specs. actually allow. Obviously, he cannot break those rules, though he CAN help you create the illusion that the rules HAVE been broken. The user will swear that they just saw things, that are impossible, based on the DVD-specs., which are very limiting. Hey, it IS "smoke and mirrors," but if the user is fooled, you have succeeded, right?
    Good luck, and when you get around to adding some "tricks" to your DVD-Videos, post back. I'd suggest a new thread, so that other users can benefit from the new title, and so that users know that this is a new question. You will find that there is not too much, that someone here has not done, one way, or another. Oh, there ARE some limitations, where there is no good way to "bend" those DVD-specs., but you'll be surprised at what one can "bend."
    Happy authoring,
    Hunt

  • Shopping cart error for non Valuated material,

    Hi Guys,
    I have an issue with shopping cart which is getting error ("Shopping Cart 0000146522 (Purch Requisition 2000039570): 06 326 Please enter document number and item together ")after approval for non-valuated materials when it has a contract number assigned along with item number in the source of supply tab.If i delete the contract number,i am able to reprocess the shopping cart.Please advice why it is failing when it has a  correct contract number.
    With Regards
    Sri.
    Edited by: sri ram on Jun 23, 2009 3:06 PM
    Edited by: sri ram on Jun 23, 2009 5:13 PM
    Edited by: sri ram on Jun 24, 2009 9:49 AM
    Edited by: sri ram on Jun 25, 2009 9:55 AM

    Hi Ram
    SAP Note 918178 - Error message E06 326 while running WRP1
    WRP1 - is a tcode for  replishment planning in ECC.
    but message comes from ECC system .plz explore contract data once again
    note :514430
    Can you recreate in development box with same data . if it so you can debug in development
    br
    muthu

  • File Import Error for mpeg-1?

    When attempting to add mpeg1 files to render queue, AME 5.0.1.0 displays a messagebox "File Import Error" "Error while decompressing the source file".
    These mpeg1s are direct from my Sony DSC-N2 point-&-shoot. GSpot identifies them as mpeg1 video codec & 32khz,64kbs,mono layer2 audio. VirtualDub has no problem with these files.
    Any ideas?  I'd upload them here but as uncompressed mpeg1s they're 41 & 19MB.

    Hi Peter,
    Thanks for posting the clip. I tested it and was able to reproduce your results.  In Adobe Media Encoder 5.0.1, installed as part of CS5 Design Premium on Windows 7 64-bit with QuickTime 7.6.9, encoding the file to F4V (or FLV or H.264) was very very slow.  It looks like AME is duplicating every frame many times over, which was confirmed when I stopped the encode and examined the partial file.
    The problem did not occur, however, on a similar computer with CS5 Production Premium installed.
    The reason, if I understand the inner workings of AME well (which I like to think that I do), has to do with which codecs are installed with AME, which is dependent on which Adobe products you have installed.  Only Production Premium, After Effects, and Premiere Pro include the MPEG codecs necessary for AME to decode MPEG files natively.  Design Premium, Flash, or any other Adobe product that installs AME do not install the MPEG codecs.
    In theory, AME shouldn't be able to read your MPEG file at all.  But when QuickTime is installed AME has a rule that allows it to ask QuickTime if it can decode certain types of files if AME can't decode them natively.  In this case, yes, QuickTime can read this MPEG file.  So it's actually QuickTime that is decoding the file for AME, and then AME takes those frames and encodes them to the output format.  If you didn't have QuickTime installed, AME would just produce an error when you tried to open the file.  (I confirmed this by uninstalling QuickTime; this is also why your previous bad QuickTime install was generating the error you first posted about.)
    The problem here seems to be that QuickTime and AME aren't talking together very well.  Either AME isn't requesting the frames correctly, or QuickTime isn't handing over the frames correctly.
    The best workaround for you will be to use a different program to transcode your MPEG files to a different format.  Either directly to F4V, or to an intermediate format (QuickTime, AVI, other) that you can then import into AME so it can properly transcode it.
    Or you can take Jim's suggestion and shoot with a camera that produces files that are more friendly to editing.  MPEG files are notoriously difficult to decode efficiently for editing, and the wide variety of implementations of the MPEG guidelines makes it nearly impossible for editing programs to be compatible with every single device that can write MPEG files.
    I do have some good news: this problem has already been resolved for a future release of AME; my test of an internal build did not reproduce the problem.
    -=TimK
    -=Adobe After Effects and Adobe Media Encoder QE

  • IDOMServices Parse giving error for non-alpha numeric characters in content

    Hi All,
    Using Adobe InDesign CS4 SDK 557, I want to create IIDXMLDOMDocument * from a xml stored in a PMString variable.
    I used the following code to parse the xml:-
    InterfacePtr<IK2ServiceRegistry> servReg(GetExecutionContextSession(), UseDefaultIID());
    InterfacePtr<IK2ServiceProvider> provider(servReg->QueryServiceProviderByClassID (kDOMParserService, kDOMParserServiceBoss )); 
    InterfacePtr<IDOMServices> domService( provider, UseDefaultIID() ); 
    if(!domService)
        break;
    std::string stdString = myXMLString.GetPlatformString();
    const char * buff = stdString.c_str();
    InterfacePtr<IPMStream> pmStream(StreamUtil:: CreatePointerStreamRead( (char *)buff, stdString.size()));
    IIDXMLDOMDocument * parsedDom = domService->Parse( pmStream );
    -  Now the problem is when myXMLString have some special character like “0x27” , “0x14” etc. then IDOMServices::Parse fails.
    -  I tried replacing these characters with “&#x27;”, “&#x14;” but still IDOMServices::Parse fails.
    I also tried to used ISAXServices::ParseStream, but it also gives error for the same character.
    Also tried setting ISAXParserOptions::SetAbortAfterWarning(kFalse), but not changed in result.
    Please let me know if I am missing something.
    Thanks,
    Jitendra Kumar Singh

    Hi Nitika Saini,
    Please let me know what's your patch level of BI 7 system.
    I am also facing problem with transformations, I didn't see any transper routines in my system for 0IC_C03 - 2LIS_03_BX, LIS_03_BF, 2LIS_03_UM.
    Here, my BI 7 patch level BI content 8 and BW pathc 16.
    Thanks,
    Chandra

  • Simple fix for non-ejecting CDs/DVDs

    I've had trouble getting discs to eject since I got my new Intel duo-core iMac a few weeks ago. I tried all the suggestions on this forum and those that the Apple support people suggested. Finally, a repair guy came to the house today to replace the superdrive.
    I'm almost embarrassed at how simple the solution was. I have the iMac with the built-in iSite camera. There's a plastic case that fits over the screen. It detaches (with great difficulty) for repairs to the computer. The case is attached to the computer with "snaps" and state-of-the-art (supposedly) tape that is very difficult to remove. It should be tight. Well, mine wasn't. The upper left corner (NOT the corner next to the drive) wasn't snapped in all the way. It was loose by maybe 1/8 of an inch. That little bit of crookedness was just enough for the superdrive slot not to line up properly, and that's why the computer couldn't eject the discs. It was a purely mechanical problem.
    The repair guy used the palms of his hands on each upper corner to squeeze the case and snap it on tight. Presto! Instant fix. The discs eject with ease now.
    The only problem is that the tape doesn't seem to be very tight on that upper left-hand corner. So it might loosen again. If it does, I'll be calling Apple support again.
    I was embarrassed that I hadn't noticed this problem before (you couldn't see it if you were looking straight at the computer, which is the only way I ever see it), but I was also relieved that the superdrive didn't have to be replaced.
    So, if you're having problems ejecting discs, check to see if the case is snapped onto the computer tightly.

    Just a follow-up. My case would not stayed snapped to the computer. I had to call service out again, and they replaced the case. Seems the clips that hold the case to the computer weren't designed very well. The new case has redesigned clips, and now everything is fitting tightly. No problem ejecting discs any longer.

  • Import error for .prproj files

    so i've just touched adobe mc CS4 for the first time, my church is allowing me to use the studio/editing room while not being used during the day at certain times. i am compiling a dvd of my wedding to make it more proffessional than the previously made vesion (which looks very amateur with a basic template menue, and so on). i plan to use some flash on the menus and maybe even include an easter egg as well. anyway, with the other program i just imported the media from the camera (which is an HDD camera that records everything into .mod files) i've had a .mod converter for quite some time so those are already converted.i saved them on an external HDD, i created a folder on the computer and just dragged and dropped the folder onto there.
    anyway, with my old program (cyberlink power producer/director) i'd just import the media into the editor, make the edits and cuts and save the project. then import the project into the author program to make teh menus and burn it. when i first pulled up the program to get acclimated to it, i decided to run through a very quick dry run of a full start to stop dvd burn of a very small video. i did a short series of clips and edits in Premiere (the oevr all project is like 6 minutes long). saved the project, and when i go to import the project into Encore it reads "the software that's used to decode the media is not available on this  system""adobe encore the software that's used to decode the media is not  available on this system. installing the correct decoders for the file  you are working with may help correct the problem."
    i can encode the project as an mpeg, and it imports just fine. i can import the individual clips that make up the project into encore, they work fine as well.but if i import the .prproj file, it gives me the error. so whats the deal? can you just drag and drop these files in like this? i'm just trying to keep from constantly encoding the files after 3 encodes, i'm affraid the quality of the video will suffer too much degradation, so i'm trying to get it to where i can just import the project, and then at the end burn the project to dvd.
    i figured it better to ask on here, this way i look like a fool anonymously, and not look like a fool to people i actually know. heh.

    PrPro will come to you. It has fewer "automations," and "big-button" solutions, than PowerDirector (and Magix and PrE), but with that comes power!
    It is the same with Encore vs the limited authoring capabilities of PowerDirector, Magix, Roxio and PrE. Again, more hand-work, but oh, so much more power!
    Can you tell that I am a control freak, and do not mind getting my hands dirty to access the power?
    There are a few things that Encore cannot do, that programs like Sonic Scenarist can do, but there are usually workarounds, either in the design, or in the implementation, that will get you "there," or close.
    I strongly recommend that any new user to Encore purchase and read Jeff Bellune's excellent book, The Focal Easy Guide to Adobe EncoreDVD 2.0, Focal Press. That book covers everything that Encore can do, with two current exceptions - Adobe Dynamic Link (CS4 version) and BD authoring. Both of those were added after the book and EncoreDVD 2.0, were released. However, the Help files cover both of those newer additions well.
    Along with the fundamentals of Encore, Jeff covers all sorts of tricks and tips for getting more out of Encore, than the DVD-specs. actually allow. Obviously, he cannot break those rules, though he CAN help you create the illusion that the rules HAVE been broken. The user will swear that they just saw things, that are impossible, based on the DVD-specs., which are very limiting. Hey, it IS "smoke and mirrors," but if the user is fooled, you have succeeded, right?
    Good luck, and when you get around to adding some "tricks" to your DVD-Videos, post back. I'd suggest a new thread, so that other users can benefit from the new title, and so that users know that this is a new question. You will find that there is not too much, that someone here has not done, one way, or another. Oh, there ARE some limitations, where there is no good way to "bend" those DVD-specs., but you'll be surprised at what one can "bend."
    Happy authoring,
    Hunt

  • Hard error for non PO duplicate invoice

    Hi,
    In FB60 for a non PO invoice, how can we restrict the duplicate invoice through reference number for different date and amounts. How can I create a hard error when the user posts a duplicate invoice for different amount and date. Right now the hard error is appearing for the reference num, same date and same amount.
    I wanted to create a z function module and tag it to 1110 fucntion module in FIBF Tcode. But can anybody advice if any standard SAP process is available.
    Thanks,
    Vardhan.

    No standard feature.
    You can use the mentioned BTE in FIBF or a validation in GGB0/ OB28
    Regards,
    Gaurav

  • Index:0 Size:0 error for non administrator group

    Hello, I have some dasboards and webis that I want to run in the iPad, If I login as Administrator everything is fine, but if I login as any other user I get the error: Index:0 Size: 0 can anyone tell me what I am missing? 
    I already check the note 1836197 - MOB00082 index:0, Size:0 in SAP BI Mobile App when using a non administartor group member  But I still have the error.
    I have these:
    SAP BusinessObjects BI Platform 4.1 Support Pack 5
    Version: 14.1.5.1501
    In all Cases the assigned access level is Full Control ( just to try)
    User: Test
    Authentication Type: Enterprise
    Group: Mobile
    Category: Mobile
    User Security of the Goup Mobile with Full Control :
    Folder:  Root and  Prueba EDU
    Dashboard:   Ventas2015_prueba27Abr  (Inherited)
    Applications:  SAP BusinessObjects Mobile Extra: WebIntelligence, Dashboards, IDT, Universe Designer
    Category: Mobile and to the  Top-Level Security
    Folders
    Root folder:  (CMC-->Folders-->Manage-->Top-Level security-->All Folders-->Add principal 'Mobile' Group  -->Grant user view right)
    Folder for  Webi & Dashboard:  “Prueba EDU”
    Categories
      root categories: (CMC-->Categories-->Manage-->Top-Level security-->All Categories-->Add Principals and Add user 'Mobile'-->Assign Security-->Advanced tab-->Add/Remove Rights-->View objects-->Apply)
    Category Mobile:
    Applications:
    Dashboards
    SAP BusinessObjects Mobile
    IDT
    Universe design tool
    Web Intelligence
    Note 1783173
    Dashboard and Webi
    Login as Test:

    HI Erika,
    This is an unexpected error. This error belongs to ArrayIndexOutOfBound exception of Java framework - where the list of size is 0 or null and you try to access object on that list.
    Since this is a coding defect (which may or may not be resolved by changing configuration). Next steps - I would strongly recommend that you contact Product Support through the official channel .  http://support.sap.com/incident
    Regards,
    Ashutosh

  • Import po for non valuated material

    hi sap guru's
    my client have one import po in that po material is non valuated at the time of MIRO for posting cvd ,custom, that time system not posting cvd,custom to approprit account (zcv account) they showing only vendor account
    and client want to post cvd ,custom to zcv account how i can configure this senario
    Thanks

    Hi,
    You can try following
    1) Do not create Non valuated PO, enter price as atleast 1$ or any currency so that you can maintain Customs conditions, then at the time of MIRO change the Customs Duty as per BOE.
    2) If you want to have Non Valuated PO only, then post Customs duties thru FB60 (Finance JV) and take Excise credit thru J1IH.
    Regards,
    Vikas Mayekar

  • Solution import error for on-premise

    Hi all,
    I have a solution in my production environment(divided into 3 parts), when i'm trying to deploy the solution (Managed/Un-managed tried both) onto the client server it is throwing an error without any message (Like a generic message). I have checked the Import
    log and CRM Trace log files and tried troubleshooting but there is no luck.
    I will post the import log and the trace log here, can anyone please help to solve the importing solution
    Solution
    Name
    StdGasTransmission
    Display Name
    StdGasTransmission
    Description
    Version
    6.0.0.0
    Package Type
    Managed
    Publisher
    Name
    DefaultPublisherNMPRCPIPELINESAFETY
    Display Name
    Default Publisher for NMPRC-PIPELINESAFETY
    Description
    Default publisher for this organization
    Email
    Website
    City
    Country/Region
    Street 1
    Street 2
    ZIP/Postal Code
    State/Province
    Phone
    Status
    Failure
    Message
    The import failed. For more information, see the related error messages.
    Progress [%]
    97.48
    Duration [s]
    244.1
    It is showing as unprocessed status for the files which is shown below
    Workflow
    {938627d1-4fb7-e411-80f2-00155d0a5b12}
    Lock Inspection Field
    Lock Inspection Field
    Unprocessed
    Workflow
    {527df5a1-038f-422a-9256-932a23e4b0d0}
    Std Ins F1 Gas Trans
    Std Ins F1 Gas Trans
    Unprocessed
    Workflow
    {bf6d20dd-f82b-43e0-8309-91c245d885df}
    GasTransmission_AutoRoute
    GasTransmission_AutoRoute
    Unprocessed
    Workflow Activation
    {938627d1-4fb7-e411-80f2-00155d0a5b12}
    Lock Inspection Field
    Lock Inspection Field
    Unprocessed
    Workflow Activation
    {527df5a1-038f-422a-9256-932a23e4b0d0}
    Std Ins F1 Gas Trans
    Std Ins F1 Gas Trans
    Unprocessed
    Workflow Activation
    {bf6d20dd-f82b-43e0-8309-91c245d885df}
    GasTransmission_AutoRoute
    GasTransmission_AutoRoute
    Unprocessed
    Plugin Assembly
    StdInsForm1_GT_AR_2_PM, Version=1.0.0.0, Culture=neutral, PublicKeyToken=bf2df9b91e15403a
    StdInsForm1_GT_AR_2_PM
    StdInsForm1_GT_AR_2_PM
    Unprocessed
    Plugin Assembly
    StdGasTransmission AutoNumber, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ab1a46818ba347cf
    StdGasTransmission AutoNumber
    StdGasTransmission AutoNumber
    Unprocessed
    Plugin Assembly
    StdInsForm1_GasTrans, Version=1.0.0.0, Culture=neutral, PublicKeyToken=427e236049a09a8e
    StdInsForm1_GasTrans
    StdInsForm1_GasTrans
    Unprocessed
    Plugin Assembly
    StdInsForm1_GT_AR_2_WPA, Version=1.0.0.0, Culture=neutral, PublicKeyToken=9c073ad110dc36fb
    StdInsForm1_GT_AR_2_WPA
    StdInsForm1_GT_AR_2_WPA
    Unprocessed
    Plugin Assembly
    StdInsForm1_GT_AR_2_QAQC, Version=1.0.0.0, Culture=neutral, PublicKeyToken=76f0d5ed3da46871
    StdInsForm1_GT_AR_2_QAQC
    StdInsForm1_GT_AR_2_QAQC
    Unprocessed
    SDK Message Processing Step
    {5c4751aa-d943-e411-80de-00155d0a5b12}
    StdInsForm1_GasTrans.StdInsF1_GasTrans: Create of nmprc_phmsastdform1
    StdInsForm1_GasTrans.StdInsF1_GasTrans: Create of nmprc_phmsastdform1
    Unprocessed
    SDK Message Processing Step
    {9a918d50-50b7-e411-80f2-00155d0a5b12}
    StdGasTransmission_AutoNumber.StdGasTransmission_AutoNumber: Update of nmprc_phmsastdform1
    StdGasTransmission_AutoNumber.StdGasTransmission_AutoNumber: Update of nmprc_phmsastdform1
    Unprocessed
    Publish StringMaps
    Unprocessed
    Root Components Insertion
    Unprocessed
    Dependencies Calculation
    Unprocessed

    Hello Vighnesh,
    Could you verify this blog to see if it applies, explained here:
    Import of Solution Fails Without Error Message in Dynamics CRM
    Let us know if it applies.
    Best Regards.

Maybe you are looking for

  • Problems sending email using outlook

    I constantly get the failure message 'Mail could not be sent' - The server for account " etc" returned the error "Service not available - too many authenticated connections' Your username / password or security settings may be incorrect. Would you li

  • My HP Officejet Pro 8600 Plus is always off line and doesn't print anymore

    I use my HP Officejet Pro 8600 Plus with the wi-fi. it worked for 3 months, in the las week it is not working anymore. I verified the Ip , I verified the connection.. Nothing works it is really frustrating thanks for helping Chiara This question was

  • FM for item condition values in RFQ

    Hi,      I have a RFQ number. now the i want a function module which will return me the item condition values ( eg freight,gross price etc).      i have gone through a FM named 'PRICING' but thats not helping me       any help

  • EEM Applet Using IPSLA ED

    After reading the docs on the IPSLA ED, I decided to write the following applet just to see if I understand how to use it. ip sla responder ip sla enable reaction-alerts ip sla 1 udp-jitter 210.210.210.1 16384 num-packets 100 interval 20   request-da

  • Are there any of the older browsers we can be using right now?

    I know from the past, we've used older versions in times , there were problems. I would like to know which ones to use that work good, and are safe.There's been so many browsers over the years, I'm not sure which ones to try. Thank You. "application"