ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

New WINDEV, WEBDEV and WINDEV Mobile 2024 feature!
This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / Managing databases / HFSQL / HFSQL Client/Server functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Allows you to find out which rights have been granted to a section.
Example
sDroit is string
// Récupère le droit de désanonymisation de l'utilisateur Dupont
// sur la rubrique MaRubrique du fichier MonFichier.fic de la base de données MaBase
sDroit = HInfoItemRights("CNX", "Dupont", hRightsUnmask, "MaBase", "MonFichier.fic", "MaRubrique")
SWITCH sDroit
	CASE hAllowed
	...
	CASE hForbidden
	...
	CASE hInherit
	... 
END
Syntax
<Result> = HInfoDroitRubrique(<Connection> , <User/Group> , <Rights> , <Database> , <Data file> , <Item> [, <Display mode>])
<Result>: Character string
  • Requested information,
  • Empty string ("") if an error occurred.
  • "Unknown user" or "Unknown group" if the current user has no permissions to see other users (hRightsSeeUser constant) and wants to get information about another user or group.
In hDefault mode, <Result> is a list of values separated by tabs. Each value in the list corresponds to the rights requested by <Rights>. The values in the list can correspond to one of the following constants:
hAllowedThe relevant rights are granted to the user or group.
hForbiddenThe relevant rights are not granted to the user or group.
hInheritThe user belongs to at least one group to which the relevant rights were granted.
This constant is returned only if the display mode is not set to hEffective.

In hDetails mode, <Result> is a list of values with the following format:
<Droit considéré 1> + TAB + <Valeur du droit 1> + RC + ...
<Droit considéré N> + TAB + <Valeur du droit N> + RC

The rights correspond to the constants used in the <Rights> parameter and the values of the rights correspond to the hAllowed, hForbidden or hInherited constant (see the above table).
<Connection>: Character string or Connection variable
Connection for which the rights of a user or group of users must be known. This connection corresponds to:
<User/Group>: Character string
Name of the user or group whose rights must be known.
<Rights>: Integer constant
List of rights to find:
hRightsUnmaskRight to de-anonymize anonymized section.
<Database>: Character string
Name of the database containing the of the data file field for which the rights are being searched..
If the database corresponds to the one defined in the connection, this parameter can correspond to an empty string ("").
A WLanguage error occurs if no database is defined in the connection and if this parameter corresponds to an empty string.
<Data file>: Character string
Name of the data file HFSQL containing the field for which rights are being searched. The extension of the data file must be specified.
<Item>: Character string
Name of the item for which rights are being searched.
<Display mode>: Optional Integer constant
Result display mode:
hDefault
(Default value)
The rights returned do not take the inherited rights into account (rights granted to the groups to which the user belongs).
If no rights were defined, the value will be set to hInherit.
<Result> contains the values of the requested rights (in the same order).
hDetailsSame as hDefault.
<Result> contains the rights and there value.
hEffectiveThe rights returned correspond to the rights actually granted to the user or to the group on the data file. The inherited rights are taken into account (rights granted to the groups to which the user belongs for instance).
hEffective + hDetailsSame as hEffective.
<Result> contains the rights and there value.
Remarks
Use the HModifieDroitRubrique function to modify the rights of a user or group to a field.
Business / UI classification: Business Logic
Component: wd290hf.dll
Minimum version required
  • Version 2024
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 04/06/2024

Send a report | Local help