Skip to main content
Answer

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

  • March 14, 2023
  • 2 replies
  • 450 views

vivekm
Varsity II
Forum|alt.badge.img

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!

Best answer by davidnavasardyan

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

 

2 replies

davidnavasardyan
Jr Varsity I
Forum|alt.badge.img+3

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

 


vivekm
Varsity II
Forum|alt.badge.img
  • Author
  • Varsity II
  • May 15, 2023

Thank you @davidnavasardyan09