How To Provide Data For The Grid In Acumatica Without Persiting It To Db
Hello everybody,
today I discovered for myself new member of Acumcatica. Welcome PXProcessing with it's relatives.
• PXProcessing: allows you to work with data records for processing without filtering. You can use the Where<> and OrderBy<>clauses in this data view type.
• PXProcessingJoin: allows you to work with data records for processing without filtering. You can also use Join<>clauses in this data view type.
• PXFilteredProcessing: allows you to work with data records for processing with filtering. This data type takes two DACs as type parameters, where the second DAC specifies the filter DAC. You can use the Where<>and OrderBy<>clauses in this data view type.
• PXFilteredProcessingJoin: allows you to work with data records for processing with filter. This data type takes two DACs as type parameters, where the second DAC specifies the filter DAC. You can also use Join<>clauses in this data view type.
As you can see the simplest is PXProcessing with which you can work with one DAC. Other have features as Join, two classes, OrderBy, etc. But if you wish, you can substitute them completely with something that you consider as needed.