In Customized Screens , I started Customize existing screen AR303000 .
I selected EDIT ASPX button And added the below code to Tabs after Compliance Tab .
<px:PXTabItem Text="MyNewTab">
<Template>
<px:PXButton runat="server" ID="btnGetResult" Text="GetResult"><AutoCallBack Command="GetResult" Target="ds" ></AutoCallBack></px:PXButton>
<px:PXGrid ID="grid" runat="server" >
<Levels>
<px:PXGridLevel DataMember="CurrentCustomer">
<Columns>
<px:PXGridColumn Width="200px" DataField="UsrNoOfHits" ></px:PXGridColumn>
<px:PXGridColumn Width="250px" DataField="UsrBookMarkRating" ></px:PXGridColumn>
<px:PXGridColumn Width="350px" DataField="UsrNotes" ></px:PXGridColumn>
<px:PXGridColumn Width="350px" DataField="UsrSanctionsCheckMessage" ></px:PXGridColumn>
</Columns>
<Mode AllowAddNew="False" AllowDelete="False" AllowUpdate="False" ></Mode>
</px:PXGridLevel>
</Levels>
</px:PXGrid>
</Template>
</px:PXTabItem>
After publishing this works fine in the current instance . But when I Export the customisation package and
Import and publish in another instance these codes are missing . I am new to Acumatica , Is there anything missing or am I do anything wrong ?
Any help would be appreciated. Thank you


