HT1819 Podcasts used to, but no longer shows up in iTunes. Have been accepted.

Hi. I have a podcast that has a working RSS feed that used to show up when you searched in iTunes but no longer does. It was accepted by Apple and showed up in the iTunes podcasts, but now it's not there. I can't figure out why it would disappear. Does anyone have any ideas of what I can do to get it to show back up in iTunes? When I tried to re-submit it, I get a message that says "this podcast has already been submitted."

Also, if I know I've seen a particular movie on iTunes that's no longer available, what's the best way to contact Apple, Inc. to make the movie available so, I may purchase it?  Thanks again to anyone who may be able to help.

Similar Messages

  • OAF, View object used with the clausule setWhereClause, show the error  not have been properly initialized.

    Hi to all,
    I'm new with oaf and in mi AM i have to VO that I use to find relative information to the one is shown to the user on a query region, after the user pressed the go buton  the CO request the AM tho load both VO and those information are used to show in a popup region to display and update. the main problem is when the popup region closes it send a submit to the server an the error "View object may not have been properly initialized during Update." is displayed
    The main page and the popup uses the same AM, the initM2mVo() and initTavleVo() are  called by the CO at the processRequest of the main PG, the popup dosen´t have a CO.
    This the AM that uses the main PG and the popup region
    package tasc.oracle.apps.tasc.m2m.imei.server;
    import oracle.apps.fnd.framework.OAViewObject;
    import oracle.apps.fnd.framework.server.OAApplicationModuleImpl;
    import oracle.apps.fnd.framework.server.OAViewObjectImpl;
    import oracle.jbo.Row;
    import oracle.jbo.ViewObject;
    // ---    File generated by Oracle ADF Business Components Design Time.
    // ---    Custom code may be added to this class.
    // ---    Warning: Do not modify method signatures of generated methods.
    public class ActualizarImeiAMImpl extends OAApplicationModuleImpl {
        /**This is the default constructor (do not remove)
        public ActualizarImeiAMImpl() {
        /*******************************USE FOR CUSTOM CODE****************************/
         * Inicializa el vo a través del cual se ejecutara la actualización del IMEI.
         * @param taskNumber
        public void loadImeiVo(String taskNumber) {
            OAViewObject voTableQry = getTableQryVO1();
            if (voTableQry != null) {
                voTableQry.reset();
                voTableQry.setWhereClause(null);
                voTableQry.setWhereClauseParams(null);
                voTableQry.setWhereClause("TASK_NUMBER = :1");
                voTableQry.setWhereClauseParam(0, taskNumber);
                voTableQry.executeQuery();
                if (voTableQry.hasNext()) {
                    voTableQry.next();
                    String idActuacion =
                        (String)voTableQry.getCurrentRow().getAttribute("IdActuacion");
                    String dsM2m =
                        (String)voTableQry.getCurrentRow().getAttribute("DsM2m");
                    String imei =
                        (String)voTableQry.getCurrentRow().getAttribute("Imei");
                    if (idActuacion != null) {
                        OAViewObjectImpl m2mVo = (OAViewObjectImpl)this.getTascTransEqInstM2mVO1();
                        m2mVo.reset();
                        if (!m2mVo.isPreparedForExecution()) {
                            m2mVo.setMaxFetchSize(0);
                            m2mVo.executeQuery();
                        m2mVo.setWhereClause(null);
                        m2mVo.setWhereClauseParams(null);
                        m2mVo.setWhereClause("ID_ACTUACION = :1 AND DS_M2M = :2 AND IMEI = :3 ");
                        m2mVo.setWhereClauseParam(0, idActuacion);
                        m2mVo.setWhereClauseParam(1, dsM2m);
                        m2mVo.setWhereClauseParam(2, imei);
                        m2mVo.executeQuery();
                        if(m2mVo.hasNext()){
                            m2mVo.next();
         * Carga los valores disponibles de IMEI según el taskNumber al cual pertenezca
         * el  IMEI seleccionado.
        public void loadImeiValuesList(String taskNumber) {
            ViewObject viewobject = this.getImeiListVO1();
            OAViewObject voTableQry = getTableQryVO1();
            if (voTableQry != null && voTableQry.getCurrentRow() != null) {
                String imeiType =
                    (String)voTableQry.getCurrentRow().getAttribute("Attribute17");
                if (viewobject != null & imeiType != null) {
                    viewobject.setWhereClause(null);
                    viewobject.setWhereClauseParams(null);
                    viewobject.setWhereClause("TASK_NUMBER = :1 AND ATTRIBUTE17 = :2");
                    viewobject.setWhereClauseParam(0, taskNumber);
                    viewobject.setWhereClauseParam(1, imeiType);
                    viewobject.executeQuery();
        /*******************************USE FOR CUSTOM CODE****************************/
        /**Container's getter for TableVO1
        public OAViewObjectImpl getTableVO1() {
            return (OAViewObjectImpl)findViewObject("TableVO1");
        /**Sample main for debugging Business Components code using the tester.
        public static void main(String[] args) { /* package name */
            /* Configuration Name */launchTester("tasc.oracle.apps.tasc.m2m.imei.server",
                                                 "ActualizarImeiAMLocal");
        /**Container's getter for TascTransEqInstM2mVO1
        public OAViewObjectImpl getTascTransEqInstM2mVO1() {
            return (OAViewObjectImpl)findViewObject("TascTransEqInstM2mVO1");
        /**Container's getter for ImeiListVO1
        public OAViewObjectImpl getImeiListVO1() {
            return (OAViewObjectImpl)findViewObject("ImeiListVO1");
        /**Container's getter for TableQryVO1
        public OAViewObjectImpl getTableQryVO1() {
            return (OAViewObjectImpl)findViewObject("TableQryVO1");
    this is the CO of the main PG
    /*===========================================================================+
    |   Copyright (c) 2001, 2005 Oracle Corporation, Redwood Shores, CA, USA    |
    |                         All rights reserved.                              |
    +===========================================================================+
    |  HISTORY                                                                  |
    +===========================================================================*/
    package tasc.oracle.apps.tasc.m2m.imei.webui;
    import java.io.Serializable;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.TransactionUnitHelper;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.webui.beans.layout.OAQueryBean;
    * Controller for ...
    public class ActualizarImeiCO extends OAControllerImpl {
        public static final String RCS_ID = "$Header$";
        public static final boolean RCS_ID_RECORDED =
            VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
         * Layout and page setup logic for a region.
         * @param pageContext the current OA page context
         * @param webBean the web bean corresponding to the region
        public void processRequest(OAPageContext pageContext, OAWebBean webBean) {
            super.processRequest(pageContext, webBean);
            //get the handle to AM Attached to our Simple Page Region MainRegionRN
            //The page is passed as parameter to this method, hence we can get handle
            //to the AM quite easily
            OAApplicationModule am = pageContext.getApplicationModule(webBean);
            //verifica si la transaccion de creacion esta activa todavia
            if (TransactionUnitHelper.isTransactionUnitInProgress(pageContext,"ActualizarImeiM2m", false))
                // deshace cambios y finaliza Txn
                am.invokeMethod("rollback");
                TransactionUnitHelper.endTransactionUnit(pageContext, "ActualizarImeiM2m");
         * Procedure to handle form submissions for form elements in
         * a region.
         * @param pageContext the current OA page context
         * @param webBean the web bean corresponding to the region
        public void processFormRequest(OAPageContext pageContext,
                                       OAWebBean webBean) {
            super.processFormRequest(pageContext, webBean);
            //get the handle to AM Attached to our Simple Page Region MainRegionRN
            //The page is passed as parameter to this method, hence we can get handle
            //to the AM quite easily
            OAApplicationModule am = pageContext.getApplicationModule(webBean);
            //Detección del botón go de la región de query.
            this.queryButonGO(pageContext, webBean, am);
            this.updateImei(pageContext, am);
         * Detección del botón go de la región de query
         * @param pageContext
         * @param webBean
         * @param am
        public void queryButonGO(OAPageContext pageContext, OAWebBean webBean,
                                 OAApplicationModule am) {
            OAQueryBean queryBean =
                (OAQueryBean)webBean.findIndexedChildRecursive("QueryRN");
            String idGo = queryBean.getGoButtonName();
            if (pageContext.getParameter(idGo) != null) {
                String tareaId = pageContext.getParameter("TaskNumberLovInput");
                //Inicializa el vo a través del cual se ejecutara la actualización del IMEI.
                Serializable[] parameters2 = { tareaId };
                Class[] paramTypes2 = { String.class };
                am.invokeMethod("loadImeiVo", parameters2, paramTypes2);
                //Carga los valores disponibles de IMEI según el taskNumber al cual pertenezca  el  IMEI seleccionado.
                Serializable[] parameters = { tareaId };
                Class[] paramTypes = { String.class };
                am.invokeMethod("loadImeiValuesList", parameters, paramTypes);
        public void updateImei(OAPageContext pageContext, OAApplicationModule am){
            if (pageContext.getParameter("ActualizarImei") != null){
                String imei = pageContext.getParameter("ImeiPopup");
                //TODO......
    thanks to all.

    I thing I got the problem.
    I have the following configuration:
    One Main Page and external RN that is call as popup in main page
    2 VO, queries by java code, one to capture some information that is used to query the 2 VO that I use to update information by the popup.
    One AM that is map only in the Main Page. (Initially I had the external RN mapped to same AM as the main PG, but I remove it).
    The solution was remove the mapping of the AM from the external region and in the messageimput of the external region set the View instance and view Attribute manually in this fields (http://screencast.com/t/uDTALEedCh do not use the wizard ) as the one instanced am the AM, so the problem it seem that was that defining an AM to the external region create a new instance, causing that it can not see the information that I load manually in the VO by query it them.
    for this case there is not need to use the next code, because the Rows are load with information by the query in the java code, this only will have to be made when inserting a new row .
        public void initM2mVo(){
            //get a handle to the View Object that we wish to initialize
            OAViewObject vo = (OAViewObject)this.getTascTransEqInstM2mVO1();
            if (!vo.isPreparedForExecution()) {
                vo.setMaxFetchSize(0);
                vo.executeQuery();
            //Create a blank Row
            Row row = vo.createRow();
            //Attach that blank row to the VO. Data will be fed into this row, when the user types into the fields
            vo.insertRow(row);
            //Set the status of the blank row to initialized. This tells OA Framework that record is blank and must not be included in DML
            //Operations until    changes are made to its underlying VO [via screen fields]
            row.setNewRowState(Row.STATUS_INITIALIZED);

  • I am using a macbook pro with system 10.6.8. I just discovered that no recent files have been backed up to the external disk using Time Capsule.  There is a long list of backups including most recent but no recent files, for some weeks, have been backed u

    I am using a macbook pro with system 10.6.8. I just discovered that no recent files have been backed up to the external disk using Time Capsule.  There is a long list of backups including most recent but no recent files, for some weeks, have been backed up.  I did a full reset of Time Machine.  I disconnected the external drive and reconnected it. It is not a matter of file types, no files and no folders have gotten backed up.  Everything looks normal though unless one goes hunting for recent files on the back up.

    Many thanks.
    With those symptoms, I'd try the following document:
    Apple software on Windows: May see performance issues and blank iTunes Store
    (If there's a SpeedBit LSP showing up in Autoruns, it's usually best to just uninstall your SpeedBit Video Accelerator.)

  • TS1814 Most of the songs on my iPod Classic no longer dshow up on iTunes on my laptop.  I deleted iTunes & installed the latest version but this did not change anything.  For example on 1 playlist I have 66 songs but only 1 shows on the iTunes screen.  Th

    Most of the songs on my iPod Classic no longer show up on iTunes on my laptop.  I deleted iTunes & installed the latest version but this did not change anything.  For example on 1 playlist I have 66 songs but only 1 shows on the iTunes screen.  Thanks you for any help.

    See Empty/corrupt iTunes library after upgrade/crash or
    Recover your iTunes library from your iPod or iOS device.
    tt2

  • I downloaded Dreamweaver CC 2014.1, started using it but cannot find Show Fluid Grid Layout Guides button, Resize LI.link sizing handle and 'move up a Row' arrow. Where can I find them?

    I downloaded Dreamweaver CC 2014.1, started using it but cannot find Show Fluid Grid Layout Guides button, Resize LI.link sizing handle and 'move up a Row' arrow. Where can I find them?

    You have the latest version (CC 2014.1 or 2014.1.1) in which the interface condenses Design View with Live View buttons in normal layouts.  See screenshot.
    However, in FGLayouts, Live View is the only option which poses some editing problems and has been highly criticized.
    Is there any way to display the Design View in fluid grid pages?
    New Features in CC 2014.1 October Release
    http://helpx.adobe.com/dreamweaver/using/whats-new.html
    New Features in CC 2014.1.1 February Release
    https://helpx.adobe.com/dreamweaver/using/whats-new.html#Enhancements%20to%20Live%20View%2 0editing
    You can disable this restriction by adding an X to the FGLayout CSS.
        Dreamweaver Fluid Grid Properties
        dw-num-cols-mobile:      X 4;
        dw-num-cols-tablet:        8;
        dw-num-cols-desktop:    12;
        dw-gutter-percentage:    25;
    =====================================
    Having said that, it might just  be simpler to revert to an earlier version.  Log-in to Creative Cloud Desktop app.  Go to Filters & Versions > Previous Version.  See screenshot.
    Nancy O.

  • I am unable to send to an address that I have been using for a long time. All aspects have been investigated but with no solution ,has anyone encountered this problem before?

    I am unable to send to an address that I have been using for a long time. All aspects have been investigated but with no solution ,has anyone encountered this problem before?

    Hi Eric,
    The message seems to totally disappear. It is going to an AOL customer in UK. I changed their address to start with a lowercase letter & the message was returned to me by AOL as undeliverable, I then changed the first letter of the address beck to upper case, the same I have been using for years, but again it disappeared.
    I appreciate any help you can give me. Tks Gord.

  • I am using ical but it only show up on my power book.  Nothing shows upon either my or my wife's iPhone.

    I am using ical but it only show up on my power book.  Nothing shows upon either my or my wife's iPhone.  We are syncing with iCloud.  This is VERY VERY frustrating!!!

    Do changes you make in iCloud on your Mac turn up in the calendar at icloud.com? Are the iPhones running iOS5. and if so is iCloud correctly set up there? -
    http://www.apple.com/icloud/setup/

  • Aple tv no longer showing up in iTunes

    Anyone know why my 1st generation AppleTV's (2) are no longer showing up in itunes?  I used to be able to see them and could tell when they are syncing.  Now they no longer dowload content either.
    Thanks!

    Welcome to the  Discussion Forums
    jimbo1168 wrote:
    I went to settings on Apple TV and tested the network, which was o.k.
    How exactly did you do that
    Apple TV is connected through an ethernet connection to a Linksys router. Apple TV no longer shows up in Itunes.
    Have you tried restarting all your equipment, has anything anywhere on your set p changed.
    An aside question relating to Itunes: In my movie library, to the left of the movie name, a circle sometimes appears. Some movies have no circles. Some of the circles which appear are solid blue, some are half blue/half white. What do these circles and color codes mean? thanks
    A blue circle indicates you haven't yet watched it, a half blue circle that you have started to watch it but didn't finish it.

  • How Come My iPhone 3G No Longer Shows Up in iTunes?

    All of a sudden my iPhone doesn't show up in the iTunes sidebar on my 20" iMac, but using the same cable it does on my MacBook. I have tried plugging it in diretly to the iMac as well as to my Belkin hub, but it no longer shows up in iTunes, nor does it charge when plugged it. The iPhone stays dark when first pluged in.
    Does anyone know why when plugging in the iPhone 3G or my iPod Classic (old school) it won't load on the side bar of iTunes? It is like it does not exist. I have done all updates. I restarted my computer a couple of times and finally got the iPod Classic to load but still the iPhone 3G shows nothing. It won';t even boot my phone up to charge it but will the iPod.
    I use the iPhone on my MackBook with the same cord and it loads to iTunes and starts to sync. Same with the iPod. Both computers are running the same software. Since it works on the MacBook and use to work on then iMac G5 I am thinking it may have something to do with the updates for iTunes. I use the MacBook to charge the iPhone and iPod sometimes but the main computer for syncing is the iMac. Only nothing seems to work. After restarting the iMac several times the iPod seems to work then not work. I am frustrated. Any help would be greatly appreciated.
    Thanks!

    hi John, i have my doubt that it has something to do with authorization/deauthorization. I have read somewhere before that the iPhone (not sure about iPod) can only be "paired" with one mac and if you want to synch it with another one, you need to deauthorize the initial one first. Inside iTune up on its menu bar under Store, there are 2 options that said authorize and deauthorize. Now i haven't tried this before as i only got myself one mac, so i have no past experience here with this particular case. May be some other experienced users can shed some light on this and share with us, before you try out?

  • Remote speakers no longer show up in iTunes

    I have recently had to send my DVD/surround-sound into the shop for repair. It used to play iTunes through Airport Express fine, but now I've tried hooking Airport up to both my TV and another stereo, but in both cases remote speakers no longer show up in iTunes. I've tried reconfiguring Airport Express, and have got 'look for remote speakers' checked in iTunes prefs, bit to no avail...can anyone help me?
    Also, on a related note, last time I had probas, I chatted with a support guy online somewhere on Apple.com but I can't seem to find this anymore...anyone know where it's gone?

    I had the same problem. I was using iTunes 7.0.2 with two Airport Express devices and it worked fine when the Bonjour service was running at the same time.
    After I upgraded to iTunes 7.1 I was unable to connect to my Airport Express devices unless I disabled\stopped the Bonjour service. :-/
    While disabling the Bonjour service is a workaround for iTunes, it breaks other 3rd party apps that use the Bonjour service to stream to the Airport Express devices. I have a WinAmp plugin that allows me to stream WinAmp to my Airport devices that doesn't work when the Bonjour service is turned off.
    I hope Apple fixes this problem ASAP. I hope Apple didn't do this to intentionally to defeat 3rd party apps that figured out how to stream to an Airport Express.

  • AppleTV no longer shows up in iTunes after Snow Leopard security update?

    I just installed the latest security update for Snow Leopard and now my AppleTV no longer shows up in iTunes. I don't know for sure if the security update is actually the cause, but I was able to connect not even an hour earlier in the evening.
    Anyone else seeing this behaviour? I've power cycled the ATV, along with my router with no change.

    Could be the same problem others are having with latest version of iTunes. See this thread:
    http://discussions.apple.com/thread.jspa?threadID=2403159&tstart=0

  • Apple TV no longer showing up in Itunes

    I went to settings on Apple TV and tested the network, which was o.k. Apple TV is connected through an ethernet connection to a Linksys router. Apple TV no longer shows up in Itunes. An aside question relating to Itunes: In my movie library, to the left of the movie name, a circle sometimes appears. Some movies have no circles. Some of the circles which appear are solid blue, some are half blue/half white. What do these circles and color codes mean? thanks

    Welcome to the  Discussion Forums
    jimbo1168 wrote:
    I went to settings on Apple TV and tested the network, which was o.k.
    How exactly did you do that
    Apple TV is connected through an ethernet connection to a Linksys router. Apple TV no longer shows up in Itunes.
    Have you tried restarting all your equipment, has anything anywhere on your set p changed.
    An aside question relating to Itunes: In my movie library, to the left of the movie name, a circle sometimes appears. Some movies have no circles. Some of the circles which appear are solid blue, some are half blue/half white. What do these circles and color codes mean? thanks
    A blue circle indicates you haven't yet watched it, a half blue circle that you have started to watch it but didn't finish it.

  • I have an older iPod that no longer shows up in iTunes or appears to be charging.  When I press the Menu and Select buttons, the Apple logo appears and then an icon of a battery with an exclamation point.  Is it dead for good?

    I have an older iPod that no longer shows up in iTunes or appears to be charging.  When I press the Menu and Select buttons, the Apple logo appears and then an icon of a battery with an exclamation point.  Is it dead for good?

    If it is otherwise working, you can change the battery.  If you want to do it yourself, you can buy the part on eBay and other online sources.  Just make sure you know the type of iPod you have so that you get the right part.
    http://support.apple.com/kb/HT1353
    There are online guides, including the ones on this web site
    http://www.ifixit.com/Device/iPod
    (Note:  Most replacement batteries come with plastic/nylon tools seen in the guides.)
    You can also have a repair business do the work.
    If it is just the battery, if you do a Reset (using the Menu and Select buttons) while it is connect to your computer, I think it should still be recognized by iTunes.

  • HT2953 I have an hp dvd ram gh60L DVD Drive. It shows up in Windows Explorer (Windows 7), but doesn't show up in itunes.  Can someone suggest a fix, please?

    I have an hp dvd ram gh60L DVD Drive. It shows up in Windows Explorer (Windows 7), but doesn't show up in itunes.  Can someone suggest a fix, please?

    Hello b0nvivant,
    Thank you for providing so much information about the iPod issue you are experiencing.  I found an article with steps to take when your iPod is recognized in Windows Explorer but not in iTunes:
    iPod: Appears in Windows but not in iTunes
    http://support.apple.com/kb/TS1363
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • I have 2 apps that have been waiting to update for a week.  I don't really care about the update, I would just like to use them, but the are stuck waiting.  I have tried powering down, syncing with my computer...all fails.  Any ideas?

    I have 2 apps that have been waiting to update for a week.  I don't really care about the update, I would just like to use them, but the are stuck waiting.  I have tried powering down, syncing with my computer...all fails.  Any ideas?

    At this point you have no choice but to update the or delete them and reinstall them since you wont be able to use them until they update - or come out of the "waiting" loop.
    Make sure that you do not have a stalled download in iTunes - a song or podcast .... if you have a download in there that did not finish, complete that one first. Only one thing can download at a time on the iPad so that could be what is causing the problem.
    If that doesn't work - sign out of your account, restart the iPad and then sign in again.
    Settings>Store>Apple ID. Tap your ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Go back to Settings>Store>Sign in and then try to update again. Tap one waiting icon only if necessary to start the download stream.
    You can also try deleting the waiting icons - tap and hold down on an icon until it wiggles - the tap the X on the icon to delete it. Then try to download again.
    You can try resetting all settings. Settings>General>Reset>Reset All Settings. You will have to enter all of your app preferences and device settings again.

Maybe you are looking for

  • Which of the following will take more memory?

    Hi All, which of the following will take more memory: ---this----- long longval[] = new long[100]; String strval[100] = new String[100]; boolean boolval[100] = new boolean[100]; ---or this----- class Data { long longval; String strval; boolean boolva

  • Photosmart c4480 prints 2nd half of picture pink

    I put new non-hp ink cartridges in--documents in black and white print fine, but pictures print the first part of the picture correctly  but  about halfway thru the printing becomes pink. I've tried cleaning and testing the print; things seem fine. I

  • RosettaNet STK

    Dear experts: I am using the Rosettanet STK. I want to send a test message from the STK and receive it in the XI system. But having problems especially with user id etc. How do I specify the user id and pw in the STK? I could not fing the file <b>cre

  • Nothing but CFC errors..

    Ok.. so here's the layout; My personal computer:           Flex Builder 3           MAC Leopard           Dreamweaver CS4 Server:           ColdFusion MX 6.1 (fully updated)           IIS Trying to build a simple CFC to retrieve a record of data from

  • While using firefox it is frezing and utilizing 120124 k of memory which is the highest in my task bar?

    Firefox version 3.6.16 Windows XP SP3 OS. Intel Pentium 2.20 GHZ (@CPUs) 1 GB RAM.