Hi,
My application releases payment via this event
Is there opportunity to return Checks and Payments item status from “Closed” to “Balanced” ?
Hi,
My application releases payment via this event
Is there opportunity to return Checks and Payments item status from “Closed” to “Balanced” ?
Best answer by markusray17
no setting the current record on a view means
[GRAPH NAME].[VIEW NAME].Current = [Record]
That is what you are doing with the Document view when you
graph.Document.Current = graph.Document.Search<APPayment.refNbr>(referenceNbr);
So assuming the view name is APPost you would need something like(this would just select the first record of the view).
graph.APPost.Current = graph.APPost.SelectSingle();
If you are getting an error when trying to inspect the action/grid then you have something else going on. I would check the trace(there should be more detailed error messages there) and look through your customizations to find which one is causing the issue.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.