solop-develop / adempiere-grpc-server

ADempiere gRPC Server example of integration
GNU General Public License v2.0
0 stars 9 forks source link

fix: Table reference without table validation. #853

Closed EdwinBetanc0urt closed 3 months ago

EdwinBetanc0urt commented 3 months ago

when using a key reference that does not have table validation it generates an sql for the display column that is incorrect and prevents the flow.

imagen

imagen

SELECT  C_ProjectTask.*, 
    AS "DisplayColumn_Responsible_ID"
FROM C_ProjectTask

Now it is just omitted from the sql query.

SELECT  C_ProjectTask.*
FROM C_ProjectTask