Openbravo Issue Tracking System - Openbravo ERP
View Issue Details
0058048Openbravo ERPA. Platformpublic2025-02-21 12:352025-02-24 09:26
cberner 
cberner 
normalminorhave not tried
closedfixed 
5
 
PR25Q2 
approved
No
Core
No
0058048: Standard process definition throws error when having selector with datasource as field
In a Process Definition (marked as Standard), it is possible to define several fields. If one of those fields has a reference to a Defined Selector that doesn't have a table, but uses a DataSource instead, the UI fails to load with a freemarker error, and in the tomcat log a NullPointerException is thrown.
In a pos2 environment for simplicity:
1. Login backoffice and select System Admin role
2. Go to Process definition and select "Direct Process Import Entries"
3. In subtab Parameter, add a new entry
3.1. Module: Any module in development, if non, set one from Module window
3.2. Name: Application
3.3. DB Column Name: application
3.4. Reference: OBUISEL_Selector Reference
3.5. Reference Search Key: "Application or Any"
3.6. Save
4. Logout and login back again with System Admin
5. Execute process "Direct Process Import Entries"

Check that an error is thrown. As in the provided screenshot.
Where we're checking for the table, we should ignore that check if no table is defined but a DataSource is provided.
No tags attached.
related to defect 0058089 closed Triage Platform Base warn message with process definition with datasource based selector 
png error-selector.png (19,719) 2025-02-21 12:35
https://issues.openbravo.com/file_download.php?file_id=20951&type=bug
png
Issue History
2025-02-21 12:35cbernerNew Issue
2025-02-21 12:35cbernerAssigned To => Triage Platform Base
2025-02-21 12:35cbernerFile Added: error-selector.png
2025-02-21 12:35cbernerOBNetwork customer => No
2025-02-21 12:35cbernerModules => Core
2025-02-21 12:35cbernerTriggers an Emergency Pack => No
2025-02-21 12:35cbernerAssigned ToTriage Platform Base => cberner
2025-02-21 12:35cbernerStatusnew => scheduled
2025-02-21 13:04hgbotMerge Request Status => open
2025-02-21 13:04hgbotNote Added: 0176019
2025-02-21 13:56hgbotMerge Request Statusopen => approved
2025-02-24 09:26hgbotNote Added: 0176063
2025-02-24 09:26hgbotResolutionopen => fixed
2025-02-24 09:26hgbotStatusscheduled => closed
2025-02-24 09:26hgbotFixed in Version => PR25Q2
2025-02-24 09:26hgbotNote Added: 0176064
2025-02-27 08:06alostaleRelationship addedrelated to 0058089

Notes
(0176019)
hgbot   
2025-02-21 13:04   
Merge Request created: https://gitlab.com/orisha-group/bu-commerce/openbravo/product/openbravo/-/merge_requests/1550 [^]
(0176063)
hgbot   
2025-02-24 09:26   
Merge request merged: https://gitlab.com/orisha-group/bu-commerce/openbravo/product/openbravo/-/merge_requests/1550 [^]
(0176064)
hgbot   
2025-02-24 09:26   
Directly closing issue as related merge request is already approved.

Repository: https://gitlab.com/orisha-group/bu-commerce/openbravo/product/openbravo [^]
Changeset: 58b925d9c910112b7238a987856d0ef351f8b622
Author: Cristian Berner <cristian.berner@openbravo.com>
Date: 21-02-2025 13:02:57
URL: https://gitlab.com/orisha-group/bu-commerce/openbravo/product/openbravo/-/commit/58b925d9c910112b7238a987856d0ef351f8b622 [^]

Fixes ISSUE-58048: Standard process definition throws error when having selector with datasource as field

Extend the OBViewParameterHandler class to allow datasource only defined selectors

These selectors could not be used in Standard Process Definitions due to
a NullPointerException that was triggered due to checking their table
field. If no table is provided, and a datasource has been provided, the
selector is allowed now to be part of the Process Definition UI.

---
M modules/org.openbravo.client.application/src/org/openbravo/client/application/window/OBViewParameterHandler.java
---