frgu123
11th February 2003, 12:30
I'm trying to create a BOI on the table TDIPU030.
The primary key for this table is: Item, Manufacturer, Effective Date
If I want to try the show method of the manager object, it requires the above three parameters.
The default query text is:
<QueryText>select tdipu030.* from tdipu030 where tdipu030.item = :thisItem and tdipu030.cmnf = :thisManufacturer and tdipu030.efdt = :thisEffectiveDate</QueryText>
I want to retrieve the Manufacturer-Item where effective date < :thisEffectiveDate
Since the .qcd file is in XML format, I can't write '<' so I used <
The .qcd compiles well to .java, but when I use it in VB, I can't get any result. So I assume I do something wrong.
What is the corret way to work with dates?
The primary key for this table is: Item, Manufacturer, Effective Date
If I want to try the show method of the manager object, it requires the above three parameters.
The default query text is:
<QueryText>select tdipu030.* from tdipu030 where tdipu030.item = :thisItem and tdipu030.cmnf = :thisManufacturer and tdipu030.efdt = :thisEffectiveDate</QueryText>
I want to retrieve the Manufacturer-Item where effective date < :thisEffectiveDate
Since the .qcd file is in XML format, I can't write '<' so I used <
The .qcd compiles well to .java, but when I use it in VB, I can't get any result. So I assume I do something wrong.
What is the corret way to work with dates?