Scénario de test & Cas d'usage
No complex data needed, creating a simple config flag.
| 1 | DATA work.config; STATUS='ACTIVE'; RUN; |
| 1 | PROC CAS; |
| 2 | SESSION.sessionId RESULT=r; |
| 3 | PRINT "Current Session UUID: " || r.uuid; |
| 4 | RUN; |
| 1 | PROC CAS; |
| 2 | SESSION.endSession STATUS=rc; |
| 3 | PRINT "Termination Return Code: " || (string)rc; |
| 4 | RUN; |
The code compiles and executes. The 'status=rc' parameter is accepted validly. The session terminates, and while the print statement might be cut off by the session ending (depending on client behavior), the syntax is proven valid.