The eventingInfo action reports the status of data event generation for the current CAS session. It indicates whether data events—notifications generated when table data is modified—are enabled for global-scope tables and session-scope tables. This action is useful for auditing purposes and for verifying the current session's configuration regarding data change tracking.
Ensure a CAS session is active before running the action.
| 1 | cas mysess; |
Retrieves the current settings for data event generation in the session.
| 1 | PROC CAS; |
| 2 | BUILTINS.eventingInfo; |
| 3 | RUN; |
Executes the eventingInfo action, saves the result to a variable, and prints the result dictionary to inspect specific values.
| 1 | PROC CAS; |
| 2 | BUILTINS.eventingInfo RESULT=info; |
| 3 | PRINT info; |
| 4 | RUN; |