LMS 4.2.3 Contract Connection has contracts but no devices in the report

I am performing an assessment tht includes maintenance contract information. My client entered his CCO credentials and over a dozen contracts appeared in the window. When I select just one or all of them I get no records on the report. He is able to open Cisco TAC cases on all devices and I have all of the serial numbers in the inventory so what am I missing?
This is under Reports>Cisco.com>Contract Connection
Thanks Karl

Hi ,
In order for the device to allow SNMPv3 vlan context-based queries to be processed, the
following must be added to the configuration for EVERY vlan that you want user tracking to
collect information on:
“snmp-server group v3 context vlan-X” (where X
is the vlan number)
Perform the following on the switch to help show which vlans require this command:
"show snmp context"
Solution: Configure the switch to allow vlan context queries.
I hope this will help
Thanks-
Afroz

Similar Messages

  • My hdmi connection has sound but no picture.  The desk top icons do not show up either.  What is the fix?

    I have a MacBook Pro and I was watching TV through an HDMI cable when the picture went away but I still heard sound.  At the desk top I see the backgroud selected but non of my icons are on the TV screen.  Please help.

    Hi Hartley000,
    To troubleshoot your issue with using your TV as a secondary display with your Mac, check out the article below to troubleshoot the issue further. Start with checking the cables as well as resetting the SMC and PRAM to see if starts working again. 
    Apple computers: Troubleshooting issues with video on internal or external displays
    http://support.apple.com/en-us/HT201177
    Take care,
    -Norm G. 

  • The transaction associated with the current connection has completed but has not been disposed. The transaction must be disposed before the connection can be used to execute SQL statements.

    Hello All,
    I am getting below error can you please help me
    Error:-
    The transaction associated with the current connection has completed but has not been disposed. The transaction must be disposed before the connection can be used to execute SQL statements.

    Perhaps this thread will help you out
    http://stackoverflow.com/questions/11453066/error-the-transaction-associated-with-the-current-connection-has-completed-but
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • LMS 4.2.3 Contract Connection shows contracts but no matches on covered devices

    LMS 4.2.3 - Contract connection reports do not generate matches on devices covered under valid contracts
    I entered my CCO credentials and proxy information and all my contracts appear.
    When I select just one or all of them, I get no records against any of my devices except on the C18xx and C87xx Product Families.
    I know I have the rest of my devices on contract and I am regularly able to open TAC cases and process RMA's on these. I also have the inventory collected for majority of the devices and serial numbers are in the database.

    LMS 4.2.3 - Contract connection reports do not generate matches on devices covered under valid contracts
    I entered my CCO credentials and proxy information and all my contracts appear.
    When I select just one or all of them, I get no records against any of my devices except on the C18xx and C87xx Product Families.
    I know I have the rest of my devices on contract and I am regularly able to open TAC cases and process RMA's on these. I also have the inventory collected for majority of the devices and serial numbers are in the database.

  • Cant download ios5. Using windows computer. Downloaded update 3 times gets to 100% and then says connection has timed out and I lose the lot. Any suggestions

    I have been trying to download ios5 using my windows compute Windows 7. I connected Ipad and opened Itunes etc. Three times I have sat there for up to an hour downloding the program and it gets to the end (100%) sometimes it even processses the file and then I get a message saying the connection has timed out and to try again. I am on a wireless connection and it is so frustrating. I have the latest version of itunes. Any suggestions?

    Try temporarily disabling your firewall and anti-virus software then try the download again.
    Stedman

  • I cannot log in to Weight Watchers Website - message is the connection has timed out. This is the ONLY website this happens with.

    I have spoken with Norton Antivirus and it is not a software issue with them. I have run a full scan for malware and viruses, have cleared history. If the "connection has timed out", is there a way to re-set the time limit before timing out?

    I also have this problem.
    It's not worked since this time last week, absolutely fine before that and i've been a member since June.
    I emailed Weight Watchers Tech Support and they say that there is no problem with their website, told me to clear out my cookies (no instructions given for Firefox) and try again... still no luck.
    I've emailed them again.
    I am having trouble connecting to their IPod App too, not just at home but at work aswell.
    Paying for this service and not getting it, making it very difficult to track and make recipes!

  • "Failed to open the connection" problem related to multiple tables in the report?

    Post Author: Gadow
    CA Forum: Data Connectivity and SQL
    System specifics:
    Web environment using ASP.Net 2.0 (from Visual Studio 2005 Professional)
    Crystal Reports 2008, v. 12.0.0.549, Full
    We have set up the following method for displaying reports via our website:
    User is sent to a report-specific page. The user is given some filtering options specific to the report that will be viewed. When the user has specified the data filters, the user clicks a button.
    The page wraps up the report parameters -- selection query, formula values, report location, the name to be displayed, etc. -- into a class which gets put into the Session object.
    The page redirects to DisplayReport.aspx. ALL reports redirect to this page.
    DisplayReport.aspx retrieves the report parameters from Session. A ReportDocument object is created and loaded, then set with the data from the parameters class.
    A ConnectionInfo object is created and set with the relevant log on credentials. All of the reports draw from the same database, so the connection information is hard-coded as the same for all reports. The page then iterates through all of the tables in the Database.Tables collection of the ReportDocument and calls ApplyLogOnInfo to each table using the ConnectionInfo object.
    The page is rendered and the user gets the filtered report.
    We currently have seven reports. Five reports work fine and display the correctly filtered data with no error messages. Two reports generate a Failed to open the connection error and do not display. I have verified that the queries being sent to DisplayReport.aspx are valid, and as I said the connection information itself is hard-coded in the one page that displays the reports and this is identical to all reports.
    The five reports that do work all have a single data table, either an actual database table or a single view. The two reports that do not work all have multiple tables. As far as I can tell, this is the only difference between the sets; all seven reports are based on the same DSN and I have verified the database on all of the reports. All of the reports were written using Crystal Reports 8, and all of the reports display fine in a Windows app I wrote some years ago using Crystal Reports 8. Again, the only difference between those reports that do work and those that do not is the number of tables used in the report: one table or view in the reports that display, more than one table (tables only, none use views) in the reports that do not display.
    As for the code I am using, below are the relevant methods. The function MakeConnectionInfo simply parses out the components of a standard SQL connection string into a ConnectionInfo object. DisplayedReport is the ID of the CrystalReportViewer on the page.Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs)
            Dim o As Object = Session("ReportParams")
            Dim ReportURL As String = ""
            'Verify that there is a ReportParameters object
            If o Is Nothing OrElse o.GetType IsNot GetType(ReportParameters) Then 'Redirect to the error page
                Response.Redirect("/errors/MissingReport.aspx")
            End If
            ReportParams = CType(o, ReportParameters)
            'Verify that the report exists
            ReportURL = "/Reports/ReportFiles/" + ReportParams.ReportName
            ReportPath = Server.MapPath(ReportURL)
            If Not File.Exists(ReportPath) Then
                Response.Redirect("/errors/MissingReport.aspx?Report=" + ReportParams.ReportTitle)
            End If
            InitializeReport()       
        End Sub
        Protected Sub InitializeReport()
            Dim RD As New ReportDocument
            Dim CI As ConnectionInfo = MakeConnectionInfo(DB_Bonus)
            Dim RPF As CrystalDecisions.Shared.ParameterField = Nothing
            RD.Load(ReportPath)
            If ReportParams.SelectString <> "" Then
                Dim Adapt As New SqlDataAdapter(ReportParams.SelectString, DB_Bonus)
                Dim DS As New Data.DataSet
                Adapt.Fill(DS)
                RD.SetDataSource(DS.Tables(0))
            End If
            For Each kvp As KeyValuePair(Of String, String) In ReportParams.Formulas
                Dim FFD As FormulaFieldDefinition = Nothing
                Try
                    FFD = RD.DataDefinition.FormulaFields(kvp.Key)
                Catch ex As Exception
                    'Do nothing
                End Try
                If FFD IsNot Nothing Then
                    Select Case FFD.ValueType
                        Case FieldValueType.DateField, FieldValueType.DateTimeField
                            If IsDate(kvp.Value) Then
                                FFD.Text = String.Format("Date()", Convert.ToDateTime(kvp.Value).ToString("yyyy, MM, dd"))
                            Else
                                FFD.Text = "Date(1960, 01, 01)"
                            End If
                        Case FieldValueType.StringField
                            FFD.Text = String.Format("""""", kvp.Value)
                        Case Else
                            'For now, treat these as if they were strings. If things blow up here,
                            'we will need to add the appropriate formatting for the field type.
                            FFD.Text = String.Format("""""", kvp.Value)
                    End Select
                End If
            Next
            For Each T As CrystalDecisions.CrystalReports.Engine.Table In RD.Database.Tables
                Dim TLI As TableLogOnInfo = T.LogOnInfo
                TLI.ConnectionInfo = CI
                T.ApplyLogOnInfo(TLI)
            Next
            DisplayedReport.ReportSource = RD
        End Sub
    Does this approach not work with reports containing multiple tables, or is there something I'm missing? Any meaningful suggestions would be much appreciated.

    Dear Dixit,
    Please refer to the Crystal report landing page to get the details
    information about the support for crystal report issues.
    Please use the following thread to post your questions related to
    crystal report.
    SAP Business One and Crystal Reports
    Regards,
    Rakesh Pati
    SAP Business One Forum Team.

  • Connected to router but cannot get on the internet

    Hi,
    I have connected my sons laptop to home hub 3 and it is showing connected to router but when we try to connect toonternet we get error message,have tried connecting to lots of different web pages without any joy.
    Laptop will connectto other wireless when we are not at home. Really not sure where we are going wrong.
    Can anyone help?
    Thanks

    Couple of things to check:
    1) Are you using the wireless passkey that is on the Homehub label to log on with?
    2) It could be that your computer has IPv6 selected. Try disconnecting it as follows:
    Select Start
    In the search field type.ncpa.cpl and press enter.
    In the new window right click on your wireless network connection and select properties
    In “This connection uses the following items” section remove the tick beside Internet Protocol Version 6 (TCP/IPv6) then press OK
    Left click on Internet Protocol IPv4, click properties . Check the options to obtain IP addres and DNS server address automatically.
    Once done try and connect to internet.

  • HT1212 The Ipod Touch brings up a sign saying Ipod is disabled connect to iTunes but it doesnt show the slider at the bottom of the screen, what do I do when that happens?

    I connected it to iTunes but im not able to do anything because it brings up the message that i need to enter the password but like i said the slider isnt there so I cant figure out how to access the ipod into where i am able to enter the passcode if i could connect it there is probably a chance that I could reboot it if anyone has any ideas please let me know

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up     
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        

  • Amount has moved one decimal place in the report

    Hi,
    I am looking in to a report at present, Transaction amount has moved one decimal place, while the local amount stays the same. Any one could tell me the possible reason for this?
    Thanks in advance
    RN

    Hi,
    Check this link,
    http://sap.ittoolbox.com/groups/technical-functional/sap-bw/key-figure-in-cube-is-multiplied-by-100-when-displayed-in-bex-report-743076
    same issue find in this.
    Hope it will help you.
    Thanks,
    Hema

  • HT1296 my ipad continues to drop the wifi connection.  I can get it to connect for awhile but then it drops the connection.  Any ideas on how to rectify the problem

    my ipad continues to drop the wifi connection.  I can get it to re connect for awhile but then the ipad loses the connection.  any idea how to fix this problem with the Ipad, it is very frustrating!!  I have reset it, tried shutting it off and on, turned on airplane mode  and then back to wifi etc??

    Try update firmware of router.

  • HT1212 I am trying to restore my ipad (disabled and connect to itunes), but when going through the steps, it's asking me for my passcode.  I can't put that in because it's disbled.  This is the WORST product and product instructions I have ever dealt with

    My ipad is disabled and it tells me to connect to itunes.  However, once I've connected to iTUNES, it ask me for my passcode and of course, I can't put that in because my ipad is disabled.  I am ready to throw this iPad out the window.  Wll never buy another one.

    FORCE IPAD INTO RECOVERY MODE
    1. Turn off iPad
    2. Turn on computer and launch iTune (make sure you have the latest version of iTune)
    3. Plug USB cable into computer's USB port
    4. Hold Home button down and plug the other end of cable into docking port. Do not release button until you see picture of iTune and plug.
    5. Release Home button.
    ON COMPUTER
    6. iTune has detected iPad in recovery mode. You must restore this iPad before it can be used with iTune.
    7. Select "Restore iPad"...
    Note: Data will be lost

  • My iPad camera connection kit says "Cannot Use Device. The connected device is not supported."

    This error displays on every single SD card I connect and none of them work. This has worked fine for months now, but until a few days ago, it has stopped working. I believe it could have been a recent update but I am not sure. I need to import images from my camera but I do not have the USB Camera Connector.

    Welcome to the Apple Community.
    I'd check your HDMI cable is seated correctly at each end to begin with, pull it out and put it in again, if that doesn't help...
    Please tell us how are you trying to play video from the iPad, is it via AirPlay or are you using the iPad to control the Apple TV and at what point is the message displayed.

  • OSX Server connects to router but dos not reach the internet

    Sorry that i have no answer, but i'd like to add my problem as well.
    I have a OSX Server witch is configured to an Airport Extreme. It is connected to the Router and dos all the sharing on the local network. But same as you describe it dos not connect to the Internet.
    I checked my firewall options and it is set to allow all traffic.
    I can ping the router but i don't get pings from pages on www !?
    If anyone has an Idea where else i might look, i would be grateful for all advice..
    Please drop me a mail on tj{at}daemgen.net
    If anyone has a solution to the problem i will send an coupon for an Starbucks coffee in addition to my appreciation and thanks as i am looking since quite a while by now and it doesn't seem that i see what might cause the problem !!

    There really isn't enough data to answer your question directly, but there are some things to check.
    Being able to ping or serve data to the local network just means that the server has a working network connection, so that's a start, but to get to external sites it needs two things - first, a valid DNS server address that it can use to lookup hostnames, and it needs to know the address of the router on the network that provides an internet connection.
    In this case you should check System Preferences -> Network -> Ethernet -> Advanced and check the TCP/IP settings - make sure the Router (or 'Gateway') address is set to the address of your Airport Extreme. Then check the DNS setting to make sure you have a valid DNS server set.
    If those are correct then you'll need to post back with more data, specifically what you do see/get when you try to access remote sites. What error messages do you get?
    Oh, and while ping might be a good basic test, it isn't absolute - in other words, ping could fail, even when you can connect to a remote server, since pings could be blocked by a firewall or router at either end of the network.

  • Connecting older style power connectors devices to the magsafe

    With the older style power plug is there a converter to the magsafe so we can use Lind power supplies or similar on long flights with inseat power?

    I would like to connect my roommate's 20" apple cinema display to my PC. I believe the cinema display is ADC, it connects to her Mac with three wires - DVI(?), USB, and Firewire.
    Then it's DVI, not ADC. With ADC, there is only one plug.
    My PC has a GeForce 7950GT graphics card that has dual-link DVI capability. Is this possible and if so, what kind of adapter(s) do I need?
    The DVI should plug in with no adapter needed.
    Also, would I need some kind of power adapter as well - to account for the USB and Firewire connections?
    The display should have an AC power supply included. You don't need to connect the FireWire cable if you don''t use the FireWire ports on the display. The USB is needed for computer control of brightness, but the display should work with it disconnected.

Maybe you are looking for