reportextension 50101 OpportunitiesRSMReport extends "Salesperson - Opportunities"
{
dataset
{
add(Opportunity)
{
// add a new field to the dataset
column(DateClosed; Opportunity."Date Closed") { }
}
}
trigger OnPreReport()
begin
/* This will run after the original report's equivalent trigger */
Opportunity.SetCurrentKey(Opportunity."No.");
Opportunity.SetAscending("No.", false);
end;
}
André Arnaud de Cal...
292,494
Super User 2025 Season 1
Martin Dráb
231,307
Most Valuable Professional
nmaenpaa
101,156