Skip to main content
Solved

Acumatica Grid Loses rows on refresh


Forum|alt.badge.img
  • Freshman I
  • 22 replies

 public PXSelectReadonly<ITDeliveryPlanning.ITDeliveryPlanning,
        Where<ITDeliveryPlanning.ITDeliveryPlanning.receiptNbr, Equal<Current<POReceipt.receiptNbr>>>> ViewDeliveryPlaneceipt;

 

 

 

Acumatica Grid Loses rows on refresh, Why like that ?

Best answer by Yuriy Zaletskyy

POReceipt has two key fields: ReceiptType and ReceiptNumber. Modify your PXSelect statement to have two fields.

You can find description of key fields in Acumatica source code:

	public partial class POReceipt : PX.Data.IBqlTable, PX.Data.EP.IAssign
	{
		#region Keys
		public class PK : PrimaryKeyOf<POReceipt>.By<receiptType, receiptNbr>
		{
			public static POReceipt Find(PXGraph graph, string receiptType, string receiptNbr) => FindBy(graph, receiptType, receiptNbr);
		}

 

View original
Did this topic help you find an answer to your question?

2 replies

Forum|alt.badge.img+1

Hi @Febri,

Did you set the SynPosition = true,  under Layout properties for that grid?


Yuriy Zaletskyy
Jr Varsity I
Forum|alt.badge.img+3
POReceipt has two key fields: ReceiptType and ReceiptNumber. Modify your PXSelect statement to have two fields.

You can find description of key fields in Acumatica source code:

	public partial class POReceipt : PX.Data.IBqlTable, PX.Data.EP.IAssign
	{
		#region Keys
		public class PK : PrimaryKeyOf<POReceipt>.By<receiptType, receiptNbr>
		{
			public static POReceipt Find(PXGraph graph, string receiptType, string receiptNbr) => FindBy(graph, receiptType, receiptNbr);
		}

 


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