Symantec Management Platform (Notification Server)

 View Only
  • 1.  Altiris 7.5 Fields Custom And Non-Custom

    Posted Oct 28, 2014 06:36 PM

    Need some help getting Altiris 7.5 custom and non-custom fields or list that shows all the fields. A query would be helpful unless it is noted somehwere in aritcle or guide.  I appreciate the help on this



  • 2.  RE: Altiris 7.5 Fields Custom And Non-Custom

    Posted Nov 04, 2014 02:04 PM

    Which solution and what are you looking at getting a list of?  Would be helpful for myself and others if we could narrow down specifically what it is you're looking to achieve.



  • 3.  RE: Altiris 7.5 Fields Custom And Non-Custom

    Broadcom Employee
    Posted Jan 05, 2015 12:31 PM

    Hi Sam,

    Most of the data capture points we leverage for Inventory can be found by examining a resource (i.e., computer) in the Resource Manager.  (Right-click the resource in the console, choose Resource Manager). It should give you a good understanding for the different Data Classes we provide out of box. 

    We also extensively detail most of these in the ASDK as well.   

    Custom data classes can be established to capture any data your organization needs.  Giving customers such a high level of flexibility in identifying and managing data is one of the great parts of using Symantec's Endpoint Management platform. 

    Hope that helps,

    Jim



  • 4.  RE: Altiris 7.5 Fields Custom And Non-Custom

    Posted Jan 05, 2015 01:45 PM

    I used the following queries to show the fields for each resourcetype.  The first query shows the dataclasses and the second shows resource associations.

     

    select rt.Name AS 'ResourceType', rt1.Name AS 'Inherited From', dc.Name AS 'DataClass', dc.ClassType, dc.UserEditable, dca.AttrName

    from ResourceType rt

    left join ResourceTypeHierarchy rth on rt.Guid = rth.ResourceTypeGuid

    left join ResourceType rt1 on rth.BaseResourceTypeGuid = rt1.Guid

    left join ResourceTypeDataClass rtdc on rth.BaseResourceTypeGuid = rtdc.ResourceTypeGuid

    left join DataClass dc ON rtdc.ResourceDataClassGuid = dc.Guid

    left join DataClassAttribute dca on dc.id = dca.InvClassId

    order by rt.Name, rt1.Name, dc.Name

     

     

    select rt.Name AS 'ResourceType', rt1.Name AS 'InheritedFrom', 'Parent' AS 'AssociationType', rat2.Name AS 'Associated Type', rat1.UserEditable, i1.Name AS 'Resource Association'

    from ResourceType rt

    left join ResourceTypeHierarchy rth on rt.Guid = rth.ResourceTypeGuid

    left join ResourceType rt1 on rth.BaseResourceTypeGuid = rt1.Guid

    join ResourceAssociationType rat1 on rth.BaseResourceTypeGuid = rat1.ParentResourceTypeGuid

    join Item i1 ON rat1.Guid = i1.Guid

    join ResourceType rat2 on rat1.ChildResourceTypeGuid = rat2.Guid

    union

    select rt.Name AS 'ResourceType', rt1.Name AS 'InheritedFrom', 'Child' AS 'AssociationType', rat2.Name AS 'Associated Type', rat1.UserEditable, i1.Name AS 'Resource Association'

    from ResourceType rt

    left join ResourceTypeHierarchy rth on rt.Guid = rth.ResourceTypeGuid

    left join ResourceType rt1 on rth.BaseResourceTypeGuid = rt1.Guid

    join ResourceAssociationType rat1 on rth.BaseResourceTypeGuid = rat1.ChildResourceTypeGuid

    join Item i1 ON rat1.Guid = i1.Guid

    join ResourceType rat2 on rat1.ParentResourceTypeGuid = rat2.Guid

    order by rt.Name, rat2.Name