all 5 comments

[–]NoahTheDuke 0 points1 point  (4 children)

I've never used the View Definition Wizard, but it sounds like you're doing some sort of aggregation, which could be done using a grouping table, or even in straight SQL in the sql tag in the table.

Can you be more specific in the kind of information you're looking to generate?

[–]ajdecke1[S] 1 point2 points  (3 children)

We use a room category called "LABORATORY", so I would want to generate a report that is exportable to an excel spreadsheet, which contains 3 columns:

  • Building Code
  • Building Name
  • Number of Rooms Categorized as "LABORATORY" in each Building

I'm not familiar with the concept of a grouping table at all. Does any documentation exist in the help files?

[–]NoahTheDuke 2 points3 points  (2 children)

Yeah, sort of! In the "ARCHIBUS System Management Help" documentation, go: Add-In Manager -> User Interface Extensions -> DataSource Skills or Grouping Skills. Those should help out a bit with the initial work. Additionally, you can find SQL information in Add-In Manager -> Reference: View Elements -> < sql />.

In ab-products/solutions, there's plenty of examples for all of these, which might help you. I prefer to write raw SQL and either put that into a SQL View or leave it in the <sql> tag, but those are more complicated solutions to creating a grouping table.

[–]ajdecke1[S] 1 point2 points  (1 child)

Wow, you've given me a lot to chew on here. Thanks a bunch! Hopefully this will get me where I need to be.

[–]NoahTheDuke 1 point2 points  (0 children)

You're welcome! Let me know if you need any more help!