How do I get information about filing a claim for kids purchases

How can I get information about making a claim for kids unauthorized purchase?

I have seen nothing formal from Apple though I have read they are open to discussions about the matter.
If it is an individual instance, there is a  section on the purchase receipt that invites you to report a problem   Report the purchase and the circumstances.
However, if it is a recurring problem you would have been expected to utilize the parental control features.

Similar Messages

  • How do I get information about new legal requirements?

    Hi
    We are 4 people in a company that has 39 active company codes in about 25 countries. How can we subcribe to whenever SAP releases new reports that meets legal requirements in specific countries? Some of our companys have their bookkeeping taken care by a neighboring country, so the bookkeepers would not know if there is a new report released from SAP. So how can we get information about new reports without having to read throug all the release documentation?
    Hope you can help
    Jens Bald
    IC Companys
    Denmark

    Hello Jens,
    this is a real problem.
    What is my experience? The first priority is: try to use the SAP Standard as far as possible. No user-defined reports, no exits. Try to be always up to date with hotpackages.
    A further help for me are the userforums here. If you have five minutes left, just have a look at all the questions and answers.
    I know, there is a lot of stuff to read, but the releasenotes have to be checked. Unhappily I didn't find another way.
    Sometimes SAP reacts just in time regarding new legal requests - and I can understand this. At least I have to say: It is not possible to manage this without having any support from the accountancy side. This enables you to search for this requests - instead of reacting.
    If a country changes statutory requests regarding taxreporting or new taxtypes, changing of rates the guys from local accountancy ought give you a hint. Because they get this information at first.
    I made good experiences with internal accounting forums or user groups (i. e. northern countries, westeurope, USA, southeurope). 
    Maybe it gives you a little help and I am very interested in all the answers to this thread.
    Best regards
       Horst

  • How can I get informations about PATH variable ?

    I have a programme installed on my computer and I need informations about its path. For example I can get Java home path like this:
    System.getProperty("java.home");, but how can I do that for my programme.
    If you know another way I can do this please let me find out.
    Thanks !

    To sergey35:
    Thanks! This work very well.
    Now I want to launch an application from java, but I don't know how can I test if my application exists (is installed).
    For example if I want to launch winamp or any other application, but how can I verify if my application exists indeed. The end user isn't interested if my application really exists. He push a button and he wants to launch that application. If it doesn't exists I have to notify through a message this fact. And most difficult I think is to know exactly the path where is installed that application.
    If anyone can help me with documentation or suggestions please reply to this thread.
    Thanks!

  • How do i get information about a business object?

    By using reflection i am able to get the list of objects and properties in SAPbobsCOM.BoObjectTypes.
    How can i get a classified list of all objects from the same.
    I mean classified with respect to modules.
    DI API business objects are grouped to the following modules of SAP Business One application :
    Administration
    Finance
    Marketing Documents and Receipts (Sales - A/R and Purchasing - A/P)
    Business Partners
    Inventory and Production
    MRP
    Banking
    Service
    Humanresource

    Hello
    If you read more in the help, you can see which modules holds the corresponding objects...
    Example:
    Marketing Documents and Receipts (Sales - A/R and Purchasing - A/P)
    object called: documents and you may track the correct object types (oOrders, oInvoices, etc)
    if you see the help on Documents object, you can find detailed description there
    Regards
    János

  • How do I get information about items in a collection via REST API?

    Hi There -
    I am trying to get information, specifically the last comment date, for each item in a collection. I am trying to do this with the REST API. I have tried the following approaches:
    /v1/activities/{activity id}/items - This API does not appear to return the items in the colleciton. I get the collection item in the returned XML, but not the items in the collection.
    /v1/items/{item id} - I tried using this API with the collection item id, but it does not provide details for the items contained in the collection.
    I would ideally like to be able to use an API to get a list of all of the items in a collection, then go over that list to get the most recent comment and comment date in the item.
    Any help is appreciated. Code examples are API descriptions would be great.
    Thanks and regards,
    Rob Stevenson

    Hi Robert,
    /v1/items/{item-id}/item_data with {item-id} being the ID of the collection item should return an XML containing the item IDs of the items in the collection.
    In a second step you can call /v1/items/ with the items IDs of the items in the collection. This should get you the meta data.
    Regards,
      Rüdiger

  • How do i get information about my dreamweaver account?

    my computer has been trashed by a hacker.  all programs unworking, a lot of my other info not available.  i need to get info from adobe about my account or accounts with them.

    Go to https://www.adobe.com/account.html and log into your account.
    You can check/change subscriptions, check registered products, etc from there after you log in.
    What are you looking for in particular?

  • How do we get information about successfull mail delivery?

    Hi,
    As we know notification will reach worklist and as well as mail if notification mailer is configured properly...?But How do we confirm about successfull mail delivery...?
    We need to find out whether mail has sent or not along with work list notification...Any Backend table like Wf_notification will help..?Any Table which lists about mail delivery..?

    You can check whether the notification has sent or not by querying the wf_notifications table for that particular notification id.
    The mail_status column in wf_notifications table shows the whether the email has sent already, will be sent or cannot sent.
    MAIL_status -> SENT -- means email notification has been sent already
    MAIL_status -> MAIL -- means email notification yet to be sent
    MAIL_status -> null (empty -- means email notification will not be sent to the recipient email
    In order to receive email notification the recipient should have proper email address set and notification preference should be MAIL* i.e MAILHTML, MAILTEXT, MAILATTH, MAILHTM2...etc

  • HT204088 how can I get information about getting credit toward a purchase of a new ipad by turning in an existing one/

    Can I trade the iPAD 3 G that I have towards the purchase of a mini retina

    You can either use Apple's recycling program if they offer that in your country or sell it to someone other than Apple.
    (103987)

  • How can I obtain information about the recently finished commands?

    How can I get information about the recently finished jobs / bash commands? (eg. date / time of termination)

    $ e echo foo
    foo
    $ type e
    e is a function
    e ()
    $@ && echo $@ - $(date) >> test.txt
    $ cat test.txt
    echo foo - Wed Jan 1 12:10:54 CET 2014
    $ e echo bar
    bar
    $ cat test.txt
    echo foo - Wed Jan 1 12:10:54 CET 2014
    echo bar - Wed Jan 1 12:11:09 CET 2014
    $ e htop
    <here I do something with htop for a little while>
    $ cat test.txt
    echo foo - Wed Jan 1 12:10:54 CET 2014
    echo bar - Wed Jan 1 12:11:09 CET 2014
    htop - Wed Jan 1 12:15:14 CET 2014
    Last edited by karol (2014-01-01 11:20:36)

  • How to get information about creation of a virtual machine on a Hyper-v host.

    Hi,
    How to get information about creation of a virtual machine on a Hyper-v host?
    I need: host name, time created, creator user.
    I saw in Hyper-V-VMMS but I found info about movements of VM between hosts.
    Thank's in advance.
    Denius Valiant

    For Host Name * Created Time Use This Command In PowerShell 
    Get-VM -Name (Read-Host "Type Your Vm Name") |select CreationTime , ComputerName
    and for Create User , As i know you should see on Event Log . 
    Go To Event Log Viewer--->Applications And Services Logs--->Microsoft--->Windows--->Hyper-V-VMMS--->Operational 
    You can see in Event Log who create the Vm.
    Whenever you see a helpful reply, click on Vote As Helpful & click on
    Mark As Answer if a post answers your question.
    LinkedIn:
      Facebook:
      

  • Within redbox I can not click on a movie and get information about it, instead I get an error message that says that the situation may be temporary. yet i keep having the same problem. Do you have any idea how to fix the problem?

    Within redbox I can not click on a movie and get information about it, instead I get an error message that says that the situation may be temporary. yet i keep having the same problem. Do you have any idea how to fix the problem?

    Did you delete all receipts with iDVD in the file name  with either a .PKG or .BOM extension that reside in the HD/Library/Receipts folder and from the /var/db/receipts/  folder before installing the new copy?  If not then do so and delete the new application also.
    Click to view full size
    Then install iPhoto from the disk it came on originally and apply all necessary updaters: Apple - Support - Downloads
    OT

  • HOW TO GET INFORMATION ABOUT THE CLIENT MACHINE AT DATABASE LEVEL

    HOW TO GET INFORMATION ABOUT THE CLIENT MACHINE AT DATABASE LEVEL USING 10g Database and 10g Application Server
    we have developed an application using oracle forms 10g with
    oracle database 10g and Application server 10g
    Application uses a single Oracle User name to connect to database
    where as at Application level there are different users (these are not database users)
    Now how can we get the information about the user/his machine etc. at database level. earlier in 6i/8i we use to get by using
    USERENV('TERMINAL')
    we had written a triggers on tables on Insert/Update where we used to update a database field Last user terminal with USERENV('TERMINAL')
    but not this information is comming to be the machine name of application server where as we wish this to be the machine name of Client. Any Way outs
    thanks
    Chaand Kackria

    hi, you can use the sys_context function, like this:
    select sys_context('userenv','current_user'),
         sys_context('userenv','os_user'),
         sys_context('userenv','host'),
         sys_context('userenv','ip_address'),
         sys_context('userenv','instance'),
         sys_context('userenv','sessionid'),
         sys_context('userenv','terminal')
    from dual;
    Is this what you 're looking for?

  • How to get information about cursor? I had only a reference on it.

    Hello
    How to get information about cursor, that I receive in my procedure as a reference. For example I need to know, a number of columns. I know nothing about this cursor, except the link on it.
    Best Regards, Kostya Proskudin!

    However, I would seriously reconsider what you are trying to achieve.
    It looks like you are trying to write some ultimately generic cursor processor. i.e. pass any cursor and process it in some generic way.
    Good design should include knowledge of what is expected to be passed and that knowledge can be put into the code.
    Generic code is inherently difficult to maintain and debug and will never 100% deal with all possible situations e.g. even if you know the table being queried in the cursor you can't rely on the data dictionary to give you all the returned columns if some of the returned columns of the cursor are computed columns.
    Be careful you aren't writing something that's going to cause problems later.

  • How to get information about limitation Internal Memory on device

    hallo ..
    have some question here, so please some person able to answer my questions 
    1. How to get Information about limitation internal memory on device 
    2. is possible to improve internal memory on Blackberry ( move apps on external memory )
    3. any tools to get internal memory activity ?
    thanks for this people who joins here, hope we can share more information about blackberry .. 

    In addition...
    There are three types of potential memory on a BB: 1) Application Memory, 2) Device Memory, and 3) Media/SD Card Memory.
    Application Memory -- This is the most crucial; it is the protected (not user accessible), dedicated, and fixed (in size) space that is available as the destination for the installation of applications (plus some application storage, overhead and such). You cannot touch AppMemory. You cannot improve the maximum AppMemory that your BB has. It is what it is. Applications can only install here...there is no option.
    Device Memory -- This is space on your BB that you can touch to store files, pictures, media, etc. Typically, it is not terribly large, but it is available to you.
    SD/Media Card Memory-- This is what it says...your SD card, for you to store files, media, pictures, etc. It can be as large as your BB OS can support...see this KB:
    KB05461MicroSD card sizes supported by the BlackBerry device software
    On some devices/OS levels, you can only see "File Free" (Options > Status), which I think is equivalent to AppMemory. On other devices, you can see all three memory usage levels (Options > Memory). Here are some guidelines to use:
    KB02843What is the Low Memory Manager feature on the BlackBerry smartphone
    KB14320How to maximize free space and battery power on the BlackBerry smartphone
    KB14213Call logs, SMS text messages, and email messages are deleted from the BlackBerry smartphone
    Lastly, it is always important to properly close applications when you are done with them. Using the Back or the Red key will not do this -- those leave it to the app to decide what to do...and some will leave themselves resident in memory, consuming resources on your BB, slowing the overall performance. Rather, to close an app, press and select "Close" or "Exit"...that will force the application to be closed, freeing up for your new use the resources it was consuming. Some apps will always remain running (typically -- BBMessenger, Browser, Homescreen, Phone, and Messages)...but, you should still close them properly - especially the Browser...if it is left on an active web page, it will not only consume extra resources but battery power as well.
    Further, anytime random strange behavior or sluggishness creeps in, the first thing to do is a battery pop reboot. With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes. See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure. Some have taken to doing this on a regular basis as a preventive measure...some as frequently as once per day. Others have obtained the QuickPull app to automate a simulated Batt-Pull.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Can I get information about client DNS from GSS?

    Can I get information about the client's DNS request and which Data Center was choosed for this request? How long these informations are stored in GSS? Can I change this settings?
    Thank you.

    Following link will give you good start
    http://www.cisco.com/application/pdf/en/us/guest/netsol/ns378/c649/cdccont_0900aecd80122a78.pdf
    Its a two year old document but gives a good overview.
    For details visit
    http://www.cisco.com/en/US/products/hw/contnetw/ps4162/tsd_products_support_configure.html
    Syed

Maybe you are looking for

  • Blocks/lines of background color show through embedded SWF

    When I place a swf object in Muse, I've found that blocks and lines of the background color will appear and disappear around the edges of animated elements. I've confirmed this is not an issue with the SWF as they play normally if embedded using drea

  • Undefined VARIABLE in FORM

    Dear All, Another post with a classic "undefined <VARIABLE> in FORM" error message I'm afraid. I don't think this is the usual problem of scoping however or form not submitting the data. Basically I've checked and triple checked the file with the <cf

  • Hook up to HDTV

    I have a black MacBook (I got it right before they stopped selling the black ones).  So I bought a Mini-DVI to HDMI and the proper cables to hook up the HDMI end to the HDMI on my Panasonic 32" but nothing is happening.  I have tried turning off both

  • Error in executing command

    Hello, I am trying to execute nqcmd command in unix envt throgh putty to purge cache but it giving me following error....I went through blog, but its not much helpful. I new to unix: below is the error exec(): 0509-036 Cannot load program nqcmd becau

  • What version of Firefox do I use with MacBook OS 10.4.11 a lightening storm crashed my system and I'm having trouble reloading firefox

    I have tried to download all listed versions of firefox on your page and they all say my system won't support them. It worked for years I don't understand? [email protected]