When I try to create a new archive set, I get Error:6 invalid datawindow row/column. This is a new configuration that I am testing for the first time. New CSR type, migration path, workflow, with a generic file object.
This is a new domain setup and the use_ps_swat and use_file_swat is not enable for this service domain.
1. Run SELECT * FROM SERVICE_DOMAIN and pay attention to the use_ps_swat and use_file_swat column for the domain. If the column is set to N then you will not be able to create an archive set for this domain.
2. Run the following DML against the stat db:
update service_domain
set use_ps_swat='Y'
where sd_cd='enter_domain_code';
commit;