Tuesday, June 27, 2023

Code to display the value of Ledger dimension in d365 X++

     public static void main(Args _args)

    {

        str         ledgerAccount;

        int64    dimension = 68719705755;

        ledgerAccount = LedgerDimensionFacade::getDisplayValueForLedgerDimension(dimension);

        info(strFmt("%1", ledgerAccount));

    }

Output :


Other way :

DimensionAttributeLevelValueAllView






No comments:

Post a Comment