Action Principale : buildAutoComplete
| 1 | DATA casuser.productos; |
| 2 | LENGTH producto $ 50; |
| 3 | INFILE DATALINES; |
| 4 | INPUT producto & $50.; |
| 5 | DATALINES; |
| 6 | SAS Visual Analytics |
| 7 | SAS Viya Platform |
| 8 | SAS Studio |
| 9 | SAS Information Catalog |
| 10 | SAS DATA Explorer |
| 11 | ; |
| 12 | RUN; |
| 13 | |
| 14 | PROC CAS; |
| 15 | search.buildIndex / |
| 16 | TABLE={caslib='casuser', name='productos'} |
| 17 | casout={caslib='casuser', name='productos_idx', replace=true} |
| 18 | indexEmpty=true; |
| 19 | RUN; |