report problem

HiteshHitesh Member Posts: 8
when i run the report ,then shown the message:-

Comments

  • MonstaMonsta Member Posts: 38
    Your report is based on Account Schedule
    May be 2 reasons:
    1. You have 2 lines on Account Schedule which are based on each over; or
    2. Navision has maximum number of calculation levels (in standard 25). You may have created complex report where calculation levels exceed the maximum allowed. In this case you'll have to modify function EvaluateExpression in Codeunit 8
  • HiteshHitesh Member Posts: 8
    which type of modify in codeunit 8,please help me !!!

    in this type problem i am facing first time ,so that plz help in detalis..
  • matttraxmatttrax Member Posts: 2,309
    Hitesh wrote:
    which type of modify in codeunit 8,please help me !!!

    The first solution is not always modify the code. Check your report, see if there are two cells in the account schedule that refer to each other. Step through the debugger to see which ones it has a problem with. The majority of the time it's a data problem.
  • MonstaMonsta Member Posts: 38
    Hitesh wrote:
    which type of modify in codeunit 8,please help me !!!
    in this type problem i am facing first time ,so that plz help in detalis..

    Are you completely sure your Account Schedule lines are properly set up?

    Contact your NSC. Customer's license usually won't allow modification of codeunits.
    As to the modification, there are the following lines in the codeunit:
    CallLevel := CallLevel + 1;
    IF CallLevel > 25 THEN
      ShowError(Text020,AccSchedLine,ColumnLayout);
    
    Change 25 to a greater figure (50, for example).
Sign In or Register to comment.