My ICT Users are required to open incidents by indicating the Business
Services components that are related to Services linked to their
corresponding Offerings.

To accomplish this, first of all, I've defined two different type
projections:

        <TypeProjection ID="DistAppGroupToBusinessSvcProjection"
Accessibility="Public"
Type="DistributedApp!Microsoft.SystemCenter.ServiceDesigner.ServiceComponentGroup">
          <Component
Path="$Context/Path[Relationship='DistributedApp!Microsoft.SystemCenter.ServiceDesigner.ServiceHasGroups'
SeedRole='Target']$" Alias="ServiceRelatedToDistAppGroup" >
             <Component
Path="$Context/Path[Relationship='System!System.ConfigItemContainsConfigItem'
SeedRole='Target']$" Alias="DistAppGroupContainsConfigItem" />
          </Component>
          <Component
Path="$Context/Path[Relationship='System!System.ConfigItemOwnedByUser']$"
Alias="ServiceOwner" />
        </TypeProjection>


        <TypeProjection ID="ConfigItemToDistAppGroupProjection"
Accessibility="Public" Type="System!System.ConfigItem">
          <Component
Path="$Context/Path[Relationship='System!System.ConfigItemContainsConfigItem'
SeedRole='Target']$" Alias="DistAppGroupContainsConfigItem">
            <Component
Path="$Context/Path[Relationship='System!System.ConfigItemOwnedByUser']$"
Alias="ConfigItemOwner" />
          </Component>
        </TypeProjection>


The first one allows the user to select the component group from the
Business Service, while the second one should allow the user to select the
item(s) that belongs to the previously selected component (I use request
offering tokens to implement such filtering).
I need to combine the above projections into a single projection (or modify
the second one), in order to show only the specific BS component items that
are related to the service which is linked to the Service Offering to which
the request belongs to. I've already been able to filter BS depending on
Offerings: the only thing that I didn't know how to deal with is combining
the two projections :(

Any help is veeeeery appreciated! :)

Thanks!!!!

Reply via email to