Skip to main content
Solved

Issue in the field verifying event


Forum|alt.badge.img
throw new PXSetPropertyException(Messages.Test);

I have added the above code in FieldVerifying event of my custom field.
This does raise an error. But the new selected value is assigned to the field. 

Can anyone see what wrong I am doing here.

Best answer by Naveen Boga

@tanuj81  It won’t assign the new value to the caches when you try to raise an exception.

I just checked with the code and it is working fine. Please find the code below and hope this helps!!

 

    public class SOOrderEntryExt : PXGraphExtension<SOOrderEntry>
    {
        protected void SOLine_OrderQty_FieldVerifying(PXCache cache, PXFieldVerifyingEventArgs e, PXFieldVerifying baseMethod)
        {
            baseMethod?.Invoke(cache, e);
            SOLine row = e.Row as SOLine;
            if (row != null)
            {
                if (row.OrderQty > 10)
                { 
                    throw new PXSetPropertyException("Qty should not be greater than 10"); 
                }
            }
        } 
    }

 

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

4 replies

aaghaei
Captain II
Forum|alt.badge.img+10
  • Captain II
  • 1204 replies
  • March 20, 2023

 

add 

e.Cancel = true;
return;

to your code.


Forum|alt.badge.img
  • Author
  • Freshman I
  • 21 replies
  • March 20, 2023

Updated the code to this. But same issue still persist. 
I think when we throw the exception it is meant to cancel the assignment of the new value

@aaghaei

protected void INTran_UsrAccount_FieldVerifying(PXCache cache, PXFieldVerifyingEventArgs e)
        {
            // logic for calculation 
            if (!isAccountInAccountGroup)
            {
                e.Cancel = true;
                throw new PXSetPropertyException(Messages.Test);
            }
        }

 


Patrick Chen
Jr Varsity III
Forum|alt.badge.img+2
  • Jr Varsity III
  • 51 replies
  • March 20, 2023

Throwing the PXSetPropertyException does prevent assignment of the value into the Cache.  However, it is still shown in the UI to help illustrate the incorrect entry.  According to this  you are doing this correctly.


Naveen Boga
Captain II
Forum|alt.badge.img+19
  • Captain II
  • 3410 replies
  • Answer
  • March 21, 2023

@tanuj81  It won’t assign the new value to the caches when you try to raise an exception.

I just checked with the code and it is working fine. Please find the code below and hope this helps!!

 

    public class SOOrderEntryExt : PXGraphExtension<SOOrderEntry>
    {
        protected void SOLine_OrderQty_FieldVerifying(PXCache cache, PXFieldVerifyingEventArgs e, PXFieldVerifying baseMethod)
        {
            baseMethod?.Invoke(cache, e);
            SOLine row = e.Row as SOLine;
            if (row != null)
            {
                if (row.OrderQty > 10)
                { 
                    throw new PXSetPropertyException("Qty should not be greater than 10"); 
                }
            }
        } 
    }

 


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