Skip to main content
Question

Retrieve column values from "Documents to Apply" table at Checks and Payments tab

  • January 25, 2022
  • 0 replies
  • 148 views

Forum|alt.badge.img+2
  • Varsity I
  • 283 replies

Hi, 

In this topic - 

It was advised to use such request in order to get data from  "Documents to Apply" table at Checks and Payments tab

foreach (PXResult<APAdjust, APPayment, PX.Objects.AP.Standalone.APRegisterAlias, APTran> res in PXSelectJoin<APAdjust, LeftJoin<APInvoice, On<APInvoice.docType, Equal<APAdjust.adjdDocType>, And<APInvoice.refNbr, Equal<APAdjust.adjdRefNbr>>>,
                                          LeftJoin<APTran, On<APInvoice.paymentsByLinesAllowed, Equal<True>,  And<APTran.tranType, Equal<APAdjust.adjdDocType>, And<APTran.refNbr, Equal<APAdjust.adjdRefNbr>,And<APTran.lineNbr, Equal<APAdjust.adjdLineNbr>>>>>>>,
                                          Where<APAdjust.adjgDocType, Equal<Required<APPayment.docType>>,  And<APAdjust.adjgRefNbr, Equal<Required<APPayment.refNbr>>,
                                          And<APAdjust.released, NotEqual<True>>>>>.Select(new PXGraph(), doc.DocType, doc.RefNbr))
                    {
                        APAdjust adj = res;
                        APPayment apPayment = res;
                        APTran tran = res;

                    }

However such request returns nothing . I started to debug my project and the pointer in code do not entered the foreach cycle.

I tried to form another requests and successfully retrieved list of APAjustment by such request

However, I also need to extract APInvoice, but get the same error as with the initial request which says “Single row was requested”

Can you please help to fix the first request in order to get APInvoice and ApAdjsu inside one iteration or help just with my second request ?

One moment : i can\t use such construction

 foreach (APAdjust res in Base.Adjustments.Select())            {                APAdjust adj = res;            }

Because I am not extending this graph

 

0 replies

Be the first to reply!

Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings