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

Notifications

Announcements

No record found.

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 234
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;
       
}

 
I have the same question (0)

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

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

Neeraj Kumar – Community Spotlight

We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…

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

#1
OussamaSabbouh Profile Picture

OussamaSabbouh 3,229

#2
Jainam M. Kothari Profile Picture

Jainam M. Kothari 1,867 Super User 2025 Season 2

#3
YUN ZHU Profile Picture

YUN ZHU 1,153 Super User 2025 Season 2

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans