Folgende SQL-Abfrage listet alle Applications und deren Deployment Types:
select LLAC.DisplayName as [Application], LDTC.DisplayName as [Deployment Type], LDTC.Technology from fn_ListLatestApplicationCIs(1033) LLAC left join fn_ListDeploymentTypeCIs(1033) LDTC on LLAC.ModelName = LDTC.AppModelName and LDTC.IsLatest = 1 order by 1,2
Vielen Dank für diesen Post, wirklich sehr hilfreich.
Ich habe die Abfrage zusätzlich um die “Administrative Categories” erweitert. Mit der Spalte ‘Cilc.CategoryInstanceID as [Category-ID]’ kann bei Bedarf nach einzelnen “Administrative Categories” gefiltert werden:
———————————-
select distinct
LLAC.DisplayName as [Application]
,CILC.[CategoryInstanceName] as [Category]
,Cilc.CategoryInstanceID as [Category-ID]
from
fn_ListLatestApplicationCIs(1033) LLAC
left join fn_ListDeploymentTypeCIs(1033) LDTC
on LLAC.ModelName = LDTC.AppModelName and LDTC.IsLatest = 1
join vSMS_CI_LocalizedCategories CILC ON LLAC.CI_ID = CILC.CI_ID
—————————-
Danke und viele Grüße,
Michael
Endlich mal frei zugängliche Informationen zu dem Thema. Sonst muss man sich immer anmelden oder dafür bezahlen. Danke!