Skip to main content
Answer

How to make Document & Line level notes mandatory?

  • April 29, 2024
  • 3 replies
  • 92 views

Forum|alt.badge.img+3

Hello Community,

i have been wondering if we can mark the Document or Line-level Notes as required? if yes then how? Can we achieve it via low-code/No-code customization?

 

Thanks in advance.

Best answer by aaghaei

You will need to develop your graph extension logic on NoteFiles hidden field like:
 

protected virtual void CARecon_NoteFiles_FieldVerifying(PXCache cache, PXFieldVerifyingEventArgs e)
{
//Write your Logic here
}

 

3 replies

Vignesh Ponnusamy
Acumatica Moderator
Forum|alt.badge.img+5

@Harshita,

I don’t think it is possible via the no or low code customization. I think it should be possible through graph extension. Can you please share what is the screen and grid you are targeting? 


Forum|alt.badge.img+3
  • Author
  • Captain II
  • May 2, 2024

@Harshita,

I don’t think it is possible via the no or low code customization. I think it should be possible through graph extension. Can you please share what is the screen and grid you are targeting? 

Its is Reconciliation Statements form & I am looking to make the doc level notes as mandatory to be filled up.


aaghaei
Captain II
Forum|alt.badge.img+10
  • Captain II
  • Answer
  • May 2, 2024

You will need to develop your graph extension logic on NoteFiles hidden field like:
 

protected virtual void CARecon_NoteFiles_FieldVerifying(PXCache cache, PXFieldVerifyingEventArgs e)
{
//Write your Logic here
}