Glen,
I saw these statments in ERDPro help. See if this helps
----Override the report component’s GetUserACL( ) method as shown in the following example:
Function GetUserACL( acl AS String ) As String
GetUserACL = Super::GetUserACL( acl )
'Get the list of security IDs fo rthe user
CurrentUserACL = GetUserACL
End Function
Drag a text control and drop it into the page.
Override the text control’s GetText( ) method as shown in the following example:
Function GetText( ) As String
'Displays a list of security IDs for the user
'Uses custom variable CurrentUserACL and
'Overridden GetUserACL in the report component
GetText = GetValue( GetReport( ), "CurrentUserACL" )
End Function
If the report is viewed with secure read privilege, the GetText( ) function returns a list of Security IDs for the current user. If the report is viewed with standard read privilege, the GetText( ) function returns nothing.
Muthu