The SQL by Form is taking a long time due to the execution of fields that are not needed.
(All items in the included data sources are being selected.)
To speed up the process, I would like to execute SQL only for the necessary fields.
final class SalesLineBackOrder_Extension
{
/// <summary>
///
/// </summary>
/// <param name=/args/></param>
class salesline
{
public void executeQuery()
{
QueryBuildDataSource qbds;
QueryBuildFieldList qbfl;
qbfl = qbds.fields();
qbfl.dynamic(false);
qbfl.clearFieldList();
}
}
}