Help in writing xsl

i have a xml like this
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="st.xsl"?>
<Workflows>
    <Workflow Completed="COMPELETED" Name="CRMODWF6027">
        <Actions>
            <Action Completed="COMPELETED" Name="SendMailAction">
            <Type>Notification</Type>
        </Action>
        </Actions>
    </Workflow>
    <Workflow Completed="INCOMPLETE" Name="CRMODWF6028">
        <Actions>
            <Action Completed="COMPELETED" Name="UpdateValueAction">
                <Type>Update Values</Type>
            </Action>
            <Action Completed="INCOMPLETE" Name="WaitAction">
                <Type>Unsupported Action</Type>
                <Error>UNSUPPORTED</Error>
            </Action>
        </Actions>
    </Workflow>
    <Workflow Completed="INCOMPLETE" Name="CRMODWF6000">
        <Error>An error has occured while saving the workflow
            <ErrorFile>C:\temp\Log\ErrorImages\CRMODWF6000_1400655809602.png</ErrorFile>
        </Error>
    </Workflow>
    <Workflow Completed="INCOMPLETE" Name="CRMODWF6022">
        <Error>Unsupported record type AccountAddress</Error>
    </Workflow>
</Workflows>
i have written transformation like this
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
  <html>
  <body>
  <h2>Work Flow Log File</h2>
  <table border="1">
    <tr bgcolor="#9acd32">
      <th>workflow name</th>
      <th>workflow status</th>
      <th>workflow error</th>
    </tr>
    <xsl:for-each select="Workflows/Workflow">
    <tr>
      <td><xsl:value-of select="@Name"/></td>
      <td><xsl:value-of select="@Completed"/></td>
      <td><xsl:value-of select="Error"/></td>
      <table border="1">
        <xsl:for-each select="Actions/Action">
        <tr>
             <td><xsl:value-of select="@Name"/></td>
             <td><xsl:value-of select="@Completed"/></td>
             <td><xsl:value-of select="Type"/></td>
             <td><xsl:value-of select="Error"/></td>
             </tr>
         </xsl:for-each>
      </table>
    </tr>
    </xsl:for-each>
  </table>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet>
op : At Workflow level
Workflow Name
Workflow Status
Workflow Error Message
Based on the status we can probably do a RAG marking.
Red : Status =  Incomplete with Error Message not like '%Unsupported%'
Amber : Status = Incomplete with Error Message like '%Unsupported%'
Green : Status = Completed
Bottom : At Workflow Action level
Worklfow Name
Action Name
Action Type
Action Status
Action Error
Here also we can do an RAG coding :
Green : Status = Completed
Amber : Status = Incomplete and Type = Unsupported Action
Red : Rest All
Thanks
RAjendar

If you happen to have the Building Oracle XML Applications book from O'Reilly, it's got tons of concrete examples to learn from for using XSLT in a lot of different ways.

Similar Messages

  • Help in Writing XSLT

    Hello guys,
    I need help in writing XSLT.I have a XML structure as below.
    <PushEventResult>
         <pushEventDT>
              <id>XX</id>
              <serialNumber>111</serialNumber>
              <Mpxn>1X1</Mpxn>
              <EventData>
                   <alarmDtime>xxx</alarmDtime>
                   <alarmType>UP</alarmType>
                   <additionalData>dummy</additionalData>
              </EventData>
              <EventData>
                   <alarmDtime>xxx</alarmDtime>
                   <alarmType>DOWN</alarmType>
                   <additionalData>dummy</additionalData>
              </EventData>
         </pushEventDT>
    </PushEventResult>
    With XSLT I need to transform it in to this format.
    <PushEventResult>
         <pushEventDT>
              <id>XX</id>
              <serialNumber>111</serialNumber>
              <Mpxn>1X1</Mpxn>
              <EventData>
                   <alarmDtime>xxx</alarmDtime>
                   <alarmType>UP</alarmType>
                   <additionalData>dummy</additionalData>
              </EventData>
              </pushEventDT>
         <pushEventDT>
              <id>XX</id>
              <serialNumber>111</serialNumber>
              <Mpxn>1X1</Mpxn>
              <EventData>
                   <alarmDtime>xxx</alarmDtime>
                   <alarmType>DOWN</alarmType>
                   <additionalData>dummy</additionalData>
              </EventData>
         </pushEventDT>
    </PushEventResult>

    A possible attempt will be this set of templates.
    <xsl:template match="PushEventResult">
        <xsl:copy>
            <xsl:apply-templates select="pushEventDT" />
        </xsl:copy>
    </xsl:template>
    <xsl:template match="pushEventDT">
        <xsl:for-each select="EventData">
            <pushEventDT>
                <xsl:call-template name="const_struct" />
                <xsl:copy-of select="." />
            </pushEventDT>
        </xsl:for-each>
    </xsl:template>
    <xsl:template name="const_struct">
        <xsl:apply-templates select="preceding-sibling::*[not(name()='EventData')]" mode="const" />
    </xsl:template>
    <xsl:template match="*" mode="const">
        <xsl:copy-of select="." />
    </xsl:template>

  • Need Help in writing a UDF

    Hi,
    Please help in writing a UDF for these fields in mapping, which I need for the object Iu2019m doing currently.
    The fields are like this:
    1)         batch_no = "TRUNC((GetMaxObjid('x_txn_sap_parts')-POWER(2,28))/5000)+1",
    2)         lot_id = "TRUNC((GetMaxObjid('x_txn_sap_parts')-POWER(2,28))/500)+1",
    3)        How to use JDBC connection factory class in the UDF.
    Some logic I can provide which I know i.e. Power (2, 28) means 2 to the power of 28 (2 multiplied 28 times), Trunc means truncate, X_TXN_SAP_Parts is a database table.The Target fields are Batch_no, lot_id & Objid.Actually, objid is mapped initially to a source field i.e. Object ID and in this function it is only being used for the calculation of the batch_no.
    Thanks in Advance,
    Sreedhar.

    Hi,
    Following with my query I've tried to use this code but still I'm unable to execute the mapping.
    import java.util.*;
    import com.sap.aii.mapping.lookup.*;
    import com.sap.aii.mapping.lookup.*;
    DataBaseAccessor accessor = null;
    DataBaseResult JDBCOutPayload = null;
    String BusinessSystem="clarify_dev_bizsys";
    //give your business system having channel name
    String CommunicationChannel="JDBC_TO_CDEV";
    //give your channel name
    String InputPayload= " select X_TXN_PRE_SITE_XFACE.nextval from dual;";
    //give your sql query
    try {
    Channel channel =
    LookupService.getChannel(BusinessSystem,CommunicationChannel);
    accessor = LookupService.getDataBaseAccessor(channel);     
    DataBaseResult resultSet = accessor.execute(InputPayload);
         for(Iterator rows = resultSet.getRows();rows.hasNext();){  
         Map rowMap = (Map)rows.next();
         Object cValue = rowMap.get("batchno");
    //field name of field required , as in database
          catch (Exception e) {}
          finally {
                  if (accessor != null)
                  accessor.close();
           result.addValue((String)cValue);
    --> I don't know what are the parameters to be used and how to be used in the UDF because this is the first time I'm writing a UDF.
    --> The problem in using this query is that both OBJID & BatchNo. are on the target side and the value for the OBJID is retrieved by a SELECT query from the database.
    Kindly help me how to resolve this query of mine.
    Thanks in Advance.
    Sreedhar.

  • Help with writing and retrieving data from a table field with type "LCHR"

    Hi Experts,
    I need help with writing and reading data from a database table field which has a type of "LCHR". I have given an example of the original code but don't know what to change it to in order to fix it and still read in the original data that's stored in the LCHR field.
    Basically we have two Function modules, one that saves list data to a database table and one that reads in this data. Both Function modules have an identicle table which has an array of fields from type INT4, CHAR, and type P. The INT4 field is the first one.
    Incidentally this worked in the 4.7 non-unicode system but is now dumping in the new ECC6 Unicode system.
    Thanks in advance,
    C
    SAVING THE LIST DATA TO DB
    DATA: L_WA(800).
    LOOP AT T_TAB into L_WA.
    ZDBTAB-DATALEN = STRLEN( L_WA ).
    MOVE: L_WA to ZDBTAB-RAWDATA.
    ZDBTAB-LINENUM = SY-TABIX.
    INSERT ZDBTAB.
    READING THE DATA FROM DB
    DATA: BEGIN OF T_DATA,
                 SEQNR type ZDBTAB-LINENUM,
                 DATA type ZDBTAB-RAWDATA,
               END OF T_TAB.
    Select the data.
    SELECT linenum rawdata from ZDBTAB into table T_DATA
         WHERE repid = w_repname
         AND rundate = w_rundate
         ORDER BY linenum.
    Populate calling Internal Table.
    LOOP AT T-DATA.
    APPEND T_DATA to T_TAB.
    ENDLOOP.

    Hi Anuj,
    The unicode flag is active.
    When I run our report and then to try and save the list data a dump is happening at the following point
    LOOP AT T_TAB into L_WA.
    As I say, T_TAB consists of different fields and field types whereas L_WA is CHAR 800. The dump mentions UC_OBJECTS_NOT_CONVERTIBLE
    When I try to load a saved list the dump is happening at the following point
    APPEND T_DATA-RAWDATA to T_TAB.
    T_DATA-RAWDATA is type LCHR and T_TAB consists of different fields and field types.
    In both examples the dumps mention UC_OBJECTS_NOT_CONVERTIBLE
    Regards
    C

  • Need help in writing data from JSP to excel

    Hi ,
    I need help in writing the data from JSP to excel.I somehow able to retrieve the data into excel but unable to get the required format.
    For eg: The amount should be displayed in 0.00 format .when i am exporting it to excel it is displaying as 0 :( .
    I am using the following code in JSP.
    "out.print(amt + '\t');"
    Would like to know if there is any otherway where in i can get my requirement.
    Thanks
    Tom

    Hi,
    Try using format part of the JSTL tag libs.
    Syntax :
    <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
    <fmt:formatNumber value="40" pattern="$#,##0.00"/>
    I need help in writing the data from JSP to excel.I
    somehow able to retrieve the data into excelHow do u convert the jsp to excel?
    One way to convert the jsp page to excel, is to render it as an excel appl instead of html. Set the content type of the response to application/ms-excel.
    response.setContentType("application/ms-excel")Hope this Helps....

  • Help in writing a query!

    Dear All,
    My database is 11gR2 on Linux.
    I am struck in writing a difficult query, need help from your guys.
    I have a table, an application is controlling the columns of this table. Columns are added by the application.
    This is the structure of the table:
    create table imran_test(
    2 username varchar2(100),
    3 layer1 number(1),
    4 layer2 number(2),
    5 layer3 number(2));
    -- where layer1, layer2, layer3.... are increased up to layer 22 and could be increased more...
    Now each username will have 1 in any one of the layer, and all other layers will have 0
    Like if I consider the above table this could be the sample data:
    imran 1 0 0
    hafeez 0 1 0
    james 0 0 1
    Now the result my query should return is:
    select username, <column name where value is 1> and value of it, as per sample data, this should be return by the query:
    imran layer1 1
    hafeez layer2 1
    james layer 3 1
    Note: Please remember the columns are not fixed, they are added/altered by application.
    Regards,
    Imran

    The table design is incorrect as it is not in 3NF and has a repeating group
    You should correct the 'design' first or turn the layer... columns in a VARRAY.
    Also my feeling is you should change your subject line 'Help in writing a query!' in 'Write my query' as that is what you actually ask, and leave out the exclamation mark.
    Basically you dump everything in this forum, and being a bit less demanding might suit you better.
    Also you still act rude by not marking your questions as answered.
    Change that
    Sybrand Bakker
    Senior Oracle DBA
    Edited by: sybrand_b on 1-apr-2012 12:09

  • Help with writing a formula

    Hi all,
    I am creating a report, and need help with writing a formula...
    I am creating a report that shows how many visits/touches our reps have made to various grade accounts. It is broken down by calendar week, and I currently have a weekly "goal" number set that the reps have to meet. That "goal" number increases each week to keep a running total. (example: week 1: 7, week 2: 14, week 3: 21)
    I have created some different formulas and one is this:
    SUM("Activity Metrics"."# of Activities" BY Date."Calendar Week")
    What this shows me is how many "visits" there are per calendar week to customers, however it show me the total for all reps per week.
    What I need is that total to show, but totaled for each rep individually.
    What I was trying is this:
    SUM("Activity Metrics"."# of Activities" BY Date."Calendar Week") BY Employee."Employee Name"
    But...I keep getting an error.
    Any suggestions?
    I have the reporting book by Lairson, and have been referring to it...but my brain at this point is fried.
    Thanks in advance for any help...(please forgive...I am new to OnDemand, and I am sure this is easy)

    Thanks for helping!
    I created this formula as a column: SUM ("Activity Metrics"."# of Activities" BY Date."Calendar Week"), it is called "total number of visits per week" and it shows the totaled number of visits that all the reps have done per calendar week. For example: Week 1: 10 visits, Week 2: 37 visits, Week 3: 20 visits.
    What I would like to do is take that column and break it down further, to show instead how many visits per week by sales rep there have been
    So what I was trying was to take the "total number of visits per week" (SUM ("Activity Metrics"."# of Activities" BY Date."Calendar Week")) and use "Activity Owner" (Employee."Employee Name") to break it down further.
    What I need to use is the total number of visits each rep has per calendar week.
    I think I am getting the error because you can't use "BY" twice in a formula?

  • Help with writing a batch file

    Hi :
    does anyone know anyplace online that I can get help in writing batch files?? I have never worked much with batch files before....
    any help is greatly appreciated
    thnx

    I suppose, since you're in a Java forum, you need batch files to load java applications.
    If you use windows :
    go to ms console (start/run/"cmd")
    type edit mybatch.bat
    write your command to load a java application, something like
    java myclass.class
    save and exit.
    Be sure the bat file and the class are in the same folder.
    And make certain you've set the classpath, and path variables correctly.
    If this was what you needed and you need more help just ask.
    (In this case it could be better to make executable jars)
    If you wanted to know about linux batches, it works pretty the same way.

  • Need help for writing extract program

    hi
    i need help for writing extract program to retriew data from legacy system.
    i already developed bdc programs for me31k and me21.
    my requirement is to write extract program s for those t.codes.
    to retriew data from legacy system and stored in flat file.

    i need help with a java program. it is a program that allows the user to enter a student's GPA, number of extracurricular activities, and number of service activities. The user can not enter a gpa above 4.0 or below 0. The user can not enter a negative number for the number of both activities. If the student meets the following criteria: 1) GPA of 3.8 or above and at least one extracurricular activity and one service activity, 2) GPA below 3.8 but at least 3.4 and a total of at least three extracurricular and service activities, 3) GPA below 3.4 but at least 3.0 and at least two extracurricular activities and three service activities, the message "Scholarship candidate" should display. If the student does not meet the criteria above, then the message"not a candidate" should display. Can you help me, please?
    You haven't posted ANY 'java program' for us to help with.
    The forum is NOT a coding service. It is to help you with YOUR code.
    Post the code you have written and SHOW us (don't just tell us) how you compile it and execute it and the results you get. Then we can help you with any problems you are are having.
    If you need help understanding just what the program should be doing you need to ask your instructor to clarify the assignment.

  • Need helping in writing query for finding percentage of duration

    Can any one please help in writing query for this.
    The table is like this :-
    ID     Region     Month     Duration
    I1 R1     Jan     80
    I2     R2     Jan     70
    I3     R1     Jan     70
    I4     R3     Jan     40
    I5     R1     Feb     80
    I6     R2     Feb     30
    I7     R3     Mar     100
    I want to write a query to find
    % of duration for each and every region against each and every month.
    Please help in solving this query. I am in urgent need of this.
    Thanks in advance.

    I also have to do in MS Access 2003You also have to ask into an other forum since here it's an Oracle forum, to try to find Oracle solution.
    Nicolas.

  • Help with writing .bashrc file

    I would like help with writing a .bashrc file.
    The only thing I want right now is colored output and slashes for directories like what "ls -GF" does -- for each new terminal window.
    Can you guys give me a hand?
    Running Mac OS 10.4.6. Bash is default shell.
    Thanks.

    Hi Paul,
       You can get Apple's "ls" command to always output color with the following in your .bashrc:
    export CLICOLOR=""
    You can have an effect on the colors used with settings like the following:
    export LSCOLORS="gxfxcxdxbxegedabafacad"
       I have a color prompt in my bash startup scripts, bashrc.tgz. If you unpack the tarball in the root of your home directory, the files will be put in a ~/Library/init/bash directory. The file named "prompt" sets the color prompt string.
    Gary
    ~~~~
       I know you think you thought you knew what you
       thought I said, but I'm not sure you understood what
       you thought I meant.

  • Help in writing  query few schema objects  from another schema.

    Hi Gurus,
    Could some one help in writing an sql which will give list of all the object of a schema "genp" visible in another schema "genp_v" and "gen_con" there is an dblink and few grants on those schemas .
    i dont have the password of any of those users i have connected as sys and i can not change the password of any of those users..
    Any help on this is highly apprciated.
    Thanks in advance .

    could you please update me for all the objects apart from just the tables .
    thank you so much .. it was just out of my head at that moment .
    cheers

  • Help in writing SQL query

    Hi evrybody,
    I have a requirement which seems very wierd to me, I m unable to clue it also. Please help me in writing the same.
    I have a column in a table which contains the data with spaces and everythng same as below:
    SUBSCRIBER LINE TEST
    VERSION 2
    DEV SNB MP FCODE
    LIBA-13 4222430012 11 3
    FOREIGN VOLTAGE TESTS
    DC AC
    FVAE FVBE FVAB FVAE FVBE FVAB
    LACC LACC 7.4 0.1 0.1 0.1
    0.0 0.0 PASS PASS PASS PASS
    PASS PASS
    INSULATION RESISTANCE TESTS
    IRAE IRBE IRABA IRBBA IRAB
    LACC LACC LACC LACC 8113K
    10000K >10000K >10000K >10000K PASSPASS PASS PASS PASS
    CAPACITANCE MEASUREMENTS
    CAE CBE CAB BRK
    LACC LACC 4428 NO
    68 72
    NT LOOPBACK TEST
    PASS
    NT DC SIGNATURE TEST
    V-HIGH V-LOW
    83.920K LACC
    PASS >10000K
    PASS
    NT CONNECTED
    INV
    CIRCUIT TEST RESULT
    FAIL
    I need to get the o/p as:
    FVAELACC=0.0 FVBELACC=0.0 FVAB=7.4 FVAE=0.1 FVBE=0.1 FVAB=0.1
    CAELACC=68 CBELACC=72 CAB=4428
    NT CONNECTED=INV..
    Thanks in advance.

    Evrybody thanks for advices. My Question is little unclear but the requirement is that itself.. Anyways I got the O/p finally.
    Mr. Shahzad ,if any of the questions makes u feel like wasting ur technical time, jus donot read it.. The people who can undertsand the problem, they can answer to the post. If the requirement is like that, none of us are helpless.

  • Please help with writing a class

    i need help getting started with this assignment. i haven't done anything with writing classes, so i don't know where to start.
    i need to create a bank account class that will keep a name, balance, up to 50 deposits, and up to 50 withdrawls. i need to include 2 arrays for the deposits and withdrawls.
    Here's what i know:
    I need a constructor that takes zero arguments. This constructor would initialize the numeric value to zero.
    I need a 2nd constructor that takes one argument, a name as a String value. This constructor would initialize the numeric value to zero.
    I need a 3rd constructor that takes two arguments, a name as a String value and a starting "balance" as a double value

    Sorry, I was watching a movie with my wife ...imagine that. Study my examples here and try to understand what I have done. You will follow the same methodology for the rest of the program. Use main to test the methods in your program.
    public class mdlAccount {
      String name;
      double balance;
      int currentDeposit = 0;
      int currentWithdrawl = 0;
      double[] deposits = new double[50];
      double[] withdrawals = new double[50];
      public mdlAccount() {
        name = "";
        balance = 0.0;
      public mdlAccount(String name) {
        this.name = name;
        balance = 0.0;
      public mdlAccount(String name, double balance) {
        this.name = name;
        this.balance = balance;
      // When the instructor says: Have a method that does deposits...
      // You need to create a method, similar to the constructors,
      // but with a return value, even if it returns void (nothing).
      // Like this:
      public void deposit( double amount ) {
        // Do some error checking.
        if ( currentDeposit < 50 && amount > 0 ) { // > is a greater than sign
          // If all is ok, add to the balance...
          balance += amount;
          // and add the entry to the array of deposits
          deposits[currentDeposit] = amount;
          // Finally, add 1 to the currentDeposit variable.
          currentDeposit++;
      // We need the 'return the balance' method so we can see if
      // the program runs correctly. This time we return a double,
      // instead of void. (void means don't return anything at all).
      public double getBalance() {
        return balance;
    // Now you create the next method for withdrawals...
    //  if ( currentWithdrawl < 50 ) {
    //    deposits[currentWithdrawl] = amount;
    //    currentWithdrawl++;
      // You want a main method so this class can be executed.
      // You can remove it later if you want to use this class
      // from within another larger program.
      public static void main(String[] args) {
        mdlAccount acct = new mdlAccount( "GumB", 100.0 );
        System.out.println("Initial balance is " + acct.getBalance());
        acct.deposit( 50.0 );
        System.out.println("Current balance is " + acct.getBalance());

  • Need help in writing SP notification Query

    Hi,
    My purpose of writing a query is to restrict a user to add journal entry in case account code lies in Expense Drawer and Cost Center Code is not in user define range.
    Please help me on this:-
    IF (@object_type = '30' AND (@transaction_type = 'A' Or @transaction_type = 'U'))
    BEGIN
    Declare @AccountCodeMaster as Nvarchar(20)
    Declare @AccountonDocument as Nvarchar(20)
    Declare @ProfitCentreMaster as Nvarchar(20)
    Declare @ProfitCentreOnDocument as Nvarchar(20)
    Set @AccountCodeMaster = (select AcctCode from oact where  GroupMask = 5)
    Set @AccountonDocument = (Select Account from jdt1 where TransId = @list_of_cols_val_tab_del)
    Set @ProfitCentreMaster = (select PrcCode from ocr1 where PrcCode >= 91100001 and PrcCode <= 91921001)
    Set @ProfitCentreOnDocument = (select ProfitCode from jdt1 where TransId = @list_of_cols_val_tab_del)
    if (@AccountonDocument) in (@AccountCodeMaster) and (@ProfitCentreOnDocument) not in (@ProfitCentreMaster)
    Begin
    set @error =1
    set @error_message = 'Profit Center is wrong,Please select the right profit Center else Consult to Finance Department'
    End
    END
    Thanks

    Hi,
    Welcome you post on the forum.
    You may try:
    IF (@object_type = '30' AND @transaction_type in ('A', 'U')
    BEGIN
    If Exists (Select T0.Account from jdt1 T0 inner join oact T1 ON T1.AcctCode=T0.Account AND T1.GroupMask = 5
    where T0.TransId = @list_of_cols_val_tab_del AND T0.ProfitCode NOT IN (select PrcCode from ocr1 where PrcCode >= 91100001 and PrcCode <= 91921001))
    Begin
    set @error =1
    set @error_message = 'Profit Center is wrong,Please select the right profit Center else Consult to Finance Department'
    End
    END
    Thanks,
    Gordon

Maybe you are looking for

  • Can I fit any 2.5" drive to my 2009 MacBook Pro please?

    Hi My Pro's hard drive is failing badly and I need to order a new one urgently. Will this drive work please: http://www.amazon.co.uk/Hitachi-Travelstar-1000GB-Internal-Drive/dp/B007Y4BOH8/r ef=sr_1_26?s=computers&ie=UTF8&qid=1385257684&sr=1-26&keywor

  • Email adress used to send the password after a password reset

    Hi, I finally got the ampassword webapp to email the new password. Now emails are being sent by a Lotus Notes server. This server is reached thanks to sendmail. I'd like to know where I can configure the email address of the sender of the mail Thanks

  • Ical "authentication failed. your username and password were rejected by the server"

    i've a pretty busy server, fully configured with correct DNS. running 10.6.8, uptodate. i've stopped the ical service, and removed it from the server settings. then i created a folder on my RAID /volumes/raid/ical, set its ownership to _calendar:_cal

  • Trouble with synchronizing in CS5

    Hello, I am fairly new to using Dreamweaver, but suddenly am having problems with synchronizing my projects. It was working fine until a few days ago, but I'll just list the steps of what happens now to try to make it clear. I refresh and click the s

  • Unable to download album art present in the iTunes music store

    I'm having a rather odd issue after moving my iTunes music folder to a new partition. It manifests itself as the inability to download artwork for certain albums that are available for purchase in the iTunes store, even though a short time ago the sa