Skip to main content
Solved

2022 R1 - How to Add Custom Action Button into GI Mass Action

  • 14 March 2023
  • 2 replies
  • 214 views

Hi Team,

I am working with 2022 R1 (build 22.106.0015 ) and I have created a custom Action button on Sales Order screen and wanted to add this button to a GI Mass Action. Is it possible to add this button as GI Mass Action, if so can you please suggest the best possible way to do that. Please find below details for reference:

Action Button:

 public PXAction<SOOrder> CreateKit;
        PXButton(CommitChanges = true), PXUIField(DisplayName = "Create Kit", MapEnableRights = PXCacheRights.Select)]
        protected virtual IEnumerable createKit(PXAdapter adapter)

{

return adapter.Get();

}

 

I want to add the above button on below GI Mass Actions:

 

Thank you in advance!

2 replies

Userlevel 5
Badge +2

Hi @vivekm . This is a common problem that many developers face. Please take a look.

 

Userlevel 4
Badge

Thank you @davidnavasardyan09 

Reply