Jump to content
Server Maintenance This Week. ×

from date to date find


This topic is 6477 days old. Please don't post here. Open a new topic instead.

Recommended Posts

I am writing a script to query a layout and i have to fields one called from and one called to tehy both conatins dates.

In the find it supposed to return all the values who of customers who will be arriving (date in arrival field) between those two dates. I tried using a range but it won't let me use a field.

Link to comment
Share on other sites

The script would work, but you would have to use global date fields so the data entered would be available in find mode (when defining fields in define database, choose storage options and click use global storage).

Then, let your users specify, and then have them click the search button which executes a script similar to the following:

Enter Find Mode[]

Set Field[ArrivalDate ; FromDate & "..." & ToDate]

Perform Find[]

Link to comment
Share on other sites

You need to provide more information, such as: What table are in you in when your User performs the find. What are the type of fields? What is the table you want to search, ie, same table or another table or file? What is the field name you wish to search (and what is it's data type)? What does your script look like?

Finding on date range is easy. If it isn't working then we need to pinpoint what is wrong. And we can't do that without more information. :wink2:

"tried using a range but it won't let me use a field. "

Do you have the field's field control (right-click field) behavior allowing entry in Find mode?

Link to comment
Share on other sites

ok i have a table called accommodation. I have a layout called finder arrival which has two fields on it which are in the accommodation table. from and to they are both date field with storage set to global.

What I want to do is when a user enters a date in the from field and to field and clicks view a find is done on the layout arrivals layout (all fields are in the table accommodaion) to find anyone who has accomtype=hotel and there arrival date lies between the range from and to.

Any ideas on how to do the find?

Link to comment
Share on other sites

Hi Gaz 007, my apology ... this almost slipped by me. :)

Genx' find should have worked but let's put it in the context of how you've described your setup. gFrom and gTo are global date fields on the layout called Finder Arrival. The gTo field actually should be called Thru (and that is how most people would interpret To but be clear what it means to you and your Users so you have no surprises in misinterpretation, ie, gTo is inclusive. This layout would also contain a button called VIEW with the following script attached:

If [ not gFrom or not gTo ]

Show Custom Dialog [ "Both From and To must contain a date" ]

Halt Script

End If

Set Error Capture [ On ]

Enter Find Mode [ ] ... uncheck pause **

Set Field [ arrivalDate ; gFrom & “..” & gTo ]

Set Field [ accomType ; “Hotel” ] … can omit this step if you use Find Request (see note below)

Perform Find [ ] … be sure you don’t accidentally choose Perform Find/Replace

If [ not Get ( FoundCount ) ]

Show Custom Dialog ["No Hotels available" ]

Show All Records

Halt Script

End If

Go To Layout [ “Arrivals” ]

Decide whether you need to clear the globals if a Find is successful. If more than one User will be using the SAME client box, then I would clear them after the Go To Layout step at the end. Otherwise, I prefer to leave the globals in case the User wants to repeat a search and see what they tried the prior try (that client session). If you wish to clear the globals then just use Set Field [ gFrom ; "" ] and repeat with gTo.

** You can use a Find Request here to hold the accomType. Just open the Find Request, select accomType and type Hotel in the criteria box and Add. It is a bit easier than creating a Set Field [] step, but if I have part of the find criteria using Set Field [] then it is cleaner to have ALL the criteria using Set Field [] for consistency.

LaRetta

Link to comment
Share on other sites

This topic is 6477 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.