This document describes the PX1093 diagnostic.
Code | Short Description | Type | Code Fix |
---|---|---|---|
PX1093 | In a graph declaration, the first type parameter of PXGraph must be the graph type. |
Error | Available |
In a graph declaration, the first type parameter of PXGraph
must be the graph type.
The code fix changes the first type parameter to the graph itself.
public class APInvoiceEntry : PXGraph<ARPaymentMaint> // The PX1093 error is displayed for this line.
{
}
public class APInvoiceEntry : PXGraph<APInvoiceEntry>
{
}