Skip to content

Commit 60f2720

Browse files
authored
Merge pull request #174 from Acumatica/feature/EDU-9615-2026R1-T240-Course-Update-Code-Snippets
EDU-9615: Added the default views that are generated for consistency
2 parents b67eada + 41e1375 commit 60f2720

1 file changed

Lines changed: 16 additions & 1 deletion

File tree

Customization/T240/CodeSnippets/Activity1.2.1_Step1/RSSVAssignProcess.cs

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,22 @@ public RSSVAssignProcess()
2121
WorkOrders.SetProcessCaption("Assign");
2222
WorkOrders.SetProcessAllCaption("Assign All");
2323
}
24-
24+
25+
public PXFilter<MasterTable> MasterView;
26+
public PXFilter<DetailsTable> DetailsView;
27+
28+
[Serializable]
29+
public class MasterTable : PXBqlTable, IBqlTable
30+
{
31+
32+
}
33+
34+
[Serializable]
35+
public class DetailsTable : PXBqlTable, IBqlTable
36+
{
37+
38+
}
39+
2540
////////// The added code
2641
protected virtual void _(Events.RowSelected<RSSVWorkOrder> e)
2742
{

0 commit comments

Comments
 (0)