Unavoidable modal dialog when deleting podcasts

Every time I select a podcast in the iTunes library and delete it, I am presented with an unavoidable dialog which states:
+Do you want to move the selected podcast to the Trash, or keep it in the iTunes Music folder?+
There are three buttons: cancel, keep file, and move to trash. Unfortunately, this dialog seems to violate standard Apple user interface guidelines in that there is no "don't show again" or similar check box to suppress this dialog. Also, no matter what option the user selects, the deleted file cannot be permanently lost until something like empty trash is performed from the Finder. So this unavoidable dialog isn't even serving as a safety measure against accidental deletion.
I would really like to find a way to suppress this dialog. I transfer podcasts to my ipod mini on a daily basis, so the constant appearance of the dialog is quite tiresome. I even tried to see if there was an undocumented shift key modifier such as cmd+del or option+del that would bring up a more advanced dialog or quietly delete the podcast, but no luck. Unless anyone is aware of a way within iTunes to delete podcasts without the dialog, I would like to suggest that this feature be implemented in a future iTunes release.
Thanks.

I don't know how it happened but my dialog box disappeared and when I delete tracks they all remain in the root folder.
driving me crazy

Similar Messages

  • Delete button won't respond when deleting podcasts?, Delete button won't respond when deleting podcasts?

    Hi there,
    Since upgrading to itunes 11 - I am finding that when deleting Podcasts - (not tried with music) that my delete key on keyboard is not responsive and intermittent.
    Works fine in all other apps.
    Is this a known issue - has anyone else had the same problems?
    Please advise.

    In settings - can you increase the unlock time to the maximum of five minutes
    Then reset your phone and see if that makes a difference

  • How to disable confirm dialog when deleting messag...

    It is really annoying that each time I delete a message, I have to confirm. How can I disable that on the Lumia 920?
    Also, I spend a long time trying to figure out why my phone did not come with Nokia Music in denmak, after alomost 1 hour searching on the net, I found out that the service do not exist in Denmark... Why not just have the Nokia Music in the App store and just show a message when people try to install it, saying that its not availble in the user's country?

    You can't dsable the confirmation, but you can reduce the number of times you need to confirm to just once by marking the messages you wish to delete first. Shortcut for marking messages is to tap the left hand edge of the message you with to mark.  

  • Open Modal Dialog on Page Load of MOSS 2010

    Hi All
    We are trying to open modal dialog when home page opens on Sharepoint portal 2010
    We followed these steps:
    1. Created Page
    2. Created HTML Form Editor web part
    3. Added following code to its source
    <script type="text/javascript" language="javascript">
    Alert('Shahab');
    _spBodyOnLoadFunctionNames.push("HideNewIcons");
    function HideNewIcons(){
      var options=SP.UI.$create_DialogOptions();
    options.url='http://servername/sites/itd/SitePages/Test.aspx?IsDlg=1';
    options.height = 400;void(SP.UI.ModalDialog.showModalDialog(options))
    _spBodyOnLoadFunctionNames.push("HideNewIcons");
    </script>
    4. Neither ALERT nor MODAL DIALOG appear.
    We are on MOSS 2012. I checked the net and found there might be some issues in 2010. However, it works best on 2007
    Is there any other solution?
    Regards
    SSA

    Hi ,
    I understand that you want to open a modal dialog on page load in SharePoint 2010. The code Ashish provided works great. But you need to put the code on the page directly by editing the page in SharePoint designer(When putting the code in Content Editor
    Web Part ,the modal dialog doesn’t pop up correctly).
    Edit the page in SharePoint designer in Advanced Mode.
    Browse to the bottom of the code view .
    Add the code before the </asp:Content> tab.
    <script language="javascript" type="text/javascript">
            ExecuteOrDelayUntilScriptLoaded(yourFunction, 'SP.js');
            function yourFunction() {
                var options = { url:
    '/_layouts/viewlsts.aspx', title: 'Title, Description, and Icon', width: 640, height: 400 };
                 SP.UI.ModalDialog.showModalDialog(options);
             _spBodyOnLoadFunctionNames.push("yourFunction()");
    </script>
    Thanks,
    Entan Ming
    Entan Ming
    TechNet Community Support

  • Can't have multiple modal dialogs?  What am I doing wrong?

    The following applet is a VERY stripped down version of what I am writing. I have an applet which creates modal dialog in which a user will enter data, then if the user tries to close without saving, I pop up another modal dialog to ask the user to save. Everything is fine that far, then, when the user dismisses that dialog, for example (with Cancel) or pressing the X, things look fine, it goes back to the first modal dialog, but that dialog is no longer modal! I can access the underlying applet. Here is a VERY stripped down version. What am I doing wrong? Help! Thanks!
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.lang.*;
    import java.net.*;
    import javax.help.*;
    import javax.swing.*;
    import java.util.*;
    public class SherlockApplet extends JApplet
         public void init()
         // get root frame of applet
    Component component = this;
    while (component.getParent() != null)
    component = component.getParent();
    Frame appletFrame = (Frame) component;
    // create a modal dialog with the root frame as the parent
    JDialog firstModalDialog = new JDialog(appletFrame);
         firstModalDialog.setModal(true);
         firstModalDialog.setSize(200, 200);
         // create another modal dialog with the first dialog as the parent
         final JDialog secondModalDialog = new JDialog(firstModalDialog);
         secondModalDialog.setModal(true);
         secondModalDialog.setSize(100, 100);
         // add a listener to pop up the second modal dialog when we try to close the first
         firstModalDialog.addWindowListener(
    new WindowAdapter()
    public void windowClosing(WindowEvent e)
    secondModalDialog.show();
    // make sure not to close the first dialog if the user clicks the X
    firstModalDialog.setDefaultCloseOperation(javax.swing.WindowConstants.DO_NOTHING_ON_CLOSE);
         // show the first dialog
         firstModalDialog.show();
    }

    Good call dchsw, I tried 1.4.1_01 jre and it worked. If you run it with 1.3.0_01 jre you will see my problem. The problem for us is, we are stuck with 1.3.0_01 for our next release at least, due to Sun's decision to change event handling for java 1.4 jre and not make it backward compatible. I might have to hack my way around this one. Any other suggestions?
    Thanks

  • Item not being saved when item is in a jquery modal  dialog

    Hi all,
    I followed instructions found here :
    http://shijesh.wordpress.com/2010/04/10/jquery-modal-form-in-apex-4/
    to create a jquery modal dialog, this is the code I added in html header :
    <link rel="stylesheet" href = "http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/
    redmond/jquery-ui.css" type="text/css" />
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"> </script>
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"> </script>
    <script type="text/javascript">
    $( function() {
       $('#ModalForm').dialog(
            modal : true ,
            autoOpen : false ,
            width : 425,
            closeText : 'Close',
            stack : false,
            resizable : false,
            buttons  : {
                Cancel : function() {
                         closeForm();
                Save : function() {
                    updateMEMOVELD();
    function openForm()
        $('#ModalForm').dialog('open');
    function closeForm()
        //$('#ModalForm input[type="textarea"]').val('');
        $('#ModalForm').dialog('close');
    function updateMEMOVELD ()
       var get = new htmldb_Get(null, &APP_ID.,   
                        'APPLICATION_PROCESS=f_memo', 0);
       get.add('P9_MEMOVELD',$v('P9_MEMOVELD'));
       var gReturn= get.get();
       //alert(gReturn);
       //alert($v('P9_DATUM'));
      $s('P9_MEMOVELD',gReturn);
      alert($v('P9_MEMOVELD'));
      $s('P9_MEMOVELD_COPY',$v('P9_MEMOVELD')); 
      $('#ModalForm').dialog('close');
    </script>my situation is a little different, my modal does not have to perform an sql update, just change a field
    the user will then save in the main form
    for some reason the field never gets updated in the db
    I even created a on demand application process called f_memo :
    BEGIN
      APEX_UTIL.SET_SESSION_STATE('P9_MEMOVELD',:P9_MEMOVELD);
      htp.p(:P9_MEMOVELD);
    END;why is my field not send to the db ?
    it works when I delete this from the region header :
    < d i v id="ModalForm" title="Add Person" style=" d isplay:n one  "   >but then of course I no longer have a modal dialog
    what's wrong ?
    I put the code online at apex.oracle.com
    workspace XONIXRS
    login/password demo/demorun the application
    click on lijst facturen (invoices) (in the right sidebar region)
    then click on the zoeken (search) button
    a report appears, click on edit on the first line (200900017)
    now a form appears, click on the outright button memo
    now the modal shows up, change the field and click on save
    click on ok (for the alert) and then click on Save invoice
    you will remain on the same page
    now click on annuleren
    and then click on edit on the first line (200900017) again
    then click on memo again, you will see the memo has not been changed
    how comes ?
    Kr
    Martin

    The issue is that creating a modal of a region lifts that region from the HTML. Just have a look at the DOM when you run your page and not the source html, because that does not reflect changes to the dom made on page load. This means that your memo-field is removed from the FORM-tags, and effectively won't submit to session state. The item is not processed when you submit the page! You can track that through debugging your page. Memo is not saved and not processed.
    Trying to save the value to session state is not enough, it doesn't really matter in this case. The moment you submit the page, the session state will get overwritten by the submitted values of the items.
    So what i did:
    <ul>
    <li>move P9_MEMOVELD to region FACTUUR, together with all the other db fields</li>
    <li>change the type to hidden</li>
    <li>set value protected to NO</li>
    <li>in the modal region create a new page item P9_MEMOVELD_POP, type textfield</li>
    <li>set the source to always use a page item as source, with source P9_MEMOVELD</li>
    <li>changed function updatememoveld:
    function updateMEMOVELD ()
       var get = new htmldb_Get(null, &APP_ID.,   
                        'APPLICATION_PROCESS=f_memo', 0);
       get.add('P9_MEMOVELD',$v('P9_MEMOVELD'));
       var gReturn= get.get();
       //alert(gReturn);
       //alert($v('P9_DATUM'));
      $s('P9_MEMOVELD',gReturn);
      alert($v('P9_MEMOVELD'));
      $s('P9_MEMOVELD_COPY',$v('P9_MEMOVELD')); 
      $s('P9_MEMOVELD',$v('P9_MEMOVELD_POP'));
      $('#ModalForm').dialog('close');
    }Whether you want or need the session state set is up to you, it depends on if you use this somewhere else dynamically on the page and thus would influence results there, but i don't think it will (it's a memo field...)</li>
    </ul>
    Extra remarks:
    <ul>
    <li>be careful with including jquery libraries! The standard libraries are included, yet you add previous versions too! (1.4.2) This might lead to issues...</li>
    <li>use your templates better. Why would you wrap a region in div tags? Change or add a region template to be div tags. You can then easily assign a static id to this region, and target it. This will save you from wrapping wrapped wrappers (cause that is what the generated code looks like in the end).</li>
    </ul>

  • SBO running in TSRemoteApp crashes when clicking on Modal dialog box

    We have a customer who has installed SAP Business One 8.81.316 PL08 on Windows Server 2008 R2.  The application is accessed by users using RemoteApp.  The application generally runs well, however, when a user is presented with a Modal dialog box (i.e. Do you really want to delete Y/N) and clicks on the dialog box, the foreground RemoteApp session crashes.  If the user then reconnects to the back end session, the application is exactly as it should be, with the dialog box still displayed.
    When connecting by a normal RDP type session, the problem isn't evident.
    Has anyone experienced this behaviour? 

    I realize this is a very old topic, but I've run into the same problem.
    I can't get PrimeFaces modal dialog to work in Internet Explorer 7 using JSF2/facelets/PrimeFaces 2.0.2.
    So I am looking for alternatives, but have not found anything so far.
    Any hints?
    Edited by: burferd on Jun 21, 2010 7:56 PM

  • How to make a dalog process custom events when blocked by modal dialog

    Hi,
    I would like to understand the way modal dialogs block other dialogs so that I can properly solve an issue I'm having with two modal dialogs, one blocking the other.
    I have an application, netbeans platform based, that opens a JDialog, NewDiskDlg, with it's modal property set to true. This dialog is responsible for starting a thread that will process a given number of files, from time to time, depending on some conditions, this thread will send events to the NewDiskDlg.
    When this thread is started, the NewDiskDlg creates a new JDialog, also with the modal property set to true. Both dialogs have the same parent, the main window. And this works as I expected, the second dialog, ActiveScanningDlg, opens on top of the NewDiskDlg and, until the thread stops, the dialog stays visible.
    When the thread stops an event is sent to this two dialogs signaling that the job has been completed, and here is my problem. The second dialog, the one that is visible when the event arrives, receives the event and executes the dispose() method, releasing control to the NewDiskDlg in the back, but the NewDiskDlg does not receive the event and does not process it correctly.
    I understand the no input can be sent to a blocked window, but does that include calling upon the window's methods?
    I've been looking for some help on this but my search terms are not good enough to provide me with any useful information. I've also read the topic on the focus system that is present in the Java Tutorial but I feel that that is not what I should be looking at.
    The following code is a snippet of the important parts that I described:
    NewDiskDlg has the following methods to process the events
        public void readingStarted(ReadingEvent evt) {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    scanningDlg.showCentered();
        public void readingFile(ReadingEvent evt) {
            //DO NOTHING
        public void readingStopped(ReadingEvent evt) {
            Lookup.getDefault().lookup(MediaReader.class).removeListener(this);
            if (!showAgain) {
                dispose();
        public void readingAborted(ReadingEvent evt) {
            JOptionPane.showMessageDialog(this, "", "", JOptionPane.ERROR_MESSAGE);//TODO: i18n on the error messagens
            Lookup.getDefault().lookup(MediaReader.class).removeListener(this);
        }ActiveScanningDlg processes the events like this:
        public void readingStarted(ReadingEvent evt) {
            //DO NOTHING
        public void readingFile(ReadingEvent evt) {
            jpbReadingProgress.setString(evt.getCurrentFileName());
        public void readingStopped(ReadingEvent evt) {
            Lookup.getDefault().lookup(MediaReader.class).removeListener(this);
            dispose();
        public void readingAborted(ReadingEvent evt) {
            readingStopped(evt);
        }This is an example on how the events are sent:
        private void fireReadingFile(ReadingEvent evt) {
            for (ReadingListener l : listeners) {
                l.readingFile(evt);
        }

    Hi,
    You have to check the Tolerance limits set for the following tolerance keys. In case if any where the limit is breached the systems blocks the Invoice as 'R - Invoice verification'. Please check the limits set for all these keys.
    AP - item amount variance (if you have activated the item check)
    DQ and DW - for Quantity variance
    PP - price variance with the order price
    ST - date variance
    VP - Moving average price variance
    Regards,
    Kathir

  • Deleted podcasts return when syncing with itunes

    My podcasts sync perfectly from itunes to my ipad & iphone.  However, when i listen to an individual podcast or delete the entire subscription from either my ipad or iphone i have aproblem.  They are deleted from my device but when i next sync with my itunes on my pc, all the deleted podcasts or subscriptions are put back on my device.  I want them to be deleted from my Itunes not put back on my device.  Obviously i dont want them any more.  When I delete an app from my device, it is deleted from my itunes library for that device. I know it is still in itunes if i need it but itunes doesnt keep putting it back on my device.  How can I get podcasts to either act the same way as the apps do, or get itunes to actually delete the podcasts i have deleted from my device??

    Are you using the "Podcasts" app on your device?  If so, then that app manages all your podcasts locally on your device. 
    If you aren't using the Podcasts app on your device, then your podcasts will be managed by iTunes, and updates downloaded to your device whenever your sync it with iTunes.  Deleting an episide on your device will temporarily get you space back on your device, which might be helpful temporarily in case you need the space for something.  The next time you sync, iTunes will repopulate any episides that are missing from your device, unless you've marked them as played already, or otherwise changed something in iTunes to prevent them from copying back to your device again (delete them, take them out of whatever smart playlist you are using to send podcasts to your device, etc.).

  • I have seven(7) podcasts on my iPhone 4 that iTunes will not delete. iTunes copies them from the phone to the library and will not  delete them from the phone when deleted from the library.

    I have seven(7) podcasts on my iPhone 4 that iTunes will not delete. iTunes copies them from the phone to the library and will not delete them from the phone when deleted from the library. I have replayed the podcasts over and over and they still won't delete. Podcasts are WSJ Tech briefings.

    This happens to several of my podcasts whenever an updated iOS comes out. You can delete the episode directly from the phone by swiping it from left to right. That seems to fix the issue (they drop off the phone and dont reappear on iTunes). It's as if iTunes stops tracking the play count for some shows.
    Hope this helps!

  • ActiveX controls disappear when VI is loaded in a Sub-Panel with Start Modal Dialog usage

    Hi,
    I have a subpanel in a VI (VI1) in which another VI (VI2) is loaded. VI1 is used as a module for an Action step in TestStand. VI2 has ActiveX controls like ExpressionEdit and Adobe PDF reader etc. VI1 loads VI2 in a sub-panel and calls Start Modal Dialog.vi. I have set 'Show front panel when called' to true for VI1 so that the VI pops up when the sequence is run. When the sequence runs and when the Start Modal Dialog VI is called from VI1, all ActiveX controls in VI2 (loaded in the sub-panel) disappears. Here is the screenshot of the frontpanel of VI1 when the sequence is run:
    This problem occurs in TestStand 4.2.1, TestStand 2010 and TestStand 2010 SP1 (as far as I have tested. May occur in older versions too). In the attached file, VI1 is 'ExprEdit Test.vi' and VI2 is 'SubpanelLoad.vi'. The attached sequence is developed in TestStand 2010 SP1.
    How can this issue be solved?
    Thank you,
    Ganesh Kumar
    Solved!
    Go to Solution.
    Attachments:
    Subpanel Load ExpressionEdit problem.zip ‏23 KB

    Hi,
    An update on this issue: I tried changing the order of loading the VI in the SubPanel and the start modal dialog. I called start modal dialog and then loaded the VI (VI2) in the SubPanel. When I ran the sequence, the activeX controls did not disappear (I was pretty sure that the ActiveX controls in VI2 would not disappear since I am calling Start Modal Dialog before loading the VI in the Subpanel). Then I just changed the sequence of operations back to the previous order (loading the Subpanel with the VI and then calling the Start Modal Dialog). When I ran the sequence, the activeX controls where still displayed. But when I ran the sequence with the VI1 backup (that I had taken before making all these modifications) the activeX controls were not displayed. I a nutshell, I now have 2 versions whose codes are the same. But when I run the sequence with action steps for these VIs, the activeX controls disappear when the unmodified backup VI runs and does not disappear when the modified VI is run. I have attached the files that I used along with the sequence file. The details are as follows:
    ExprEdit Test (Not Working).vi - The unmodified backup VI for which the ActiveX controls disappear.
    ExprEdit Test (Working).vi - The modified VIs in which the ActiveX Controls do not disappear (But same code as ExprEdit Test (Not Working).vi).
    ExpreEdit Test.seq - The sequence file containing 2 action steps one each for theabove mentioned VIs.
    SubpanelLoad.vi - The VI that contains activeX controls and is loaded in the SubPanel.
    Note that the sequence is created in TestStand 4.2.1.
    Thank you,
    Ganesh Kumar
    Attachments:
    Subpanel Load ExpressionEdit problem.zip ‏36 KB

  • Re-enabling confirmation dialog box when deleting playlists

    When deleting a playlist, a confirmation box will appear and also the option to no longer see the confirmation box. I enabled this option. I no want to see this confirmation box again. How can I re-enable it? I couldn't find anything in the .plist file.

    Ok, I got the dialog back. If you discard the preference file, it restores all the dialogs. But they really should add a way to change that without redoing your prefs. (Not a big deal, it takes you through most everything when you re-open iTunes.) Note, the dialog only shows up with playlists that have songs in them – empty ones just delete.
    Close iTunes, delete this file:
    /Users/<USERNAME>/Library/Preferences/com.apple.iTunes.plist
    Reopen iTunes, follow dialogs to reset preferences.
    Sure wish you could just "undo."
    One place they figured it out: http://discussions.apple.com/thread.jspa?messageID=6046139&#6046139

  • Screen sequence processing when using modal dialog box

    I have been struggling with a dialog program which I have written.  I have a screen which has 2 radiobuttons and a check box (screen 100).  If the checkbox is marked, a modal dialog screen pops up (screen  150).  If I complete both input fields on  screen 150, I can go through to screen 200, then back out of screen 200 to screen 100, and then I can back out 100 to screen 0.
    The problem I have is the validation I have put in screen 150 if one or both input fields have no values or if I want to exit screen 150.  If I exit screen 150, in order to get back to screen 100 in the main screen I need to do CALL SCREEN 100 as if I use SET SCREEN 100, 100 then appears in my modal dialog box screen.
    If I try to back out of screen 100 to screen 0, the program then brings up screen 150 in the PAI part of the module and then go to screen 0 when I close screen 150 even though I have coded SET SCREEN 0. LEAVE SCREEN. in the user command module of screen 100.  Here is my code:
    <u><b>screen 100</b></u>
    PROCESS BEFORE OUTPUT.
      MODULE status_0100.
    PROCESS AFTER INPUT.
      MODULE user_command_0100.
    <b>
    <u>Modules for 100</u></b>
    *&      Module  STATUS_0100  OUTPUT
    *       text
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'ZL_PWB_GR1'.
      SET TITLEBAR  'ZL_PWB_GR1'.
      CLEAR: w_hse_stock, w_new_product, wa_sto, w_reverse,
             mara-matnr,  mkpf-mblnr.
      PERFORM release_lock.
      REFRESH CONTROL 'TC_GR' FROM SCREEN 0200.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
    *       text
    MODULE user_command_0100 INPUT .
      CASE ok_code.
        WHEN 'ENTER'.
          IF w_reverse = space.
            CALL SCREEN 0200.
          ELSE.
            CALL SCREEN 0150 STARTING AT 30 2
                             ENDING AT   75 5.
          ENDIF.
        WHEN 'BACK' OR 'EXIT' OR 'CANC'.
          w_pai = c_yes.
          SET SCREEN 0.
          LEAVE SCREEN.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    <u><b>screen 150</b></u>
    PROCESS BEFORE OUTPUT.
      MODULE status_0150.
    PROCESS AFTER INPUT.
      MODULE exit_command_0150 AT EXIT-COMMAND.
      FIELD  mara-matnr MODULE check_matnr.
      FIELD  mkpf-mblnr MODULE check_art_doc.
    <u><b>Modules for 150</b></u>
      MODULE user_command_0150.
    *&      Module  STATUS_0150  OUTPUT
    *       text
    MODULE status_0150 OUTPUT.
      SET PF-STATUS 'GR_REV'.
      SET TITLEBAR 'GR_REV'.
    ENDMODULE.                 " STATUS_0150  OUTPUT
    *&      Module  exit_COMMAND_0150  INPUT
    *       text
    MODULE exit_command_0150 INPUT.
      IF sy-ucomm = 'EXIT'.
        CALL SCREEN 100.
      ENDIF.
    ENDMODULE.                 " exit_COMMAND_0150  INPUT
    *&      Module  check_matnr  INPUT
    *  Check if issues has been filled and if issue is a valid article no.
    MODULE check_matnr INPUT.
      DATA: l_matnr TYPE matnr.
      IF mara-matnr IS INITIAL.
        MESSAGE i010(ad) WITH 'Issue no. required'.
        EXIT.
      ELSE.
        SELECT SINGLE matnr FROM mara INTO l_matnr
         WHERE matnr = mara-matnr.
        IF sy-subrc NE 0.
          CLEAR l_matnr.
          MESSAGE i010(ad) WITH 'Issue does not exist'.
        ENDIF.
      ENDIF.
    ENDMODULE.                 " check_matnr  INPUT
    *&      Module  check_art_doc  INPUT
    *       text
    MODULE check_art_doc INPUT.
      IF mkpf-mblnr IS INITIAL.
        MESSAGE i010(ad) WITH 'Article document no. required'.
        EXIT.
      ELSE.
        PERFORM get_art_doc USING mara-matnr
                                  mkpf-mblnr.
        IF sy-subrc NE 0.
          MESSAGE i010(ad) WITH 'No article document exists for this issue'.
        ENDIF.
      ENDIF.
    ENDMODULE.                 " check_art_doc  INPUT
    *&      Module  USER_COMMAND_0150  INPUT
    *       text
    MODULE user_command_0150 INPUT.
      CASE sy-ucomm.
        WHEN 'ENTE'.
          IF mara-matnr NE space AND mkpf-mblnr NE space.
            CALL SCREEN 200.
          ELSE.
    *        MESSAGE i010(ad) WITH 'Please fill in both fields'.
            SET SCREEN 150.
          ENDIF.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0150  INPUT
    Any suggestions or pointers would be greatly appreciated as I am going round in circles.
    Thanks
    Larissa

    Have got around this by removing the references to SET SCREEN 150.  This way, I can get around the screen sequencing.  It just means that I cannot keep my screen 150 in view if a validation message occurs but for now it will do for what I need.
    Thank you for your help anyway.
    Larissa

  • When will the delete podcast function be restored to itunes 11.1?

    It appears Apple removed the ability to individually delete podcasts from itunes 11.1. One forum I looked at indicated it was a "bug fix" the were working on. Does anyone know when this "bug fix" will be fixed?

    No, as the new old saying goes, "Coming, when it's done." In the meantime the My Podcasts view may be more useful to you.
    tt2

  • Bug: iTunes not actually deleting podcasts when told to delete podcasts

    When I delete podcasts and select the "move to recycle bin" option the podcast is removed from iTunes. However very often the podcasts still remains in the my music folders and is not actually deleted from the folders, and this happens most often with video podcast.

    Same thing here. It happened under XP and also now under Vista. I wish someone could help out with this issue..
    Duane

Maybe you are looking for