RDC Filtering
Filtering has been added to RDC. This is done on an institution level, and will prevent accounts that don’t pass the filtering from showing in People/Mobile app
Classification Filtering
This is essentially account type filtering.
What account types are valid for this institution? Any accounts that don’t have a specified account type will be filtered out.
For Jx Classification corresponds to the AcctType field in the IntnetFinInstIdInq call. It might look something like:
X(christmas club)D(deposit)S(savings)- whatever else…
This filtering can be used for SymXchange as well. Those account types look like: Sh00, Sh01, …
Jx specific filtering
What classifier codes and relationship codes are allowable for Jx accounts?
Jx Mapping:
- Classifier Codes ->
AcctClsfCodeoff theacctInqcall - Relationship Codes ->
AcctRelCodeoff theIntnetFinInstIdInqcall
Tables
create table rdc_account_classification(
institution_id VARCHAR(36) PRIMARY KEY NOT NULL,
checking_types VARCHAR(10)[] NOT NULL DEFAULT ARRAY[]::VARCHAR[],
saving_types VARCHAR(10)[] NOT NULL DEFAULT ARRAY[]::VARCHAR[]
)
create table rdc_filtering_jx(
institution_id VARCHAR(36) PRIMARY KEY NOT NULL,
classifier_codes CHAR(1)[] NOT NULL DEFAULT ARRAY[]::VARCHAR[],
relationship_codes CHAR(1)[] NOT NULL DEFAULT ARRAY[]::VARCHAR[]
)
meta data stored in account_meta_data_jx for jx accounts