Sort in Report not working correctly

I have a report with many sorts selected as an option within the reports attributes. However, some of the columns does not seem to be sorting at all when Selected (Others do as expected)
For example one column is a VARCHAR2
examples of values within this column would be
(FY08Q1, FY09Q4, FY08Q2)
with the sort ticked in the report attributes i would expected it to perform the following
FY08Q1
FY08Q2
FY09Q4
which it does in the SQL Command - just not in the report in the Application.
Anyone know as to a reason why it may be doing so?
cheers
s

Hi
I just created a test table, called datetest, with one column, called quarter. I inserted your data in the following order:
FY08Q1
FY09Q4
FY08Q2
I tested in SQLPlus that it returned ordered data ok with Select quarter from datetest order by 1, this worked.
I then created a simple report based upon the query used in the previous paragraph and the report ordered the data correctly, i.e:
FY08Q1
FY08Q2
FY09Q4
Can you post your query as I can't work out what is wrong here?
Thanks
Karen

Similar Messages

  • DFSR Reporting " not working correctly

    I'm trying to get the following script to work, posted questions at the site but not sure if he is viewing the blog anymore.
    http://gallery.technet.microsoft.com/scriptcenter/10ca8b47-b0ec-4910-bdd7-52ce2d4bca41#conten
    Couple of things is not working with Powershell reporting of DFSR, (works in batch file)
    1) The DFSAdmin.exe reports "/Rgname:Domain is not a valid subobject" as I am trying to report on "Domain System Volume".   It doesn't like the " and doesn't like spaces!
    DfsrAdmin.exe Health New /RgName:`"Domain System Volume`" /RefMemName:$ReferralDC /RepName:$ReportFilePath /FsCount:true 
    Tried to use variable name instead but same result 
    $Rgname = "`"Domain System Volume`""
    DfsrAdmin.exe Health New /RgName:$Rgname /RefMemName:$ReferralDC /RepName:$ReportFilePath /FsCount:true 
    2) parsing of report file name doesn't work either, I get "Send-MailMessage : Thew device is not ready.
    If I do echo ($ReportFilePath+".html"), the result is correct as I replace the variable with result of the echo and it works!
    $ReportFilePath = "d:\Reporting\Reports\Health-report-"+(Get-Date -UFormat %Y-%m-%d) 
    Send-MailMessage -From $EmailFrom -To $EmailTo -SmtpServer $SmtpServer -Subject $EmailSub -Body "The DFS-R Health Report is attched to this e-mail" -Attachments
    ($ReportFilePath+".html")
    The is all on Windows 2008 R2

    I've replaced dfsradmin.exe with showargs.exe in a home lab.....
    I get the following result, (missing first ")
    $Rgname = "Domain System Volume"
    /RgName:Domain System Volume"
    Changing the variable to following doesn't work either: (add a double quote)
    $Rgname = "`"Domain System Volume"
    Re-ran showargs.exe and display is correct but fails with dfsradmin.exe
    Showargs.exe shows:     "/RgName:"Domain System Volume"
    DFSRadmin.exe still error out:   The subobject "/RgName:"Domain is not a valid subobject.

  • Exchange 2013 Delivery Reports not working correctly

    Hello,
    I'm trying to use the "delivery reports" tool in ECP and it is not acting normally. Here's the situation:
    When I try to search a mailbox ([email protected]) for mails that were sent to [email protected] (a distribution group) I only see results that were sent from [email protected] to [email protected] Not all the messages in [email protected]'s mailbox that were sent to [email protected] 
    So in summary, instead of showing all messages in that mailbox, it shows me all messages on [email protected]'s mailbox that were sent by [email protected] to [email protected]
    I have used Exchange Online, which should be almost the same as Exchange 2013 but this was not the behavior before. Can this be a wrong setting somewhere? Can it be related to anti-spam (GFI) software on the serer?  Any ideas?

    Hi,
    How did you use delivery reports tool to track messages ? Is it like below?
    *Mailbox to Search: [email protected]
    Search for messages sent to: [email protected]
    In general, it will show all the messages in [email protected] which were sent to
    [email protected], however, if the mailbox has applied any retention policys to delete emails or move the emails to local pst, it may cause your issue.
    More information about "Delivery Reports" for your reference:
    Track Messages with Delivery Reports
    Thanks.
    Niko Cheng
    TechNet Community Support

  • Sorting not working correctly for date field in alv report

    Hi All,
    My report displays many rows also containing date type fields of bldat,budat .
    When I sort the report selecting field of type bldat budat the sorting is not correct for the year.
    Ex:
    Invoice doc dat
    01-25-2011
    01-21-2011
    02-02-2011
    10-25-2010
    11-20-2010
    If I use ascending then it is sorted as :
    Invoice doc dat
    01-21-2011
    01-25-2011
    02-02-2011
    10-20-2010
    10-25-2010
    Why the sorting is not working correct for year.(2010 records should have been first).
    The field wa_tab-bldat is of type char10.
    It is populated as wa_tab-bldat = bsak-bldat.
    Kindly suggest what can be done.

    The field wa_tab-bldat is of type char10
    Then what it does is correct.
    Refer to type datum...it will work

  • SSRS 2008 R2/SSRS 2012 Tab Delimited setup is not working correctly in Report Designer

    I have changed a RSReportDesigner.config to add a tab delimited option for report export, but it is not working correctly in vs2008/vs2010 report designer. I get a duplicate of CSV (comma delimited) in the export dropdown list.
    I have tested SSRS 2008 R2/SSRS 2012 on Windows 7 64 bit professional.
    It is working correctly in the report manager.
    <Extension Name="TAB" Type="Microsoft.ReportingServices.Rendering.DataRenderer.CsvReport,Microsoft.ReportingServices.DataRendering">
            <OverrideNames>
                <Name Language="en-US">TAB delimited</Name>
            </OverrideNames>
            <Configuration>
                <DeviceInfo>
                    <FieldDelimiter xml:space="preserve">&#9;</FieldDelimiter>
                    <Encoding>ASCII</Encoding>
                    <UseFormattedValues>False</UseFormattedValues>
                    <NoHeader>False</NoHeader>
                    <FileExtension>TXT</FileExtension>
                </DeviceInfo>
            </Configuration>
          </Extension>

    Hi Dave0323,
    According to your description, you want to export your report into TXT file and change the delimiter to be a Tab. Right?
    In Reporting Services, when exporting to a CSV file, we can change the default field delimiter to any character that we want, including TAB, by changing the device information settings in the configuration file. For example, to use TAB,
    update the FieldDelimiter setting to <FieldDelimiter xml:space="preserve">[TAB]</FieldDelimiter>. And we can change the FileExtension to be TXT if we want to export it into a TXT file. So in this scenario, we just need to modify the configuration
    file like below:
    The result looks like below:
    Reference:
    CSV Device Information Settings
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • ** Filtering is not working correctly in ALV (REUSE_ALV_GRID_DISPLAY)

    Hi Friends,
    We have one Z report that output is displayed in ALV. We are using the standard FM 'REUSE_ALV_GRID_DISPLAY. 
    We have requirement to remove leading zeros for the field like Material Number (MATNR), Equipment Number (EQUNR) etc. We did the changes by applying the field catalog properties as below.
    lw_fieldcat-lzero = space.
    lw_fieldcat-no_zero = 'X'.
    After this, the MATNR and EQUNR is displayed correctly in the ALV. (Leading zeros are suppressed). But, when we do filter for these fields, in the filter window it displays all the values with leading zeros.
    1. We don't understand why it is showing in the Filter widow with all leading zeros. All it shows all the records instead of unique items.
    Later on, we removed the above fieldcat coding. Then, we have called the CONVERSION_EXIT routines (in the domain) for the fields to remove leading zeros.
    Now, the MATNR and EQUNR is displayed correctly (without leading zeros) in ALV. When we do filter, it is also doing filtering correctly. But, when we do filter which have EQUNR having long values (after zero suppression), it is not working correctly. i.e no items are displayed in the ALV.
    Not only for this items. If we filter character columns which have long text, it is not filtering correctly.
    2. It is not able to understand why the filtering is not working for long items. But in the standard report, the filtering is working correctly.
    We are using SAP ECC 6.0.
    Friends, can you clarify the about doubts. It is surprising for me.
    Kind regards,
    Jegathees P.
    Our customer is asked to remove the leading zeros for the numeric field

    Hi Clemens Li
    I agreed on your point. When we define the Internal table the type for element EQUNR & QUMNR , we are referring the SAP data element for EQUNR, QMNUM field.
    Our doubt is even though we refer the standard data element, in the ALV display, it shows with leading zeros and also it creates problems in the filtering and in the filter window all values instead of unique nos.
    Hi Abhii
    I have given below the fieldcat coding.
    Friends, can you kindly clarify the above said problems. Since we use SAP ECC 6.0 any notes or patches apply is required. ( this is the basic functionality in ALV, that is my doubt).
        wls_fieldcat-col_pos   = wpv_pos.
        wls_fieldcat-fieldname = wpv_champ.
        wls_fieldcat-tabname   = wlc_tabname.
      wls_fieldcat-seltext_s = wls_fieldcat-seltext_m
        wls_fieldcat-seltext_l = wpv_libelle.
        wls_fieldcat-ddictxt   = 'L'.
        wls_fieldcat-no_out    = wv_no_out.
        APPEND wls_fieldcat TO gt_fieldcat.
    Kind regards,
    Jegathees P.

  • Key Figure calculation in Abap is not working correctly - Overlooping

    Hi,
    I wrote a logic to calculate the ratio of key figure but it is not working correctly
    For example I have a requirement to split 1 Product into Several new Products and also the Net Amount will be splitted to these several new products as well. The total Amount of the new product will be equivalent to the Net Amount.
    So far my Logic is splitting the product to several new products but the amount is incorrect as the calculation is over looping.
    Sample
    A PRODUCT has Net Amount 1000. And this product needs to be splitted into 3 new products. Each of this new product is assigned a ratio of 0.3, 0.2 and 0.7 respectively. total sum of the ratio is 1.
    PRODUCT1 0.3 = 1000 * 0.3 = 300
    PRODUCT2 0.2 = 1000 * 0.2 = 200
    PRODUCT3 0.7 = 1000 * 0.7 = 700
    The total amount of this new products is 1000.
    Now my logic is working this way.
    PRODUCT1 0.3 = 1000 * 0.3 = 300
    PRODUCT2 0.2 = 1000 * 0.2 * 0.3 = 60
    PRODUCT3 0.7 = 1000 * 0.2 * 0.3 * 0.7 = 42
    Only the PRODUCT1 is working correctly and there is overlooping for the remaining products
    Logic used
    DATA: t_data TYPE data_package_structure OCCURS 0 WITH HEADER LINE.
    DATA: t_newdso LIKE /bic/newdso OCCURS 0 WITH HEADER LINE.
    DATA: t_olddso LIKE /bic/olddso OCCURS 0 WITH HEADER LINE.
    DATA: amount LIKE data_package-netamount.
    DATA: zidx LIKE sy-tabix.
    REFRESH t_data.
    LOOP AT data_package.
      zidx = sy-tabix.
      MOVE-CORRESPONDING data_package TO t_data.
      REFRESH t_newdso.
      SELECT * FROM newdso INTO TABLE t_newdso WHERE prod =
      data_package-prod.
      SORT t_newdso BY prod.
    *LOOP AT T_NEWDSO.
      READ TABLE t_newdso WITH KEY prodh4 = t_data-prod.
      IF sy-subrc EQ 0.
        LOOP AT t_newdso.
          t_data-prod = t_newdso-/bic/znew_mp.
          t_data-material = t_newdso-material.
    *T_DATA-NETAMOUNT = T_DATA NETAMOUNT * T_NEWDSO-/BIC/ZSP_RATIO.*
          APPEND t_data.
        ENDLOOP.
      ELSE.
        REFRESH t_olddso.
        SELECT * FROM olddso INTO TABLE t_olddso WHERE prod =
        data_package-prod.
        SORT t_olddso BY prod.
        READ TABLE t_olddso WITH KEY prodh4 = t_data-prod.
        t_data-prod = t_olddso-prod.
        t_data-material = t_olddso-material.
        APPEND t_data.
      ENDIF.
      MODIFY data_package INDEX zidx.
    ENDLOOP.
    REFRESH data_package.
    data_package[] = t_data[].
    thanks
    Edited by: Matt on Sep 27, 2010 2:25 PM - added  tags

    Hi,
    I am not really good at debugging Abap code since I am a newbie. however  I have tried to add CLEAR T_DATA before the first loop.
    REFRESH T_DATA.
    LOOP AT DATA_PACKAGE.
    ZIDX = SY-TABIX.
    MOVE-CORRESPONDING DATA_PACKAGE TO T_DATA.
    and before the second loop and select statement and at the end of the loop.
    REFRESH T_NEWDSO.
    SELECT * FROM NEWDSO INTO table T_NEWDSO WHERE PROD =
    DATA_PACKAGE-PROD.
    SORT T_NEWDSO BY PROD.
    READ TABLE T_NEWDSO WITH KEY PROD = T_DATA-PROD.
    IF sy-subrc EQ 0.
    LOOP AT T_NEWDSO.
    but then not all data are being fetched.
    thanks
    Edited by: Bhat Vaidya on Sep 28, 2010 8:33 AM

  • 1st Gen iPod touch not working correctly?

    I have a 1st generation 8GB iPod Touch. It's not working correctly.
    My biggest problem is that, unexplaiably, certain areas of the screen don't seem to register touch anymore. There is a sort of "L" shape on the left and bottom edges of the screen that won't register touch, making it impossible to move applications to the previous page on the home screen and making it hard to use the keyboard/buttons while in portrait mode. It's extremely frustrating to try to change the volume while playing a song, as I now have to either put the iPod in sleep mode then double tap the home button or flip it to cover flow and double tap the home button to do it.
    http://i38.photobucket.com/albums/e140/Vipershark/IMG_0001.png
    (Highlight the image to see it better.)
    This is a screenshot of the working/non-working areas that I made using the Whiteboard application. The white area that you see (excluding the little half circles of black which are extended brush strokes and not actually working areas) is the area that doesn't work. I can't seem to figure out why it happened, as I've never dropped or otherwise damaged it. It just happened one day, and I don't know why.
    But I can't fix it. I've tried everything. Upgrading (I'm now running iPhone OS 3.0 which still didn't fix the problem.) didn't work, restoring didn't work, deleting everything and restoring from factory settings didn't work.
    I'm also having a few other problems as well, though they're not as bad. My home button seems to stop working sometimes and sometimes the entire screen witll stop registering touch until I put the iPod to sleep and turn it back on. It also seems to go a lot slower than usual.
    My iPod is less than a year old. Can you help?

    Vipershark,
    I had a very similar problem this past weekend with my 1G 8GB iPod touch. But with me, just the left side of the screen wasn't registering my touch. I could still access the bottom section, which you cannot.
    The good news for me is that I fixed it and I hope it works for you as well. What fixed it for me was resetting all my settings. To do this, go to the settings icon, then click on general, and then on the very bottom is reset. Choose "reset all settings."
    Apparently this is different than a restore through iTunes, which you tried. I also tried that earlier and it did not help.
    Of course, the reset solution I used relies on you being able to access all of the correct buttons, so I hope you can!
    Please let us know if this works for you. If not, since it is less than a year old, it is still under warranty. Contact Apple and see what they can do.

  • System Update not working correctly

    Hi forum,
    System Update (Version 4.00.0024) is not working correctly on my T500 with Windows 7.
    1: Not detecting old versions
    SU is not detecting, that there is an old version of Access Connection (5.42) installed although there is a new version 5.50 avaliable. I had to do a manual update.
    2: Not installing a suggested update
    Each time I run SU, I get a suggested update for "Fix for Issue of HDD with HDP Detection for Windows Vista/7". After downloading there comes a meaningless message "package was not installed" (Paket wurde nicht installiert). No hint for any error.
    3: Some drivers (e.g. for the ultranav) have not been downloaded at all - I had to test the functions of some hardware components and download the appropriate drivers manually in case of malfuncion.
    Probably there is a solution known within the forum community, at least this should be a message to lenovo (I received no response from the help desk when reporting this finding).
    Regards
    AH_DE

    Dear Herik,
    thanks for your answer.
    I checked the log  file and found thousands of entries. Here are the lines related to "Fix for ...".
    Info    2010-02-03 , 08:40:37
              bei Tvsu.Gui.CustomComponents.UpdatePanel.SynchronizeBoxPackage(Object sender, EventArgs args)
              Message: Selected to install: Fix for Issue of HDD with HDP Detection for Windows Vista/7, with
    Info    2010-02-03 , 08:40:43
              bei Tvsu.Coreq.LoadCoreqsProcessor.ProcessUpdatesImplementation(Update[] ups)
              Message: Candidate list:
    Fix for Issue of HDD with HDP Detection for Windows Vista/7[reboot type 3]
    Info    2010-02-03 , 08:40:57
              bei Tvsu.GenericPackageInstaller.GenericPackageInstaller.ExtractFiles(String extractCommand)
              Message: osfq03ww.exe -s -ex -fC:\SWTOOLS\OSFIXES Extract command was executed sucessfully in Fix for Issue of HDD with HDP Detection for Windows Vista/7 update
    Info    2010-02-03 , 08:40:57
              bei Tvsu.GenericPackageInstaller.CmdInstaller.InstallUpdate()
              Message: Update Fix for Issue of HDD with HDP Detection for Windows Vista/7 is being install using Windows Service
    Info    2010-02-03 , 08:40:57
              bei Tvsu.Engine.Process.PackageInstallerProcess.InstallNewUpdates()
              Message: Update Fix for Issue of HDD with HDP Detection for Windows Vista/7 installation failed
    ADDITIONAL ENTRIES 
    Info    2010-02-03 , 08:40:57
              bei Tvsu.Gui.FlowScreens.Results.AdjustComponent()
              Message: System updated:
              Installed=0
              Not Installed=Tvsu.Beans.Update[]
              Deferred=0
              Download Failed=0
              Hidden=0
    Severe          2010-02-03 , 08:41:17
              bei Tvsu.Sdk.SuSdk.ShutDownApplication()
              Message: Has happened an exception while the UNCAuthenticator.Shutdown() was executedShare name can not be null or empty
    Since I'm a normal user only, I can't interprete this information. Do you know what to do?
    Kind Regards
    AH_DE

  • Program not working correctly-Help!

    class Sort
         /* method takes an array of integers as an input,
         * and returns a copy with the element values sorted
         * by select method.
         int[] selectSort(int[] input)
              /*declare variables to be used in array */
              int x, y, max, temp;
              int[] select = new int[input.length];
              /*This loop reads the entire array */
              for(x = input.length - 1; x>0; x--)
                   max = 0;
                   /*This loop checks to see if any number is
                   lower possible greatest number /
                   for(y = 0; y <= x; y++)
                   {//Returns number if lowest number
                        if(input[y] > input[max])
                             max = y;
                        }//end of if statement
                   }//end of inner loop
                   /*Switches the values */
                        temp = input[x];
                        select[x] = input[max];
                        select[max] = temp;
              }//end of outer loop
              return select;          
         } //end of selectSort()
         /* method takes an array of integers as an input,
         * and returns a copy with the element values sorted
         * by bubble method.
         int[] bubbleSort(int[] input)
              int[] bubble = new int[input.length];
              for (int x = 1; x < input.length; x++)
                   for (int y = 0; y < input.length - 1; y++)
                        if (input[y] > input[y+1])
                             int temp = input[y];
                             bubble[y] = input[y+1];
                             bubble[y+1] = temp;
              return bubble;
         } //end of bubbleSort
    **********************Test Class**********************
    class TestSort
         public static void main(String[] args)
              /* count variable used as loop counter when
              * result table display is generated
              int count;
              /* variable for object of class Sort */
              Sort x;
              /* create object of class GroupEx2 */
              x = new Sort();
              /* create a source array of integer elements */
    int[] y = new int[5];
    /* assign values to array elements to be sorted     */     
              y[0] = 8;
              y[1] = 5;
              y[2] = 3;
              y[3] = 9;
              y[4] = 1;
              /* create variable for target of select sort array */
              int[] ss;
              /* create variable for target bubble sort array */
              int[] bs;
              /* call method to return an array with element values select sorted*/
              ss = x.selectSort(y);
              /* call method to return an array with element values bubble sorted*/
              bs = x.bubbleSort(y);          
              /* display original and sorted arrays in three columns*/
              System.out.print("Input Array" + "\t");
              System.out.print("Select Sort" + "\t");
              System.out.println("Bubble Sort");
              for (count = 0; count < y.length; count++)
                   /* Column 1: original array */
                   System.out.print("input[" + count + "] = " + y[count]);
                   /* tab between columns 1 and 2 */
                   System.out.print("\t");
                   /* Column 2: select sorted array */
                   System.out.print("select[" + count + "] = " + ss[count]);
                   /* tab between columns */
                   System.out.print("\t");
                   /* Column 3: bubble sorted array */
                   System.out.println("bubble[" + count + "] = " + bs[count]);
              } // end of display for loop
         } // end of main()
    } // end of class TestSort

    Thanks for the Bash! I'm surprised you had the time
    for it.Go back and look at your original post. A whole bunch of code, and the only description of the problem is "not working correctly." Do you honestly think that's a reasonable way to ask for help? Do you go to the doctor and say, "I'm sick" and then just wait for him to cure you? Do you take your care to the mechanic and say only, "It's broke"?
    Look, this is your problem and it's your responsibility to fix it. There are people here who are happy to help you, but it's up to you to provide a reasonable statement of what's wrong, what you've tried, what you don't understand. For instance:
    Does it compile? If not, post the complete error message.
    Does it run, but throw an exception? If so, post the stack trace.
    Does it not throw an exception, but not behave the way you expect? Then describe the expected beavior and the observed behavior.
    Do you really need to be told this stuff? It seems like common sense that when you're asking people to spend their time helping you, you should give them the information they need to be able to do so.

  • Line-in input not working correctly in Garageband

    Problem:
    Line-in input not working correctly with Garageband. Problem occurred AFTER installing and using Blue Yeti USB mic, purchased from the Apple store.
    System Details:
    '07 20" iMac 2.4GHz 4GB RAM, OSX 10.6.5, Garageband '11 v6.0, Logitech Z4 speakers.
    Background:
    Before using the Yeti USB mic, I used the line-in jack. I'd connect a Shure mic or guitars directly in, but more recently through a 12 channel mixer. Have connected the Shure mic directly into the input jack, and the computer appears to be picking it up (System Preferences->Sound->Input), it is responding correctly there. Have set the output to the headphone (line-out) jack. When I go into Garageband, I can select from Line-in 1, Line-in 2, and Line-in Stereo. The trouble is that it's the iMac's built-in mic that is active (the one above the screen), not the line-in. I've rebooted the computer, checked the connections, reconnected the Yeti mic and I can't find what's causing the problem. Not sure what to do from here, need some help. Thanks

    I have Logic Express on the iMac as well and I worked out how to set the input device back to the Line-In. I went back to Garageband and found the equivalent setting under Preferences->Audio/MIDI. Thanks for reading, sorry I didn't sort it out sooner! Merry Christmas!

  • Keyboard not working correctly after updating to 8.1 64bit pro.

    Keyboard not working correctly after updating to 8.1 64bit pro.
    After I updated, everything seemed ok and then all of the sudden I rebooted and only the f1 – f12 row would work. I resorted to resorted to unplugging and removing the battery and it would work for a short amount of time. This has been reported on other laptops as well, see here.
    http://answers.microsoft.com/en-us/windows/forum/w​indows8_1-hardware/windows-81-keyboard-problem-cou​...
    I think it can be solved with a driver update from hp or the keyboard builder but none is online.

    Hi,
    Please put the units product no. in the link and check if your PC is tested by HP with Windows 8.1
    http://www8.hp.com/us/en/ad/windows-8/upgrade.html
    Let me know if you need more help.
    I am an HP employee.
    Make it easier for other people to find solutions, by marking my answer “Accept as Solution” if it solves your problem.
    ***Click on “Kudos” STAR to say thanks!***

  • Some smart playlists not working correctly

    I have a smart playlist, "100 Most Played" that contains, as you might infer, the 100 most played songs (according to play count). On the iPhone, this seems to come out as 100 random songs because it does not correspond to the playlist as it appears in iTunes.
    iPhone 8GB    

    agreed. i'm having the same problem, and am also surprised by it.
    DOESN'T WORK:
    "Top 25" - should be easy. all the songs that the iPhone needs for this smart playlist are, yes, synced to the iPhone. but it picks a set of songs that have nothing in common as far as i can see (they have different ratings and add dates and so on).
    WORK CORRECTLY:
    "80s/Good" - an alphabetical list of songs with the genre "80s". this works and appears in the right order.
    "New" - shows new additions to iTunes, sorted by date added. works correctly.
    WEIRDEST:
    "Forgotten/Best" - is a playlist for showing 5-star songs not played recently. has always worked on iTunes. oddly, on the iPhone, the song list is actually the song list for the "Top 25" ?!?!!? i mean, it -is- the Top 25 playlist, but with the wrong name somehow. it's very confusing.
    waiting for a software update =)

  • Reports not working after upgrade to SCCM 2012 R2 -

    I am having the same issue described in this post:
    http://social.technet.microsoft.com/Forums/en-US/30f185ac-c34e-44ad-87eb-7d180a0d76b8/after-2012-r2-upgrade-some-sql-queries-wont-run?forum=configmanagergeneral
    When running reports after upgrading from SCCM 2012 SP1 CU2 to SCCM 2012 R2 I get the following error:
    An
    error has occurred during report processing. (rsProcessingAborted)
    Cannot
    read the next data row for the dataset DataSet1. (rsErrorReadingNextDataRow)
    Conversion
    failed when converting the nvarchar value
    'S-1-5-21-1010966800-777871707-395339515-124623' to data type int.
    I have removed the Reporting Services Point and reinstalled it with no effect.  All reports I try get the error listed above.
    Any suggestions?

    The issue has been resolved.  For anyone experiencing a similar issue I will post the fix that worked for us below:
    I ended up opening a PSS case and in this instance the problem was the required SQL management provider was not properly registered in WMI, which ultimately meant the reporting point upgrade/install was not able to complete successfully after the upgrade. 
    As a result the updated reports were not properly being redeployed to the Reporting Service Point.
    To diagnose this on the Reporting Service Point look in the srsrp.log for entries indicating of an
    Invalid Class, as seen in the example below:
    Invalid class SMS_SRS_REPORTING_POINT 11/6/2013 5:47:12 PM 6096 (0x17D0)
    Could not retrieve the reporting service name for instance 'RPSERVER' SMS_SRS_REPORTING_POINT 11/6/2013 5:47:12 PM 6096 (0x17D0)
    Invalid class SMS_SRS_REPORTING_POINT 11/6/2013 5:47:12 PM 6096 (0x17D0)
    Could not stop the reporting service '' SMS_SRS_REPORTING_POINT 11/6/2013 5:47:12 PM 6096 (0x17D0)
    Next security configuration at [11/6/2013 5:52:12 PM] SMS_SRS_REPORTING_POINT 11/6/2013 5:47:13 PM 6096 (0x17D0)
    Root Folder exists SMS_SRS_REPORTING_POINT 11/6/2013 5:47:13 PM 6096 (0x17D0)
    Successfully checked that the SRS web service is healthy on server SERVERRP.AD.DOMAIN SMS_SRS_REPORTING_POINT 11/6/2013 5:47:13 PM 6096 (0x17D0)
    Registry change SMS_SRS_REPORTING_POINT 11/6/2013 5:47:13 PM 6096 (0x17D0)
    Waiting for changes for 1 minutes SMS_SRS_REPORTING_POINT 11/6/2013 5:47:13 PM 6096 (0x17D0)
    SRSRP registry key change notification triggered. SMS_SRS_REPORTING_POINT 11/6/2013 5:47:13 PM 6096 (0x17D0)
    Registry change SMS_SRS_REPORTING_POINT 11/6/2013 5:47:13 PM 6096 (0x17D0)
    Waiting for changes for 1 minutes SMS_SRS_REPORTING_POINT 11/6/2013 5:47:13 PM 6096 (0x17D0)
    Timed Out... SMS_SRS_REPORTING_POINT 11/6/2013 5:48:13 PM 6096 (0x17D0)
    The important part is the lines saying Invalid Class and then it timing out, so the RP installation was not completed.
    As mentioned earlier the WMI class that was missing or corrupt was the SQL management Provider.  To re-register the class we need to compile the MOF file that is available in SQL.  In our instance the command to run was:
    mofcomp "C:\Program Files (x86)\Microsoft SQL Server\100\Shared\sqlmgmproviderxpsp2up.mof"
    Once that was done, monitoring the srsrp.log shows that it could properly detect the SSRS service, stop it and start coping the updated reports and such.  After a few minutes the deploy completed, and all the broken reports started working
    correctly.
    Hope that helps someone else.

  • How do I get a refund for an App that does not work correctly?

    How do I get a refund for a App (Express Newspapers)  that does not work correctly?

    How to report an issue with Your iTunes Store purchase

Maybe you are looking for