Inventory Org disable date is not populates
Hi Team, We have disabled the inventory org and we are checking below condition but org.disable_date is not populated.
Can you please help how we can populate org.disable_date date
SELECT iop.organization_code,org.ORGANIZATION_NAME,org.disable_date
FROM inv_org_parameters iop, inv_organization_definitions_v org
WHERE iop.organization_id = org.organization_id
AND iop.organization_code != 'BIM' --AND REGEXP_COUNT(iop.organization_code, '_') = 0
AND SYSDATE BETWEEN org.creation_date AND org.disable_dateORDER BY iop.organization_code
0