In my Graph I have following Inner joins chain:
public PXSelectJoin<APRegister,
InnerJoin<APPayment, On<APPayment.docType, Equal<APRegister.docType>>,
InnerJoin<CATran, On<CATran.origTranType, Equal<APRegister.docType>>,
InnerJoin<Vendor, On<Vendor.bAccountID, Equal<APRegister.vendorID>>,
InnerJoin<BAccount, On<BAccount.bAccountID, Equal<BAccount.bAccountID>>,
InnerJoin<VendorClass, On<VendorClass.vendorClassID, Equal<Vendor.vendorClassID>>>>>>>> ReleasedPayments;
and I'm particularly interested how Acumatica framework "feels" and maybe behaves about inner joins between classes that are relatives. For example APRegister is basic class to APPayment, and BAccount is basic class to Vendor. Will Acumatica framework be able to handle them properly? I give this question because mentioned query caused my processor to be over loaded, memory exhausted and then crashing w3wp process. So I've get an impression that something is missing