Account Schedules - Dimension Code Caption & Lookup

Ms10KeyMs10Key Member Posts: 13
edited 2012-09-27 in NAV Three Tier
Morning all!

In NAV 2009 SP1 and R2 RTC, the "Edit - Account Schedule" Page does not display the Dimension Code. It displays a generic label "Dimension 1 Totaling", "Dimension 2 Totaling", etc. It does not say "Department Dimension", etc. as does the Classic Client. Also, there is not a lookup to the Dimension Code Values. Users must manually enter the Dimension Value. MBS is to be correcting this in v7. However, I cannot imagine that many users are not as upset as ours. Being relatively new to SP1, we are not looking to upgrade at this time. Curious to know if anyone has a work around for this?
](*,)

Comments

  • alsolalsol Member Posts: 243
    As a workaround for this issue I added two new dimension fields to the Page 490, Acc. Schedule Overview. They have the following properties:

    GlobalDimension1

    TableRelation
    "Dimension Value".Code WHERE (Global Dimension No.=CONST(1))

    CaptionClass
    '1,1,1'

    Then on the OnAction trigger of the Show Matrix button it applies the filter with the following code:

    IF GlobalDimension1 <> '' THEN
    SETRANGE("Dimension 1 Filter",GlobalDimension1);

    This way it presets the filters on the Acc. Schedule Overview Matrix. I could not figure out to fix the matrix so it would be possible to select the dimensions from a dropdown directly in the matrix page. But with the workaround it is at least possible from the overview page.
Sign In or Register to comment.