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 210
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

Announcing Our 2025 Season 1 Super Users!

A new season of Super Users has arrived, and we are so grateful for the daily…

Vahid Ghafarpour – Community Spotlight

We are excited to recognize Vahid Ghafarpour as our February 2025 Community…

Tip: Become a User Group leader!

Join the ranks of valued community UG leaders

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 292,494 Super User 2025 Season 1

#2
Martin Dráb Profile Picture

Martin Dráb 231,305 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans