CFGRID does not show data (CF9.0)

Under development server, CFGRID show data , all is fine , correct. (CF9.0  version dev)
Under production server , CFGRID does not show data, only a grey line (like a HR).
How to debug this ?
Thanks,

Kindly check below to troubleshoot this issue:-
Is there any difference between your CF production & developement server setting summary?
Is there any browser script level difference between your both CF server?
Are you getting any relevant logging error in your CF server application.log & exception.log?
Run a very simple cfgrid running app to check, either getting issue with that too or not.

Similar Messages

  • PMI Problem (End-to-End Monitor does not show data)

    (End-to-End Monitor does not show data)
    As I know that XML Messages Alerts T-code: SXMB_NOMI shows all alerts including errors as well I put date Range: 01-01-2008 to 01-08-2008 and filters for "Errors" system does show more then 300 errors
    But problem in RWB - End-to-End Monitoring, when I click on display and date range 01-01-2008 to 01-08-2008 its give me graphical overview in right of window
    and shows summary:
    Errors:                     0  Average
    Open                  904  Maximum
    Successfully Completed         0  Minimum
    Overall:                  904
    I thing End-to-End Monitor doesn't get data from PMI...
    why does't show any errors, which is shows in SXMB_MONI
    Please tell me how to resolve that problem
    Thanks in Advanced
    Edited by: issue2008 issue on Aug 26, 2008 12:02 PM

    Hi,
    A destination pointing to the Integration Server is created on the J2EE engine to collect the data for the end-to-end monitoring. If this destination is incorrect or if there are several clients in the system of the integration server, the data may be sent to the incorrect client.
    This might be a reason so you can  implement the correction of the destination in a manual way as follows:
    Open the J2EE visual administrator.
    Select the Destination service.
    Select the HTTP "pmistore" destination.
    Enter the URL for the ICF service spi_gate of the Integration Server in the following form "http://<host>:<port>/sap/bc/spi_gate?sap-client=<xxx>", where 'host' denotes the host of the integration server, 'port' denotes the HTTP port, and xxx is the client of the Integration Server.
    Thanks,
    Hemant

  • Internal table field does not show data.

    hello experts,
    I am currently modifying a code in a report where it shows PO's and it amount, downpayment, Invoice, GR, payment and balance. Now the problem is, some of the PO amount(it gets the amount from ekpo-netwr) does not show on the report output. the field is t_amount-netwr. I really need help on this one guys. Thanks and take care!
    PERFORM process_with_budat.
    FORM process_with_budat.
      DELETE t_pohistory WHERE hist_type <> 'A'
                           AND hist_type <> 'E'
                           AND hist_type <> 'Q'.
      LOOP AT t_account.
        DELETE it_dtl WHERE ebeln = t_account-ebeln
                        AND psphi IS initial.
        DELETE t_ekpo WHERE ebeln = t_account-ebeln
                        AND ebelp = t_account-po_item.
        t_proj-ebelp = t_account-po_item.
        SELECT SINGLE psphi FROM prps INTO t_proj-psphi
              WHERE posid = t_account-wbs_elem_e.
        CHECK sy-subrc = 0.
        LOOP AT t_pohistory WHERE po_item = t_account-po_item
                              AND ebeln   = t_account-ebeln.
          t_amount-ebeln = t_account-ebeln.
          t_amount-psphi = t_proj-psphi.
          ON CHANGE OF t_pohistory-po_item.
            CLEAR v_netwr.
            SELECT SINGLE netwr FROM ekpo INTO v_netwr
                  WHERE ebeln = t_account-ebeln
                    AND ebelp = t_account-po_item.
            t_amount-netwr = v_netwr.
          ENDON.
          IF v_ebeln IS INITIAL AND v_ebelp IS INITIAL.
            CLEAR v_netwr.
            SELECT SINGLE netwr FROM ekpo INTO v_netwr
                  WHERE ebeln = t_account-ebeln
                    AND ebelp = t_account-po_item.
            t_amount-netwr = v_netwr.
            v_ebeln = t_account-ebeln.
            v_ebelp = t_account-po_item.
          ELSEIF v_ebeln <> t_account-ebeln AND
                 v_ebelp <> t_account-po_item.
            CLEAR v_netwr.
            SELECT SINGLE netwr FROM ekpo INTO v_netwr
                  WHERE ebeln = t_account-ebeln
                    AND ebelp = t_account-po_item.
            t_amount-netwr = v_netwr.
            v_ebeln = t_account-ebeln.
            v_ebelp = t_account-po_item.
          ELSEIF v_ebeln = t_account-ebeln AND
                 v_ebelp <> t_account-po_item.
            CLEAR v_netwr.
            SELECT SINGLE netwr FROM ekpo INTO v_netwr
                  WHERE ebeln = t_account-ebeln
                    AND ebelp = t_account-po_item.
            t_amount-netwr = v_netwr.
            v_ebeln = t_account-ebeln.
            v_ebelp = t_account-po_item.
          ENDIF.
          CHECK NOT t_amount-psphi IS INITIAL.
          if t_pohistory-pstng_date LE pa_augdt.
         IF t_pohistory-pstng_date IN so_augdt.
            IF t_pohistory-db_cr_ind = 'H'.
              t_pohistory-val_loccur = - t_pohistory-val_loccur.
              t_pohistory-val_forcur = - t_pohistory-val_forcur.
              t_pohistory-cl_val_loc = - t_pohistory-cl_val_loc.
            ENDIF.
            IF t_pohistory-hist_type = 'A'.
              IF t_pohistory-currency <> 'PHP'.
                t_amount-dpamt = t_amount-dpamt + t_pohistory-val_forcur.
              ELSE.
                t_amount-dpamt = t_amount-dpamt + t_pohistory-val_loccur.
              ENDIF.
            ELSEIF t_pohistory-hist_type = 'E'.
              IF t_pohistory-currency <> 'PHP'.
                t_amount-gramt = t_amount-gramt + t_pohistory-val_forcur.
              ELSE.
        t_amount-gramt = t_amount-gramt + t_pohistory-val_loccur.
              ENDIF.
            ELSEIF t_pohistory-hist_type = 'Q'.
              IF t_pohistory-currency <> 'PHP'.
           t_amount-iramt = t_amount-iramt + t_pohistory-val_forcur.
              ELSE.
                t_amount-iramt = t_amount-iramt + t_pohistory-val_loccur.
              ENDIF.
            ENDIF.
            IF t_pohistory-currency <> 'PHP'.
              IF t_pohistory-val_loccur = 0 OR
                 t_pohistory-val_forcur = 0.
                t_amount-tramt = t_amount-iramt.
               t_amount-tramt = t_amount-dpamt.
              ELSE.
                t_amount-tramt = t_amount-iramt.
              ENDIF.
            ELSE.
              t_amount-tramt = t_amount-iramt.
             t_amount-tramt = t_pohistory-cl_val_loc + t_amount-dpamt.
            ENDIF.
            IF NOT t_pohistory-cl_val_loc IS INITIAL.
              CONCATENATE t_pohistory-mat_doc t_pohistory-doc_year
                    INTO bkpf-awkey.
             SELECT SINGLE * FROM bkpf
                   WHERE awkey = bkpf-awkey.
    *AVH - removed wrbtr and dmbtr from selection
              SELECT augdt augbl shkzg FROM bsak
                    INTO (bsak-augdt,bsak-augbl,bsak-shkzg)
                    WHERE bukrs = bkpf-bukrs
                      AND gjahr = bkpf-gjahr
                      AND belnr = bkpf-belnr.
    *AVH
                if not bsak-augbl is initial.
                  select belnr gjahr from bsak
                   into (bsak-belnr, bsak-gjahr)
                    where bukrs = bkpf-bukrs
                     and belnr = bkpf-belnr
                     and gjahr = bkpf-gjahr.
                    select awkey from bkpf
                     into v_bkpf_aw
                     where bukrs = 'GLOB'
                       and belnr = bsak-belnr
                       and gjahr = bsak-gjahr.
                      w_len = strlen( v_bkpf_aw ).
                      w_off = w_len - 4.
                      v_awkey_1 = v_bkpf_aw+0(10).
                      v_awkey_2 = v_bkpf_aw+w_off(4).
                      select single dmbtr wrbtr from ekbe
                        into (ekbe-dmbtr, ekbe-wrbtr)
                       where belnr = v_awkey_1
                         and gjahr = v_awkey_2.
    *AVH - Changed all bsak-wrbtr to ekbe-wrbtr and dmbtr to ekbe-dmbtr.
                      IF bsak-shkzg = 'H'.
                        ekbe-dmbtr = - ekbe-dmbtr.
                        ekbe-wrbtr = - ekbe-wrbtr.
                      ENDIF.
                      IF t_pohistory-currency <> 'PHP'.
                        IF bsak-augdt GT pa_augdt.
                 IF bsak-augdt IN so_augdt.
                          t_amount-tramt = t_amount-tramt + ekbe-wrbtr.
                        ENDIF.
                      ELSE.
                        IF bsak-augdt GT pa_augdt.
                 IF bsak-augdt IN so_augdt.
                          t_amount-tramt = t_amount-tramt + ekbe-dmbtr.
                        ENDIF.
                      ENDIF.
                    endselect.
                   endselect.
                  endselect.
                endif.
              ENDSELECT.
            ENDIF.
            IF t_account-distr_perc <> 0.
              t_amount-dpamt = ( t_account-distr_perc *
                                 t_amount-dpamt ) / 100.
              t_amount-gramt = ( t_account-distr_perc *
                                 t_amount-gramt ) / 100.
              t_amount-iramt = ( t_account-distr_perc *
                                 t_amount-iramt ) / 100.
              t_amount-tramt = ( t_account-distr_perc *
                                 t_amount-tramt ) / 100.
            ENDIF.
          ENDIF.
          IF t_amount-tramt < 0.
            t_amount-tramt = 0.
          ENDIF.
          t_amount-tramt = t_amount-iramt.
          t_amount-blamt = t_amount-netwr - t_amount-tramt.
          COLLECT t_amount. CLEAR t_amount.
          APPEND t_proj.
        ENDLOOP.
        IF sy-subrc <> 0.
          CLEAR v_netwr.
          SELECT SINGLE netwr FROM ekpo INTO v_netwr
                WHERE ebeln = t_account-ebeln
                  AND ebelp = t_account-po_item.
          t_amount-ebeln = t_account-ebeln.
          t_amount-psphi = t_proj-psphi.
          t_amount-tramt = t_amount-iramt.
          t_amount-blamt = t_amount-netwr - t_amount-tramt.
          COLLECT t_amount. CLEAR t_amount.
          APPEND t_proj.
        ENDIF.
      ENDLOOP.
    endform.
    **This is where it transfers the data**
    LOOP AT t_amount.
        it_dtl-netwr = t_amount-netwr.
        it_dtl-dpamt = t_amount-dpamt.
        it_dtl-gramt = t_amount-gramt.
        it_dtl-iramt = t_amount-iramt.
        it_dtl-tramt = t_amount-tramt.
        it_dtl-blamt = t_amount-blamt.
        MODIFY it_dtl TRANSPORTING netwr dpamt gramt
                                   iramt tramt blamt
              WHERE ebeln = t_amount-ebeln
                AND psphi = t_amount-psphi.
        CLEAR it_dtl.
      ENDLOOP.

    hi ,
    just place the code and check for a particular po if its there inthe ekpo table then it has to get it for ur select single query .
    but ur logic is build on if --- endif.check this option first of all.
    if in the debugging u see the value then as u say in the report output u r not able to see the value then the problem will be space alignment also.
    check the value in debugging and let us know first of all . okay
    vijay.
    IF v_ebeln IS INITIAL AND v_ebelp IS INITIAL.
    CLEAR v_netwr.
    SELECT SINGLE netwr FROM ekpo INTO v_netwr
    WHERE ebeln = t_account-ebeln
    AND ebelp = t_account-po_item.
    break-point.
    t_amount-netwr = v_netwr.
    v_ebeln = t_account-ebeln.
    v_ebelp = t_account-po_item.
    ELSEIF v_ebeln <> t_account-ebeln AND
    v_ebelp <> t_account-po_item.
    CLEAR v_netwr.
    SELECT SINGLE netwr FROM ekpo INTO v_netwr
    WHERE ebeln = t_account-ebeln
    AND ebelp = t_account-po_item.
    break-point.
    t_amount-netwr = v_netwr.
    v_ebeln = t_account-ebeln.
    v_ebelp = t_account-po_item.
    ELSEIF v_ebeln = t_account-ebeln AND
    v_ebelp <> t_account-po_item.
    CLEAR v_netwr.
    SELECT SINGLE netwr FROM ekpo INTO v_netwr
    WHERE ebeln = t_account-ebeln
    AND ebelp = t_account-po_item.
    break-point.
    t_amount-netwr = v_netwr.

  • PLD Report does not show data from Query

    Hello,
    SAP b1 9.0 PL08 on MSSQL 2008 and I get data on the query, but when the PLD prints, it shows nothing. Is there a way to filter the data that the PLD shows? Does PLD have its own SQL script it uses b/c its not showing data from the query.
    Thanks,
    Nick

    Hi Nicholas,
    Please check below links.
    query based print layout design
    Print Layout Designer \Custom Reports
    How to Make a Print Layout (PLD) Report from a SBO Query | SBOnotes.com
    http://www.tegrous.com/wp-content/uploads/2011/07/HowTo_QPrintLs_88.pdf
    Hope this help
    Regards::::
    Atul Chakraborty

  • Report does not show data , but data exists in the cube.

    Hi All,
    I have a situation where I could not show the data in the report. When I load data from an extractor 0CO_OM_WBS_1 into a Cube directly I am able to show the data in my report. When I load the same extractor to a DSO and from the DSO when I load it into the Cube, the data does not show up in the query. To check the data I use the same restriction and could see the data reside in the cube (LISTCUBE). I compressed the requests, still it is not showing up in the query. No aggregates create on the cube.
    It shows the data if I load directly from the extractor, but not when I load data thru DSO.
    Any ideas.
    Alex(Arthur Samson)

    Hi Alex,
    I am facing same problem, i have data in cube but in report i cant see....
    i have created a generic DS, i loaded the data to DSO  then CUBE.
    data is loaded succesfully and i can see data in CUBE ( Manage ), when i am running the repory i am not getting data.
    i think you solve this issue... plz help me to resolve this issue.
    Regards,
    SHAIK.

  • Page does not show data

    Hi all,
    I would appreciate any help for the following problem that I am facing.
    I have created master-detail pages sharing the same AM.
    The details page shows details of the request from 3 different VOs.
    The VOs are entity-based and I modify the VOs using the setwhereclause for my purpose.
    The master page runs fine and shows the searched request but when I goto the details page, it renders correctly but does not show any data.
    Thanks in advance.

    Hi,
    Thanks for the reply.
    The view instance and view attribute to the details page columns are already set.
    To add to the information,the AM is also used by othe pages for logic calcuation.
    After executing these pages for one of the request, when I use ther master detail page for ther same request, it works.
    But for the other requests, the details page does not return any data.
    I suppose this is linked with EO not getting updated/refreshed with the new search request in the master details page.
    If this is supposedly the reason,then how can I refresh the EO for each master detail search?
    Has anybody encountered this issue before?
    --Riyaz
    Edited by: mriyaz on Mar 7, 2009 12:29 PM

  • Application Insights Online does not show data. How to find out where the problem is?

    Hi, 
    I have application insight set up, sometimes I see data online, but sometimes I don't. I am wondering how to: 
    1. Make sure the monitor is running for my application?
    2. see there is data has been sent to cloud server? I tried to run DebugView but it does not show up anything. Is there a log flag that can be turned on so I can log everything to a log file while it is being sent to server?
    Thanks.

    Hello ChadKaKit,
    You can try Fiddler2 to see whether something gets out of the box to dc.services.visualstudio.com.
    Make sure to either run application under the same account as a Fiddler or set a .NET proxy settings in web.config (app.Config for executables) to redirect to Fiddler.
    Also, you can take a look at the AI traces with PerfView:
    Perfview.exe /onlyProviders=*Microsoft-ApplicationInsights-Extensibility-Web,*Microsoft-ApplicationInsights-Core,*Microsoft-ApplicationInsights-Extensibility-RuntimeTelemetry,*Microsoft-ApplicationInsights-Extensibility-Rtia-SharedCore collect

  • CSCus46899 - Bridge Utilization page does not show data

    Found out to be working with google chrome....

    Hi,
    Thanks for the reply.
    The view instance and view attribute to the details page columns are already set.
    To add to the information,the AM is also used by othe pages for logic calcuation.
    After executing these pages for one of the request, when I use ther master detail page for ther same request, it works.
    But for the other requests, the details page does not return any data.
    I suppose this is linked with EO not getting updated/refreshed with the new search request in the master details page.
    If this is supposedly the reason,then how can I refresh the EO for each master detail search?
    Has anybody encountered this issue before?
    --Riyaz
    Edited by: mriyaz on Mar 7, 2009 12:29 PM

  • Meeting Room reservation does not show data in the calendar view in SharePoint 2013

    Hi,
    I have created one calendar list using the following link.
    http://www.codeproject.com/Articles/588685/ReservationplusofplusresourcesplusinplusSharePoint
    Here it giving two content type -Reservation and another is scedule & reservation.
    In reservation content type attendees filed is not added.So if i am not adding the attendees,the item is not showing in the calendar view,but the item is showing in all events view.
    And if i am using another content type,its asking for attendees and i have added my name.
    So the problem is that it shows the item where the attendees is me.
    So how can i make it public that all the user can see the bookings.
    Please help
    Thank you

    Check this pls
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/7edbfab2-885b-43b8-8cf4-90323df9b0a5/new-meetings-are-not-showing-up-in-room-mailbox-calendars?forum=exchangesvrgenerallegacy
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Reports does not show data which contains HTML tags

    Dear Gurus
    Im trying to resolve this problem but im really stuck in it. I have the requirment to customize PO reports in R12 and at the end of every report we have to show its Terms and Conditions.I have the following query wich brings me the data i need.
    SELECT
    otu.document_number po_segment1,
    otu.document_id,
    otta.template_id,
    otta.template_name,
    otta.description,
    otta.intent,
    otta.status_code,
    otta.start_date,
    otta.end_date,
    otta.instruction_text,
    otu.document_type,
    otu.document_number po_segment1,
    otu.document_id po_header_id,
    osb.HEADING titulo_seccion,
    oav.display_name,
    oav.article_text article_text
    FROM
    apps.okc_terms_templates_all otta,
    apps.okc_template_usages otu,
    apps.okc_k_articles_b okab,
    apps.okc_sections_b osb,
    apps.okc_articles_all oaa,
    apps.okc_article_versions oav
    WHERE otta.template_id = otu.template_id
    AND otu.document_id = okab.document_id
    AND osb.scn_id(+) = okab.scn_id
    AND okab.article_version_id = oav.article_version_id
    AND oaa.article_id = oav.article_id
    AND otu.document_number='21000000111' -- Purchase Document
    AND otu.DOCUMENT_TYPE NOT IN ('RFQ_RESPONSE', 'RFQ','RFI_RESPONSE','RFI','AUCTION_RESPONSE','AUCTION')
    The problem is the field okc_article_versions.article_text storage data with HTML tags as an example : ''<P>COMPANY will make it’s best effort to provide an accurate forecast to CONTRACTOR, <B><I>at the end of every quarter,</I></B> however, a forecast in any form, shall not represent a firm commitment by COMPANY.,</P>"
    So when i tried to show the information my .rtf template nothing comes out. Does anybody knows whats happenig and how to resolve it??
    Please, resolve this issue is more than urgent an i guess somebody have the answe Thanks a lot
    Mily

    Hi ,
    Currently image url have value http://serverip:port/reports/rwservlet
    I don't know is this correct? Suggest What value it should have?
    Thanks
    Vinod

  • View does not show data

    Hello All,
    I develop an iview which is subscribing to the employee search iview event.  so whenever manager clicks on an employee...i get some employee information from my bapi and display to the manager...the problem i am facing is that...i can not seem to get the data to display....
    i did some debugging and found that bapi is returning all the required data...and also employee pernr is getting pass to bapi as well...so all is good there...
    also i have this bapi call in the same action where i get the pernr from my dataObject parameter...which is filled by the event...when the manager clicks on an employee....
    i thought that i might have mapping issue....so i moved the same code for calling bapi to my wddoinit method of my component controller...and assign a static pernr....it seems that mapping is correct...since i was able to see the data in my view...
    i can not seem to figure out...why when i call bapi from my action...no data is visible....but when i call bapi (using the same code )from wddoinit method...my data is visible....
    any input on this...
    Thanks...
    J.

    Hi..
    At first you have to check table cardinality set to 0.n or any other else..cardinality set..0.n.then create
    nade instance which is mappint to ur table.after that ..you have to check back end node which is having data from backe end..if data is available then make it loop upto back end table size.then
    table instance.getnodeattributElementAt(i).getAny data.
    then add element into table node.
    wdcontext.nodetable.addelement(element).
    then iot will work fine.

  • Docky weather plugin does not show data

    Hi, I just installed docky on my Arch and I'm running it quite fine in XFCE.
    Weather plugin doesn't seem to work, the reason unknown. Locations can be added succesfully but the weather icon appears like this:
    Is there something I'm missing, like a not obvious dependency or something?
    I'm providing the debug:
    [Info 15:37:14.681] Docky version: 2.1.2 Release
    [Info 15:37:14.703] Kernel version: 2.6.38.0
    [Info 15:37:14.704] CLR version: 2.0.50727.1433
    [Debug 15:37:14.947] [UserArgs] BufferTime = 0
    [Debug 15:37:14.947] [UserArgs] MaxSize = 2147483647
    [Debug 15:37:14.947] [UserArgs] NetbookMode = False
    [Debug 15:37:14.947] [UserArgs] NoPollCursor = False
    [Debug 15:37:14.966] [SystemService] Using org.freedesktop.UPower for battery information
    [Info 15:37:14.986] [ThemeService] Setting theme: HUD
    [Debug 15:37:14.999] [DesktopItemService] Loading remap file '/usr/share/docky/remaps.ini'.
    [Debug 15:37:15.006] [DesktopItemService] Remapping 'Picasa3.exe' to 'picasa'.
    [Debug 15:37:15.006] [DesktopItemService] Remapping 'nbexec' to 'netbeans'.
    [Debug 15:37:15.006] [DesktopItemService] Remapping 'deja-dup-preferences' to 'deja-dup'.
    [Debug 15:37:15.006] [DesktopItemService] Remapping 'VirtualBox' to 'virtualbox'.
    [Warn 15:37:15.007] [DesktopItemService] Could not find remap file '/home/spidernik84/.local/share/docky/remaps.ini'!
    [Debug 15:37:15.008] [DesktopItemService] Loading desktop item cache '/home/spidernik84/.cache/docky/docky.desktop.en_US.UTF-8.cache'.
    [Info 15:37:15.304] [DockServices] Dock services initialized.
    [Debug 15:37:15.319] [DBusManager] DBus Registered: org.gnome.Docky
    [Debug 15:37:15.324] [DBusManager] DBus Registered: net.launchpad.DockManager
    [Debug 15:37:15.460] [PluginManager] Plugin manager initialized.
    [Debug 15:37:15.480] [PluginManager] Processing config file for "Battery Monitor".
    [Debug 15:37:15.573] [PluginManager] Processing config file for "Bookmarks".
    [Debug 15:37:15.574] [PluginManager] Processing config file for "CPU Monitor".
    [Debug 15:37:15.575] [PluginManager] Processing config file for "Clippy".
    [Debug 15:37:15.575] [PluginManager] Processing config file for "Clock".
    [Debug 15:37:15.576] [PluginManager] Processing config file for "Desktop".
    [Debug 15:37:15.578] [PluginManager] Processing config file for "Gmail".
    [Debug 15:37:15.579] [PluginManager] Processing config file for "Mounter".
    [Debug 15:37:15.580] [PluginManager] Processing config file for "NPR".
    [Debug 15:37:15.581] [PluginManager] Processing config file for "Network Manager".
    [Debug 15:37:15.581] [PluginManager] Processing config file for "Recent Documents".
    [Debug 15:37:15.582] [PluginManager] Processing config file for "Session Manager".
    [Debug 15:37:15.583] [PluginManager] Processing config file for "Timer".
    [Debug 15:37:15.584] [PluginManager] Processing config file for "Trash".
    [Debug 15:37:15.584] [PluginManager] Processing config file for "Weather".
    [Debug 15:37:15.585] [PluginManager] Processing config file for "Workspace Switcher".
    [Info 15:37:15.612] [PluginManager] Loaded "Docky.Widgets,1.0".
    [Info 15:37:15.612] [PluginManager] Loaded "Weather".
    [Info 15:37:15.613] [PluginManager] Loaded "Clock".
    [Info 15:37:15.613] [PluginManager] Loaded "Network Manager".
    [Info 15:37:15.613] [PluginManager] Loaded "Trash".
    [Info 15:37:15.634] [PluginManager] Loaded "Battery Monitor".
    [Debug 15:37:15.642] [BatteryMonitorProcItem] Hiding battery item (capacity=0) (max_capacity=-1) (OnBattery=False)
    [Error 15:37:15.651] [ConnectionManager] org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.NetworkManagerSystemSettings was not provided by any .service files
    [Debug 15:37:15.653] [ConnectionManager] at NetworkManagerDocklet.IConnectionManagerProxy.ListConnections () [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.ConnectionManager.UpdateConnections () [0x00000] in <filename unknown>:0
    [Error 15:37:15.654] [ConnectionManager] org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.NetworkManagerUserSettings was not provided by any .service files
    [Debug 15:37:15.654] [ConnectionManager] at NetworkManagerDocklet.IConnectionManagerProxy.ListConnections () [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.ConnectionManager.UpdateConnections () [0x00000] in <filename unknown>:0
    [Error 15:37:15.659] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:15.659] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Error 15:37:15.660] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "DeviceType"
    [Debug 15:37:15.660] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_DType () [0x00000] in <filename unknown>:0
    [Error 15:37:15.660] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "DeviceType"
    [Debug 15:37:15.660] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_DType () [0x00000] in <filename unknown>:0
    [Error 15:37:15.661] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:15.661] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Error 15:37:15.661] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "DeviceType"
    [Debug 15:37:15.662] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_DType () [0x00000] in <filename unknown>:0
    [Error 15:37:15.662] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "DeviceType"
    [Debug 15:37:15.662] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_DType () [0x00000] in <filename unknown>:0
    [Error 15:37:15.665] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:15.665] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Error 15:37:15.665] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:15.665] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Error 15:37:15.666] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:15.666] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Error 15:37:15.666] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:15.666] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Error 15:37:15.667] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:15.667] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Error 15:37:15.667] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:15.667] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Info 15:37:15.674] [PluginManager] Loaded "Recent Documents".
    [Info 15:37:15.918] [DrawingService] Could not find 'network-wireless-connected-75', using fallback of 'gnome-netstatus-75-100'.
    [Debug 15:37:16.044] [AbstractWeatherSource] Weather Channel: reload success
    [Info 15:37:16.060] [DrawingService] Could not find 'network-wireless-connected-75', using fallback of 'gnome-netstatus-75-100'.
    [Info 15:37:17.005] [Helper] Starting pidgin_control.py
    [Info 15:37:17.024] [Helper] Starting skype_control.py
    [Info 15:37:17.031] [HelperService] Helper added: /usr/share/dockmanager/scripts/banshee_control.py
    [Info 15:37:17.031] [HelperService] Helper added: /usr/share/dockmanager/scripts/deluge_badge.py
    [Info 15:37:17.031] [HelperService] Helper added: /usr/share/dockmanager/scripts/emesene_control.py
    [Info 15:37:17.031] [HelperService] Helper added: /usr/share/dockmanager/scripts/gajim_badge.py
    [Info 15:37:17.032] [HelperService] Helper added: /usr/share/dockmanager/scripts/gtg_menus.py
    [Info 15:37:17.032] [HelperService] Helper added: /usr/share/dockmanager/scripts/liferea_badge.py
    [Info 15:37:17.032] [HelperService] Helper added: /usr/share/dockmanager/scripts/mpd_control.py
    [Info 15:37:17.032] [HelperService] Helper added: /usr/share/dockmanager/scripts/open_terminal_here.py
    [Info 15:37:17.032] [HelperService] Helper added: /usr/share/dockmanager/scripts/pidgin_control.py
    [Info 15:37:17.032] [HelperService] Helper added: /usr/share/dockmanager/scripts/pithos_control.py
    [Info 15:37:17.032] [HelperService] Helper added: /usr/share/dockmanager/scripts/rhythmbox_control.py
    [Info 15:37:17.032] [HelperService] Helper added: /usr/share/dockmanager/scripts/skype_control.py
    [Info 15:37:17.032] [HelperService] Helper added: /usr/share/dockmanager/scripts/tomboy_menus.py
    [Info 15:37:17.032] [HelperService] Helper added: /usr/share/dockmanager/scripts/transmission_badge.py
    [Info 15:37:17.032] [HelperService] Helper added: /usr/share/dockmanager/scripts/tsclient_menus.py
    [Info 15:37:17.032] [HelperService] Helper added: /usr/share/dockmanager/scripts/workrave_helper.py
    [Info 15:37:17.032] [HelperService] Helper added: /usr/share/dockmanager/scripts/zeitgeist_journal.py
    [Info 15:37:17.032] [HelperService] Helper added: /usr/share/dockmanager/scripts/zeitgeist_menus.py
    [Info 15:37:17.110] [DrawingService] Could not find 'gajim', using fallback of 'extension'.
    [Warn 15:37:17.251] [DrawingService] Error loading icon from file '/usr/share/pithos/media/icon.svg': Failed to open file '/usr/share/pithos/media/icon.svg': No such file or directory
    [Debug 15:37:17.251] [DrawingService] at Gdk.Pixbuf..ctor (System.String filename, Int32 width, Int32 height, Boolean preserve_aspect_ratio) [0x00000] in <filename unknown>:0
    at Docky.Services.DrawingService.IconFromFile (System.String name, Int32 width, Int32 height) [0x00000] in <filename unknown>:0
    [Info 15:37:17.251] [DrawingService] Could not find '/usr/share/pithos/media/icon.svg', using fallback of 'extension'.
    [Warn 15:37:17.442] [DrawingService] Error loading icon from file '/usr/share/pixmaps/workrave/workrave.xpm': Failed to open file '/usr/share/pixmaps/workrave/workrave.xpm': No such file or directory
    [Debug 15:37:17.442] [DrawingService] at Gdk.Pixbuf..ctor (System.String filename, Int32 width, Int32 height, Boolean preserve_aspect_ratio) [0x00000] in <filename unknown>:0
    at Docky.Services.DrawingService.IconFromFile (System.String name, Int32 width, Int32 height) [0x00000] in <filename unknown>:0
    [Info 15:37:17.442] [DrawingService] Could not find '/usr/share/pixmaps/workrave/workrave.xpm', using fallback of 'extension'.
    [Error 15:37:25.680] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:25.680] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Error 15:37:25.681] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:25.681] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Error 15:37:25.681] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:25.681] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Error 15:37:25.681] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:25.681] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Error 15:37:25.682] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:25.682] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Error 15:37:25.682] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:25.682] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Info 15:37:25.684] [DrawingService] Could not find 'network-wireless-connected-75', using fallback of 'gnome-netstatus-75-100'.
    [Error 15:37:35.681] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:35.681] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Error 15:37:35.682] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:35.682] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Error 15:37:35.683] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:35.683] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Error 15:37:35.684] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:35.684] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Error 15:37:35.685] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:35.685] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Error 15:37:35.685] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:35.686] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Info 15:37:35.689] [DrawingService] Could not find 'network-wireless-connected-75', using fallback of 'gnome-netstatus-75-100'.
    [Error 15:37:45.682] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:45.683] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Error 15:37:45.683] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:45.684] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Error 15:37:45.684] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:45.685] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Error 15:37:45.685] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:45.685] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Error 15:37:45.686] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:45.686] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Error 15:37:45.687] [NetworkDevice] org.freedesktop.DBus.Error.AccessDenied: Interface "org.freedesktop.NetworkManager" isn't exported (or may not exist), can't access property "State"
    [Debug 15:37:45.687] [NetworkDevice] at NetworkManagerDocklet.INetworkDeviceProxy.Get (System.String interface, System.String propname) [0x00000] in <filename unknown>:0
    at NetworkManagerDocklet.NetworkDevice.get_State () [0x00000] in <filename unknown>:0
    [Info 15:37:45.692] [DrawingService] Could not find 'network-wireless-connected-75', using fallback of 'gnome-netstatus-75-100'.
    Thanks!

    Hello
    Please provide what calculation u r using..meanwhile u can check for
    data in cube....
    calculation in Calculate KF in query....
    Thanks
    Tripple k

  • 6280 does not show timestaps in message screen

    I've recently bought 6280. I've found that it does not show date and time when sms was sent/recived. When I view any message, it shows only the sender name/number, after it there is a little free space and next there is message body. I don't know how I can change it.
    Moreover, Nokia PC suite correctly shows every timestamp.
    Thanks for any advices.
    Regards
    Stanley

    when you have the message open press options then go down till you see message details
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • SSAS cube is not showing data

    Hi All,
    I have build a cube in ssas 2008. The cube processes successfully. but wheni browse the cube it does not show data.
    I check it in dsv Fact table--> Explore data --> it displays data. But i cannot see the data when i browse the cube.
    I have 3 cubes in one solution, there i also processed the complete solution. There is no problem with other cubes except for this one.
    I have only dragged the measure and not the dimension. hence i do not think there can be any relationship issue.
    Can anybody please suggest??
    Thanks & Regards, Chaitali Thaker

    Hi Chaitali,
    Check if the CALCULATE; command is present in the Scripts/Calculations tab.
    Ensure that you specify the relationship between dimensions and measure groups.
    Set any related dimension UnknownMember properties to Visible.
    thank you,
    Radhakishan

  • ST06  does not show stats

    Hi!
    Please your help!
    In our system R3, the Tx ST06 CPU does not show data for only some memory, disk, swap. The service Saposcol is running, someone of you can help me find the solution that has happened?
    Thanks,

    Hello everyone.
    Thanks for your answers, which reviewed and in all cases the saposcol this right. It found that reviewing CCMS message not shared memory. I opened a case with SAP and they sent me the following procedure which I share, and I know how the procedure is done, my R3 system with the Windows Server 2003.
    How and where these run?
    The shared memory not available message means that SAPOSCOL has not
    started properly - it did not create a new shared memory segment.
    The solution is to clear the shared memory.
    Please carry out the below steps:
    1)
    saposcol -d
    Collector > clean
    Collector > quit
    saposcol -k to stop the collector. You need to do this even thou
    it wasn't collecting any data. There still was an
    active process.
    saposcol -d (before restarting)
    Collector > leave (You should get a message Shared memory deleted
    Collector > quit
    cd /usr/sap/tmp
    mv coll.put put.coll.old
    cd
    saposcol
    Best regards

Maybe you are looking for