Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 1.24 KB

PX1093.md

File metadata and controls

37 lines (25 loc) · 1.24 KB

PX1093

This document describes the PX1093 diagnostic.

Summary

Code Short Description Type Code Fix
PX1093 In a graph declaration, the first type parameter of PXGraph must be the graph type. Error Available

Diagnostic Description

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.

Example of Incorrect Code

public class APInvoiceEntry : PXGraph<ARPaymentMaint> // The PX1093 error is displayed for this line.
{

}

Example of Code Fix

public class APInvoiceEntry : PXGraph<APInvoiceEntry>
{
    
}

Related Articles