Skip to main content
Solved

Is there a way to edit the bottom tab of the Sales Order?

  • July 24, 2025
  • 5 replies
  • 118 views

Forum|alt.badge.img

I want to edit this bar at the bottom of the details tab of the sales order page. Is there a way to do this? I didn’t see anything in the Customization Project screen.

 

Best answer by Naveen Boga

@kkraus  Acumatica has implemented this in the FormatStatus method in the SOOrderEntry Base code.

But, if you wanted to modify the footer text, you can modify the e.ReturnValue as shown in the picture below.

 

 

5 replies

Naveen Boga
Captain II
Forum|alt.badge.img+19
  • Captain II
  • July 25, 2025

Hi ​@kkraus  If I understood correctly, you wanted to add or modify the footer text in the Sales Orders screen, if yes, please follow the below links.

 

public virtual void SOLine_Availability_FieldSelecting(PXCache sender, PXFieldSelectingEventArgs e, PXFieldSelecting invokeBaseHandler)
{
invokeBaseHandler?.Invoke(sender, e);
e.ReturnValue = e.ReturnValue + " My Added Text!";
}

https://stackoverflow.com/questions/41514275/modify-grid-footer-information-on-hand-x-available-y


Forum|alt.badge.img
  • Author
  • Freshman II
  • July 25, 2025

Hi ​@kkraus  If I understood correctly, you wanted to add or modify the footer text in the Sales Orders screen, if yes, please follow the below links.

 

public virtual void SOLine_Availability_FieldSelecting(PXCache sender, PXFieldSelectingEventArgs e, PXFieldSelecting invokeBaseHandler)
{
invokeBaseHandler?.Invoke(sender, e);
e.ReturnValue = e.ReturnValue + " My Added Text!";
}

https://stackoverflow.com/questions/41514275/modify-grid-footer-information-on-hand-x-available-y

@Naveen Boga, yes I am trying to modify the footer text. I think I understand the code, but where in the customization project would I find the code to edit? I assume it has to be somewhere since the footer is appearing.


Naveen Boga
Captain II
Forum|alt.badge.img+19
  • Captain II
  • Answer
  • July 26, 2025

@kkraus  Acumatica has implemented this in the FormatStatus method in the SOOrderEntry Base code.

But, if you wanted to modify the footer text, you can modify the e.ReturnValue as shown in the picture below.

 

 


Forum|alt.badge.img
  • Author
  • Freshman II
  • July 28, 2025

@kkraus  Acumatica has implemented this in the FormatStatus method in the SOOrderEntry Base code.

But, if you wanted to modify the footer text, you can modify the e.ReturnValue as shown in the picture below.

 

 

@Naveen Boga Where would I go to find the FormatStatus Method of the SOOrderEntry code?


Naveen Boga
Captain II
Forum|alt.badge.img+19
  • Captain II
  • July 28, 2025

@kkraus Sorry, it is part of the  SOOrderItemAvailabilityExtension code. Please find the screenshot for reference.