Skip to main content
Question

PXRedirectToGIRequiredException with @linkCommand does not open Generic Inquiry from hyperlink (26R1)

  • July 21, 2026
  • 5 replies
  • 32 views

Forum|alt.badge.img+1

I'm facing an issue with Acumatica 2026 R1 (Build 26.100.0175) while implementing hyperlink navigation in a custom Modern UI screen.

Scenario

I have a custom screen generated using the Modern UI Generator. The OrderNbr column is displayed as a hyperlink using @linkCommand.

 

@linkCommand("OrderSO")
@columnConfig({
    width: 250
})
OrderNbr: PXFieldState<PXFieldOptions.CommitChanges>;

 

public PXAction<TSSOHistoricalData> OrderSO;

[PXButton(CommitChanges = true)]
[PXUIField(DisplayName = "Order SO",
    MapEnableRights = PXCacheRights.Select,
    MapViewRights = PXCacheRights.Select,
    Visible = false)]
protected virtual IEnumerable orderSO(PXAdapter adapter)
{
    Dictionary<string, string> parameters = new Dictionary<string, string>
    {
        { "OrderNbr", DetailsView.Current.OrderNbr }
    };

    throw new PXRedirectToGIRequiredException("OrderSOGITest", parameters)
    {
        Mode = PXBaseRedirectException.WindowMode.Layer
    };
}

works fine in Classic UI facing issue in Modern UI

5 replies

Forum|alt.badge.img+3
  • Pro III
  • July 21, 2026

@FarhanaM60 Could you please confirm whether clicking the hyperlink triggers the OrderSO PXAction? If it does, could you verify whether DetailsView.Current.OrderNbr contains the expected value?


Forum|alt.badge.img+1
  • Author
  • Pro I
  • July 21, 2026

yes it does,

but it doesn't show the side panel


Forum|alt.badge.img+3
  • Pro III
  • July 21, 2026

@FarhanaM60 

Thanks for confirming. Since the PXAction is being triggered and the data is available, it might be worth checking whether any additional Modern UI TypeScript handling or graph-side implementation is needed for the side panel behavior.


Forum|alt.badge.img+1
  • Author
  • Pro I
  • July 21, 2026

May be but i gave the action and also initialized in type script file as well but nothing is happening


Forum|alt.badge.img

@FarhanaM60 

Hi,

Try the code below—it should work.


Add the following line to your HTML:
<field name="OrderSO" control-type="qp-link-editor"></field>