Does anyone have an example of how to invoke a BO method?
I am using APInvGrp.PrePostGroupInvoices am trying to validate that specific fields in ApInvHed are populated for transactions posted within a particular time frame.
What I realize is that the APinvdataset is not available in APInvGrp.PrePostGroupInvoices. The only thing that is available that I can use is the PostGoupID parameter.
I need some direction on how to call the APInvoice method and get the dataset where APInvhed. GroupID = PostGoupID Parameter
Are you planning to manipulate the APInvoice dataset in anyway, or just look at it for validation before posting? If the latter, you might be better off just using some LINQ code to query the db instead of bringing in whole datasets and inspecting them.
Call with BL tester and call with ServiceRendere work differently. BL tester uses client-side proxies that do a lot of magic. So, calls that work with BL Tester can stop working with ServiceRenderer.
Tests with REST Help provide more relevant results.