Posts by Manuel Quelhas • 356 points
5 posts
-
1
votes2
answers263
viewsA: V9 Primavera - C# error in attribute "Comercial.Vendas.Davaloratributo"
Well, there are some things in there that don’t seem right, like doing a document search and not pulling the ID instead of the typodoc, serie and numdoc. Another thing you are doing is editing the…
c#answered Manuel Quelhas 356 -
1
votes1
answer92
viewsA: User fields
Sérgio Sereno has already answered your question (no API). But you can do it by SQL, creating the fields (CDU_) and tables (TDU_) normally and then you have to record theCDU_ fields in the…
c#answered Manuel Quelhas 356 -
2
votes1
answer83
viewsA: How to use Priengine.Engine.Comercial.Clientes.Daproximonumerocbl()
Good, to connect the entity to Accounting, you use: PriEngine.Engine.Contabilidade.ConfiguracaoTabCBL Interop.CblBE900.CblBECnfTabLigCBL Interop.CblBE900.CblBECnfTabExercicioLigCBL…
c#answered Manuel Quelhas 356 -
0
votes1
answer163
viewsA: Crystal Reports Spring V9 "Make filter on map from the spring form"
I would say that the simplest is to create a view based on this query, removing the filter by Year and grouping the data by Year. Then create a new map based on the existing one. You add your View…
crystal-reportsanswered Manuel Quelhas 356 -
0
votes2
answers113
viewsA: Doubt C# ADO.NET class - Accessing data from a Datatable
From what I see the "WHERE" condition doesn’t seem right. It should be "WHERE ... AND (... OR ...)" WHERE A.FLAG = 'A' AND (UPPER(A.ALBUM) LIKE '%@PESQUISA_ALBUM%' OR UPPER(AR.ARTISTA)…