Action Principale : actionSetFromTable
| 1 | PROC CAS; |
| 2 | BUILTINS.defineActionSet / |
| 3 | name='mySet', |
| 4 | actions={{ |
| 5 | name='myAction', |
| 6 | definition='print "¡Hola desde myAction!";' |
| 7 | }}; |
| 8 | RUN; |
| 9 | BUILTINS.actionSetToTable / |
| 10 | name='mySet', |
| 11 | TABLE={name='myActionSetTable', caslib='CASUSER', replace=true}; |
| 12 | RUN; |
| 13 | QUIT; |