Delimited Application IIQDisabled attribute not persisting

Which IIQ version are you inquiring about?

8.4

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

I have a requirement whereby I need to disable this delimitted account when the staff has left. I have set it to IIQDisabled to true in RapidSetup Configuration rule.
This does not persist after running account aggregation task as the file still contains the records of the staff for 30 days andwhich will only be remove thereafter. Is there any way that it can be done to persist the attribute of IIQDisabled “true”.

Thank you.

Hi @infamous,

To update the IIQDisabled attribute for a Delimited Application, you can set the customization rule within that application. Please refer to the customization rule and adjust the logic according to your needs.

String titleString = object.getAttribute("title");

if ( (null != titleString) && (0 != titleString.length()) ) {

   if ("TERMINATED".equalsIgnoreCase(titleString)) {

      object.put("IIQDisabled", true);
   }

} 

return object;