A Permanent History Entry (PHE) is an advanced mechanism used to restrict what users can see or do in an application, based on their login and defined access rights. It ensures that each user only accesses the data, menus, and features relevant to their profile (level or role).
When a user logs in, the system loads all PHEs associated with them and checks whether they are allowed to access specific menus or data. If access is granted, the user sees the content; otherwise, it remains invisible — they don’t even know it exists.
flowchart TD
A[User Login] --> B[Load PHE List]
B --> C[Check User Access]
C --> D[Restrict Navigation Based on Menu Tree Access]
PHEs are enforced across all modules of the application.
A user may have different visibility in different modules depending on the assigned PHEs.
User | Module | PHE Applied | Result |
---|---|---|---|
Hotel A Manager | Hotel Management | CODHOTEL = A | Sees only Hotel A data and menusSees only Hotel A data and menus |
Hotel B Manager | Hotel Management | CODHOTEL = B | Sees only Hotel B data and menus |
Admin | Hotel Management | (No PHE applied) | Has access to everything (Hotel A, B, etc.) |
🔐 Security: Users cannot see or detect content outside their scope. 🎯 Customization: Users with the same level or role can have different access levels. 🧱 Modular Flexibility: Apply different PHEs per module (e.g., backoffice vs. operations). ⚙️ Performance: Avoid loading irrelevant data for users. 📏 Scalability: Easily managed through levels/roles without custom code per user.
Before configuring a PHE, you must understand what data you want to restrict (e.g., hotels, regions, departments).
💡 The
PSW
table is a system table used to store all users who have access to the application. It comes pre-configured in all Genio-based systems and does not need to be created manually.
- Once you define the target entity (e.g.,
HOTEL
), you must create an association table between that entity and the PSW system table.- For example, to associate users to hotels, you might create a table called
RECEP
(representing receptionists).
This table will determine which users can access which hotel records.
This N:N (many-to-many) table defines what data each user can access.
Example Table: RECEP
CODPSW | CODHOTEL |
---|---|
001 | HOTEL_A |
002 | HOTEL_B |
You can assign a PHE to Levels or Roles.
How:
Once assigned, the PHE becomes active for users with that access level in the given module. Their access is now filtered according to the RECEP table.
Checklist Before Testing
RECEP
)
RECEP
) exists.PHEs are evaluated at login time.
You can apply multiple PHEs using AND (default) or OR logic.
The "Propagate in depth" option allows filtering down the entire navigation tree but may impact performance.
Users with no PHE applied (e.g., Admins) will have full visibility.