
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-18-2008 04:43 PM
I've created a new report and when I go to click on the link in the dashboard for my report, I get this error:
Server Error in '/' Application.
Column 'software' does not belong to table theTable.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.ArgumentException: Column 'software' does not belong to table theTable.
Source Error:
Line 44: <td class="lef"><%select case lcase(mycolumn.Caption)%>
Line 45: <%case "computer","computername" %><a href="default.aspx?item=compdetail&comp=<%=myrow(mycolumn.Caption)%>"><%=myrow(mycolumn.Caption)%></a>
Line 46: <%case "software","version" %><a href="default.aspx?item=softdetail&soft=<%=myrow("software")%>&v=<%=myrow("version")%>"><%=myrow(mycolumn.Caption)%></a>
Line 47: <%case "lastseen", "last scanned", "last changed", "last seen","lastchanged", "lastscanned"%><%=datetime.parse(myrow(mycolumn.Caption)).tostring(ConfigurationSettings.AppSettings("dateformat"))%>
Line 48: <%case else%><%=myrow(mycolumn.Caption)%> <%end select%></td>
Source File: D:\Program Files\lansweeper31\website\it-cust.aspx Line: 46
Any thoughts as to how to fix this issue?
Thanks!
-Noah
- Labels:
-
Archive

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-03-2008 07:04 PM
-Noah

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-27-2008 03:24 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-25-2008 10:16 PM


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-25-2008 10:04 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-25-2008 09:26 PM


I'll see if I can get the other ones you asked for.
-Noah

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-19-2008 10:49 PM
Could you upload screenshots of your query builder, dashboard, web page and report tables please

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-19-2008 07:51 PM
Server Error in '/' Application.
Column 'software' does not belong to table theTable.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.ArgumentException: Column 'software' does not belong to table theTable.
Source Error:
Line 44: <td class="lef"><%select case lcase(mycolumn.Caption)%>
Line 45: <%case "computer","computername" %><a href="default.aspx?item=compdetail&comp=<%=myrow(mycolumn.Caption)%>"><%=myrow(mycolumn.Caption)%></a>
Line 46: <%case "software","version" %><a href="default.aspx?item=softdetail&soft=<%=myrow("software")%>&v=<%=myrow("version")%>"><%=myrow(mycolumn.Caption)%></a>
Line 47: <%case "lastseen", "last scanned", "last changed", "last seen","lastchanged", "lastscanned"%><%=datetime.parse(myrow(mycolumn.Caption)).tostring(ConfigurationSettings.AppSettings("dateformat"))%>
Line 48: <%case else%><%=myrow(mycolumn.Caption)%> <%end select%></td>
Source File: D:\Program Files\lansweeper31\website\it-cust.aspx Line: 46

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-19-2008 07:39 PM
SELECT TOP 100 PERCENT
tblSoftware.softwareVersion AS Versionnr,
tblSoftware.softwareName,
tblSoftware.SoftwarePublisher,
COUNT(DISTINCT tblSoftware.SoftwareID) AS SoftwareCount
FROM
tblSoftware
WHERE
SoftwarePublisher LIKE '%microsoft%' AND
SoftwareName LIKE '%office%'
GROUP BY
tblSoftware.softwareVersion,
tblSoftware.softwareName,
tblSoftware.SoftwarePublisher
ORDER BY
SoftwareCount DESC,
softwareName

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-19-2008 07:37 PM
SELECT TOP 100 PERCENT
tblSoftware.softwareVersion AS Version,
tblSoftware.softwareName,
tblSoftware.SoftwarePublisher,
COUNT(DISTINCT tblSoftware.SoftwareID) AS SoftwareCount
FROM
tblSoftware
WHERE
SoftwarePublisher LIKE '%microsoft%' AND
SoftwareName LIKE '%office%'
GROUP BY
tblSoftware.softwareVersion,
tblSoftware.softwareName,
tblSoftware.SoftwarePublisher
ORDER BY
SoftwareCount DESC,
softwareName
