web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

No record found.

News and Announcements icon
Community site session details

Community site session details

Session Id :
Small and medium business | Business Central, N...
Unanswered

Employee ledger report

(0) ShareShare
ReportReport
Posted on by 236
why this report code is not working.it has just one filter for posting date from and to for amount 
report 90123 Employee
{
    Caption = 'Employee ledger Report';
    ApplicationArea = all;
    UsageCategory = ReportsAndAnalysis;
    DefaultLayout = RDLC;
    RDLCLayout = '.vscode//src//Layouts//90123.rdl';
    dataset
    {
        dataitem(/Employee1/; /Employee/)
        {
            DataItemTableView = sorting(/No./) order(ascending);
            RequestFilterFields = /No./;
 
            column(Employee; /No./)
            {
 
            }
            column(EmployeeName;StrSubstNo(/First Name/+/Last Name/) )
            {
 
            }
 
            column(Amount;Amount )
            {
 
            }
            column(Employee_Posting_Group;/Employee Posting Group/)
 
            {
 
            }
             column(PAN;PAN)
            {
 
            }
             column(Job_Title;/Job Title/)
            {
 
            }
 
            trigger OnAfterGetRecord()
            var
                EmpEntryRec: Record /Employee ledger entry/;
 
            begin
                EmpEntryRec.Reset();
                EmpEntryRec.SetRange(/Employee No./, /No./);
                EmpEntryRec.SetFilter(/Posting Date/, '%1..%2', FromDate, ToDate);
                EmpEntryRec.CalcSums(Amount);
                Amount := EmpEntryRec.Amount;            
            end;
 
        }
    }
    requestpage
    {
        layout
        {
            area(content)
            {
                group(GroupName)
                {
                    Caption = 'Date Filter';
                    field(FromDate; FromDate)
                    {
                        ShowMandatory = true;
                        Caption = 'Start Date';
                        ApplicationArea = all;
                    }
                    field(ToDate; ToDate)
                    {
                        ShowMandatory = true;
                        Caption = 'End Date';
                        ApplicationArea = all;
                    }
                }
            }
        }
    }
    trigger OnPreReport()
    begin
        if (FromDate = 0D) or (ToDate = 0D) then
            Error('Dates are mandatory to print the report. Please contact your administrator.');
        if FromDate > ToDate then
            Error('This Report could not be generated. Please check Start Date and End Date.');
    end;
 
    var
        Employee: Record Employee;
 
        NameTxt: Text[100];
        GrandTotal_lbl: Label 'Grand Total';
        FromDate: Date;
        ToDate: Date;
        Amount : Decimal;
       
}

 

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Women in Power Builds Momentum

Expanding mentorship, skilling, and AI innovation

Congratulations to the July Top 10 Community Leaders

These are the community rock stars!

Leaderboard > Small and medium business | Business Central, NAV, RMS

#1
OussamaSabbouh Profile Picture

OussamaSabbouh 710 Super User 2026 Season 2

#2
YUN ZHU Profile Picture

YUN ZHU 387 Super User 2026 Season 2

#3
AndrewThomas81 Profile Picture

AndrewThomas81 385 Super User 2026 Season 2

Last 30 days Overall leaderboard

Featured topics

Microsoft Training Manuals

Product updates

Dynamics 365 release plans