× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.


  • Subject: RE: Header and Detail
  • From: "Stone, Brad V (TC)" <bvstone@xxxxxxxxxxxxxx>
  • Date: Fri, 16 Mar 2001 12:06:25 -0600

I follow your idea, but I think because I left out a few objects/methods in
my source, it may be confusing.

Let me explain what the two pieces of code do:
sendID =
FieldListFormatter.getField((Vector)icsmControlList.get(i),"SND_ID").data;

This retrieves the data contained in the SND_ID field of the current record.
It is then used to build an SQL statement for the detail record (another
object of type FieldTable).  If this were order header and detail, it would
be getting the invoice number used to select only detail records with a
particular invoice number.  That's all it does.  The parameters are a Table
Row, and the name of the field to retrieve the data for.  I know this could
be cleaned up.

FieldListFormatter.toXML((Vector) icsmControlList.get(i));

This converts a "row" of a table to XML.  the toXML method actually calls a
toXML method down the food chain until it gets to the "field" level.  
So, I say "convert a row to XML"
That process says "read through the row and convert each field into XML"
Which says "get the XML tag name, build the XML tag and stick the data
inbetween".

I know I'm not doing the toML methods, but I don't want critique on that.
For now using toXML, toHTML, etc. works fine.

Your examples confused me because they took two lines of code and mixed
their functions and parameters together.

Brad

> -----Original Message-----
> From: Joe Pluta [mailto:joepluta@plutabrothers.com]
> Sent: Friday, March 16, 2001 10:01 AM
> To: JAVA400-L@midrange.com
> Subject: Re: Header and Detail
> 
> 
> Brad, you'te still coding procedurally.  You're writing Java 
> code that looks like RPG ILE code.  The examples below show 
> that you're treating FieldListFormatter like a service 
> program that accepts parameters and returns data.  You're 
> also leaving your instance variables public, which is usually 
> a bad idea.
> 
> You should be striving towards the following syntax:
> 
> iscmControlList.getRecord(i).getField("SND_ID").toML();
> -or-
> iscmControlList.getField(i, "SND_ID").toML();
> 
> The latter is an example of a convenience method.
> 
> Joe
> 
> ---------- Original Message ----------------------------------
> From: "Stone, Brad V (TC)" <bvstone@taylorcorp.com>
> Reply-To: JAVA400-L@midrange.com
> Date: Fri, 16 Mar 2001 09:05:02 -0600
> 
> FieldListFormatter.toXML((Vector) icsmControlList.get(i));
> FieldListFormatter.getField((Vector)icsmControlList.get(i),"SN
> D_ID").data;
> +---
> | This is the JAVA/400 Mailing List!
> | To submit a new message, send your mail to JAVA400-L@midrange.com.
> | To subscribe to this list send email to JAVA400-L-SUB@midrange.com.
> | To unsubscribe from this list send email to 
> JAVA400-L-UNSUB@midrange.com.
> | Questions should be directed to the list owner: joe@zappie.net
> +---
> 
+---
| This is the JAVA/400 Mailing List!
| To submit a new message, send your mail to JAVA400-L@midrange.com.
| To subscribe to this list send email to JAVA400-L-SUB@midrange.com.
| To unsubscribe from this list send email to JAVA400-L-UNSUB@midrange.com.
| Questions should be directed to the list owner: joe@zappie.net
+---

As an Amazon Associate we earn from qualifying purchases.

This thread ...


Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.