How can I find a list of recent purchases with my Apple ID?

My wife and I both use the same Apple ID to access the iTunes store and App Store across a bunch of devices (Apple TV, iPhones, iPad, my Mac).  It seems that charges are consolidated so that they appear on my credit card in chunks (like, if I buy an app and an album and rent a movie in the same few days, they all appear as a single charge on my credit card). For my own sanity and keeping track of what we're spending on what, is there any way to see a list of recent purchases that have been charged to my Apple ID account?  "Manage my Apple ID" doesn't seem to have the info that I can see.

Open iTunes
Click the store
Sign in
Click on your name and there should be a list of purchases from your Apple ID

Similar Messages

  • How can we find the list of user exits for a transaction

    hi all
    iam new in user exits please send the basic details
    how can we find the list of user exit for a perticular transaction and how can we determine that a particulr user exit is used for a field
    regards
    jagadish

    hi,
    check the below links for userexits
    http://help.sap.com/saphelp_46c/helpdata/en/64/72369adc56d11195100060b03c6b76/frameset.htm
    FAQ's
    http://http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.ficoexpertonline.com/downloads/User%20ExitsWPedit.doc
    http://www.easymarketplace.de/userexit.php
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    1. what is the defference between enhancement and user-exits?
    http://www.sap-img.com/abap/difference-between-badi-and-user-exits.htm
    Re: difference between user exits & customer exits
    Some Questions ! Plz help...
    http://searchsap.techtarget.com/expert/KnowledgebaseAnswer/0,289625,sid21_gci1190924_tax299358,00.html?bucket=ETA
    2. Difference between CMOD and SMOD?
    http://www.sap-img.com/abap/what-is-the-difference-between-smod-and-cmod.htm
    http://www.sap-img.com/abap.htm
    http://sap.ittoolbox.com/groups/technical-functional/sap-r3-dev/diff-between-cmod-and-smod-236095
    http://sap.ittoolbox.com/groups/technical-functional/sap-r3-dev/diff-between-cmod-and-smod-236107
    check these links..
    http://www.sapgenie.com/abap/tips_and_tricks.htm
    http://www.sap-img.com/abap/field-exits-smod-cmod-questions-and-answers.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    passing selet-option variable to subrouine...
    Finding the user-exits of a SAP transaction code
    Finding the user-exits of a SAP transaction code
    Enter the transaction code in which you are looking for the user-exit
    and it will list you the list of user-exits in the transaction code.
    Also a drill down is possible which will help you to branch to SMOD.
    Written by : SAP Basis, ABAP Programming and Other IMG Stuff
                 http://www.sap-img.com/*
    report zuserexit no standard page heading.
    tables : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
             tables : tstct.
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    parameters : p_tcode like tstc-tcode obligatory.
    select single * from tstc where tcode eq p_tcode.
    if sy-subrc eq 0.
       select single * from tadir where pgmid = 'R3TR'
                        and object = 'PROG'
                        and obj_name = tstc-pgmna.
       move : tadir-devclass to v_devclass.
          if sy-subrc ne 0.
             select single * from trdir where name = tstc-pgmna.
             if trdir-subc eq 'F'.
                select single * from tfdir where pname = tstc-pgmna.
                select single * from enlfdir where funcname =
                tfdir-funcname.
                select single * from tadir where pgmid = 'R3TR'
                                   and object = 'FUGR'
                                   and obj_name eq enlfdir-area.
                move : tadir-devclass to v_devclass.
              endif.
           endif.
           select * from tadir into table jtab
                         where pgmid = 'R3TR'
                           and object = 'SMOD'
                           and devclass = v_devclass.
            select single * from tstct where sprsl eq sy-langu and
                                             tcode eq p_tcode.
            format color col_positive intensified off.
            write:/(19) 'Transaction Code - ',
                 20(20) p_tcode,
                 45(50) tstct-ttext.
                        skip.
            if not jtab[] is initial.
               write:/(95) sy-uline.
               format color col_heading intensified on.
               write:/1 sy-vline,
                      2 'Exit Name',
                     21 sy-vline ,
                     22 'Description',
                     95 sy-vline.
               write:/(95) sy-uline.
               loop at jtab.
                  select single * from modsapt
                         where sprsl = sy-langu and
                                name = jtab-obj_name.
                       format color col_normal intensified off.
                       write:/1 sy-vline,
                              2 jtab-obj_name hotspot on,
                             21 sy-vline ,
                             22 modsapt-modtext,
                             95 sy-vline.
               endloop.
               write:/(95) sy-uline.
               describe table jtab.
               skip.
               format color col_total intensified on.
               write:/ 'No of Exits:' , sy-tfill.
            else.
               format color col_negative intensified on.
               write:/(95) 'No User Exit exists'.
            endif.
          else.
              format color col_negative intensified on.
              write:/(95) 'Transaction Code Does Not Exist'.
          endif.
    at line-selection.
       get cursor field field1.
       check field1(4) eq 'JTAB'.
       set parameter id 'MON' field sy-lisel+1(10).
       call transaction 'SMOD' and skip first   screen.
    *---End of Program
    if u want to find the function exit
    then check the below code
    REPORT ZV_FIND_EXIT NO STANDARD PAGE HEADING.
    TABLES : TSTC, TADIR, MODSAPT, MODACT, TRDIR, TFDIR, ENLFDIR.
    TABLES : TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE OBLIGATORY.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR WHERE FUNCNAME =
    TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'SMOD'
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT WHERE SPRSL EQ SY-LANGU AND
    TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(95) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Exit Name',
    21 SY-VLINE ,
    22 'Description',
    95 SY-VLINE.
    WRITE:/(95) SY-ULINE.
    LOOP AT JTAB.
    SELECT SINGLE * FROM MODSAPT
    WHERE SPRSL = SY-LANGU AND
    NAME = JTAB-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    WRITE:/1 SY-VLINE,
    2 JTAB-OBJ_NAME HOTSPOT ON,
    21 SY-VLINE ,
    22 MODSAPT-MODTEXT,
    95 SY-VLINE.
    ENDLOOP.
    WRITE:/(95) SY-ULINE.
    DESCRIBE TABLE JTAB.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No of Exits:' , SY-TFILL.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'No User Exit exists'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'Transaction Code Does Not Exist'.
    ENDIF.
    AT LINE-SELECTION.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(4) EQ 'JTAB'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    or
    1. in se11, goto table MODSAP
    View table contents
    2. in Type field, enter 'E' (for function exit)
    3. For that tcode, u should know the program name.
    eg. SAPLLMOB
    4. then type SAPLLMOB and execute
    or
    REPORT z34331_user_exit .
    TABLES : tstc, "SAP Transaction Codes
    tadir, "Directory of Repository Objects
    modsapt, "SAP Enhancements - Short Texts
    modact, "Modifications
    trdir, "System table TRDIR
    tfdir, "Function Module
    enlfdir, "Additional Attributes for Function Modules
    tstct. "Transaction Code Texts
    DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
    DATA : field1(30).
    DATA : v_devclass LIKE tadir-devclass.
    SELECTION-SCREEN BEGIN OF BLOCK a01 WITH FRAME TITLE text-001.
    SELECTION-SCREEN SKIP.
    PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN END OF BLOCK a01.
    START-OF-SELECTION.
    Validate Transaction Code
    SELECT SINGLE * FROM tstc
    WHERE tcode EQ p_tcode.
    Find Repository Objects for transaction code
    IF sy-subrc EQ 0.
    SELECT SINGLE * FROM tadir
    WHERE pgmid = 'R3TR'
    AND object = 'PROG'
    AND obj_name = tstc-pgmna.
    MOVE : tadir-devclass TO v_devclass.
    IF sy-subrc NE 0.
    SELECT SINGLE * FROM trdir
    WHERE name = tstc-pgmna.
    IF trdir-subc EQ 'F'.
    SELECT SINGLE * FROM tfdir
    WHERE pname = tstc-pgmna.
    SELECT SINGLE * FROM enlfdir
    WHERE funcname = tfdir-funcname.
    SELECT SINGLE * FROM tadir
    WHERE pgmid = 'R3TR'
    AND object = 'FUGR'
    AND obj_name = enlfdir-area.
    MOVE : tadir-devclass TO v_devclass.
    ENDIF.
    ENDIF.
    Find SAP Modifactions
    SELECT * FROM tadir
    INTO TABLE jtab
    WHERE pgmid = 'R3TR'
    AND object = 'SMOD'
    AND devclass = v_devclass.
    SELECT SINGLE * FROM tstct
    WHERE sprsl EQ sy-langu
    AND tcode EQ p_tcode.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    SKIP.
    IF NOT jtab[] IS INITIAL.
    WRITE:/(95) sy-uline.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 sy-vline,
    2 'Exit Name',
    21 sy-vline ,
    22 'Description',
    95 sy-vline.
    WRITE:/(95) sy-uline.
    LOOP AT jtab.
    SELECT SINGLE * FROM modsapt
    WHERE sprsl = sy-langu AND
    name = jtab-obj_name.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    WRITE:/1 sy-vline,
    2 jtab-obj_name HOTSPOT ON,
    21 sy-vline ,
    22 modsapt-modtext,
    95 sy-vline.
    ENDLOOP.
    WRITE:/(95) sy-uline.
    DESCRIBE TABLE jtab.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No of Exits:' , sy-tfill.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'No User Exit exists'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'Transaction Code Does Not Exist'.
    ENDIF.
    Take the user to SMOD for the Exit that was selected.
    AT LINE-SELECTION.
    GET CURSOR FIELD field1.
    CHECK field1(4) EQ 'JTAB'.
    SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    Regards,
    Naveen

  • How can we find out list of patches applied to hyperion products

    Hi,
    How can we find out list of patches applied to hyperion products like HFM, Essbase, HFR..etc
    If we can go ahead with Opatch, Can any one please share the procedure of getting list of patches applied using this.
    Thanks in advance
    ARSV

    If your system is installed in D:\Oracle\Middleware
    D:\Oracle\Middleware\EPMSystem11R1\Opatch\opatch.bat lsinventory -oh D:\Oracle\Middleware\EPMSystem11R1 -jre D:\Oracle\Middleware\jdk160_21
    or
    D:\Oracle\Middleware\EPMSystem11R1\Opatch\opatch.bat lsinventory -detail -oh D:\Oracle\Middleware\EPMSystem11R1 -jre D:\Oracle\Middleware\jdk160_21
    Pablo

  • How can i view a list of previous purchases i have made from the appstore on my iphone that i have now deleted?

    how can i view a list of previous purchases i have made from the appstore on my iphone that i have now deleted?

    Launch iTunes on your computer. Select iTunes Store in the source list on the left then click Sign In right side of the iTunes window just above QUICK LINKS.
    In the Account Information window click See All to the right of Purchase History.

  • Iphone app asked me for username and password. how can i find this? it seems deferent than the apple id or i tune store username!

    iphone app asked me for username and password. how can i find this? it seems deferent than the apple id or i tune store username!

    Which iPhone app?
    Don't just enter usernames and passwords into apps unless you know what it is for and why it wants it.

  • HT1420 How can I get a list of authorize computers under an Apple ID?

    How can I get a list of authorize computers under an Apple ID?
    How can I deauthorized a computers under an Apple ID if I do NOT have possession of that computer?
    Thanks
    -William

    It's not currently possible to see a list of authorised computers, but if you have 2 or more computers authorised then, as described on the page that you posted from, you can log into your account on your computer's iTunes (Store > View My Account, Store > View My Apple ID on iTunes 11) and 'deauthorise all' (which you can do once every 12 months) and you can then authorise/reauthorise the computers that you still have and need.
    Deauthorising a computer doesn't remove any content from it, it just means that you won't be able to use iTunes downloads on it until you reauthorise it

  • How can I find a printer that is compatible with my ox 10.4.11 operating system

    Helllo,
    I have several questions but my most current one is how can I find a printer that is compatible with my current operating system?

    Brother is good about supporting older Mac OS versions. We have their HL5250DN b/w laser that supports all the post-1997 Macs in the house, including a 1998 vintage Beige G3 minitower running OS 10.3.9. There is also a driver with OS9 support on the Brother web site.
    The bigger problem, based on posts I see in these forums, is not a printer failing to support an older OS but one not supporting a new Mac OS. There are numerous posts after a big OS version change (like the intro of Lion) where people run out and buy whatever printer looks cute/sounds good without researching whether the device supports the new OS yet. Printer makers are often not good about having updated drivers developed by the time Apple rolls out a new OS.

  • Where can i find a list of compatible ssd's for Apple Mac Pro 3.33GHz Six Core Mid 2012 Desktop/PC.

    where can i find a list of compatible ssd's for Apple Mac Pro 3.33GHz Six Core Mid 2012 Desktop/PC?

    http://www.storagereview.com/best_drives
    http://www.storagereview.com/buying_an_ssd_the_top_10_brands_that_matter
    Prices have crashed. Look and you can find Samsung 128's and others for $89 sometimes.
    It is not just moving the OS and data apart, though it does matter, and more from you should never have the OS cluttered with data, been doing that for... 35 yrs. 0.01 ns vs 10 ms. 60k IO's per second. Reads in 220MB/sec but held back from making full use of SATA 6G.
    OWC Mercury Aura Pro Express 6G SSD, the first and only third party SSD compatible with the new 2012 MacBook Air.
    http://thessdreview.com/category/our-reviews/

  • Where can I find a list of Camcorders compatible with FCP X?

    Where can I find a list of Camcorders compatible with FCP X?

    I'll modify that first word!
    http://help.apple.com/finalcutpro/cameras/en/index.html?
    However, be aware that Apple has neither the time nor the incentive to test every camera on the market, so there will be many more models, old and new, that will work perfectly even though they are not on the database.

  • How can I get a credit card re-instated with ITunes/Apple Store?  It was blocked due to an ITunes billing error.  Called customer (lacking in) service, but they were no help!

    How can I get a credit card re-instated with ITunes/Apple Store?  It was blocked due to an ITunes billing error.  Called customer (lacking in) service, but they were no help!  The rep emailed that I had to get a new credit card   No way.... --PB

    Only Apple Account Security could help at this point. You can try calling Apple Support in Canada - you'll have to find one of the several ways, such as Skype, to call an 800 number from outside of the relevant country - and ask for Account Security and see if they can help. Or you can find a friend who speaks Chinese and ask them to help you talk to Apple Support in China. There are really no other options that I know of.
    Note, by the way, that these are user-to-user support forums. You aren't speaking with Apple when you post here.
    Regards.

  • How can iWeb hit counter be made to work with non-Apple server?

    How can IWeb hit counter be made to work with non-Apple server?

    This tutorial describes how to add an alternative counter to an iWeb page: iW05 - Adding a Graphical StatCounter as an HTML Snippet to an iWeb Page
    OT

  • Is there a way to get a search protocol of the "Find my iPhone" search app and icloud ? And where can i find a protocol of the chat with a apple support worker

    Is there a way to get a search protocol of the "Find my iPhone" search app and icloud ? And where can i find a protocol of the chat with a apple support worker

    Thanks for the reply however this does not help.  When I check the cloud it shows that I have only 20 photos.  In reality I had a lot more than that.  All the photos on the cloud are those that I have taken since I was at the Apple store.  When I check cloud storage usage on my phone it says that I have 5.1 GB of photos.  This is a lot more than the 20 that I can see.  I am not sure what the Apple employee did to my phone.
    Still looking for answers.  It is really too bad that I can not talk to an Apple person to get help since they messed up my phone.

  • Your recent purchase with your Apple ID.

    Hi,
    Whenever I update my apps or purchase a new app using the iTunes desktop client, I am sent a form e-mail automatically. The subject is always, "Your recent purchase with your Apple ID." and the email reads:
    Dear SlamSlam,
    Your Apple ID, [email protected], was just used to purchase "App Name" from the App Store on a computer or device that had not previously been associated with that Apple ID.
    If you made this purchase, you can disregard this email. This email was sent as a safeguard designed to protect you against unauthorized purchases.
    If you did not make this purchase, we recommend that you go to iforgot.apple.comto change your password, then see Apple ID: Tips for protecting the security of your account for further assistance.
    Regards,
    At first this alarmed me and I quickly changed my password thinking my account was compromised. But I soon realized this email is dispatched whenever I update apps via the iTunes desktop program. It does not happen on either my iPhone 4 or my iPad 1.
    I checked and made sure my PC was an authorized device, yet I still receive these messages.
    Any ideas?
    I emailed Apple support but they reply with robotic, canned responses that are not even in regards to the subject I'm asking (they are misinterpretting my question for the standard iTunes receipts that are mailed, which this is not.)
    Thanks,

    I also am using version 10.3.1.55 of iTunes.
    If I recall correctly, I received the first e-mail on June 26 or 27, so mine have also been occurring within the past 2 weeks.
    I have never been asked to enter 3 security digits when making a purchase or updating an app.  The only prompt I have ever received is simply to enter my account password to ensure that I am logged in before the purchase or update takes place.  I am guessing the 3 security digits are the ones tied to the credit card you have saved to your account.  I do not have a credit card saved to my account.  Instead, I just buy iTunes gift cards and redeem those so that my account maintains a balance.  I figure that's a lot safer than getting my credit card information stolen in the off-chance that I get hacked.

  • How can I find a list of printers that will work with my iBook version=2.2?

    I need to print out a book I wrote on my old iBook...got rid of my Epson Stylus 62 and can't find a list on the iBook that says what other printers it will take. I have access to an old Dell 922 and am wondering if that can be hooked up and used to get the book printed without having to go to get info recovered and pay a lot of money. Thanks for any help!

    Oldmac
    You should be able to connect  the Dell 922 (c.2004) to your iBook Jaguar(c.2002) - you may see the problem... finding a driver for the Dell922 may be a BIG obstacle as Jaguar pre-dates the Dell922 - thus, no built-in driver in the OSX  - it may be that some Dell driver will work but I would not bank on it.
    Alternatives:
    What is stopping you from connecting iBook to the Internet?
    What Mac or PC do you have now? Connect via network cabling? > transfer file (what Application?) > print ?
    put your file on a thumb drive and transfer it to another's computer - friend, FedExOffice Store, etc.
    Think outside the box...
    CCC

  • How can i find out who signed into itunes with my id

    Someone signed into an iPhone4 with my info last night. i have an iPhone5. How can i find out who

    BTW, just checked through my email history and I can't find a similar message to yours. I recently had my iPhone 3GS replaced with an iPhone 4 so if there is an official alert program in place I should have received something like it. I think we can be reasonably confident that it is a scam. If you used any link in the email to visit what you thought was an Apple site, and signed in, then you should definitely change your password from within the iTunes application. Store > View My AppleID > Top Edit link.
    tt2

Maybe you are looking for

  • Error in Performing Flat-File Reconciliation

    Hi All, I was trying perform flat file reconcilation using the GTC Connector. The format of my flat file (PPSLocal.txt) is like this: Account Name|Full Name|Domain|Last Logon Timestamp|Description|GUID|Mail|Employee ID|First Name|Last Name PPS\Sophos

  • CRM 2007 Pricing based on settlement period of billing plan

    Hi, I need the ability to have disocunts on a service contract based on the settlement period of the billing plan. A contract list price is 12 GBP per month. If the customer want to bill monthly no doscount will be applied. If the customer wants to b

  • Newest Firefox always unstable, buggy, like a Beta release

    I have been using Firefox for years, and generally like it above all else (currently running 11.0). However, I have had to disable the updates of any kind because ''every'' new release of Firefox is unstable. Maybe it works for an hour or a day, but

  • RAW/JPG - Aperture doesn't find the JPG files anymore

    Hello, I have all my photos on an external hard drive (referenced). Yesterday I had to format this hard drive, so I copied all photos on the hard disk of my iMac, then formatted the external hard drive and then copied all the photos back there. The h

  • Export data from iphoto 09 to searchable file

    I have iphoto 09.  I would like to export the titles, locations, times and dates, and comments for the photos in an album to a searchable file.  I can't find a simple way to do this.  Please help