Confirmation popup in FPM OVP application controller?

Is it possible to make use of confirmation boxes within the application controller of an FPM-OVP? In my application there is a logout button in the global toolbar. The event is captured within the application controller of the FPM-OVP application, thus in the method IF_FPM_OVP_CONF_EXIT~OVERRIDE_EVENT_OVP. Now, I would like to open a confirmation popup (Are you really, really, really sure? Yes/No/I will think about it) and to trigger the event only when it is answered with yes. In forms I have the possibility to make use of the extended interfaces and to implement the NEEDS_CONFIRMATION method. Is there something similar in the current context?
Best regards,
Thomas

Hi Thomas,
Try to use AFTER_NEEDS_CONFIRMATION method in application controller.
Kind regards, Aliaksandr.

Similar Messages

  • How to create a popup view in mobile application?

    Hi folks, i need some help to do popup window in mobile application, i see that mobile don´t have a wdComponentAPI that is a controller of Web Dynpro JAVA, so what i´ll should do?
      So, thats it

    Hi Ronaldo,
    I suppose there is no such API for handheld applications.I have another suggestion.
    You can also create another view (the popup view) and make it behave like a popup.
    So, on an event handler of the first view, for ex click of a button, you fire the outbound plug of this view which is linked to the inbound plug of the popup view.This will bring up the popupview - the first view will be unloaded from memory.
    In the popup view, on an event handler (for ex OK button), fire the outboundplug which is linked to inbound plug of first view.So the first view gets loaded when the Ok button is clicked.
    To ensure that you dont loose the data on the first view, make sure that the controls on the view are bound to context attributes.
    I hope this helps.Let me know if you have further queries.
    Best Regards,
    Amit

  • How to Stop confirmation popup arising for datepicker control in IE

    Hello All,
    I m using a confirmation popup to notify user when they try to navigate away from the page with out saving the changes made. I executed it through the javascript and it even works properly for most of the items and buttons except Datepicker control. This issue is only with Internet Explorer and all others are fine.
    I use the following block of code to do the job
    +function isFormChanged()
    {+
    var rtnVal = false;
    var frm = document.wwv_flow;
    var ele = frm.elements;
    for ( i=0; i < ele.length; i+ )
    {+  
    +if ( isElementChanged( ele, i ) )
    {+
    rtnVal = true;
    break;
    +}+
    +}+
    return rtnVal;
    +}+
    +function isElementChanged( ele, i )
    {+
    var isEleChanged = false;
    +switch ( ele.type ) {+
    case "text" :
    +if ( ele[i].value != ele[i].defaultValue ) return true;+
    +if( ele[i].id.indexOf('Date')!=-1) return false;+
    break;
    case "textarea" :
    +if ( ele[i].value != ele[i].defaultValue ) return true;+
    break;
    case "radio" :
    val = "";
    +if ( ele[i].checked != ele[i].defaultChecked ) return true;+
    break;
    case "select-one" :
    +if      (ele[i].id>99 ) return false;+
    +for ( var x =0 ; x <ele[i].length; x++ )
    {+
    +if ( ele[i].options[ x ].selected+
    +!= ele[i].options[ x ].defaultSelected ) return true;+
    +}+
    break;
    case "select-multiple" :
    +if      (ele[i].id>99 ) return false;+
    +for ( var x =0 ; x <ele[i].length; x++ )
    {+
    +if ( ele[i].options[ x ].selected !=+
    +ele[i].options[ x ].defaultSelected ) return true;+
    +}+
    break;
    case "checkbox" :
    +if ( ele[i].checked != ele[i].defaultChecked ) return true;+
    default:
    return false;
    break;
    +}+
    +}+
    var g_saving = false;
    var IsThe2ndNavAway = false;
    var g_errmsg="The changes you made to the page were not saved.";
    +function WarnSave()
    {+
    var formChanged = isFormChanged();
    if (!g_saving && formChanged)
    +{+
    if(!IsThe2ndNavAway)
    +{+
    IsThe2ndNavAway=true;
    +var tOut = window.setTimeout(function () { IsThe2ndNavAway = false; }, 0);+
    return g_errmsg;
    +}+
    +}+
    +}+
    function doSave()
    +{+
    g_saving=true;
    doSubmit('SAVE');
    +}+
    the above lines on page Html header and the Html body attribute with onBeforeUnload="return WarnSave();"
    Can any one say why the confirmation popup is pushed of in IE for DatePicker Calendar alone and provide the work around if any..

    Are you still having this problem?  See this post how one AOL user solved it: http://forums.adobe.com/message/3024814#3024814

  • Validation popup conflicting with confirmation popup

    I am using 11gR1.
    I have a form with three buttons on it CreateInsert, Next, Cancel.
    The next button fires model layer validation on a new record, the cancel button opens a confirmation popup and if the user clicks yes, navigates the away from the form. When a user clicks next AND the form does not pass the model layer entity validation, a validation error is raise in a validation popup. The problem comes when the user then decides to not fix the validation, but instead cancel out of the form via the cancel button AFTER they have already clicked next.
    When the user clicks the cancel button it raises the confirmation pop-up and whether the users clicks yes or no on the pop-up, the model layer validation still fires. I have immediate set to true on the cancel button to bypass validation, BUT if they user has already clicked next the validation still runs when they try to answer the pop-up. This results in the user being stuck in a never ending series of pop-ups because the confirmation pop-up can not close because the model layer validation keeps firing.
    I have a dialoglistener on the dialog and a method in the backing bean (backingBeanScope.backing_IAEdit.cancelConfirmDialog) but that code never fires. Anyone else run across this problem or have any ideas how to resolve it?
    Here is the code from the command buttons...
    <af:commandButton actionListener="#{bindings.CreateInsert.execute}" text="CreateInsert"    disabled="#{!bindings.CreateInsert.enabled}"
                                id="cb5"/>
    <af:commandButton actionListener="#{bindings.Next.execute}" text="Next" disabled="#{!bindings.Next.enabled}" partialSubmit="true"                    
                                id="cb2"/>
    <af:commandButton text="Cancel"  id="cb4" action="Cancel" immediate="true">
                    <af:showPopupBehavior popupId="p1"/>
    </af:commandButton>
    <af:popup id="p1">
                  <af:dialog id="CancelConfirmDialog" title="Confirm Cancel"  type="yesNo"
                                   dialogListener="#{backingBeanScope.backing_IAEdit.cancelConfirmDialog}">
                          <af:outputText value="Are you sure you would like to cancel?" id="CancelOutput"
                                         inlineStyle="font-weight:bold; font-size:small;"/>
                  </af:dialog>
    </af:popup>

    Thanks for the suggestion, but the code in the dialoglistener never fires.
    When the user clicks yes or no to dismiss the dialog box, the validation from the bc layer fires (even though immediate is set to true on the cancel button) and pops up an error box. When the error box opens, it opens in a modal way, the dialog box grays out and all you can do is dismiss the error box. When the user clicks ok to dismiss the error box, the dialog box is still open. Then when the user again clicks yes or no on the dialog box, it again fires validation and pops up the error box in a modal way. So now the user is stuck with these two pop ups and can never get rid of the dialog box.
    Just to clarify, this ONLY happens if the user FIRST clicked the next button which triggered the bc layer validation. If the user just clicks the cancel button, everything works as expected with the dialog box popping up, the user selects yes or no, the dialoglistener code is run and the user is navigated to another page. If the user just clicks the cancel button validation is never run as is expected by having immedate set to true.

  • Superfluou​s confirm popup in UI editor?

    Hello NI,
    I have a XY graph with several annotations.
    If I open the uir file and double click on the graph (-> Edit Graph popup), click on the 'Annotations' button (-> Edit Annotations popup) and change Current Annotation say from 24 to 23 (to see its properties).
    Then I want to close everything (not changing anything): I click on the X button in the panel title of the 'Edit Annotations popup: a confirm popup shows up asking if I am sure to discard the changes. This popup is ok for the current annotation has changed. So I click Yes.
    By this all changes should have discarded, right?
    But now, if I click the X button in the panel of the Edit Graph popup the same confirm popup shows up again... In my opinion this should not happen ;-)
    (I know that I can leave the two popups faster by hitting ESC twice)
    Solved!
    Go to Solution.

    Yes, this is a bug, and it's been around since the beginning of CVI from what I can tell.
    It's actually two bugs: 1) you shouldn't see the prompt in the annotations dialog in the first place, if all that you change in that dialog is the current annotation (and the analogous control, in the graph's cursors dialog, or the strip chart's traces dialog), since changing the current annotation/cursor/trace does not change the state of the graph or chart. And 2), as you pointed out, you shouldn't see the prompt again when you exit the main dialog if you discarded your changes in the sub-dialog.
    Bug 477231.

  • Disable confirmation popup

    Hi,
    I am calling a standard utility to post PGI for delivery from an exit.
    Now, it asks for a confirmation to post or not.
    I want to disable this confirmation popup message.
    Is there any way to do this ?
    Thanks in advance.
    Regards
    Megha

    Hey Ramjee,
    Unfortunately, I don't believe there is any way to disable the dialog. I saw your other thread about the station globals, and would be happy to try and help figure out a different way to accomplish what you're trying to do that wouldn't require you to keep updating the globals. Let us know if we can do anything to help!
    Daniel E.
    TestStand Product Support Engineer
    National Instruments

  • Javascript Confirm popup Yes, No button instead of OK and Cancel?

    Hi,
    I wrote javascript for confirm popup like below:
    var answer = confirm ("Are you sure you want to delete this item ?");
    It is showing OK Cancel button popup , but I want to display Yes No buttons on popup insted of OK Cancel buttons...
    Appreciate if anyone give proper solution.
    Thank you.
    Still I could not get proper solution.... Please any one help me solve this... need js solution not jquery..

    Hi Praveen
    There is not direct option in JavaScript to get Yes/No buttons in a Confirm dialog.
    But, we can create a customized dialog box with our own HTML tags, controls and scripts and show it as a confirmation dialog using
    window.showModalDialog() function
    Here is the sample HTML to demonstrate how to create a customized confirmation dialog.
    Dialog.HTML (This contains the UI for the confirmation dialog. Message, Yes No buttons etc)
    <!DOCTYPE>
    <html>
    <head>
    <title>Confirmation Message</title>
    <script language="javascript" type="text/javascript">
    window.onload = function()
    var messageDiv = document.getElementById('dlgMessage');
    if ( messageDiv != null && typeof(messageDiv) != "undefined" )
    messageDiv.innerHTML = window.dialogArguments;
    function confirmClick(args)
    window.returnValue = args;
    window.close();
    </script>
    </head>
    <body>
    <div id="dlgMessage">
    </div>
    <input type="button" value="Yes" id="btnYes" onclick="javascript:confirmClick('yes')"/>
    <input type="button" value="No" id="btnNo" onclick="javascript:confirmClick('no');"/>
    </body>
    </html>
    MainPage.HTML (From where the confirmation dialog will be shown. In your case, u can use the script in this html and customize it according to ur needs)
    <!DOCTYPE>
    <html>
    <head>
    <title>Main Page</title>
    <script language="javascript" type="text/javascript">
    function showConfirmDlg(message)
    var returnValue = window.showModalDialog("dialog.html",message,"dialogHeight:150px;dialogWidth:200px");
    if ( returnValue == 'yes' )
    alert('Yes button is clicked in the dialog');
    else
    alert('No button is clicked in the dialog');
    </script>
    </head>
    <body>
    <input id="btnConfirm" type="button" value="Confirm" onclick="javascript:showConfirmDlg('Do you want to continue?');" />
    </body>
    </html>
    Hope this helps.
    See this MSDN Link for more information on how to use and customize the showModalDialog() function
    http://msdn.microsoft.com/en-us/library/ie/ms536759(v=vs.85).aspx

  • Visual Business FPM Test Application not working

    Experts,
    Urgent Help required!
    We are using EWM System for our VB Application Development.
    When we open the Geomap test application in SAP Gui its showing up perfectly fine.
    But at the same time when we try to test the standard FPM Test Application its not showing zoom toolbar,application toolbar nor the map.PFB :
    Kindly suggest what could be missing or is there something else which needs to be done at FPM level.
    Regards
    Siju

    Hi Experts,
    At the same time my browser is throwing me an exception 'SAP Visual Business Security Issue' which
    is preventing the visual business to open.
    Please help!
    Regards
    Siju

  • How to ADD dynamic header text to Right hand Corner of IDR -FPM OVP/OIF

    Hi,
    How can we add dynamic header text to right hand side corner in FPM OVP?
    I know we can handle left hand side.. but i do need simultaneously right hand side..
    ANy thoughts??
    Rgds
    Tarun

    I am not sure how it is arranged in 7.02, in 7.01 IDR layout is flow layout so you cannot have layouts other than that. I thought that this has been changed in 7.02 to accommodate the matrix layout. I am not sure about it. If this was true then you can try to play with the layout to fit right hand side. It is not easy though.

  • How to confirm if Web Logic Portal Application is using NETUI PageFlow?

    How to confirm if Web Logic Portal Application is using NETUI PageFlow?

    One easy way is:
    View Page Source via Browser and search for Javascript method getNetuiTagName.

  • Call a process based on the click of a javascript confirm popup box

    I have created a function to create a javascript confirm popup box which calls an update process called Reactivate_save(), see below:
    function reactivate_save()
    var r=confirm("Do you wish to save pending changes?")
    if (r==true)
    document.getElementById('Reactivate_Save').call();
    I want to make the update process conditional on clicking the 'ok' button inside the popup box.....Is this possible?
    I thought that I could reference it by using:
    value in expression 1 = expression 2
    reactivate_save() = true or 1
    Neither of these worked and wondering if there is something else that I can use?
    Thanks,
    Chris

    Hi,
    Your function is in Javascript while the process is PL/SQL. What you need to do is somewthing like this
    if (r==true)
    document.getElementById('Reactivate_Save').call(); // not sure what this does so left it as it is
    doSubmit('MY_REQUEST');
    }You can now use the 'MY_REQUEST' request, or whatever else you choose to call it, in the process condition using
    1. Request = e condition type by entering MY_REQUEST in the Expression 1
    or
    2. PL/SQL Expression type with :REQUEST = 'MY_REQUEST' in expression 1
    Note : In Apex 3 and below you need to add a semi colon at the end of PL/SQL Expresssions
    Regards,
    PS : Noticed that this is the same as call a process based on the click of a javascript confirm popup box
    Edited by: Prabodh on Sep 28, 2010 9:05 PM

  • Confirmation popup problem not sending mail

    Hi,
    I am working on apex.oracle.com
    i am sending mail to users.when i simply click on send mail button it is working fine .it is sending mail to users.
    i want to display confirmation msg before send mail to users. i created confirmation using dynamic actions.
    when i click on send mail button it raise popup. but when i click on ok button of confirmation popup.it is not sending the mail.
    where i am doing wrong. please help me to rectify the problem.
    Thanks in advance.
    Vedant

    Hi
    the code is
    DECLARE
    l_id number;
    to_add varchar2(2000);
    from_add varchar2(1000);
    l_sub varchar2(1000);
    l_temp_descrp clob;
    CURSOR C1 IS select distinct email_id from crm_cam_target_list tl where target_id in (select target_id from crm_cam_campaign_target ct where ct.CAMPAIGN_ID=:P221_X);
    REC C1%ROWTYPE;
    BEGIN
    select CAMPAIGN_NAME,FROM_EMAIL_ID into l_sub,from_add from CRM_CAMPAIGN_MAS where CAMPAIGN_ID=:P221_X;
    select TM.DESCRIPTION_IMAGE into l_temp_descrp from CRM_CAM_TEMPLATE_MAS TM,CRM_CAMPAIGN_MAS CM where TM.TEMPLATE_ID=CM.TEMPLATE_ID and CM.CAMPAIGN_ID=:P221_X;
    OPEN C1;
    LOOP
    FETCH C1 INTO REC;
    EXIT WHEN C1%NOTFOUND;
    l_id:=APEX_MAIL.SEND(
             p_to        => REC.email_id, -- change to your email address
             p_from      => from_add,
             p_body      => l_temp_descrp,
             p_body_html     => l_temp_descrp,
             P_subj      => l_sub
    end loop;
    CLOSE C1;
    apex_mail.push_queue(
    P_SMTP_HOSTNAME => '11.1.9.2',
    P_SMTP_PORTNO => 25);
    UPDATE CRM_CAMPAIGN_MAS SET EXECUTE_STATUS='Y' WHERE CAMPAIGN_ID=:P221_X;
    END;Thanks & Regards
    Vedant

  • Confirm Dialog on Closing Web Application with unsaved data?

    Hi all,
    I am searching for best-practices or official solutions for implementing the following functionalty:
    User is trying to close the browser window or tab (Mozilla Firefox) by hitting the "X". We need to ask him if he is sure cause there might be unsaved data.
    The only solution we now see is the following:
    - event "onbeforeunlad":
    window.onbeforeunload = function (oEvent) {
      oEvent.returnValue = 'Sure? Unchanged data might be lost'
    Problem is that this event also runs, when youre navigating in the analysis item, e.g. expanding a hierarchy. You have to switch it of for every single Item with onmouseover and switch it on again later.
    And further on: It still has to be bound to the data... if data hasn't changed, it shouldnt pop up.
    Question: Are there any official suggestions from SAP? Seems to be a standard requirement. If not, do you know any better solutions for implementing this functionality?
    Thanks in advance for your help,
    Michael

    try capturing the onBeforeUnload event and display a modal confirmation dialog asking the user if he really wants to navigate away from the page; and warning him that if he does so, all the changes he made hitherto will be gone.
    However, you need to handle this intelligently since you need to identify if any fields in the form have changed and only then warn the user to confirm his decision to go away from this page.
    You can do this by having a flag which is initialized to false but when onBeforeUnload event is fired, you would check if any of the form fields in the page have changed by iterating over each and every form field,and then setting the flag to true if some thing changed
    the onBeforeUnload Handler will always return this flag, if it is true, you will get this confirmation popup, else the page will go away. To show a customized confirmation dialog, perhaps you would have to invoke the custom dialog call from with in the onBeforeUnload handler. When the user says yes, return false;else true.

  • WDA Leave Request -- Hide Customer Field in Confirmation Popup

    Hello folks,
    System Information:
    NW AS 7.03 ABAP Stack 731 Level 11, ECC 606 (EHP 6) with SAP_HR 604 Level 73 and EA_HR 607 (HR-Renewal 1) Level 24
    Background:
    For Our WDA Leave Request application, our special department has requested to provide certain additional fields for particular Leave Types, all in all these are three check boxes and one Link-To-URL-UI. I have created these fields, or rather configured them via IMG Customizing Tables V_PT_FIELD_SEL / V_PT_FIELD_SEL_C, using the ten standard customer fields provided by SAP CUSTOMER01 - CUSTOMER10.
    After making the subsequential customizing configurations, I have enhanced the WDA OVP-FPM CC "HRESS_CC_GUIBBF_LEAVREQ" to change the respective fields' UI-Type from "Inputfield" to "Checkboxgroup" and "LinkToAction". So far so good; it's nothing fancy and everything works out the way it should.
    Problem:
    Our special department has recently noted, that the Link-To-Action provided is also taken into account by the Confirmation Dialogue Popup-Box and correctly set read-only like any other field as well. However, the fact that this read-only-link is then also shown in the Popup-Box is confusing to some users and should therefore be hidden. My plan was to enhance the WDA OVP-FPM CC "HRESS_CC_GUIBBF_LEAVREQDIALOG" and simply set the field CUSTOMER01(that's the one field I use for the Link-To-Action-UI) invisible and that's exactly what I did. But look what the effect is:
    You can see behind the lightbox in the Form, how the field is usually displayed in the Form-UIBB. What I "achieved" now, though, is, that only the lable is hidden in the Popup-Box through my enhancement in "HRESS_CC_GUIBBF_LEAVREQDIALOG" and the LinkText is still visible.
    What I did so far / Question:
    So... I went ahead and debugged the feeder class CL_HRESS_PTARQ_LEAVREQ_GUIBBF. I found out that in the Methods "FIELDS_SHOW_HIDE_CLEAR" and "FIELD_SETTING_BY_CUSTOMIZING" I would theoretically be able to manipulate the visibility, but:
    This would mean I'd have to create overwrite-exits, which I would like to avoid, because maintenance is a pain.
    Manipulating the process flow here probably has side effects on the field control of the overall application which must not happen. If I'm extremely unlucky it might even effect the data flow.
    This brings me to my ultimate question: How do I make a field from this Confirmation Dialogue Popupbox cleanly disappear/invisible in a super-duper-elegant way without using a sledgehammer? Maybe there is a customizing-way I have overlooked so far? (please?)
    Cheers, Lukas

    Hi Samuli/Yugandhar,
    what you suggest is exactly what I did:
    My plan was to enhance the WDA OVP-FPM CC "HRESS_CC_GUIBBF_LEAVREQDIALOG" and simply set the field CUSTOMER01(that's the one field I use for the Link-To-Action-UI) invisible and that's exactly what I did.
    The only derivation from your suggestions is that I didn't make a deep copy but an enhancement instead, which Creates a delegation Object that automatically inherits from the standard CC. Technically a copy or an enhancement do exactly the same but maintenance is a lot smoother for enhancements, that's why.
    Cheers, Lukas
    P.S. @ Yugandhar, nice to see you are still around! Indeed I'm primarily occupied with the module FI-TV, that's why I'm only wandering around the ESS/MSS subforums now and then.
    Message was edited by: Lukas Weigelt

  • Subcribe to popup box button in component controller

    Hi all,
    Normally I used popup box in view controller. No, due to the program flow, I have to do it in component controller instead. Refer to my codes below, how do I subscribe to the popup box button? There is no action tab in component controller. How?
    DATA lo_window_manager  TYPE REF TO if_wd_window_manager.
      DATA lo_api_component   TYPE REF TO if_wd_component.
      DATA lo_window          TYPE REF TO if_wd_window.
      DATA lr_view_controller TYPE REF TO if_wd_view_controller.
      DATA lt_message TYPE string_table.
      DATA lw_message TYPE string.
      CLEAR lt_message.
      CONCATENATE 'Username' sy-uname 'is currently logging on the system. Do you want to continue?'
      INTO lw_message SEPARATED BY space.
      APPEND lw_message TO lt_message.
      CLEAR lw_message.
      lo_api_component  = wd_this->wd_get_api( ).
      lo_window_manager = lo_api_component->get_window_manager( ).
      CALL METHOD lo_window_manager->create_popup_to_confirm
      EXPORTING
        text                 = lt_message
        button_kind          = if_wd_window=>co_buttons_yesno
        message_type         = if_wd_window=>co_msg_type_none
       CLOSE_BUTTON         = ABAP_TRUE
        window_title         = 'Confirmation'
       WINDOW_LEFT_POSITION =
       WINDOW_TOP_POSITION  =
       WINDOW_POSITION      =
       WINDOW_WIDTH         = '10'
       WINDOW_HEIGHT        = '10'
        default_button       = if_wd_window=>co_button_no
      RECEIVING
        result               = lo_window.
    Adds an action to the popup screen buttons
    lr_view_controller = wd_this->wd_get_api( ).
      wd_this->wd_get_api( ).
      lo_window->subscribe_to_button_event(
      button = if_wd_window=>co_button_yes
      button_text = 'Yes'
      action_name = 'SUBMIT_YES_DUPLICATE'
      action_view = lr_view_controller ).
      lo_window->subscribe_to_button_event(
      button = if_wd_window=>co_button_no
      button_text = 'No'
      action_name = 'SUBMIT_NO_DUPLICATE'
      action_view = lr_view_controller ).
    open window
      lo_window->open( ).

    hi, Siong:
    You just want to Subscribe to your buttons in Pop-up, just like "YES","NO"...
    In fact, you can subscribe these buttons in COMPONENT CONTROLLER...
    Because, you use the "Confirmation Pop-up" named "popup_to_confirm" which is one attribute of "Window" when you use "Confirmation Pop-up"...
    Here, the coding is not as you wrote :
    lo_window->subscribe_to_button_event(
    button = if_wd_window=>co_button_no
    button_text = 'No'
    action_name = 'SUBMIT_NO_DUPLICATE'
    action_view = lr_view_controller ).
    Instead, use the following:
    lo_window->popup_to_confirm->subscribe_to_button_event(
                controller         = lo_api_component
                handler_name       = 'HNDL_SAVE_YES'
                button             = if_wd_window=>co_button_yes
                tooltip            = 'Yes' ).
    Now, you can add the event handler "HNDL_SAVE_YE" in your component controller...
    Best wishes.

Maybe you are looking for

  • Help Needed in GUI. Please Read!!

    Hey, i am doing a element iterator and atrribute extraction from a XML script. However, I am not able to display the results on a GUI as the results from the abstractions are done in a while loop. Could you advice on how to display the extracted data

  • Partially amount column blank

    Dear friends After making the partial payment to vendor against one invoice, if  i am going to make another payment to same vendor against the same invoice thorugh f-53 if see the partilally paid amount column it should show the previousl paid partia

  • Creative zen extra (60 gb) problem with playli

    Hi i have reached 52 playlists and i cant add anymore! I get an error each time. If i delete a playlist.. i can add a playlist. But i cant go past 52!! I have tryed updating the firmware, and i reformatted my hard dri've too. Still no luck!! I cant f

  • How do I download Audiobooks from i tunes to my IPOD shuffle?

    I bought a ipod shuffle at Walmart and was told to just plug it into my compter.  Its plugged in but I don't know where to start to download an audiobook.

  • Opening files in ACR from Lightroom

    I am looking for the way to open JPEG and CR2 files in Adobe Camera Raw from Lightroom. Any help would be much appreciated.