missing internal name information

Hello,

Reaching out to anyone who may have seen this issue. A person fills out the web portal form to insert a user and it allows the field to get populated. The internal name does not generate like the first name is missing and the central account is not generated. When i open manager I see that the first name is in the field but it act's like it is not and will not generate the centralaccount name. I'm not sure how this started. I don't see any recent changes that might have caused this and not sure where in the logs to look. Any suggestions on what logs to review or how to troubleshoot this? In order to get the username generated I have to put a new value into the first name to replace what is there then correct the firstname after.

Thanks for any help or information anyone may have.

Lu

Parents Reply
  • I have not seen it happen since this one time and still have not figured out what logs to dig into. 

     

    I have the following template code

    If CStr($ImportSource$) <> "ADS" And CStr($Lastname$) <> "" And CStr($Firstname$) <> "" And _
    	(Not CBool(Connection.Variables.Get("FULLSYNC")) Or CStr($ImportSource$).StartsWith("EBS") Or CStr($ImportSource$).StartsWith("SAP") ) Then
    	If CStr(Connection.GetConfigParm("QER\Person\CentralAccountGlobalUnique"))="1" Then
    		If $[IsLoaded]:Bool$ = False AndAlso $IsExternal:Bool$ Then
    			If $LastName$<>"" AndAlso $FirstName$<>"" Then
    				' comment out for read-only moded and uncomment it when GO-LIVE
    				Value = CCC_VI_AE_BuildCentralAccountGlobalUnique( GetValue("UID_Person").String,$Lastname$,$Firstname$,$MiddleName$)
    			End If
    		End If
    	End If
    End If

    We do have overwrite but i think i need to change it for Not IsLoaded to look if it is blank. We want to protect it from changing if someone changes the first or last name. We only generate for IsExternal. If this happens again can you tell me which logs to look at when the entry is made from the web portal?

    Thank you, Lu

Children