How to read/link to Sales Statistics page?

yukonyukon Member Posts: 361
edited 2010-09-05 in NAV Three Tier
Hi Expert,

I'm testing web service of nav2009. May i know how to link sales order and related sales statistics page at web service.
//This is my test code c#;
        Sales_Statistics_Service ws = new Sales_Statistics_Service();
        ws.Url = "";
        ws.Credentials = new NetworkCredential("", "", "");

        Sales_Statistics_Filter _filters = new Sales_Statistics_Filter();
        List<Sales_Statistics_Filter> _filterArray = new List<Sales_Statistics_Filter>();

        _filters.Field = ?????; // Filter By which one
        _filters.Criteria = "";       
        _filterArray.Add(_filters);

        Sales_Statistics _salestatistics = ws.ReadMultiple(_filterArray.ToArray(), null, 100); //This one can not run without correct filter.

How can i read/update at sales statistics?


Best Regards,
Yukon
Make Simple & Easy

Comments

  • yukonyukon Member Posts: 361
    Hi,

    Any idea for my problem?

    Best Regards,
    Yukon
    Make Simple & Easy
Sign In or Register to comment.