Problem in Popup

Dear All,
I have main 2 views and 2 window
Views  : 1) Main 2) View for Poup
Window : 1) Main 2) Window for Popup (Conatins the View for Popup)
I have One Button on MAIN view on click of which I need to open one popup so for that I have written Below Given code .
data: l_cmp_api           type ref to if_wd_component,
        l_window_manager    type ref to if_wd_window_manager,
        l_api              type ref to if_wd_view_controller.
  l_cmp_api           = wd_comp_controller->wd_get_api( ).
  l_window_manager    = l_cmp_api->get_window_manager( ).
  if wd_this->m_popup1_1 is initial.
    wd_this->m_popup1_1 = l_window_manager->create_window(
             window_name  = 'HEADER_TAX_W'
             TITLE        = 'Header Tax'
             button_kind  = if_wd_window=>CO_BUTTON_OK
    l_api = wd_this->wd_get_api( ).
so I get POPUP with button OK. I want to Register this event so that I can perform some activities. For This I have written below given code in WDDOINIT method of View for Popup .
l_api TYPE REF TO if_wd_view_controller,
l_window_ctlr TYPE REF TO if_wd_window_controller,
l_popup TYPE REF TO if_wd_window.
  l_api = wd_this->wd_get_api( ).
  l_window_ctlr = l_api->get_embedding_window_ctlr( ).
  IF l_window_ctlr IS BOUND.
    l_popup = l_window_ctlr->get_window( ).
    IF l_popup IS BOUND.
      l_popup->subscribe_to_button_event(
      button = if_wd_window=>co_button_ok
      button_text = 'Ok'                                   "#EC *
      action_name = 'OK'
      action_view = l_api
      is_default_button = abap_true ).
    ENDIF .
  ENDIF .
when I execute my application I get below error. PLease let me know where I have done mistake.
"No Button 4 Is Defined for Popup HEADER_TAX_W "
Regards
Raghvendra

Hi ,
I guess you are not defining any button while creating a window using the method create_window and you are trying to register for the same in the do_init method.
Please find the example it will be useful .
method open_popup.
  data: lo_component_api    type ref to if_wd_component,
        lo_window_manager   type ref to if_wd_window_manager,
        lo_popup_window type ref to if_wd_window,
        lv_otr             type string.
  " get window-manager by api
  lo_component_api = wd_this->wd_get_api( ).
  lo_window_manager = lo_component_api->get_window_manager( ).
  lv_otr = cl_wd_utilities=>get_otr_text_by_alias( alias = 'PTRM_WEB_UI/HELLO).
  lo_popup_window = lo_window_manager->create_window(
      window_name          = 'HEADER_TAX_W'
      title                = lv_otr
      close_in_any_case    = abap_false  " cancel action in view
      close_button         = abap_true
      default_button       = if_wd_window=>co_button_ok " Subscribe OK in view
      button_kind     = if_wd_window=>co_buttons_okcancel
lo_popup_window->set_window_size( width = '1000' height = '800' ).
  lo_popup_window->set_remove_on_close( abap_true ).
  lo_popup_window->open( ).
endmethod.
code in WDDOINIT method of View for Popup .
    data lo_api_add_part_view type ref to if_wd_view_controller.
    lo_api_add_part_view = wd_this->wd_get_api( ).
  data lo_wdw_controller type ref to if_wd_window_controller.
  lo_wdw_controller = lo_api_add_part_view->get_embedding_window_ctlr( ).
  data lo_item_popup_window type ref to if_wd_window.
  lo_item_popup_window = lo_wdw_controller->get_window( ).
  data otr_text type string.
  otr_text = cl_wd_utilities=>get_otr_text_by_alias( alias = 'PTRM_WEB_UI/OK' ).
  lo_item_popup_window->subscribe_to_button_event(
    button = if_wd_window=>co_button_ok
    button_text = otr_text
    action_name = 'OK'
    action_view = lo_api_add_part_view
    is_default_button = abap_true
*In the view there define under the actions tab try to create a action named OK and write the code there.
Thanks,
Rajkumar.S

Similar Messages

  • Anyone else having problems with popups since the new security upgrade? can't get rid of them

    anyone else having problems with popups since the new security upgrade? can't get rid of them

    You may have inadvertently installed adware. You do not need to download or install anything to fix it. It ought not to be related to any Apple security update.
    For a description of how this may have occurred, how to avoid it in the future, and for Apple's recommended actions read How to install adware. Apple's instructions are linked in the Recovery Procedure near the end of that document. Read and follow them carefully. Pay particular attention to the easily overlooked passages directing you to restart your Mac when required.

  • Problem with POPUP and exit plug

    Hi together,
    in my case under certain conditions i create a popup window from a view with the method "if_wd_window_manager->create_popup_to_confirm( )"
    The popup displays an error or success message to the user and a "OK" button is available. I stored the popup window in the attributes of the underlying view. So an action "OK_BUTTON_PRESSED" of the view is assigned to the OK-button of the popup using method "if_wd_window->subscribe_to_button_event( )".
    In the action handler two commands are executed:
    1) closing the popup with "if_wd_window->close( ) method of the popup reference stored in the view attributes".
    and
    2) firing a navigation plug from the view to the underlying window which calls its own window exit-plug.
    Now my problem is that the popup window does not close when i leave the view with the navigation plugs. Without the plugs everything is working fine. It seems that the underlying view/window must still be available to close the popup.
    In my case the exit plug is called. I can see it because a new URL is called and i can see the new page but the modal popup is still there and not closed.
    Has anyone an idea how to solve that problem?
    Edited by: Dirk Jäckel on May 23, 2008 3:34 PM

    hi dirk......
             what you can do is first execute the close method and set an attribute to 'X' once this close is over. then in your wddomodify method of the view check for that attribute and fire that plug. so the firing should take place in the modify view method.
    ---regards,
       alex b justin

  • Problem with popup conformation windows in SAP XI 7

    Dear XI community,
    in our company we have installed the latest available release of SAP XI (nw2004s) and I have the following problem. When the system (web interface) try to display a popup window in order to confirm the user actions as for example the deletion of a technical system, then the system freeze and the only acceptable action you can do is to refresh the web browser. The action that the user has done is not completed.
      Does anyone have meet the same problem and is there any suggestion for this ?
      Thanks in advance
         John Syrigos

    Which browser are you using ?
    IE7 has some problem...
    Regards,
    Sandro

  • Simple problem with popup message before adding document on system form

    Hi all,
    We have an AddOn that validates price lines on system Sales Order form matrix, so that if prices fall below a certain value, a popup is show to ask to continue or not, when user presses ADD button.
    The problem is that if he chooses yes (to continue), the Sales Order is not added since the button ADD keeps being selected ....
    Here is my code:
            [B1Listener(BoEventTypes.et_CLICK, true)]
            public virtual bool OnBeforeClick(ItemEvent pVal)
                int iResult = B1Connections.theAppl.MessageBox("Price lines fall bellow minimum! Continue?", 1, "NO", "YES", "");
                if (iResult == 1) // NO
                    // Show error
                    B1Connections.theAppl.StatusBar.SetText("OK", SAPbouiCOM.BoMessageTime.bmt_Short, SAPbouiCOM.BoStatusBarMessageType.smt_Error);
                    return false;
                // YES: Continue to add Sales Order
                return true;
    The problem is somehow related with the popup message being shown: if user says YES to continue, the system form does not continue with the standard process of adding the Sales Order (when I move the cursor above the ADD button is shows it already pressed...).
    Do I have to do anything more to force the process to continue, when the user says YES?
    Regards,
    Manuel Dias

    Thtas known problem. The solution for this is declare global variable as boolean, when user selects Yes, then set this variable to true and emulate click to add button again where before the message box check if its varaible sets to true - in this case dont show message box, only set variable to false.
    The concept of code will be
    dim continue as boolean = false
    in item event
    if continue = false then
        x = messagebox...
      if x = 1 then
        continue = true
         items.item("1").click
    end if
    else
    continue = false
    end if

  • Is there a problem using popup LOVs in a portal form with a bind variable?

    I have a portal form with 2 LOVs. The second LOV is a dependent LOV whose bind variable can be NULL. I have read Note 263923.1, "How To Create Dependent Lovs In Forms", and my form works as long as I use combo boxes to display the LOVs. I need to use popups so the user can search the LOVs as they are quite lengthy. Plus I want to be able to pick a value from my second LOV without selecting a value from the first LOV -- hence, my bind variable can be null and that is where my problem lies. As long as I select a value from the first LOV, the second LOV popup will work. If I click on the icon to display the second LOV without pre-selected a value from the first LOV, I get the following error:
    POPUP LOV ERROR:
    LOV: "9A17692880B6B8509F514F5B9CA9EC808DD403218B3CF19A33C04CD1FAB0ADE17ADC33E6B67998A933357CE5264D204E"
    Parse Message: Parse as pre-set global: "TORE".
    Find Message: LOV is of type DYNAMIC (LOV based on SQL query).
    Query: "SELECT ...."
    wwv_bind.prepare_bind: ORA-01403: no data found
    My form is based on a table with a custom layout. The sql for the second LOV is similar to: SELECT ENAME, EMPNO FROM SCOTT.EMP WHERE (DEPTNO = :DEPT AND :DEPT IS NOT NULL) OR :DEPT IS NULL.
    Thanks in advance for any help,
    Carol

    Don't use EPS any more! It does not support transparency nor color management.
    If you save vector files from Illustrator, use AI with PDF compatiblity.
    If you save image files from Photoshop, use PSD.
    If you save image files combined with vector forms and/or text from Photoshop, use PDP which is a Photoshop PDF.
    For vectors from Illustrator use CMYK files.
    For images use RGB, conversion to CMYK should never done before PDF export, better, if the printer allows it, is to export a PDF with live transparency as it is PDF/X-4
    If the printer requires a PDF with CMYK only export a PDF/X-1a.

  • JDeveloper 11.1.2.3 on glassfish 3.1.x: problem with popup component

    Hi
    How does pop up component works in JDeveloper 11.1.2.3 - adf essentials?
    This is the sample code what me trying and no pop-up comes up.
    <af:commandButton text="popuptest" useWindow="true" id="cb10">
    <af:showPopupBehavior popupId="testpopup" triggerType="click"/>
    </af:commandButton>
    <af:popup id="testpopup" >
    <af:commandButton text="popupbuttontest" id="cb9"/>
    </af:popup>
    Can anyone please advice how to go about with pop-up component.
    Thanks

    Hi All
    Any help would be appreciated.
    The pop-ups are not working.
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document title="main.jsf" id="d1">
    <af:form id="f1">
    <af:commandButton text="commandButton 1" id="cb1" useWindow="true" partialSubmit="true">
    <af:showPopupBehavior popupId="p1"/>
    </af:commandButton>
    <af:popup childCreation="deferred" autoCancel="disabled" id="p1">
    <af:commandButton text="commandButton 2" id="cb2"/>
    </af:popup>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    Does css or any custom components in the project can create this problem?
    Thanks
    Edited by: 982693 on Jan 24, 2013 11:39 PM

  • Problem with Popup window in BDC

    Hi Gurus,
    I have an SHDB record for transaction VA01 that is called by an ABAP code via "CALL TRANSACTION 'VA01' USING bdc_tab mode 'N' update 'S'".
    It does work when I use the 'A' mode, but when I use 'N' mode it shows an error that can't find a window. But this window is a modal popup asking for copy the taxes for all entries in ITEM TAB.
    We have many BDC here that works in 'N' mode, but none of them have modal popup windows.
    I've already searched for this problem in SDN but I couldn't find any answer.
    May anyone help me please?
    Thanks very much.
    Fabio Purcino

    I am trying to do this with ME15.
       1                                               T ME15 BS AA X   F
       2 SAPMM06I 0100 X                                                                                                                                                                                                                                                                         
       3                                                 BDC_CURSOR EINA-INFNR
       4                                                 BDC_OKCODE /00
       5                                                 EINA-LIFNR 0001100619
       6                                                 EINA-MATNR 93-0450C
       7                                                 EINE-EKORG 2000
       8                                                 EINE-WERKS 2000
       9                                                 EINA-INFNR 5300032946
      10                                                 RM06I-NORMB X
      11 SAPMM06I 0104 X                                                                                                                                                                                                                                                                         
      12                                                 BDC_CURSOR EINE-LOEKZ
      13                                                 BDC_OKCODE /00
      14                                                 EINA-LOEKZ X
      15                                                 EINE-LOEKZ X
      16 SAPLSPO1 0100 X                                                                                                                                                                                                                                                                         
      17                                                 BDC_OKCODE =YES
    it then keeps the last popup and I cannot stop that...
        PERFORM BDC_DYNPRO      USING 'SAPLSP01' '0100'.
        PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                      'SPOP-OPTION1'.
        PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                       '/00'.              "1432 7/22/2014
    *                                   '=ENTR'.              "1357 7/22/2014
    *                                  '=YES'.               "1356 7/22/2014

  • Problems with Popup Menu on Mac

    Hi,
    i've created an application which displays a Popup menu.
    i've used me.isPopupTrigger() to display the popup.it works well on windows.
    but when i run the same on Mac OS-X .it is not at all showing the Popup menu.
    is there any way i can solve this.
    this is very urgent.Pls help me out.
    Thanx in advance,
    Gsimhan

    Hi,
    I'm trying to find out the way how to solve it, because I have the same problem.
    It seems isPopupTrigger() return false under MacOS and under Linux (atleast MacOS X and RedHat 8).
    Did you solve this problem already. If so, please, let me know how.
    Best regards.

  • X6 problems with popups - missing images

    We recently purchased RoboHelp X6 and generated a X5 project
    in X6 and the popups that were working fine in X5 (gif images) are
    now not working (not showing up in output file).
    Anyone have this problem? Some of them have conditional
    tagging as well. Any suggestions? We are going to try and
    troubleshoot by removing the conditional tagging and see if that is
    the problem, but I just wondered if X6 was handling autosizing
    popups differently than in X5??

    Alas, the RH 6 hyperlink dialog for auto- and custom-sizing
    popups lists .htm files and bookmarks only. As you have discovered,
    you can use the "Display in frame" feature, specify a new window,
    and you get your popup. But you lose the click-close feature. The
    user has to click the "X."
    I'd like to make a couple of points.
    1. Direct placement of any file into the project's Windows
    directory deprives RH of the "knowledge" that the file is part of
    the project. When you insert a link to the file, RH adds it to the
    project list.
    2. You can import images as baggage files, and RH will keep
    track of them in the project database. However, popup dialogs don't
    list baggage image files.
    3. Instead, I save screen captures elsewhere. I often crop,
    resize and otherwise fiddle with images for graphic effect. I
    prefer not to work from the graphics application in the RH project
    folder, because I would have to keep careful track of which images
    already are linked. Resizing a linked image distorts the output
    because its original dimensions are in the html code. I would have
    to go back and re-link to the revised image.
    4. When it's ready to be brought into the project, I import
    an image into a new topic, sometimes with a headline or caption,
    but usually with no text. If I have a lot of them, sometimes I add
    a folder to the project explorer for popups and use a file name
    like homescreen_pop.htm to remind me of which topic it belongs to.
    Since it's an htm file, it appears in the popup hyperlink
    file list.
    Yes, it's an extra step. I find it well worth the trouble.
    Harvey

  • Problems with popup lov in report in Apex 4.0.2.00.08 XE 11g is a bug?

    I had a report in Apex 3.2 in XE 10g. The type of field was popup lov(editable)
    i defined a trigger on change to load data from database and fill anothers fields.
    to know in wich row change this field i have the nex javascript code
    var vRow = pThis.id.substr(pThis.id.indexOf('_')+1);
    in this release works fine and return 1 (0001) for the first rows, etc etc
    in the new version 4.0.2.00.08 in XE 11g the same code return 0000, but if i put a trigger in a field(column)(editable too) of the same row returns 0001, Is this a bug? or in apex 4 change the ordinal of rows for popup lovs only?
    thanks
    The current version of apex is 4.0.2.00.08 XE 11g (the release included with the database ) and runs in Windows Vista and internet explorer 8
    Edited by: DanielB on Jun 13, 2011 11:52 AM
    Edited by: DanielB on Jun 13, 2011 11:57 AM

    when i put the mouse over the popup lov in release 3.2 , on the console bar i can see javascript:genList0_f01_0() for the first record and javascript:genList0_f01_1() for the second
    in release 4 and 4.1 javascript:genList0_f01_$_row() for the first record and javascript:genList0_f01_1() for the second, i think this is my problem......

  • Problem opening popup from jsf page....

    Hi to all....i have a problem, i'm trying to open a popup window using "outputLink".
    My code is:
    <h:outputLink value="#" onclick="window.open('#{appManager.basePath}/admin/selectCollection.jsf','','width=600, height=400, resizable=yes, fullscreen=no, menubar=no, toolbar=no, status=no, scrollbars=no, location=no')">
         <h:outputText value="#{bundle.selCollection}"> </h:outputText>
    </h:outputLink>
    The "window.open" works perfectly, but the parent window shows the page "Directory Listing For /" with the list of directories of my root project...
    What is the problem?

    try to use the popupFrame component of jenia4faces library (http://www.jenia.org).
    Is a good solution for popups problem

  • Problems with Popups

    Hi,
    I'm having problems trying to use Popups. Not as in JPopupMenu, but a custom popup. I'm writing an application which lets you upload photos to Facebook. I want the 'tagging' part to work in pretty much the same way as it does on the Facebook website: you click on the image, a box pops up with a list of your friend's names and you can type into a text box and narrow the list down or scroll through, that kind of thing.
    Anyway, it's all working pretty well, except for a rather strange problem: when the popup appears and goes outside of the parent window, you can't enter any text into the JTextField. It's as if it was made read-only. You can still click on the JList items and select friends though, which seems strange?! It's just as if the text field can't gain focus when the popup panel goes outside of the frame - when it's inside the frame, there aren't any problems.
    The code works like this: I've created a class called AbstractPopup (which borrows quite heavily from JPopupMenu) - you can see it here:
    http://fb-photo-uploader.googlecode.com/svn/trunk/src/main/java/uk/me/phillsacre/uploader/gui/utils/AbstractPopup.java
    This is the bit that creates the javax.swing.Popup:
         private Popup getPopup()
              if (null != _popup)
                   _popup.hide();
                   _popup = null;
              PopupFactory popupFactory = PopupFactory.getSharedInstance();
              Popup popup = popupFactory.getPopup(getInvoker(), this, _desiredX,
                        _desiredY);
              popup.show();
              return popup;
         }So... anyone have any bright ideas? :-)

    ok, I just managed to find this bug report:
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4909116
    Apparently it's "not a bug, it's a feature" :-S

  • Firefox 5.0.1 on OsX Lion: big problems on popup (window.open)

    I just updated OSX to the recent Lion. Firefox 5.0.1 have a big problem with EVERY POPUP invoked by
    onclick="window.open(this.href,'win2','width=400,height=350,menubar=yes,resizable=yes'); return false;" in the a tag, with href correctly specified.
    Ignores the widths and the heights (goes almost full screen, without bars) and the problem is that it doesn't load any page.... it remains blank!
    It occurs on every joomla site having print and email icon on articles, or any other site that uses this kind of opening a popup.
    UPDATE: discovered the problem. Firebug, latest beta build.

    Not only on youtube, but everywhere: other video sites, browser games, etc.

  • Uishell problem in popup

    hello,
    I am working on uishell and I encouting a problem that need your help !
    scenario:
    I create a JSF page named " main.jspx" using Oracle Dynamic Tabs Shell , a ADF task flow named " first.xml " and a jsf page fragment called "first.jsff".
    On the "first.jsff" I create a popup "p1" and use "AdfPage.PAGE.findComponent('p1') " to call "p1" . It doesn't work . I looked for articles about it,and I know that I should writen like "AdfPage.PAGE.findComponent(' xxxx : xxx : p1') " . xxx indicate absoluteId . How can I write the absoluteId ,beacause "first.jsff" doesn't have a id in "main.jspx". Can somebody give me some advice ? thanks!!
    additional :
    If the popup "p1" is created
    on main.jspx , it works . But it isn't what I want .

    Hi,
    You can try to identify the client id of your component by viewing the source of your page displayed in the browser during runtime.
    You can also refer to this blog for much control: [http://soadev.blogspot.com/2010/02/adf-faces-rc-simple-but-robust.html]
    regards,
    pino

  • Problem with popup in a page fragment

    JDev 11.1.2.1
    I'm using the code described here to launch popup from a backing bean.
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/oct2010-otn-harvest-183714.pdf
    How-to launch a popup programmatically from Java
    Starting Oracle JDeveloper 11.1.1.3, instance of af:popup can be opened using a Java method on the RichPopup object. The RichPopup class is the bean implementation of the af:popup ADF Faces tag. To launch a popup from a managed bean, you first need to get a hold on to a rich popup instance, which you can do by searching it on the UIViewRoot or by referencing a JSF component binding – which you create using the "binding" property of the af:popup component tag. To open the popup you then call
    RichPopup.PopupHints ph = new RichPopup.PopupHints(); popup.show(ph);
    It works fine except when the popup is inside a page fragment.
    In IE 7 I get the javascript error message
    "this.getDomNode().parentNode' is null or not an object"
    I have also tried the following code; that works fine except when the popup is inside a page fragment.
    FacesContext context = FacesContext.getCurrentInstance();
    String popupId = popup.getClientId(context);
    FacesContext facesContext = FacesContext.getCurrentInstance();
    ExtendedRenderKitService service =
    Service.getRenderKitService(facesContext,
    ExtendedRenderKitService.class);
    service.addScript(facesContext,
    "AdfPage.PAGE.findComponent('" + popupId + "').show();");
    Any idea how to launch a popup in a page fragment?

    Since this is working for others I'm working on a test case to send to oracle.
    I'll try to give more information.
    Main.jspx
    has a region for Child.jsff using a bounded task flow.
    <af:region value="#{bindings.Child.regionModel}" id="r1"/>
    Child.jsff has a popup bound to backing bean and a button that calls java to open the popup.
    Child.jsff has its own set of bindings. It is not inherting parent bindings.
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:f="http://java.sun.com/jsf/core">
    <af:resource type="javascript"/>
    <af:group id="g100">
    <af:popup childCreation="deferred" autoCancel="disabled" id="p1" binding="#{TestBacking.testPop}">
    </af:popup>
    <af:commandButton text="testPopup" id="cb1" actionListener="#{TestBacking.test}"/>
    TestBacking.java
    public void setTestPop(RichPopup testPop) {
    this.testPop = testPop;
    public RichPopup getTestPop() {
    return testPop;
         public void test(ActionEvent actionEvent) {
              RichPopup.PopupHints ph = new RichPopup.PopupHints();
              testPop.show(ph);
    Edited by: Phil on Nov 14, 2011 11:53 AM
    Edited by: Phil on Nov 14, 2011 11:58 AM

Maybe you are looking for

  • View the correct MTD and YTD in a paycheck

    The View paychecks in Self service provided by PeopleSoft only shows the Month to Date and Year to date balances for the current processed payroll. Is there a report/facility provided by peoplesoft to view the MTD/YTD for any prior pay end dates. Her

  • Pause & restart timeline with one button

    I have created a lengthy animation as a prop for a TV production. They want to be able to start and stop the animation at will using only the mouse without anything being seen on the screen. To do this I want to make an invisible button that covers t

  • FileUpload UI element ...

    Hi guys, I have placed FileUpload UI element into a FileUploadView and binded it to context attributes PdfSource (binary type) and PdfName (string type). Also I have placed a button into the view. Folowing code should be executed after selecting some

  • READ statement problem

    TYPES : BEGIN OF itab,          matnr LIKE eban-matnr,          menge LIKE eban-menge,        END OF itab. TYPES : BEGIN OF itab2,           maktx LIKE makt-maktx,         END OF itab2. DATA : it_eban TYPE STANDARD TABLE OF itab. DATA : it_makt TYPE

  • Clip doesn't think it is synched to Rhapsody

    After many months of successful use with my Rhapsody account and Sansa Clip i'm stuck in a weird state where the Info section of the Clip shows that the subscription is up to date and ready to go but when I try to play any music on the Clip it is sho