× 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.



Srinivas,

I usually start with an interactive SQL session to test my assumptions. I can't quite tell from your post but if the year month and day are all two digit numeric fields, then you'll need to parse out similar fields from your prompt and then do the compare. I'll assume you know how to pass the parameters to the RPG and then parse out the relevant year month and date.

host variables are pbmm,pbdd,pbyy (for the parameters for the beginning date) and pemm,pedd,peyy (for the parameters for the ending date). I'll also assume that your date fields in the file are fmm,fdd,fyy

That said, the SQL should look something like:

select name from myfile where fyy>=byy and fyy <= eyy and fdd >= bdd and fdd >= edd and fmm >= bmm and fmm <= emm.
You could use the "between" keyword as well. You could concatenate the fields in the file and compare them. There are many ways to do this and there are probably more and less efficient ways to do it. However, I recommend that you use interactive SQL to test your assumptions and then copy/paste that into your code and add your parameters as host variables.

Pete Helgren

Srinivas Boggula wrote:
Hi every one,

My client has an urgent requirement he needs a sample report.

I have a physical file with 4 fields 1) YEAR 2) MONTH 3) DAY 4) NAME
With length of 2.

He wants to generate a report based on selection criteria.

For example: In display file I have 2 fields.

From date: 08/01/2007
To date : 08/21/2007

He wants to know the NAME which fall under these days

I used SQLRPG to retrieve the data but I failed to do.

Can any one please send the code or give guidance.


Thanks in Advance.

Best Regards,
Srinivas











----------------------------------------------------------------DISCLAIMER---------------------------------------------------------
Information transmitted by this EMAIL is proprietary to iGATE Group of Companies and is intended for use only by the individual or entity to whom it is addressed and may contain information that is privileged, confidential, or exempt from disclosure under applicable law. If you are not the intended recipient of this EMAIL immediately notify the sender at iGATE or mailadmin@xxxxxxxxx and delete this EMAIL including any attachments



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

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.