Batch tab is not showing in financial ststement report

Hi,

in GL–>Reports–>Transactions–>financial statement (traditional)

in that report i look into that code it extends from runbase class…like

class LedgerBalanceSheetDimPrint extends RunBaseBatch

for that it should show the batch tab in that report parameters but it is not showing the BATCH Tabpage…


i want batch tab i check it everything but i am unable to finout the solution…
can anybody givw e the solution for this one…
how can i get that batchtabpage…

It doesn’t use a dialog - it uses a normal form (LedgerBalanceSheetDimPrint) and it hasn’t been implemented and called in a way that supports adding the batch tab as runtime.

You would have to implement it by yourself, but be careful - there may be an underlying reason why Microsoft doesn’t support it.

By the way, the implementation and the documentation of canGoBatch() don’t really match. :slight_smile:

/// <summary>
///    The method must ALWAYS return false in this class.
/// </summary>
/// <returns>
///    false
/// </returns>
public boolean canGoBatch()
{
    ;
    return true;
}

HI Martin,

may i know then when purpose they extend class RunBaseBatch

class LedgerBalanceSheetDimPrint extends RunBaseBatch

I’m not familiar with the report - you would have to ask Microsoft. Maybe it would be enough to extend RunBase. Maybe they needed some functionality from RunBaseBatch. Maybe is should have been batchable.