HT201304 How do you remove an app? In this case, it was viewed, purchased, free in this case,  downloaded, then removed, but still appears in the purchased section, I do not want the younger kids to see it? There appears to be no remove or hide function?

How do you remove a previously downloaded app, that is now removed, but still appears under purchased?
I have multiple devices on the same account and do not want younger kids to see the app and its icon/description?

You can hide iTunes purchases:
iTunes Store: Hiding and unhiding purchases - Support - Apple

Similar Messages

  • How to avoid the duplicate values, I do not want the duplicate............

    i have one database table called "sms1" that table is updated every day or on daily basis it has the following fields in it:
    SQL> desc sms1;
    Name Null? Type
    MOBILE NUMBER
    RCSTCNATCNATCNATCNAWTHER VARCHAR2(39 CHAR)
    SNO NUMBER
    INDATE DATE
    From this table the is one column "RCSTCNATCNATCNATCNAWTHER VARCHAR2(39 CHAR)" . I am splitting it into different columns like :
    SQL> desc smssplit;
    Name Null? Type
    R VARCHAR2(2 CHAR)
    C VARCHAR2(2 CHAR)
    S VARCHAR2(1 CHAR)
    TC VARCHAR2(3 CHAR)
    NA VARCHAR2(3 CHAR)
    TC2 VARCHAR2(3 CHAR)
    NA2 VARCHAR2(3 CHAR)
    TC3 VARCHAR2(3 CHAR)
    NA3 VARCHAR2(3 CHAR)
    TC4 VARCHAR2(3 CHAR)
    NA4 VARCHAR2(3 CHAR)
    WTHER VARCHAR2(10 CHAR)
    SNO NUMBER
    INSERTDATA VARCHAR2(25 CHAR)
    Now I am written a procedure to insert the data from "Sms1" table to smssplit table...
    CREATE OR REPLACE PROCEDURE SPLITSMS
    AS
    BEGIN
    INSERT INTO scott.SMSSPLIT ( R,C,S,TC,NA,TC2,NA2,TC3,NA3,TC4,NA4,WTHER,SNO)
    SELECT SUBSTR(RCSTCNATCNATCNATCNAWTHER,1,2) R,
    SUBSTR(RCSTCNATCNATCNATCNAWTHER,3,2) C,
    SUBSTR(RCSTCNATCNATCNATCNAWTHER,5,1) S,
    SUBSTR(RCSTCNATCNATCNATCNAWTHER,6,3) TC,
    SUBSTR(RCSTCNATCNATCNATCNAWTHER,9,3) NA,
    SUBSTR(RCSTCNATCNATCNATCNAWTHER,12,3) TC2,
    SUBSTR(RCSTCNATCNATCNATCNAWTHER,15,3) NA2,
    SUBSTR(RCSTCNATCNATCNATCNAWTHER,18,3) TC3,
    SUBSTR(RCSTCNATCNATCNATCNAWTHER,21,3) NA3,
    SUBSTR(RCSTCNATCNATCNATCNAWTHER,24,3) TC4,
    SUBSTR(RCSTCNATCNATCNATCNAWTHER,27,3) NA4,
    SUBSTR(RCSTCNATCNATCNATCNAWTHER,30,10) WTHER, SNO
    FROM scott.SMS1 where SNO=(select MAX (sno) from SMS1);
    END;
    Now in order to update the second table with data from first table on regular basis I have written a job scheduler and I am using oracle 9.0. version...
    DECLARE
    X NUMBER;
    JobNumber NUMBER;
    BEGIN
    SYS.DBMS_JOB.SUBMIT
    job => X
    ,what => 'scott.SPLITSMS;'
    ,next_date => SYSDATE+1/1440
    ,interval => 'SYSDATE+1/1440 '
    ,no_parse => FALSE
    :JobNumber := to_char(X);
    END;
    Now this job scheduler is working properly and updating the data for every one minute but it is taking or updating the duplicate values also ..like example:
    R C S TC NA TC2 NA2 TC3 NA3 TC4 NA4 WTHER SNO
    INSERTDATA
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:49:16
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:49:16
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:50:17
    R C S TC NA TC2 NA2 TC3 NA3 TC4 NA4 WTHER SNO
    INSERTDATA
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:50:17
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:51:19
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:51:19
    R C S TC NA TC2 NA2 TC3 NA3 TC4 NA4 WTHER SNO
    INSERTDATA
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:52:20
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:52:20
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:53:22
    R C S TC NA TC2 NA2 TC3 NA3 TC4 NA4 WTHER SNO
    INSERTDATA
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:53:22
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:54:45
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:54:45
    Now I do not want the duplicate values to be updated ...and want them to ignore them.....
    please I need a help on this query........How to avoid the duplicate values............

    Look at the posts closely:might not be needed if formatted ;)
    create or replace procedure splitsms as
    begin
      insert into scott.smssplit (r,c,s,tc,na,tc2,na2,tc3,na3,tc4,na4,wther,sno)
      select substr(rcstcnatcnatcnatcnawther,1,2) r,
             substr(rcstcnatcnatcnatcnawther,3,2) c,
             substr(rcstcnatcnatcnatcnawther,5,1) s,
             substr(rcstcnatcnatcnatcnawther,6,3) tc,
             substr(rcstcnatcnatcnatcnawther,9,3) na,
             substr(rcstcnatcnatcnatcnawther,12,3) tc2,
             substr(rcstcnatcnatcnatcnawther,15,3) na2,
             substr(rcstcnatcnatcnatcnawther,18,3) tc3,
             substr(rcstcnatcnatcnatcnawther,21,3) na3,
             substr(rcstcnatcnatcnatcnawther,24,3) tc4,
             substr(rcstcnatcnatcnatcnawther,27,3) na4,
             substr(rcstcnatcnatcnatcnawther,30,10) wther,
             sno
        from scott.sms1 a
       where sno = (select max(sno)
                      from sms1
                     where sno != a.sno
                   ); ---------------> added where clause with table alias.
    end;Regards
    Etbin

  • HT201304 how do you delete an app

    Hi,  How do I delete an app. on my i phone

    Touch the app and hold your finger down until all the apps start to jiggle. You will see a circled "x" in the upper left corner. Tap it to delete an app. When done press the Home button.
    You cannot delete any pre-installed iOS app.
    If there is No 'X' on any apps you have Downloaded... then check in Restrictions...
    Settings > General > Restrictions >
    Understanding Restrictions  >  http://support.apple.com/kb/HT4213

  • How do you delete an app on iMac

    How do you delete an app on iMac? I have no problem deleting them on an iPad or iPhone, but the iMac does not have the touch screen. I've tried putting them in the trash, but they won't go away.

    Hi...
    Great little utility you can use to delete not just the app but all the associated files.
    Click here >  Download AppCleaner for Mac - Uninstall your apps easily. MacUpdate.com

  • App updates download and process but still show needs update

    Since 10.5.3 often i'll have app updates and when i select to download them it will download and process but still stay in update available.  I've tried all the standard, restart, logout etc but they are still there.  Like right now Whiteboard Lite is the one hanging.  Then randomly some day it will go through but its kind of annoying.

    Ok...
    ~/Library/Caches/com.apple.appstore
    ~/Library/Caches/com.apple.storeagent
    ~/Library/Preferences/com.apple.appstore.plist
    ~/Library/Preferences/com.apple.storeagent.plist
    ~/Library/Cookies/com.apple.appstore.plist
    Open a Finder window. Select your Home folder in the Sidebar on the left. Now open the LIbrary folder then the Caches folder.
    Move these files to the Trash: com.apple.appstore and com.apple.storeagent
    Now from the same Library folder open the Preferences folder. Move these files to the Trash.
    com.apple.appstore.plist and com.apple.storeagent.plist
    Same Library folder, open the Cookies folder. Move this file to the Trash.
    com.apple.appstore.plist
    If you don't see the com.apple.storeagent files, don't worry about it.
    Restart your Mac. See if that made a difference.
    Message was edited by: Carolyn

  • TS1702 How do you uninstall an app from the IPad? I can find no uninstall feature in settings.

    How do you uninstall an app from an iPad. I cannot find any uninstall feature in settings and no help feature.

    Press on the app and hold until the apps begin to wiggle. Tap on the circled "x" that appears in the upper left corner.
    If you sync with iTunes, then connect the device to your computer and open iTunes. Select the Apps option under the Library heading. Locate the app, select it, then press the Delete key. This removes it completely.

  • HT1386 how do you delete Nike+ app. It will not give me the black 'x' to delete it

    how do you delete Nike+ app. It will not give me the black 'x' to delete it

    Instructions
    1
    Tap the "Settings" app on the iPhone home screen.
    2
    Place a finger on the iPhone screen, and then move it up on the screen to scroll down the screen. Scroll down until you see Nike + iPod. Tap "Nike + iPod."
    3
    Tap the "ON/OFF" toggle to the right of Nike + iPod at the top of the screen until "ON" appears with a blue background.
    4
    Press the "Home" button just beneath the iPhone screen. The Nike + iPod app appears on the iPhone home screen or the next available screen with space for an app.
    Read more: http://www.ehow.com/how_8246915_nike-ipod-app-iphone.html#ixzz2dyhWgNLy

  • How do you get your apps from the i tunes library onto your mac?

    how do you get your apps from i tunes library onto your mac

    You don't.  Apps from iTunes are for iOS devices.  Apps for the Mac come from the Mac app store.  Click the apple >> app store.

  • How do you shut down apps on the 5s?

    How do you shut down apps on the 5s?

    Been asked a thousand times in the past two days... look to your right under "More Like This" for related discussions.   ------->
    Or, take a look at the User Guide

  • How do you pay for apps with credit on your account from an itunes gift card that has already been redreemed and the credit id on the account?

    how do you pay for apps with credit on your account from an itunes gift card that has already been redreemed and the credit id on the account?

    jen19 wrote:
    how do you pay for apps with credit on your account from an itunes gift card that has already been redreemed and the credit id on the account?
    Just buy something.

  • HT4527 I just transferred all my iTunes music, etc. to a new laptop but the iTunes program, itself, is not on the laptop. How do I get it on there so I have a place for my music? Thank you. SandyLyn50

    I just transferred all my iTunes music, etc. from my PC to a new laptop but the iTunes program, itself, is not on the laptop. How do I get it on there so I can put in my music? Thank you so much

    Thank you, this is exactly what I needed to do. I'm in business again! I had thought of doing this, but didn't think my music would automatically transfer into the new iTunes. It did transfer and I updated to the new version and I'm good to go. Thank you again, so very much

  • How do you turn off apps with the iOS 7 update

    how do you turn off apps with the iOS 7 update

    Double tap the home buttons and swipe upwards on the preview of the App (not the App Icon).

  • HT4623 how do you close off apps with the new software update?

    How do you close out apps with the new software update on iphone? I cannot x out of them.

    Double tap the home buttons and swipe upwards on the preview of the App (not the App Icon).

  • How do you delete a app on the ipad when your not using it?

    How do you delete and app on your ipad when you don't want it?

    or just tap and hold the app icon on iPad and when it starts jiggling/shaking press the x on the top left corner of the app.to delete. When done :
    Press the home button to return to non- jiggling status

  • How do you clear updated apps from the App Store

    How can you clear updated apps from the list in App Store?

    What do you mean by "clear"?
    Have a look here: iOS 8: App Store Updates Do Not Clear
    If it is the badge count that does not fit, it might be that iTunes is the cause (12.0.1.26).

Maybe you are looking for

  • 'services for object' button - menu items have to be grayed out

    Hi All, in Ecc6.0, in IW32 tcode,  left to the title bar there is an icon 'Services for Object' using which we can create new atatchments. My requirement is, based on a screen field value, that creating attachment and other options have to be grayed

  • How to include body of the mail along with attachment using the below FM

    Hi All, I am using the FM 'SO_NEW_DOCUMENT_ATT_SEND_API1' to generate an e-mail with excel file as attachment. Can you please  let me know how to include body of the e-mail along with this attachment. Thanks & Regards Gowthami

  • Help! JDBC Weirdness...

    Hi I'm using the Forte CE. I'm trying to make a connection to a MySQL dB (but the results are the same regardless of the dB & driver I use). Using the Runtime Explorer for databases I can connect to the dB server, database itself & query the tables &

  • [solved] HAL fails repeatedly..

    My HAL is failing on every boot and if I try to start it manually: [shane@Shane-Arch log]$ sudo /etc/rc.d/hal start :: Starting Hardware Abstraction Layer [FAIL] Also... there is something else failing on boot, but it goes too fast.  I can't seem to

  • Has anyone tried the BlueConnect service installed in Hyundai vehicles

    I have a 2008 Tucson from Hyundai with a factory installed BlueConnect system. I want to buy a 3g and wondering if people are having the same difficulty as the UConnect systems? Im currently using a Windows Mobile phone that works fine and I use it a