Hi @sagar07,
I am not sure if it possible show the notes, the action will not be available in the graph as the control is part of the core.
I am not fully aware of your use case here. So as an suggestion, you can try something like below to show a message in a dialogue box,
var note = PXNoteAttribute.GetNote(Base.Document.Cache, Base.Document.Current);
Base.Document.Ask(note, MessageButtons.OK);
You can try the above in the FieldUpdated event, so each time the field the updated you can show the message.
Hope that helps, good luck.!
Hi @Vignesh Ponnusamy ,
Thanks for the suggestion. I was able to display it as a message box as you recommended.
However, I'm currently trying to open a Notes popup section for the current vendor, and each time the vendor updates it, the Notes Popup section should automatically open.
I'm also attempting to find the code to trigger this action, but, as you mentioned, the Notes section is part of the core, and I haven't found any helpful resources.
I appreciate your time.
Regards,
Sagar