Asset Management Suite

 View Only
  • 1.  linked data classes

    Posted Jul 18, 2012 06:25 AM

    Hi,
    I've builded some new data classes and linked to some ressource types.
    Is there a way to ckeck where the data classes are linked?

    At the moment I've to check every resource if the data class is connected.

     

    Thanks



  • 2.  RE: linked data classes

    Posted Aug 09, 2012 07:01 PM

    The only place you can check is for each Resource Type under Resource and Data Class Settings.

    You could right a report using these tables that could show you as well:

    vResourceDataClass

    Item

    DataClass



  • 3.  RE: linked data classes
    Best Answer

    Posted Aug 10, 2012 11:04 AM

    Hello,

    Here is a simple report to view resouces linked to dataclasses. The last line can be edited to meet your naming convention for your custom dataclasses.


    select rt.Name as 'Resource Type'

    ,vdc.ResourceTypeGuid

    ,vdc.DataClassGuid

    ,dc.Name as 'DataClass'

    ,dc.DataTableName

    ,dc.Description

    ,dc.CreatedDate

    from vResourceDataClass vdc

    join vResourceType rt on rt.Guid=vdc.ResourceTypeGuid

    join DataClass dc on dc.Guid=vdc.DataClassGuid

    where dc.Name like 'myConvention%'



  • 4.  RE: linked data classes

    Posted Aug 11, 2012 03:34 PM

    HI, this sounds good. I will try this next week. Thanks..



  • 5.  RE: linked data classes

    Posted Aug 14, 2012 08:51 AM

    Nessaja any more information on this ?



  • 6.  RE: linked data classes

    Posted Aug 15, 2012 05:02 AM

    HI Gunnelsrm,

    this is exactly what I'm was looking for.

    I've added the DataClasses as Report Parameter, this works fine.

    Thanks for this.