Strong Mapping and support for SAN URI fields are two completely separate topics. Strong mapping is needed for hybrid joined computers to verify the on-premises AD relation. For computers that are only joined to Entra ID, it should not be needed.
What you refer to here is support for the SAN URI that can have multiple values, and the latest Intune Extension can parse from multiple SAN-URI values the DeviceId:xxxx. However that works for the HTTP method where you realtime query the extension.
The method described above is an SQL Query into the endpoint database, which doesn't work the way you try it. What you may try is extracting the DeviceId: value with SQL language:
select attributes->>'Intune User Principal Name' as "Intune User Principal Name",attributes->>'Intune Model' as "Intune Model",attributes->>'Intune Jail Broken' as "Intune Jail Broken",attributes->>'Intune Operating System' as "Intune Operating System",attributes->>'Intune Managed Device Owner Type' as "Intune Managed Device Owner Type",attributes->>'Intune Management Agent' as "Intune Management Agent",attributes->>'Intune Azure AD Registered' as "Intune Azure AD Registered",attributes->>'Intune Compliance State' as "Intune Compliance State",attributes->>'Intune Device Name' as "Intune Device Name",attributes->>'Intune Azure AD Device Id' as "Intune Azure AD Device Id" FROM tips_endpoints WHERE attributes->>'Intune ID' = split_part(regexp_replace('%{Certificate:Subject-AltName-URI}','^.*DeviceId:',''),',',1)
Most relevant here is the part after 'Intune ID' = and you could try to adapt your query to this method. What happens here is that everything up to DeviceId: is first stripped out, then split on the ',' and taking the first part only: (DeviceId:55a52ad8-XXXX-4a86-XXXX-2f5436fd5779, tag:microsoft.com,2022-09-14:sid:S-X-X-XX-XXXX05284-3415300890-1872512156-XXXXXX). Hope this helps... or use the HTTP Realtime method.
------------------------------
Herman Robers
------------------------
If you have urgent issues, always contact your HPE Aruba Networking partner, distributor, or Aruba TAC Support. Check
https://www.arubanetworks.com/support-services/contact-support/ for how to contact HPE Aruba Networking TAC. Any opinions expressed here are solely my own and not necessarily that of Hewlett Packard Enterprise or HPE Aruba Networking.
In case your problem is solved, please invest the time to post a follow-up with the information on how you solved it. Others can benefit from that.
------------------------------