Navision Crosstab Report v1.1

AdministratorAdministrator Member, Moderator, Administrator Posts: 2,500
edited 2009-03-05 in Download section
Navision Crosstab Report
Crosstab report in Navision 3.7. It's dynamic crosstab with dynamic grouping.
Please give me a good vote, I'm still a beginner in Navision.
Thanks.

http://www.mibuso.com/dlinfo.asp?FileID=404

Discuss this download here.

Comments

  • jemmyjemmy Member Posts: 247
    Great Idea!
    I think this can only be accomplished using Crystal, and this was one of my question at the training. Unfortunately, WHY DON'T you give some explanation regarding your design (documentation)? It's pretty troublesome when I execute (run) the imported object, it always said that
    Report TempTable is empty? :| What it should be?

    That's all about it.
  • itspeteritspeter Member Posts: 105
    Hi jemmy,

    I'm uploading an enhance version for this Crosstab report.
    "Report Temptable is Empty" means there is no data. You can try to check out the filter that you applied.

    I haven't got time to write out the documentation. Sorry about that. :D
    Regards,
    Peter Ng
  • AdministratorAdministrator Member, Moderator, Administrator Posts: 2,500
    Navision Crosstab Report v1.1
    Enhance version from previous Crosstab, added features like selectable table, field, grouping, column, value.

    All settings can be save, allow unlimited reports.

    Don't forget to import the report settings.

    http://www.mibuso.com/dlinfo.asp?FileID=404

    Discuss this download here.
  • WarrenLiuWarrenLiu Member Posts: 14
    I imported all objects in to Navision,but I don't know where to start. Can any one help? Thanks. :?
    Warren
  • itspeteritspeter Member Posts: 105
    WarrenLiu wrote:
    I imported all objects in to Navision,but I don't know where to start. Can any one help? Thanks. :?

    Have you import the data using the dataport? The report is using the data stored in the "User Preference" table, as parameter for your selection. :)
    Regards,
    Peter Ng
  • dsatriadsatria Member Posts: 80
    I already import to User Preference table using dataport
    Then I ran report Crosstab with Selectable Table > SIN > Sales Invoice By Product > filled following fields:
    Column: Salesperson No.|SALESPNO
    Group 1: Salesperson No.|SALESPNO
    Value: Quantity|QTY
    Posting Date: 01/02/05 To 14/03/05
    and let other fields to default, but an error came up:

    The value of COPYSTR parameter 3 is outside of the permitted range

    What did I do wrong?
  • itspeteritspeter Member Posts: 105
    Sorry for poor coding, busy is my excuse. O:)

    In dataitem named "Init", proceed to C/AL editor (F9),
    Add in the code below, line number 3, 4, and 7.
    1  FOR gint_Counter:=1 TO 4 DO
    2  BEGIN
    3    IF gtxt_GroupingSelected[gint_Counter]<>'' THEN
    4    BEGIN
    5      gtxt_Grouping[gint_Counter]:=COPYSTR(gtxt_GroupingSelected[gint_Counter],1,
          STRPOS(gtxt_GroupingSelected[gint_Counter],'|')-1);
    6      gtxt_GroupingSelected[gint_Counter]:=COPYSTR(gtxt_GroupingSelected[gint_Counter],
          STRPOS(gtxt_GroupingSelected[gint_Counter],'|')+1);
    7    END;
    8  END;
    

    It is because I didn't code much on the validation. :-$
    Regards,
    Peter Ng
  • waynenlwaynenl Member Posts: 39
    is it possible using on Role Tailored (NAV 2009)?
  • DenSterDenSter Member Posts: 8,307
    This was created in 2004, years before NAV 2009 was released. Although it might be possible to run it from the RTC (try it), and suggesting an RDLC layout might work as well (try it), it was certainly not designed for it.
Sign In or Register to comment.