Action Principale : actionSetFromTable
| 1 | /* Zuerst einen benutzerdefinierten Aktionssatz definieren und speichern */ |
| 2 | PROC CAS; |
| 3 | BUILTINS.defineActionSet / |
| 4 | name='meinAktionsSatz', |
| 5 | actions={ |
| 6 | {name='halloWelt', definition='echo {botschaft="Hallo Welt!"}'} |
| 7 | }; |
| 8 | RUN; |
| 9 | |
| 10 | BUILTINS.actionSetToTable / |
| 11 | actionSet='meinAktionsSatz', |
| 12 | TABLE={name='gespeicherterAktionsSatz', caslib='CASUSER', replace=true}; |
| 13 | RUN; |
| 14 | QUIT; |