In Custom Workflow created for modify , the Native identity is not showing in the Access Request history Page

Which IIQ version are you inquiring about - 8.4

Please share any images or screenshots, if relevant.

Please share any other relevant files that may be required (for example, logs).

[Please insert files here, otherwise delete this section]

Share all details about your problem, including any error messages you may have received.

the native identity is not getting displayed in the access request page history , but it is showing for create .

We had the same thing happening for Account Requests. So we added an extra step in workflow where we add NativeIdentity in AccountRequest(in the plan), before sending plan for approval. After that it was working.

  <Step name="SetNativeIdToPlan" >/>
  	<Arg name="plan" value="ref:plan"/>
    <Script>
      <Source>
        import ...
        
        List accReqs = plan.getAccountRequests();
        
		for(AccountRequest accReq: accReqs) 
        {
			String nativeId = "this-is-new-nativeID";
			accReq.setNativeIdentity(nativeId);
		}
        
      </Source>
    </Script>
  </Step>