Re: [Axapta-Knowledge-Village] Where are Data Methods like Page and PagesTotal Defined?

2004-10-22 Thread bob . brinker
A sincere Thanks to Subbu and all the others who responded to my request for help.It is sincerly appreciated. Bob Bob Brinker Oakdene Group, Inc. 2625 Butterfield Rd. (Suite 212E) Oak Brook, IL 60523-1261 [EMAIL PROTECTED] Yahoo! Groups Sponsor ~-

Re: [Axapta-Knowledge-Village] Where are Data Methods like Page and PagesTotal Defined?

2004-10-22 Thread Subrahmanyam Mamidi
Where ever you want to print page and pagetotals, you may want to write a small method like below.    pageNum:     return StrFmt("Page", element.page()); and return StrFmt ( " Total Page ",  element.pagesTotal())   And you may want to fill in the lable fields in order to show " Page 1 of 3"...so

Re: [Axapta-Knowledge-Village] Where are Data Methods like Page and PagesTotal Defined?

2004-10-22 Thread Raul Llorente Peña/OPENSOLUTIONS
These methods are defined in the base classes that are inherited by the final report classes. So in report you don't see them, buy they are present. And be careful with PagesTotal, in screen usually shows 0 or nothing, but when printed it shows the correct number of pages. Regards. Raúl Llo

[Axapta-Knowledge-Village] Where are Data Methods like Page and PagesTotal Defined?

2004-10-22 Thread bob . brinker
Hi All, There are some Data Methods, in reports for example like Page and PagesTotal, that do not seem to be defined within the report. Are these Data Methods defined somewhere and what are the other ones or am I missing something? Thanks in Advance and I really Appreciate the on-going help I h