Power Query Source doesn't display

I'm currently using PQ 2.16.3822.242, but updating to the latest version on another PC doesn't address my issue.
I've created many Excel spreadsheets where I use PQ to connect to an internal SQL server. I create a query and enter it as the source in PQ.
I've recently discovered that PQ no longer displays the Source when I try and edit spreadsheets that were originally created in March, 2014 or earlier. Here are 2 screenshots that demonstrate my issue. 
In screenshot 1, you see the Source as it should be listed.
Screenshot 2 is what I see in PQ for older spreadsheets. Notice that there's not text in the SQL Statement field and there's an extra item under the Applied Steps section entitled "Navigation".

But when you go to "Advanced Editor", you see a call to Sql.Databases that contains an explicit SQL query? To me, this just looks like the older queries went directly against a table and didn't include any SQL text -- what we call "native
query" -- while the newer ones do contain explicit SQL text.

Similar Messages

  • Query Result Doesn't Display

    Hi All,
    When i run the code below the query with SELECT statement display result as expected but other queries with LOOP and Object oriented running againt same table as that used in SELECT statement doesn't show anything, not even the output page. The status bar only showed the the program has complied without syntax error but no output page.
    Please I need somebody to tell me why is the output not showing.
    REPORT  read_table_flights.
    DATA: itab_flight TYPE STANDARD TABLE OF sflight,
          wa_flight TYPE sflight,
          alv TYPE REF TO cl_salv_table.
    FIELD-SYMBOLS: <wa_comp> TYPE any.
    SELECT *
      FROM sflight INTO TABLE itab_flight
      WHERE carrid = 'LH' AND seatsmax < 250 .
    Alternative one: Loop at table and write the different components of work area
    LOOP AT itab_flight INTO wa_flight.
    WRITE:  wa_flight-carrid,
            wa_flight-connid,
            wa_flight-fldate,
            wa_flight-price,
            wa_flight-currency,
            wa_flight-planetype,
            wa_flight-seatsmax,
            wa_flight-seatsocc,
            wa_flight-paymentsum.
            skip.
    endloop.
    **Alternative two: Loop at table with dynamic assign of component
    *LOOP AT itab_flight INTO wa_flight.
    DO.
       ASSIGN COMPONENT sy-index OF STRUCTURE wa_flight TO <wa_comp>.
       IF sy-subrc <> 0.
         SKIP.
         EXIT.
       ENDIF.
       WRITE <wa_comp>.
    ENDDO.
    *ENDLOOP.
    object oriented way
    *cl_salv_table=>factory( IMPORTING r_salv_table = alv
                           CHANGING  t_table      = itab_flight ).
    *alv->display( ).

    Thanks SaiRam  for your prompt reply. and thanks to everyone who has read my post.
    The GUI i have is fresh installation. The SELECT query is working fine but LOOP doesn't display result even when SELECT does.
    Please help me.

  • How to use Power Query to load data from a single source into multiple tables

    Hi all,
    I have a requirement to load my data into three different data models using Power Query. Is that possible?
    My source is a SharePoint survey list, with similar questions like:
    1) Course lecturer - John Doe
    1a) The course was useful (rate 1 to 5)
    1b) The lecturer displayed good knowledge of topic (rate 1 to 5)
    2) Course Lecturer - Mary Brown
    2a) The course was useful (rate 1 to 5)
    2b) The lecturer displayed good knowledge of topic (rate 1 to 5)
    I would like to split the data into separate data models (one for John Doe; another for Mary Brown), so that I can compare the different lecturers. Other than running separate surveys for each of them, I thought of using Power Query to transform the data.
    Is it possible?
    Thanks.
    Regards
    GM

    Yes, this is possible.
    Start with a single query that returns you the data for all lecturers.
    Right-click on the "all lecturers" query in the queries pane, and choose Reference, once for each lecturer. This will create a query for each lecturer.
    Open the query for each lecturer and filter the data so that only that lecturer's results are visible.
    Click "Close & Load To..." for each lecturer's query  to load the data into the data model. This will create a data model table for each lecturer.
    If your question is more about how to transform such a survey list into a table that can be easily filtered, please provide an example of how the list shows up in Power Query.
    Ehren

  • Currency fields in Salesforce reports display as "[Record]" in Power Query

    Currency fields in Salesforce reports display as [Record] in excel when using power query.    Can include screenshots due to forum rules.

    Thanks - that helped me figure it out.
    IF you right click on the source and click edit to get into edit mode on the query, then you have the option to expand the record.  Doing this and saving does the trick.  
    Will try and post some screenshots later if others run into this.

  • Can not see new Power Query data sources?

    Hi, 
    New Power Query can connect to three new data sources: Sybase IQ, Exchange, Dynamics CRM Online
    http://office.microsoft.com/en-us/excel-help/whats-new-in-power-bi-ha104149776.aspx
    I just installed the latest Power Query and wanted to connect to CRM Online instance. For some reason I can not see these new data sources, what am I missing?
    Thanks in advance!

    Hmm... I didn't think we had quite released this version yet. It's possible that that website went live before the link to the new download. There should be a blog entry about this on the "Power BI" blog in the very near future.
    At the risk of providing a spoiler :), the CRM Online support is via OData.

  • Power Map doesn't display in ribbon

    I installed Power Maps Preview and the add-in is active, but it doesn't display in the ribbon. I unistalled the program several times and re-downloaded it, but it still does not work. Many of the discussion threads on this topic contain dead links for fixes
    or don't provide much information. How have others solved this issue? I have Home Office 2013. Thanks!

    That's a strange one. Run Thinkvantage System Update, or just download and install most recent PM driver and software. Maybe refreshing these will give you PM back. Otherwise, I believe you may also have a setting in the BIOS for the beep. Not in front of my X100 now, but I know I have this setting on my X60s.

  • Extending Expert Query VO but Query doesn't display in standard VO

    I need to add a new attribute to an export query VO (oracle.apps.icx.por.reqmgmt.server.GroupReqsPublicVO), but when I edit the standard VO in JDeveloper the existing query doesn't display (query is blank and no attributes are listed). I can get the query from the xml file, but does this mean there is a problem? Should I just copy the query from the xml file and use that?

    All of the info is in the standard VO xml file (ie query, attributes, etc), but when I choose Edit VO ... in JDev nothing is displayed. A similar standard VO (slightly different query) appears fine in JDev - query and attributes displayed.
    I ended up trying the following, which appears to be working (although I am still waiting on some test data from the users):
    Create new VO, extending standard
    Copied the query from standard VO xml file
    This left me with all of the queried attributes, but none of the transient attributes.
    I tried to copy the additional attributes from the standard VO xml file to the extending VO xml file in JDev, but the extending VO xml file is protected.
    Then I closed JDev, manually edited the extending VO xml file to include the additional transient attributes that are in the standard VO xml file.
    Whether it was related or not, but when rebuilding my project, it complained that it couldn't find the standard VO's Impl java file, so I decompiled the class file to produce that.

  • Treat one power query table as source for another

    Hi,
    I have a Power Query Table named as Final Table - this table has inturn been loaded to the Data Model.  I would like to use this Table (Final Table) as a source for creating another Power Query Table (I want to perform further actions on the
    Final Table to create yet another Table).  So I just want to know what I should specify in the Source (the first line after the Let statement) in the Advanced Editor.
    I do not see any option in the Power Query Ribbon to create an existing Power Query Table as a source.
    Thank you.
    Regards, Ashish Mathur Microsoft Excel MVP www.ashishmathur.com

    You can just use the query name in your new expression. Since it has a space, write #"Final Table" whenever you refer to it.
    (Note that you probably don't need to load this table to the Data Model, but only the one which includes all your transformations. To unload the first table, open Workbook Queries pane select Final Table and after right click, select "Load To".
    In the Load To dialog uncheck the Load to Data Model option).
    Example:
    let
    source=#"Final Table"
    in source

  • [Plasma-Next] Docky doesn't display application icons

    Hello,
    I have a fresh Arch + Plasma 5 install running on my machine. I have followed the arch-wiki to get it up and running. However I have installed Docky and it's shooting errors at me. The main issue is that it doesn't display most of the applications icons. Screenshot here. The order of the apllications is Docky Settings, Firefox, Konsole, Separator, Trashcan, Weather. I am using the default Breeze icon theme and switching to a different one didin't help.
    Output from terminal when running Docky:
    [vilius@asus ~]$ docky
    [Info 16:15:09.941] Docky version: 2.2.0 Release
    [Info 16:15:09.960] Kernel version: 3.18.2.2
    [Info 16:15:09.961] CLR version: 4.0.30319.17020
    [Error 16:15:10.111] [SystemService] Could not initialize power manager dbus: 'Could not load type 'Docky.Services.SystemService+IUPowerProxy' from assembly 'DBus.Proxies, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' because it is implements the inaccessible interface 'Docky.Services.SystemService+IUPower'.'
    [Info 16:15:10.113] [SystemService] at System.Reflection.Emit.TypeBuilder.CreateTypeInfo () [0x00000] in <filename unknown>:0
    at System.Reflection.Emit.TypeBuilder.CreateType () [0x00000] in <filename unknown>:0
    at DBus.TypeImplementer.GetImplementation (System.Type declType) [0x00000] in <filename unknown>:0
    at DBus.BusObject.GetObject (DBus.Connection conn, System.String bus_name, DBus.ObjectPath object_path, System.Type declType) [0x00000] in <filename unknown>:0
    at DBus.Connection.GetObject (System.Type type, System.String bus_name, DBus.ObjectPath path) [0x00000] in <filename unknown>:0
    at DBus.Connection.GetObject[IUPower] (System.String bus_name, DBus.ObjectPath path) [0x00000] in <filename unknown>:0
    at Docky.Services.SystemService.InitializeBattery () [0x00000] in <filename unknown>:0
    [Error 16:15:10.115] [SystemService] Could not initialize Network Manager dbus: 'Could not load type 'Docky.Services.SystemService+INetworkManagerProxy' from assembly 'DBus.Proxies, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' because it is implements the inaccessible interface 'Docky.Services.SystemService+INetworkManager'.'
    [Info 16:15:10.115] [SystemService] at System.Reflection.Emit.TypeBuilder.CreateTypeInfo () [0x00000] in <filename unknown>:0
    at System.Reflection.Emit.TypeBuilder.CreateType () [0x00000] in <filename unknown>:0
    at DBus.TypeImplementer.GetImplementation (System.Type declType) [0x00000] in <filename unknown>:0
    at DBus.BusObject.GetObject (DBus.Connection conn, System.String bus_name, DBus.ObjectPath object_path, System.Type declType) [0x00000] in <filename unknown>:0
    at DBus.Connection.GetObject (System.Type type, System.String bus_name, DBus.ObjectPath path) [0x00000] in <filename unknown>:0
    at DBus.Connection.GetObject[INetworkManager] (System.String bus_name, DBus.ObjectPath path) [0x00000] in <filename unknown>:0
    at Docky.Services.SystemService.InitializeNetworkManager () [0x00000] in <filename unknown>:0
    [Info 16:15:10.122] [ThemeService] Setting theme: Transparent
    [Warn 16:15:10.141] [DesktopItemService] Could not find remap file '/home/vilius/.local/share/docky/remaps.ini'!
    [Info 16:15:10.328] [DockServices] Dock services initialized.
    [Info 16:15:10.496] [PluginManager] Loaded "Trash".
    [Error 16:15:10.499] [NativeInterop] Failed to query info for '': Operation not supported
    [Info 16:15:10.499] [NativeInterop] at Docky.Services.NativeInterop+<GFileQueryInfo>c__AnonStorey7.<>m__0 () [0x00000] in <filename unknown>:0
    at Docky.Services.NativeInterop.NativeHelper[IntPtr] (System.Func`1 act, IntPtr errorReturn, System.String notFound, System.String error) [0x00000] in <filename unknown>:0
    [Fatal 16:15:10.500] [GLib-GIO] g_file_info_get_attribute_uint32: assertion 'G_IS_FILE_INFO (info)' failed
    [Error 16:15:10.500] [NativeInterop] Failed to query info for '': Operation not supported
    [Info 16:15:10.500] [NativeInterop] at Docky.Services.NativeInterop+<GFileQueryInfo>c__AnonStorey7.<>m__0 () [0x00000] in <filename unknown>:0
    at Docky.Services.NativeInterop.NativeHelper[IntPtr] (System.Func`1 act, IntPtr errorReturn, System.String notFound, System.String error) [0x00000] in <filename unknown>:0
    [Fatal 16:15:10.501] [GLib-GIO] g_file_info_get_icon: assertion 'G_IS_FILE_INFO (info)' failed
    [Fatal 16:15:10.501] [GLib-GObject] g_object_ref: assertion 'G_IS_OBJECT (object)' failed
    [Fatal 16:15:10.557] [GLib] Source ID 72 was not found when attempting to remove it
    [Fatal 16:15:10.557] [GLib] Source ID 75 was not found when attempting to remove it
    [Fatal 16:15:10.557] [GLib] Source ID 71 was not found when attempting to remove it
    [Info 16:15:10.601] [DrawingService] Could not find 'application-default-icon', using fallback of 'application-x-executable'.
    Cairo.Surface is leaking, programmer is missing a call to Dispose
    Set MONO_CAIRO_DEBUG_DISPOSE to track allocation traces
    [Info 16:15:10.677] [DrawingService] Could not find 'application-default-icon', using fallback of 'application-x-executable'.
    [Info 16:15:10.817] [DrawingService] Could not find 'utilities-terminal', using fallback of 'application-default-icon'.
    [Info 16:15:10.818] [DrawingService] Could not find 'application-default-icon', using fallback of 'application-x-executable'.
    [Info 16:15:10.831] [DrawingService] Could not find 'utilities-terminal', using fallback of 'application-default-icon'.
    [Info 16:15:10.831] [DrawingService] Could not find 'application-default-icon', using fallback of 'application-x-executable'.
    I have also tried avant-window-navigator but had the same issues with it.
    Please have a look at the output, maybe the icons problem is caused by some errors encountered before all the drawing?
    Thank you!

    Hello,
    I have a fresh Arch + Plasma 5 install running on my machine. I have followed the arch-wiki to get it up and running. However I have installed Docky and it's shooting errors at me. The main issue is that it doesn't display most of the applications icons. Screenshot here. The order of the apllications is Docky Settings, Firefox, Konsole, Separator, Trashcan, Weather. I am using the default Breeze icon theme and switching to a different one didin't help.
    Output from terminal when running Docky:
    [vilius@asus ~]$ docky
    [Info 16:15:09.941] Docky version: 2.2.0 Release
    [Info 16:15:09.960] Kernel version: 3.18.2.2
    [Info 16:15:09.961] CLR version: 4.0.30319.17020
    [Error 16:15:10.111] [SystemService] Could not initialize power manager dbus: 'Could not load type 'Docky.Services.SystemService+IUPowerProxy' from assembly 'DBus.Proxies, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' because it is implements the inaccessible interface 'Docky.Services.SystemService+IUPower'.'
    [Info 16:15:10.113] [SystemService] at System.Reflection.Emit.TypeBuilder.CreateTypeInfo () [0x00000] in <filename unknown>:0
    at System.Reflection.Emit.TypeBuilder.CreateType () [0x00000] in <filename unknown>:0
    at DBus.TypeImplementer.GetImplementation (System.Type declType) [0x00000] in <filename unknown>:0
    at DBus.BusObject.GetObject (DBus.Connection conn, System.String bus_name, DBus.ObjectPath object_path, System.Type declType) [0x00000] in <filename unknown>:0
    at DBus.Connection.GetObject (System.Type type, System.String bus_name, DBus.ObjectPath path) [0x00000] in <filename unknown>:0
    at DBus.Connection.GetObject[IUPower] (System.String bus_name, DBus.ObjectPath path) [0x00000] in <filename unknown>:0
    at Docky.Services.SystemService.InitializeBattery () [0x00000] in <filename unknown>:0
    [Error 16:15:10.115] [SystemService] Could not initialize Network Manager dbus: 'Could not load type 'Docky.Services.SystemService+INetworkManagerProxy' from assembly 'DBus.Proxies, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' because it is implements the inaccessible interface 'Docky.Services.SystemService+INetworkManager'.'
    [Info 16:15:10.115] [SystemService] at System.Reflection.Emit.TypeBuilder.CreateTypeInfo () [0x00000] in <filename unknown>:0
    at System.Reflection.Emit.TypeBuilder.CreateType () [0x00000] in <filename unknown>:0
    at DBus.TypeImplementer.GetImplementation (System.Type declType) [0x00000] in <filename unknown>:0
    at DBus.BusObject.GetObject (DBus.Connection conn, System.String bus_name, DBus.ObjectPath object_path, System.Type declType) [0x00000] in <filename unknown>:0
    at DBus.Connection.GetObject (System.Type type, System.String bus_name, DBus.ObjectPath path) [0x00000] in <filename unknown>:0
    at DBus.Connection.GetObject[INetworkManager] (System.String bus_name, DBus.ObjectPath path) [0x00000] in <filename unknown>:0
    at Docky.Services.SystemService.InitializeNetworkManager () [0x00000] in <filename unknown>:0
    [Info 16:15:10.122] [ThemeService] Setting theme: Transparent
    [Warn 16:15:10.141] [DesktopItemService] Could not find remap file '/home/vilius/.local/share/docky/remaps.ini'!
    [Info 16:15:10.328] [DockServices] Dock services initialized.
    [Info 16:15:10.496] [PluginManager] Loaded "Trash".
    [Error 16:15:10.499] [NativeInterop] Failed to query info for '': Operation not supported
    [Info 16:15:10.499] [NativeInterop] at Docky.Services.NativeInterop+<GFileQueryInfo>c__AnonStorey7.<>m__0 () [0x00000] in <filename unknown>:0
    at Docky.Services.NativeInterop.NativeHelper[IntPtr] (System.Func`1 act, IntPtr errorReturn, System.String notFound, System.String error) [0x00000] in <filename unknown>:0
    [Fatal 16:15:10.500] [GLib-GIO] g_file_info_get_attribute_uint32: assertion 'G_IS_FILE_INFO (info)' failed
    [Error 16:15:10.500] [NativeInterop] Failed to query info for '': Operation not supported
    [Info 16:15:10.500] [NativeInterop] at Docky.Services.NativeInterop+<GFileQueryInfo>c__AnonStorey7.<>m__0 () [0x00000] in <filename unknown>:0
    at Docky.Services.NativeInterop.NativeHelper[IntPtr] (System.Func`1 act, IntPtr errorReturn, System.String notFound, System.String error) [0x00000] in <filename unknown>:0
    [Fatal 16:15:10.501] [GLib-GIO] g_file_info_get_icon: assertion 'G_IS_FILE_INFO (info)' failed
    [Fatal 16:15:10.501] [GLib-GObject] g_object_ref: assertion 'G_IS_OBJECT (object)' failed
    [Fatal 16:15:10.557] [GLib] Source ID 72 was not found when attempting to remove it
    [Fatal 16:15:10.557] [GLib] Source ID 75 was not found when attempting to remove it
    [Fatal 16:15:10.557] [GLib] Source ID 71 was not found when attempting to remove it
    [Info 16:15:10.601] [DrawingService] Could not find 'application-default-icon', using fallback of 'application-x-executable'.
    Cairo.Surface is leaking, programmer is missing a call to Dispose
    Set MONO_CAIRO_DEBUG_DISPOSE to track allocation traces
    [Info 16:15:10.677] [DrawingService] Could not find 'application-default-icon', using fallback of 'application-x-executable'.
    [Info 16:15:10.817] [DrawingService] Could not find 'utilities-terminal', using fallback of 'application-default-icon'.
    [Info 16:15:10.818] [DrawingService] Could not find 'application-default-icon', using fallback of 'application-x-executable'.
    [Info 16:15:10.831] [DrawingService] Could not find 'utilities-terminal', using fallback of 'application-default-icon'.
    [Info 16:15:10.831] [DrawingService] Could not find 'application-default-icon', using fallback of 'application-x-executable'.
    I have also tried avant-window-navigator but had the same issues with it.
    Please have a look at the output, maybe the icons problem is caused by some errors encountered before all the drawing?
    Thank you!

  • "0" doesn't display before comma in float numbers...

    Hi fellow APEX users,
    Have you ever experienced this issue with float numbers in your APEX forms?
    When I type float numbers between -1 and 1 in forms (e.g. 0,7 or -0,2), and after having submitted the form then reloaded it for editing, "0" doesn't display before the comma.
    For example I got:
    *,7* instead of *0,7*
    -,2 instead of -0,2
    etc.
    If I look in SQL Workshop, I see the same (no "0") but I'm pretty sure that the value is properly recorded in the database.
    The thing is that it's not very nice for the end users, as they can think the value is wrong.
    Does anybody have a solution to display proper float numbers with "0" in the forms?
    For info I use the NUMBER type.
    Any help much appreciated!
    Thanks,
    Romain.
    Edited by: romain.apex on Feb 5, 2012 8:30 PM

    Hi Peter!
    Of what type is your item? Display as text or do you use the item value for further computations.
    If it is only for means of displaying the correctly formatted number, I'd change the item source to a query and would equip the desired column with a to_char function like:
    select to_char(str_be_main, 'fm999G999G990D00') from yourtable where ...You could also use a post calculation computation and enforce the format there:
    to_char(:P2027_YOUR_ITEM,'fm999G999G990D00')Maybe this helps!
    Brgds,
    Seb
    Edited by: skahlert on 11.02.2011 07:53

  • New Cisco 1921 doesn't display running configuration

    Hi All,
    I've recently received this new Cisco 1921 routers with Cisco CP loaded, so it comes up with the annoying change username and password at first access. I've removed all of those files from the flash memory, and rebooted it, and it came up with the proper initial configuration dialog, which is what I wanted.
    But, whenever I configure the router with a set of basic configuration, like interface, routing, and snmp loggings, and hit wr mem, it doesn't display at all when I do "sh run". It's weird cause when I do sh run | sec rip  or any other stuff that I have configured, it shows up , but not in sh run at all.
    What's the deal with the new routers??? Even sh version doesn't show the config-register or memory allocation details. Which is weird!
    xxxxx#sh ver
    Cisco IOS Software, C1900 Software (C1900-UNIVERSALK9-M), Version 15.1(4)M4, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2012 by Cisco Systems, Inc.
    Compiled Tue 20-Mar-12 17:58 by prod_rel_team
    ROM: System Bootstrap, Version 15.0(1r)M16, RELEASE SOFTWARE (fc1)
    xxxxxx uptime is 6 minutes
    System returned to ROM by reload at 06:39:25 UTC Mon Apr 29 2013
    System restarted at 06:40:59 UTC Mon Apr 29 2013
    System image file is "usbflash0:c1900-universalk9-mz.SPA.151-4.M4.bin"
    Last reload type: Normal Reload
    Last reload reason: Reload Command
    This product contains cryptographic features and is subject to United
    States and local country laws governing import, export, transfer and
    use. Delivery of Cisco cryptographic products does not imply
    third-party authority to import, export, distribute or use encryption.
    Importers, exporters, distributors and users are responsible for
    compliance with U.S. and local country laws. By using this product you
    agree to comply with applicable laws and regulations. If you are unable
    ==================================================================
    xxxxx#sh run
    Building configuration...
    Current configuration : 1930 bytes
    ! Last configuration change at 06:42:46 UTC Mon Apr 29 2013
    version 15.1
    service timestamps debug datetime msec
    service timestamps log datetime msec
    service password-encryption
    hostname xxxxxx
    boot-start-marker
    boot-end-marker
    logging userinfo
    logging buffered 4096
    no aaa new-model
    no ipv6 cef
    ip source-route
    ip cef
    xxxxxxx #sh run | sec rip
    router rip
    version 2
    network 172.17.0.0
    network 192.168.10.0
    network 192.168.13.0
    no auto-summary
    xxxxxxx#sh license feature
    Feature name             Enforcement  Evaluation  Subscription   Enabled  RightToUse
    ipbasek9                 no           no          no             yes      no
    securityk9               yes          yes         no             no       yes
    datak9                   yes          yes         no             no       yes
    SSL_VPN                  yes          yes         no             no       yes
    ios-ips-update           yes          yes         yes            no       yes
    WAAS_Express             yes          yes         no             no       yes

    Same stuff, but I do have another router that's working fine when I do a sh run.
    Problematic router:
    xxxxxx#sh hardware
    Cisco IOS Software, C1900 Software (C1900-UNIVERSALK9-M), Version 15.1(4)M4, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2012 by Cisco Systems, Inc.
    Compiled Tue 20-Mar-12 17:58 by prod_rel_team
    ROM: System Bootstrap, Version 15.0(1r)M16, RELEASE SOFTWARE (fc1)
    xxxxx uptime is 1 hour, 35 minutes
    System returned to ROM by reload at 06:39:25 UTC Mon Apr 29 2013
    System restarted at 06:40:59 UTC Mon Apr 29 2013
    System image file is "usbflash0:c1900-universalk9-mz.SPA.151-4.M4.bin"
    Last reload type: Normal Reload
    Last reload reason: Reload Command
    This product contains cryptographic features and is subject to United
    States and local country laws governing import, export, transfer and
    use. Delivery of Cisco cryptographic products does not imply
    third-party authority to import, export, distribute or use encryption.
    Importers, exporters, distributors and users are responsible for
    compliance with U.S. and local country laws. By using this product you
    agree to comply with applicable laws and regulations. If you are unable
    Working router:
    yyyyyyy#sh ver
    Cisco IOS Software, C1900 Software (C1900-UNIVERSALK9-M), Version 15.1(4)M4, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2012 by Cisco Systems, Inc.
    Compiled Tue 20-Mar-12 17:58 by prod_rel_team
    ROM: System Bootstrap, Version 15.0(1r)M16, RELEASE SOFTWARE (fc1)
    yyyyyyy uptime is 1 week, 3 days, 10 hours, 19 minutes
    System returned to ROM by power-on
    System restarted at 06:19:19 est Fri Apr 19 2013
    System image file is "usbflash0:c1900-universalk9-mz.SPA.151-4.M4.bin"
    Last reload type: Normal Reload
    This product contains cryptographic features and is subject to United
    States and local country laws governing import, export, transfer and
    use. Delivery of Cisco cryptographic products does not imply
    third-party authority to import, export, distribute or use encryption.
    Importers, exporters, distributors and users are responsible for
    compliance with U.S. and local country laws. By using this product you
    agree to comply with applicable laws and regulations. If you are unable
    to comply with U.S. and local laws, return this product immediately.
    A summary of U.S. laws governing Cisco cryptographic products may be found at:
    http://www.cisco.com/wwl/export/crypto/tool/stqrg.html
    If you require further assistance please contact us by sending email to
    [email protected].
    Cisco CISCO1921/K9 (revision 1.0) with 491520K/32768K bytes of memory.
    Processor board ID FGLxxxxxx
    2 Gigabit Ethernet interfaces
    1 terminal line
    DRAM configuration is 64 bits wide with parity disabled.
    255K bytes of non-volatile configuration memory.
    249840K bytes of USB Flash usbflash0 (Read/Write)
    License Info:
    License UDI:
    Device#   PID                   SN
    *0        CISCO1921/K9          FGLxxxxxx    
    Technology Package License Information for Module:'c1900'
    Technology    Technology-package           Technology-package
                  Current       Type           Next reboot 
    ipbase        ipbasek9      Permanent      ipbasek9
    security      None          None           None
    data          None          None           None
    Configuration register is 0x2102

  • Office 365 Excel Power Query Preview Problem Signing In -- Appears Corrupted, Please Repair

    The image below shows that Excel "thinks" I'm signed in with an organizational account that has Power BI Preview, yet Power Query from Excel doesn't think I'm signed in and says it's corrupted when I try to sign in.  I was trying to use the
    online search to find the odata feed that I have set up for Office 365 Power BI Preview.  So, alternatively, when I go to other data sources and specify the odata feed that is set up properly and available, Microsoft says "access forbidden". 
    Clearly, account credentials aren't being passed correctly.  I have read other posts on this forum and have verified that I have the latest Power Query Preview, that I only use lower case letters to sign in, that IE cache is clear.  I have repaired,
    uninstalled and re-installed Power Query Preview multiple times, with no change in this behavior. 
    Any ideas?
    Neil

    Zarar, yes, tried that, and much more. 
    Even though Power BI is supposed to navigate through firewalls, I believe we are having firewall problems. 
    I need to ask our network people to open up for Microsoft on this one, but there's no good information out there on the sites/IPs required to make Power BI Preview work. 
    In addition, the complexity that comes with using domain credentials, Microsoft Account (live) credentials, and Organizational credentials (O365) on the same computer at various times of the day complicates matters.
    That said, I can take my machine to my home network and get as far as attempting to connect to the odata feed I set up -- except the data source is on a computer with an internal IP and Power Query cannot resolve the local computer name -- i.e. x.x.local. 
    So now, I have two questions:
    1. What IPs need to be unblocked to make Power BI work?
    2. Is there a way to get the odata feed to work when the datasource is on an internal network (the datasource is working and tests okay from Power BI Admin -- but does not resolve the machine name when coming in through Excel via the odata feed from an off-site
    location
    Neil

  • What's Preventing Query Folding in this Power Query?

    I've watched the Power Query presentation at the 2014 Tech Ed, and I'm trying to understand why this PQ (below) doesn't employ query folding.  The Tech Ed Power Point presentation states suggests that "Internal Power Query logic" affects folding,
    but I'm unclear what that means.  Are the Text functions inhibiting query folding?  If so, how might I "scrub" arguments in a custom function parameter list while still encouraging query folding?
    let
    Source = Teradata.Database("fsltdprd.am.freescale.net"),
    Product = Source{[Schema="EDW",Item="PROD_PDM_EFF_CURR"]}[Data],
    Prodline = Source{[Schema="EDW",Item="PROD_LN_PDM_DOC"]}[Data],
    ProdFilter = Table.SelectRows(Product,
    each [MTRL_TYPE_CD] = Text.Upper(Text.Trim("AA"))
    and Date.From([REVSN_RLSE_DTTM]) >= #date(2014,1,1)),
    PrdlFilter = Table.SelectRows(Prodline,
    each [TM_VAR_STS_FLG] = "A"
    and [EFF_TO_DT] = #date(3999,12,31)
    and Text.StartsWith([PTI_CD],Text.Upper(Text.Trim("J")))),
    ProdCols = Table.SelectColumns(ProdFilter,
    {"PART_ID","MTRL_TYPE_CD","PLC_CD","PAO_CD","REVSN_RLSE_DTTM","PROD_LN_ID"}),
    PrdlCols = Table.SelectColumns(PrdlFilter, {"DOC_ID","PTI_CD","PKG_CD"}),
    Join1 = Table.Join(ProdCols, {"PROD_LN_ID"}, PrdlCols, {"DOC_ID"}, JoinKind.Inner),
    Results = Table.RemoveColumns(Join1, {"DOC_ID"})
    in
    Results

    Btw, this is the "finished" product ... 
    (optional #"Pti 1 thru 4" as text
    , optional #"Mtrl Type" as text
    , optional #"Last Revision Dttm" as datetime) =>
    let
    Source = Teradata.Database("fsltdprd.am.freescale.net"),
    MtrlType = Text.Upper(Text.Trim(#"Mtrl Type")),
    PtiCode = Text.Upper(Text.Trim(#"Pti 1 thru 4")),
    LRevDttm = #"Last Revision Dttm",
    Product = Source{[Schema="EDW",Item="PROD_PDM_EFF_CURR"]}[Data],
    Prodline = Source{[Schema="EDW",Item="PROD_LN_PDM_DOC"]}[Data],
    ProdFilter = Table.SelectRows(Product,
    each (if MtrlType = null then true else [MTRL_TYPE_CD] = MtrlType )
    and (if LRevDttm = null then true else [REVSN_RLSE_DTTM] >= LRevDttm )),
    PrdlFilter = Table.SelectRows(Prodline,
    each [TM_VAR_STS_FLG] = "A"
    and [EFF_TO_DT] = #date(3999,12,31)
    and (if PtiCode = null then true else Text.StartsWith([PTI_CD], PtiCode ))),
    ProdCols = Table.SelectColumns(ProdFilter,
    {"PART_ID","MTRL_TYPE_CD","PLC_CD","PAO_CD","REVSN_RLSE_DTTM","PROD_LN_ID"}),
    PrdlCols = Table.SelectColumns(PrdlFilter, {"DOC_ID","PTI_CD","PKG_CD"}),
    Join1 = Table.Join(ProdCols, {"PROD_LN_ID"}, PrdlCols, {"DOC_ID"}, JoinKind.Inner),
    Results = Table.RemoveColumns(Join1, {"DOC_ID"})
    in
    Results

  • Refresh Pivot Bug in Power Query version 2.16.3822.242

    I have an Excel file with Power Query and several Pivot Tables built from the Power Query data. The Pivots are built from the table loaded to a worksheet, and there is a timeline date slicer connected to all those various Pivot Tables.
    In build 2.16.3822.242, refreshing the Pivot Table (either by right-click/Refresh, or programmatically via macro) causes the date timeline slicer to disappear (literally be deleted from the sheet).  The Pivot Refresh succeeds fine.
    This does not occur when using Power Query Version: 2.16.3785.242. So for the time being, my only workaround is to avoid installing the newer build.
    Any ideas what's causing it?  I told my coworker (the primary user of the file) that she could still use the file and go filter every pivot's date range separately, rather than the slicer, but that is laborious and for now she is just going to remote-desktop
    into a computer that doesn't have build 3822 installed yet.
    Shawn Keene

    Hey Ed, I apologize for un-proposing your answer so quick, I was on my Windows Phone but the forum loading spinner wouldn't leave the text entry field, so I couldn't input a reply until I got home.
    I actually found a solution just today. This may not be the 'only' solution, but it worked well.  When I had previously thought I had a solution, it only 'worked' because my subsequent refresh after making the table change didn't add any new rows of
    data (all the rows it would have returned that day were already there).  Today I made the change and then refreshed, and the new rows were formatted as the Power Query intended them to be.
    The settings I used were to set the table to "do not preserve formatting" and to "overwrite existing cells for new data, clear unused cells". Now my inserted Power Query table is plain white (no banded lines or colors), but I don't care
    because it's on a hidden sheet that no one will ever see.
    Here's the table settings that seemed to work well for me.
    And to be honest (although I haven't extensively tested), I think this was only a problem if the table was created using an old version of Power Query, then refreshed with the new version.  Anyway, now I can easily refresh my Query and then the Pivot
    from it without trouble.
    And since I suck at brevity:  I also think it'd be beneficial for me to re-create these workbooks and have the Power Query only add the data to the data model, and source the Pivot directly from that, rather than indirectly source the pivot from a populated
    table. Basically save a step, and then the Pivot will refresh together with the connection, rather than having to be refreshed separately after the query is done.
    In any case, I'm loving this tool and I'm practically a Power Query evangelist to every other department, because it empowers the knowledge worker to investigate data without waiting weeks for a DBA to have time to write a query and send results.  Plus
    we power this awesome real-time performance dashboard showing live KPIs of 15 metrics, and ditched our Domo.com account, saving upwards of 100k per year, just by using Power Query. Using nothing but plain Excel and Power Query, it publishes the graphics to
    our intranet and TVs around the builds live all day. It's amazing.
    Shawn Keene

  • Power Query occassionally connects, seems to load, but returns only 200 rows with 1 error

    I have a Power Query that i have used for few weeks, successfully, but occasionally requires being run a few times to return records.  Just lately it seems to require run more than a few times to make it work. 
    When it doesn't return records , it seems to connects and start retrieving data, but returns only randomly like 100 - 200 rows with 1 error.  The error doesn't have any message. So its hard to troubleshoot from that perspective.
    Query appends two other large and merges in a few others. The data sources are either csv files, Sharepoint Lists and tables in workbook.
    I haven't identified anything in terms of environment or query changes that might cause this.
    When it finally does retrieve all records,  it might be after i have done the following things, but i can't say for certain exactly what did the trick:
    * to run query multiple times
    *maybe simply changing anything in query resolves issue
    * making upstream queries (that are merged or appended into this query)  to Not Load to worksheet or model, eg just have connection
    I'd think this type of error and situation while not common is encountered by others.
    Does this ring a bell for anyone, and if so, can you please shed some light on the reasons and resolutions for this?
    Thanks!

    If you click on "1 error" it should show the editor with a query that will select the rows with errors. This unfortunately might not show all errors for various reasons, but you should try it.
    If that doesn't work, here's an example of how to retrieve error details.
    Suppose the following query:
    = Table.FromRecords({[A="B", B="C" + 1]})
    Notice how we're using the + operator with a string and number. This will result in an error.
    I can create a custom column that uses the 'try' operator over the B column. This returns a record with details which I then expand to retrieve the message.
    let
    Source = Table.FromRecords({[A="B", B="C" + 1]}),
    #"Added Custom" = Table.AddColumn(Source, "Custom", each try [B]),
    #"Expand Custom" = Table.ExpandRecordColumn(#"Added Custom", "Custom", {"HasError", "Error"}, {"Custom.HasError", "Custom.Error"}),
    #"Expand Custom.Error" = Table.ExpandRecordColumn(#"Expand Custom", "Custom.Error", {"Message"}, {"Custom.Error.Message"})
    in
    #"Expand Custom.Error"
    Let me know how this works for you.
    Tristan

Maybe you are looking for

  • Interest calculation for vendors

    Hello gurus,                  In interest calculation for vendors, In interest on arrears calculation(vendors) t-code (obv9) Here wht we have to configure the steps, like Infirst step i had given,, Account symbol             Currency                

  • Hp pavilion dv6-6c65sx not able to do recovery

    I have hp pavilion dv6-6c65sx A7P80EA#A2N . I decided to format my c drive and changed my active drive since then I can't do recovery for my laptop. other partitions of the drive are fine and I have preload folder with 17.6gb size and I dont know how

  • Is the program from FiuneDeaalSuoft, and its associated links, causing problems?

    A program from FiuneDeaalSuoft somehow appeared in my Firefox Add-0ns as of 2 days ago (08212014) according to Control Panel-Programs. I don't recognize it, but possibly I mistakenly clicked on an acceptance interface without realizing it. The ad re-

  • Troubleshoot problems with installing updates on Windows Server 2012 Standart Edition

    When trying to install last update, receiving next errors: Installation Failure: Windows failed to install the following update with error 0x80070020: Cumulative Security Update for Internet Explorer 10 for Windows Server 2012 (KB3003057). Security U

  • HT1349 Can I reinstall ITunes and not lose all my music ????

    I am getting the message "MSVCR80.dll missing from your computer.  Try reinstalling the program to fix the problem." Can I reinstall ITunes without losing all my music ????