So that was stopping you
Finally got to what i think the root case for the student.xml not updating Network Id field on Sunapsis.
using this query which is taken from a SQL stored procedure which i think update Network ID
so any id on that list wouldn't get network id updated
based Sunapsis support tip we removed all duplicates and kept only latest record on iuieBio table for the same university ID.
using this query which is taken from a SQL stored procedure which i think update Network ID
SELECT countingOfAllNetworkIDs.idnumber
FROM
(SELECT *
, COUNT( listingOfAllNetworkIds.networkid ) OVER (PARTITION BY listingOfAllNetworkIds.networkid) duplicateCount
FROM
(SELECT idnumber
, networkid
FROM dbo.jbInternational
WHERE COALESCE( networkid, '' ) <> ''
UNION
SELECT idnumber
, PRSN_NTWRK_ID
FROM dbo.iuieBio
WHERE COALESCE( PRSN_NTWRK_ID, '' ) <> '')
AS listingOfAllNetworkIds)
AS countingOfAllNetworkIDs
WHERE countingOfAllNetworkIDs.duplicateCount >= 2
so any id on that list wouldn't get network id updated
based Sunapsis support tip we removed all duplicates and kept only latest record on iuieBio table for the same university ID.