Skip to main content
Question

How can the missing text in the Shipping tab be added in the Modern UI using a screen extension?

  • March 11, 2026
  • 3 replies
  • 157 views

Hello Acumatica team,


How can the missing text in the Shipping tab be added in the Modern UI using a screen extension?

3 replies

Forum|alt.badge.img+2
  • Pro III
  • March 11, 2026

@mboddepalli10 The screenshots are not clearly visible. To add a label text in a modern UI, use the following HTML code sample.

<qp-label id="PXLabel1"
caption="Note: All the Acumatica Orders which have Order Date between the selected Date range will be displayed."
class="myclass">
</qp-label>



another sample
<field name="site_unbound_3" unbound>
<qp-label id="KNSiteHelpTextCstLabel2" class="no-label" right-align="false"
caption="The value will be applicable for each Warehouse configured on the Syncs"></qp-label>
</field>

 


Forum|alt.badge.img
  • Jr Varsity III
  • March 11, 2026

Hi ​@mboddepalli10 You can try using an Unbound Field with [PXDefault()]

Ex:

public class SOOrderExt : PXCacheExtension<SOOrder>

{

[PXString(255, IsUnicode = true)]

[PXUIField(DisplayName = "Shipping Instructions", Enabled = false)]

[PXDefault("Shipment No Earlier Than 3 Business Days After RRD", PersistingCheck = PXPersistingCheck.Nothing)]

public virtual string UsrShippingNote { get; set; }

public abstract class usrShippingNote : PX.Data.BQL.BqlString.Field<usrShippingNote> { }

}


arpine08
Jr Varsity I
Forum|alt.badge.img+1
  • Jr Varsity I
  • March 14, 2026

Hello mboddepalli10,

Here is my suggestion for adding a custom label to the Shipping tab on the Sales Orders screen in the Modern UI:

HTML:


<template>
<style>
.myclass label {
background-color: #FFF0F0 !important;
color: #D32F2F !important;
}
</style>
<field before="#fsOrderSettings-Shipping [name='ShipDate']">
<field name="FakeField" replace-content unbound>
<qp-label id="myLabel" caption="Note: Specialized Handling Requirements for this Shipment." class="myclass">
</qp-label>
</field>
</field>
</template>

Result: