Skip to main content

Notifications

Small and medium business | Business Central, N...
Unanswered

Employee ledger report

Posted on by 208
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

December Spotlight Star - Muhammad Affan

Congratulations to a top community star!

Community AMA December 12th

Join us as we continue to demystify the Dynamics 365 Contact Center

New! Quick response templatesâš¡

Save time with the new custom templates!

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,151 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 229,993 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans