NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: nevy on August 29, 2011, 11:31:41 AM

Title: How to Include addtional fields to Row ID Field
Post by: nevy on August 29, 2011, 11:31:41 AM
Button on a Browse calls a report in which the  ROW ID field is used  in the report filter.
Question:

Is there a way of adding other fields other than the ROW ID Field
Title: Re: How to Include addtional fields to Row ID Field
Post by: kevin plummer on August 29, 2011, 03:49:47 PM
Use the row id to bring back the entire record in the Table.
Title: Re: How to Include addtional fields to Row ID Field
Post by: Bruce on August 29, 2011, 09:46:13 PM
Nevy, the short answer is "no". The slightly longer answer is "yes" - but what Keven suggested is the preferred approach.

In the Report you have the unique ID of the row. Using that you can fetch the rest of the row (ie in the report procedure) and use whatever fields you like.

cheers
Bruce
Title: Re: How to Include addtional fields to Row ID Field
Post by: nevy on August 30, 2011, 04:23:25 AM
Thanks Guys