Source: projects/identity-management/oim-kb-update/sandbox-db/2026-04-27-itshopinfo-sc-shopping-center-db-evidence.md

> Source: projects/identity-management/oim-kb-update/sandbox-db/2026-04-27-itshopinfo-sc-shopping-center-db-evidence.md

Sandbox DB Evidence — ITShopInfo SC (Shopping Center) + categories (2026-04-27)

Method

Evidence

1) Live IT Shop subtree contains no ITShopInfo = 'SC' nodes

Query (counts by ITShopInfo)

SELECT ITShopInfo, COUNT(*) AS Cnt
FROM dbo.BaseTree
WHERE UID_OrgRoot = 'QER-V-ITShopOrg'
GROUP BY ITShopInfo
ORDER BY Cnt DESC;

Result (sandbox snapshot 2026-04-27)

ITShopInfoCount
PR16
BO8
CU1
SH1

There are no rows with ITShopInfo = 'SC' in the live QER-V-ITShopOrg subtree.

2) Shipped procedures treat ITShopInfo = 'SC' as “shopping center”

Even though this sandbox does not currently contain SC nodes, the shipped QER procedures/triggers include SC:

These snippets were captured from sys.sql_modules (live DB) in the same sandbox.

3) Product nodes can exist without service categories (AccProductGroup)

In this sandbox, service categories are not required for an ITShopInfo='PR' product-node to exist.

Query (count PR nodes without category)

SELECT
  SUM(CASE WHEN p.UID_AccProductGroup IS NULL THEN 1 ELSE 0 END) AS ProductNodesWithoutCategory,
  COUNT(*) AS TotalProductNodes
FROM dbo.BaseTree pr
LEFT JOIN dbo.AccProduct p ON p.UID_AccProduct = pr.UID_AccProduct
WHERE pr.UID_OrgRoot = 'QER-V-ITShopOrg'
  AND pr.ITShopInfo = 'PR';

Result

MetricValue
ProductNodesWithoutCategory7
TotalProductNodes16