Retreive all empty or null measures in cube.

Dear All,
I need to find all measures which does not have any values for any of the hierarchies in a cube. It can be empty, Null or 0. I could not find one single query that returns result as expected.
Can you please help me to check this if there is one.
Thanks,
PXPRXR

Try something like that:_
assume that all your measures are aggregating to top Level and you dont have any scopes setting NULL on any level:
Select except(measures.members,nonempty(measures.members)) on columns
from Yourcube

Similar Messages

  • Urgent please- need help to retreive all values within a range

    Hi,
    I need to retreive all the values(ID) within a range no matter if it is available in the database or not. I just need this in a sql query not a stored proc.
    for ex:
    select id, name, age
    from employee
    where id between (1 and 10)
    It returns
    id name age
    1 x 22
    3 y 26
    4 z 23
    10 c 32
    I need a query which should return values as follows.
    id name age
    1 x 22
    2
    3 y 26
    4 z 23
    5
    6
    7
    8
    9
    10 c 32
    quick replies will be appreciated.

    This is one way of doing
    select decode(id,null,lev,id),name,age from employee,(select level lev from dual
    connect by level < 11)
    where employee.id(+)=lev
    The above will display between 1 and 10. If you want to specify some other range then the below query will do,
    select decode(id,null,lev,id),name,age from employee,(select level lev from dual
    connect by level <=10
    minus
    select level lev from dual
    connect by level <5)
    where employee.id(+)=lev
    The above query will display between 5 and 10

  • oms_error Message:[oms] empty or null xml map request string.

    I'm using mapviewer. I create a stored procedure in oracle that uses the utl_http package to make the map request. The omserver response with an error but when i make a map request via internet explorer the server response its ok and show me the correspondent map. This is my pl/sql code it fails in this line:
    UTL_HTTP.SET_HEADER(l_http_req, 'Content-Type', 'application/x-www-form-urlencoded');
         UTL_HTTP.SET_HEADER(l_http_req, 'Content-Lenght', LENGTH(map_request));
         UTL_HTTP.SET_HEADER(l_http_req, 'Host', 'cobogis09');
         UTL_HTTP.SET_HEADER(l_http_req, 'Port', '8888');
    As you can see it tells to me that the map request string is empty but im sending the map request in the next way:
         UTL_HTTP.WRITE_TEXT(l_http_req, '<?xml version="1.0" encoding="UTF-8"?><map_request datasource="stream" srid="8307" basemap="" width="960" height="768" antialiasing="false" format="GIF_URL" title="Demonstration"></map_request>');
         l_http_resp := utl_http.get_response(l_http_req);
         utl_http.read_text(l_http_resp, l_value);
         response := sys.XMLTYPE.createxml(l_value);
         utl_http.end_response(l_http_resp);
         img_url := response.EXTRACT('/map_response/map_image/map_content/@url').getstringval();
    img_url := response.EXTRACT('/map_response/map_image/map_content/@url').getstringval();
    obviously because the server response its not ok
    the server response is (i get this message in my l_value variable):
    <?xml version="1.0" encoding="UTF-8"?><oms_error>Message:[oms] empty or null xml map request string.
    Tue Jul 25 10:37:43 GMT-05:00 2006
    Severity: 0
    Description:
         at oracle.lbs.mapserver.oms.getXMLDocument(oms.java:860)
         at oracle.lbs.mapserver.oms.doPost(oms.java:303)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:824)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:285)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:126)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:595)
    </oms_error>
    What i want to know its why the server says that the map request string is empty. As you can see the map request is not empty, but when i send to the server something happens that sends this map request string empty to the server.
    The next is the console of the omserver:
    C:\oc4j_extended>cd\
    C:\>cd C:\oc4j_extended\j2ee\home
    C:\oc4j_extended\j2ee\home>java -hotspot -Xmx512M -jar oc4j.jar
    06/07/25 11:00:49 INFO [oracle.lbs.mapserver.oms] oms root path: C:\oc4j_extended\j2ee\home\lbs\mapviewer\web\
    06/07/25 11:00:49 Oracle Application Server Containers for J2EE 10g (10.1.2.0.2) initialized
    06/07/25 11:00:49 INFO [oracle.lbs.mapserver.core.MapperConfig] using default config file: C:\oc4j_extended\j2ee\home\lbs\mapviewer\web\WEB-INF\conf\mapViewerConfig.xml
    06/07/25 11:00:49 WARN [oracle.lbs.mapserver.core.MapperPool] destroying ALL mapmaker instances.
    06/07/25 11:00:50 INFO [oracle.lbs.mapserver.core.MapperConfig] setting logging level to finest
    06/07/25 11:00:50 Tue Jul 25 11:00:50 GMT-05:00 2006 INFO [oracle.sdovis.CacheMgr2] In memory cache limit set to: 512MB
    06/07/25 11:00:50 Tue Jul 25 11:00:50 GMT-05:00 2006 INFO [oracle.lbs.mapserver.core.MapperConfig] Disk-based cache is no longer supported.
    06/07/25 11:00:50 Tue Jul 25 11:00:50 GMT-05:00 2006 INFO [oracle.lbs.mapserver.core.MapperConfig] setting proxy to: coboisa01.ag.ad.local:8080
    06/07/25 11:00:50 Tue Jul 25 11:00:50 GMT-05:00 2006 FINEST [oracle.lbs.mapserver.core.MapperConfig]
    Allowed IPs:
    Excluded IPs:
    06/07/25 11:00:50 Tue Jul 25 11:00:50 GMT-05:00 2006 ERROR [oracle.lbs.mapserver.core.MapperConfig] ###### [MapperConfig] clear-text passwords in the mapViewrConfig.xml file must be prefixed with a '!' (exclamation mark).
    06/07/25 11:00:50 Tue Jul 25 11:00:50 GMT-05:00 2006 INFO [oracle.lbs.mapserver.core.MapperConfig] Map Recycling thread started.
    06/07/25 11:00:50 Tue Jul 25 11:00:50 GMT-05:00 2006 INFO [oracle.lbs.mapserver.oms] *** Oracle MapViewer started. ***
    06/07/25 11:01:03 Tue Jul 25 11:01:03 GMT-05:00 2006 FINEST [oracle.lbs.mapserver.oms] request.getRemoteUser = jazn.com/admin
    06/07/25 11:01:03 Tue Jul 25 11:01:03 GMT-05:00 2006 FINEST [oracle.lbs.mapserver.oms] request= <?xml version="1.0" standalone="yes"?>
    <non_map_request>
    <add_data_source name="stream"
    jdbc_host="cobodata01"
    jdbc_sid="stream"
    jdbc_port="1521"
    jdbc_user="***"
    jdbc_password="***"
    jdbc_mode="thin"
    number_of_mappers="3"/>
    </non_map_request>
    06/07/25 11:01:03 Tue Jul 25 11:01:03 GMT-05:00 2006 FINEST [oracle.lbs.mapserver.oms] getRequestType: nodeName=add_data_source
    06/07/25 11:01:03 Tue Jul 25 11:01:03 GMT-05:00 2006 INFO [oracle.lbs.mapserver.MapServerImpl] adding a map data src [name=stream]
    06/07/25 11:01:05 Tue Jul 25 11:01:05 GMT-05:00 2006 FINEST [oracle.sdovis.SRS] loaded 748 geodetic srids.
    06/07/25 11:01:05 Tue Jul 25 11:01:05 GMT-05:00 2006 INFO [oracle.sdovis.CacheMgr2] Spatial Data Cache opened. Region=SDOVIS_DATA.
    06/07/25 11:01:05 Tue Jul 25 11:01:05 GMT-05:00 2006 INFO [oracle.sdovis.CacheMgr2] max_cache_size=512 MB.
    06/07/25 11:01:05 Tue Jul 25 11:01:05 GMT-05:00 2006 INFO [oracle.sdovis.CacheMgr2] sub region sdovis_subreg_gis_jdbc:oracle:thin:@cobodata01:1521:stream created in cache.
    06/07/25 11:01:05 Tue Jul 25 11:01:05 GMT-05:00 2006 INFO [oracle.lbs.mapserver.core.MapperPool] added a mapper instance to the pool [data src=stream]
    06/07/25 11:01:05 Tue Jul 25 11:01:05 GMT-05:00 2006 INFO [oracle.lbs.mapserver.core.MapperPool] added a mapper instance to the pool [data src=stream]
    06/07/25 11:01:06 Tue Jul 25 11:01:06 GMT-05:00 2006 INFO [oracle.lbs.mapserver.core.MapperPool] added a mapper instance to the pool [data src=stream]
    06/07/25 11:01:36 Tue Jul 25 11:01:36 GMT-05:00 2006 FINEST [oracle.lbs.mapserver.oms] request.getRemoteUser = null
    06/07/25 11:01:36 Tue Jul 25 11:01:36 GMT-05:00 2006 FINEST [oracle.lbs.mapserver.oms] request= null
    As you can see the arrive empty to the server, what can be wrong

    Hi,
    in this map request, it looks that the basemap string is empty.
    UTL_HTTP.WRITE_TEXT(l_http_req, '<?xml version="1.0" encoding="UTF-8"?><map_request datasource="stream" srid="8307" basemap="" width="960" height="768" antialiasing="false" format="GIF_URL" title="Demonstration"></map_request>');

  • Button to delete all empty rows

    I am in the process of creating an interactive form that has a button that add rows for the user to input issues and another button to add follow-ups to those instances. There are 3 different sets of these. However, we do not want to add a delete button to all rows, to allow for accidental deletion of already inputted data.  I would like to create a button that will delete all empty rows, including all subforms.  Either that, or upon saving the document, all empty rows would be deleted - whichever would be easier. Please help!  This seems like it will be a complicated task and I am not that well versed in LiveCycle to be able to figure this out on my own.
    Thank you!

    There is no doubt that looping through nested repeating objects is more complex:
    Here is the script for the first table with follow-up rows:
    // Technical
    var nCount3 = VitalsSubform.Technical._Instance1.count;
    for (var k=0; k<nCount3; k++)
         // this is script to remove the follow-up rows in the first table only
         var nCount6 = xfa.resolveNode("VitalsSubform.Technical.Instance1[" + k + "]").Table1._Row1.count;
         // loop through the rows in the follow-up table
         for (var i=0; i<nCount6; i++)
              if (xfa.resolveNode("VitalsSubform.Technical.Instance1[" + k + "].Table1.Row1[" + i + "]").Cell4.rawValue == null)
                   // remove null row
                   xfa.resolveNode("VitalsSubform.Technical.Instance1[" + k + "]").Table1._Row1.removeInstance(i);
                   // recount nCount in case a row has been deleted
                   nCount6 =xfa.resolveNode("VitalsSubform.Technical.Instance1[" + k + "]").Table1._Row1.count;
                   // account for the row that is now deleted
                   i = i-1;
         // now remove null statements
         if (xfa.resolveNode("VitalsSubform.Technical.Instance1[" + k + "]").Table1.Statement.Statement.rawValue == null)
              VitalsSubform.Technical._Instance1.removeInstance(k);
              var nCount3 = VitalsSubform.Technical._Instance1.count;
              k = k-1;
    It is by no means tested and could still be flaky.
    Have you considered a manual 'x'/delete button for the follow-up rows?
    Here is the form: https://acrobat.com/#d=JMGUKXNQ*qMD18S3W5VxSQ
    Niall

  • How to identify empty InfoObjects used in a Cube

    Hello Gurus!
    I need some help. How do I find empty InfoObjects used in a Cube?
    I have 20+ Cubes and I need to identify those objects in the cubes, which are empty /not filled/. Statistics
    Except writing an ABAP
    Thanks in advance
    Martin

    Thank you for such fast response!
    @Tarak: unfortunately in the TX: LISTCUBE /or display data via RSA1/ you cannot display all characteristics for 'larger' cubes. Additionally you would have to select filter on each characteristics separately.
    @Aduri: could you please give me a more detailed hint? I know cube statistics for load requests, for storage space, for DB time, for IO in report use, but not for IO data, no data.
    @Analyst: Transactional data. Well, to check each mapping for 20+ cubes is a possibility. I have hoped to find a faster way, however.

  • YTD AVG with Nulls Measure

    I have the following MDX for a YTDAVG custom measure.  The problem is that it ignores NULLS in the DB.  For Example if I'm in the 3rd period and my montly amounts for an account are 25,0,&75, the measure returns 50.  I want the measure to return 33.3 (25075)/3.  How can I adjust the MDX below to get the correct YTDAVG calculation.
    'IIF([ACCOUNT].CURRENTMEMBER.PROPERTIES("ACCTYPE")="INC",AVG(YTD(),-MEASURES.[SIGNEDDATA]),IIF([ACCOUNT].CURRENTMEMBER.PROPERTIES("ACCTYPE")="EXP",AVG(YTD(),MEASURES.[SIGNEDDATA]),IIF([ACCOUNT].CURRENTMEMBER.PROPERTIES("ACCTYPE")="AST",(MEASURES.[SIGNEDDATA], CLOSINGPERIOD([TIME].[MONTH])),IIF([ACCOUNT].CURRENTMEMBER.PROPERTIES("ACCTYPE")="LEQ",-(MEASURES.[SIGNEDDATA], CLOSINGPERIOD([TIME].[MONTH])),-MEASURES.[SIGNEDDATA]))))'

    Worked on it finally got the solution:-
    I am working on SAP BPC 10 and here is the code for YAVG with Null measures
    1) Null measures :- is taken care by the code line :- COALESCEEMPTY([MEASURES].[/CPMB/SDATA],0)
    2) YEAR property of TIME dimension is not accepted instead of that I took LEVEL00 in my PERIODSTODATE function
    PERIODSTODATE([%TIME%].[LEVEL00],[%TIME%].CURRENTMEMBER)
    LEVEL00 - YEAR
    LEVEL01 - QUARTER
    LEVEL01 - MONTH
    3) MONTHNUM is the property I maintained in my Time dimension and its datatype is "CHAR" so we need to convert it to interger.
    Usually in older version the strtovalue is user to achieve point 3 but in NW it is not accepted so I used the following function
    IIF([%TIME%].CurrentMember.Properties("MONTHNUM")="1",1,IIF([%TIME%].CurrentMember.Properties("MONTHNUM")="2",2,0))
    add 10 more lines for all the months as shown below:-
      MEMBER [MEASURES].[YAVG] AS 'IIF([%CFP_ACCOUNT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="INC" OR [%CFP_ACCOUNT%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="EXP",SUM(PERIODSTODATE([%TIME%].[LEVEL00],[%TIME%].CURRENTMEMBER),COALESCEEMPTY([MEASURES].[/CPMB/SDATA],0))/
    IIF([%TIME%].CurrentMember.Properties("MONTHNUM")="1",1,IIF([%TIME%].CurrentMember.Properties("MONTHNUM")="2",2,IIF([%TIME%].CurrentMember.Properties("MONTHNUM")="3",3,IIF([%TIME%].CurrentMember.Properties("MONTHNUM")="4",4,IIF([%TIME%].CurrentMember.Properties("MONTHNUM")="5",5,IIF([%TIME%].CurrentMember.Properties("MONTHNUM")="6",6,IIF([%TIME%].CurrentMember.Properties("MONTHNUM")="7",7,IIF([%TIME%].CurrentMember.Properties("MONTHNUM")="8",8,IIF([%TIME%].CurrentMember.Properties("MONTHNUM")="9",9,IIF([%TIME%].CurrentMember.Properties("MONTHNUM")="10",10,IIF([%TIME%].CurrentMember.Properties("MONTHNUM")="11",11,IIF([%TIME%].CurrentMember.Properties("MONTHNUM")="12",12,0)))))))))))),[MEASURES].[/CPMB/SDATA])'

  • How to find out that a record is empty or null

    hi
    how can i find out that a record is empty or null.
    in other languages when a object or record is not initialized it will be null.
    after initialization how can i find out its values are null. so far i tried this
    declare
    v_r_emp emp%rowtype := null;
    BEGIN
         if (v_r_emp is null) then
         dbms_output.put_line('record is not initialized');
         end if;
    END;
    it seems in plsql we can assign null but cannot compare it with null clause why? if we are able of assign null we must should about to compare it with null too.
    also how record can be made empty. how can we find out that a record variable is empty
    please help me to understand the concept
    thanks

    You need to check every element in the record.

  • How to copy/paste anchor text box to its anchor point in text and delete all empty anchors?

    hi all
    i have a document of few pages but one story. The right column is the main text box and on many places anchored text boxes are placed which appeared on the left column as shown below.
    i want text of each anchor-text-box to be cut from its place and paste at its insertion/anchor point and delete all empty anchored boxes.
    I am trying since morning but i unable to reach anchor object reference. Any help on how to start with will be helpful.
    virender

    Ok, let's say you have one main text box (not anchored) and three text boxes that are anchored to text within it. The first one is anchored with text, the second one is unanchored, and the third one is empty (I'm not going to get into inline anchoring vs. custom anchoring since you didn't bring it up in your post).
    We cycle through the items on the page:
    function main(){
      var myDoc = app.activeDocument;
      var myPages = myDoc.pages.everyItem().getElements();
      for (var i = 0; i < myPages.length; i++){
        var myPage = myPages[i];
        //Checks that the page is valid, and that it is not a master page. If either is true, skips to the next page.
        if (myPage.isValid == false) continue;
        if (myPage.parent instanceof MasterSpread) continue;
        var myItems = myPage.allPageItems;
        for (var j = 0; j < myItems.length; j++){
          //Current item.
          var myItem = myItems[j];
          //If myItem doesn't have a Character parent, it is not anchored.
          //The first and third text frames would fail this test.
          if (!(myItem.parent instanceof Character)) continue;
          //We only care about text frames.
          if (!(myItem instanceof TextFrame)) continue;
          //I think the only way this would happen would be if you had an image or
          //something else unexpected within the frame. I check for it so no content
          //is inadvertently lost.
          else if (myItem.texts.length > 1) continue;
          //If we're still in this iteration of the loop, all qualifications are met.
          //Flatten the text frame.
          //I don't use layers that often so, to me, flatten makes sense. You may want
          //to use a different term if there's a chance for confusion.
          flattenItem(myItem);
    function flattenItem(funcItem)
         //Hold onto the anchor character.
        var myParent = funcItem.parent;
         //Duplicate the text from within the frame so that it appears right after the anchor.
         //There may be other methods, but this works for me. I try to avoid copy/paste
         //so as not to deal with any clipboard mishaps. I added a check in case of empties.
         if (funcItem.texts.length > 0){funcItem.texts[0].duplicate(LocationOptions.AFTER, myParent.insertionPoints[0]);}
         //Replace the anchor character itself with a space (or whatever) which also
         //deletes the text frame it was anchoring.
        myParent.contents = " ";
    I guess the takeaway might be that you're not looking at the main text frame and then checking to see if anything is anchored to it. You're looking at each text frame and figuring out if it is anchored. That's my approach, anyway.

  • CS3/4, JS Amateur question: how remove all empty text frames?

    I'm an amateur, and thought it would be a straightforward matter to write a script that simply deletes all empty text frames in all of a document's stories. Here's my second attempt:
    var myDocument = app.activeDocument;
    var myStories = myDocument.stories;
    for (i = 0; i < myStories.length; i++){
      var myStory = myStories[i];
      var myTextFrames = myStory.textContainers;
        for (j = myTextFrames.length - 1; j >=0; j--) {
        if (myTextFrames[j].contents == "") myTextFrames[j].remove();
    The trouble is, sometimes it works as intended, but sometimes, with multiple stories, it needs to be run more than once. Can anyone explain why that is?
    Thanks -- Jeremy

    [Jongware] wrote:
    (Bit of a Johnny-come-lately, but anyway )
    AHA! -- This is a great help. It was driving me up the wall, and I don't know why it didn't work for me last night. Maybe it's because I was counting through stories in the wrong direction. Anyhow, I see how it works now, and I'm very grateful for the help.
    By the way Harbs, I used all three of your suggestions because I had spent far too much time tapping away at that nut with my little toy hammer. I vented my frustration by using all three of your sledgehammers. In particular, I made sure it left a single empty text frame where it was, as such a frame might be used as a graphic. (Although in the past, I've found an empty story can be a sneaky place for a rogue font to hide. The insertion point just in front of the "end of story" character can have a paragraph style applied, with its associated font, but "Find" won't find any characters with that paragraph style or font applied!)
    Thanks to all again -- Jeremy

  • HELP I have lost all my motion 4 content from all the files, ive looked in all the files and they are all empty. can i get replacement content as I my dvds where stolen along. with my other laptop.

    HELP I have lost all my motion 4 content from all the files, ive looked in all the files and they are all empty. can i get replacement content as I my dvds where stolen along. with my other laptop. any Ideas. would be a great help. For Motion 4.

    Try a hard reset:- hold the home button AND the power switch - ignore the red "Slide to power off" and wait ubntil the iPhone powers down, and then restarts - at the Apple logo, release all the buttons and see if your contacts reappear.

  • TS3899 In the past I have been able to retreive all messages not deleted in the inbox of my mailbox.  This week I have not been able to acces messages received prior to 9/10/13.  what can I do to retrieve messages eceived prior to 9/10/13.

    Until recently I have been able to retrieve all messages not deleted i m mailbox "inbox".  Today I can only retrieve messages from 9/10/13 to present.  How can i retreive all previously sent messages that were not deleted?

    Settings > Mail, Contacts, Calendars > Tap the account in question > Mail days to sync - increase the time to sync.

  • Displaying current month with all empty months

    None of the answers I've seen for showing current month in a calendar has given a solid answer. So, here is my question. My objective is to display all calendar months rather they are empty or not, plus I want the calendar to start at the current month. I added coding to display a next month and previous month button, so you should be able to click next or previous month from the current month showing. I have the "Show All Empty Months" checked in the Display Options under Common Options and the start and end date are empty. I have a bind variable in my coding that defaults to the current month but it will not show an empty month. I get the "no rows returned" situation because it doesn't have anything in it. Is there a solution to showing all empty months?
    Also, has anyone found a solution to hide/remove the default Next/Previous buttons? I read in one of the replies that this would be fixed in a forthcoming release. Is this true?
    Thanks for any assistance.

    The calendar works on a sql query result. I had done something similar to what you are looking for by spoofing the sql query to return rows for all the months which I am interested in. I had a query like the following.
    select *
    from scott.emp a , ( select (trunc(sysdate) - 7910 + rownum) dat from user_objects ) b
    where b.dat = a.hiredate (+)
    Hope you can do something similar to this.

  • Include movies from playlists are all empty on my iPhone. Where did they go?

    Include movies from playlists are all empty on my iPhone. i use this option. i like this option, why then is it not working now.
    I have the usual playlists for Music. rock, disco, classic and some techno etc.
    These are all full with the sounds i chose to be within these folder on my computer and also on my iPhone,
    As expected they are all within my Music app on my iPhone. they are after all music.
    As unexpected the 5 or 6 Movie playlist folders were also there,
    Here i could access my tutorial movies for varoius subjects. yes from the music app.
    Okay
    so now we have divided it all up since ios6
    Music in music  and loads of options, pretty pretty pretty
    Podcasts in podcasts and loads of options, pretty pretty pretty
    Videos... ugly ugly ugly, now all thrown in together in one big mess. no lists nothing. Store button is ther and thats it.??????
    video1 for photoshop is now with video1 for all the other subjects and i no longer have the ability to group my films.
    i can see my movie playlist folders in the music app but all these flders are now showing nothing inside.
    i would think this to be logicaly true but then the folders should not show either..... these should, now show in my videos app,
    But they do not.
    whats going on?
    am i missing something
    or has Apple just missed something?
    anyone know?

    P.S. Include music videos IS checked within the iTunes music synch tab.

  • HT203167 my pc was stolen i have a new one but when i open my itunes there is no music how do i retreive all my itunes music that was on stolen computer was thinking considering its my account

    my PC was stolen now that i have new laptop was expecting that once logged into Itunes i could retreive all perviously downloaded music again but i cant see option anywhere.  can someone please tell me how to get all my music back

    Download Past Purchases
    http://support.apple.com/kb/HT2519

  • $50 reserve cards all emptied

    Our family's $50 gift cards for the phone reserve deal were sent to separate emails, separate computers, never printed, and yet now they are ALL emptied of value.  They didn't even send right the first time - you had to cause them to be resent (wonder if they were duplicated then or something?), and now we can't even use them.
    I thought perhaps they were never activated, but your phone support says they were all used in store to combine to a larger gift card yesterday, along with several cards that do not appear to be ours, and the other larger card doesn't show in their system and they can do nothing more.
    Those numbers should only have existed in pdf files on SEPARATE computer systems that were never printed.  It is extremely unlikely we were compromised by the same person at the same time.  It sounds more likely to be an internal compromise.  They also took numbers that weren't ours, and ours were all kept completely separate by separate family members on different computers.  We didn't lose them - they were never printed, the numbers themselves weren't in the emails, etc.  To take a pdf saved in different locations on different systems would be quite unusual, especially to all be stolen at the same time, and so soon after they were issued!
    They do not appear to be interested in looking any further in store or on the phone.  As near as I can tell, they just figure that on top of all the problems getting the Note 4's in the first place, we should just eat a $50 loss each.  Even if they did fix them, it would likely be too late to use on any Black Friday deals.... which is the only reason we had to even look at Best Buy's ad for Black Friday after the last mess.  So, we won't even be able to get what we'd like then.  Though, it doesn't sound like they are looking into it at all anyways.

    Hello erinpac,
    I can certainly imagine your concern when you realized your gift card was empty. It definitely would be very disappointing after patiently waiting to receive them, and wanting to use them for your Black Friday shopping. I'm very sorry to hear this has happened to you.
    After further research, I have confirmed that this gift card was issued to you immediately after being created; therefore no one but you would have access to it. Unfortunately we are not able to re-issue a new one at this point. 
    I am truly sorry for any disappointment this may have caused, and that I am unable to assist you further in this case. 
    Sincerely, 
    Maria|Social Media Specialist | Best Buy® Corporate
     Private Message

Maybe you are looking for

  • Authorization problems after upgrade

    After upgrading to the new version of iTunes, I was prompted to reauthorize my pc. It will not accept my old aol screename and password (no longer with aol), and when I created a new screename with apple, it did not copy 410 songs over. So I'm stuck.

  • How can i get the icon in messages where your recipient is replying?

    This might not make sense but i'll try my best to explain my query!    Basically i saw on someone else iphone 4s today that when writing a text they had an icon at the bottom which informs them that their recipient is typing back to them! Mine never

  • How to set services-config.xml?

    Hi, Hi, I am confusing for how to set services-config.xml(configuring channels and destinations) for <mx:RemoteObject>. Please give me a simple demo .Thanks MK

  • In-process inspection...how to stop the process order confirmation?

    Hi...i'm making an in-process inspection and i want to stop the movement to the next phase or the process order confirmation, until the usage decision is made...how can i make this ?

  • ACR and dynamic range tests

    I have been looking at dynamic range tests on dpreview.com for different cameras. I'm particularly intrigued by the "RAW headroom" graphs. They have things like "ACR Best: Exp. -0.85 EV, Shadows 0, Bright. 70, Contrast -25, Curve Linear" (Pentax K10D