Scénario de test & Cas d'usage
Management of access rights and data security.
Discover all actions of accessControlSimulation of multiple regional datasets to represent the bulk volume.
| 1 | DATA casuser.region_north; x=1; RUN; |
| 2 | DATA casuser.region_south; x=1; RUN; |
| 3 | DATA casuser.region_east; x=1; RUN; |
| 4 | DATA casuser.region_west; x=1; RUN; |
| 1 | PROC CAS; |
| 2 | ACCESSCONTROL.startTransaction; |
| 3 | /* Simulate complex logic looping over regions */ |
| 4 | DO region over {'region_north', 'region_south', 'region_east', 'region_west'}; |
| 5 | PRINT 'Applying policy for ' || region; |
| 6 | END; |
| 7 | RUN; |
| 1 | PROC CAS; |
| 2 | ACCESSCONTROL.commitTransaction; |
| 3 | PRINT 'Bulk update committed.'; |
| 4 | RUN; |
The commitTransaction action successfully finalizes the batch operation without parameters. All pending changes for the regional tables are applied instantly, confirming the system handles bulk context commits efficiently.