Hi,
I am working with two customization projects in Acumatica 2025 R2, both extending the AR101000 (AR Setup) screen in the Modern UI.
-
Project SRK100 adds a custom field
UsrSRKTestCardinside a new fieldset (SRK100_BaseFields). -
Project SRK200 attempts to insert another custom field
UsrSRKTestFieldusing the after selector to place it immediately after the SRK100 field.The issue is:
Problem:
Although the customization compiles with no errors and both packages published successfully. The field from Project SRK200 (
UsrSRKTestField) display in the UI in ‘groupDataProcessingSettings’ field set. But It should appear immediately afterUsrSRKTestCard, but it is not.
Both extensions inherit properly: below is the both projects code
Project-SRK100 :
Typescript:import { AR101000, ARSetup } from "src/screens/AR/AR101000/AR101000";
import { PXFieldState, PXFieldOptions } from "client-controls";
export interface ARSetup_SRK100Base extends ARSetup { }
export class ARSetup_SRK100Base {
UsrSRKTestCard: PXFieldState;
}
HTML :
<template>
<qp-fieldset after="#groupDataProcessingSettings" view.bind="ARSetupRecord" id="SRK100_BaseFields"
slot="B" caption="New Customer Options">
<field name="UsrSRKTestCard"></field>
</qp-fieldset>
</template>
Project-SRK200 :
Typescript :import {
AR101000, ARSetup
} from "src/screens/AR/AR101000/AR101000";
import {
PXFieldState,PXFieldOptions,gridConfig,GridPreset,PXView
} from "client-controls";import { ARSetup_SRK100Base } from "src/customizationScreens/Company/screens/AR/AR101000/extensions/AR101000_SRK100Base";
export interface ARSetup_SRK200Base extends AR101000 { }
export class ARSetup_SRK200Base { }export interface ARSetupRecord_SRK200 extends ARSetup_SRK100Base { }
export class ARSetupRecord_SRK200 {
UsrSRKTestField: PXFieldState;
}
HTML :
<template>
<qp-fieldset modify="#groupDataProcessingSettings">
<field name="UsrSRKTestField" after="#SRK100_BaseFields [name='UsrSRKTestCard']"></field>
</qp-fieldset>
</template>What I Need Help With:
-
Is this a known issue with field placement between multiple customization packages in the Modern UI (25R2)?
-
Are there special requirements for referencing a custom field from another customization project in the after selector?
-
Is there a recommended debugging method to confirm component resolution order in nested fieldsets?
Any guidance would be greatly appreciated.
Thank you!

