I have also tried creating a scripted based calculation view on top of the above mentioned attribute view , by defining an input parameter on the search attribute but when I do a data preview on the calculation view and drag in the search attribute in the attribute view ,I get the below error message.
Error: SAP DBTech JDBC: [2048]: column store error: [2048] column store error: logical index creation addJoinIndex error: [2030] Adding to join index GKATARAP:0x7f0751060c00:0en: Table _SYS_CE_VAR_OUTECC-Internal-Audit-Views/CA_LFA1_FUZZY/proc_popid_3_52FB8102F601D879E10000000A3C2A64_104579 not found.Please check lines:
Below is the logic I have written to accomplish this using a scripted calculation view.
var_out = select LIFNR AS LIFNR , NAME1 AS NAME1 , '1' as KF
from "_SYS_BIC"."ECC-Internal-Audit.temp-Views/AT_LFA1"
where contains(NAME1,:VEND_NAME,fuzzy(0.7,'similarcalculationmode = substringsearch'));
Thanks,
Goutham