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
  • 2 replies
  • 99 views

Hello Acumatica team,


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

2 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> { }

}