Skip to main content
Question

Append custom columns to PXCopyPasteHiddenFields attribute on Base Graph


Kyle Vanderstoep
Jr Varsity III
Forum|alt.badge.img+1

Hi,

 

I am adding a few custom fields to ARInvoice and ARPayment. How can I prevent these fields from being picked up in the copy/paste functionality? 

I tried redefining the data view in a graph extension with a new PXCopyPasteHiddenFields attribute, but it did not work.

3 replies

Forum|alt.badge.img+6
  • Captain II
  • 562 replies
  • March 13, 2025

Can you show us the code for the re-declared view? I’m using the method on the SO Order Entry screen successfully.


Naveen Boga
Captain II
Forum|alt.badge.img+19
  • Captain II
  • 3410 replies
  • March 17, 2025

​@Kyle Vanderstoep You might already be aware of this. To prevent custom fields from being copied using the Copy/Paste functionality, you can redefine the view as shown below and include PXCopyPasteHiddenFields(typeof(APInvoiceExt.usrTestField)) as demonstrated in the example.

 

    [PXCopyPasteHiddenFields(
        typeof(APInvoice.paySel), 
        typeof(APInvoice.payDate),

 typeof(APInvoiceExt.usrTestField),
        typeof(APInvoice.intercompanyInvoiceNoteID))]
    public PXSelect<APInvoice, Where<APInvoice.docType, Equal<Current<APInvoice.docType>>, And<APInvoice.refNbr, Equal<Current<APInvoice.refNbr>>>>> CurrentDocument;


darylbowman
Captain II
Forum|alt.badge.img+13

Does the graph’s view already have a PXCopyPasteHiddenFields attribute?


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