Action Principale : actionSetFromTable
| 1 | PROC CAS; |
| 2 | BUILTINS.defineActionSet |
| 3 | name="myActionSet", |
| 4 | actions={ |
| 5 | { |
| 6 | name="myEcho", |
| 7 | parms={ {name="...", type="any"} }, |
| 8 | script="print(params)" |
| 9 | } |
| 10 | }; |
| 11 | |
| 12 | BUILTINS.actionSetToTable |
| 13 | name="myActionSet", |
| 14 | TABLE={name="myActionSetTable", caslib="CASUSER", replace=true}; |
| 15 | QUIT; |