<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE qml SYSTEM "/wt/query/qml/qml.dtd">
<qml bypassAccessControl="false">
	<parameter name="START_DATE" type="java.lang.Object"/>
	<statement rootTypeInstanceAlias="Product">
		<query>
			<select distinct="false" group="false">
				<object alias="Product" heading="Product Name" propertyName="product.name">
					<property name="product">
						<property name="name"/>
					</property>
				</object>
				<object alias="Product" heading="Product Number" propertyName="product.number">
					<property name="product">
						<property name="number"/>
					</property>
				</object>
				<column alias="Product" heading="Created" isExternal="false" propertyName="createTimestamp" selectOnly="false" type="java.sql.Timestamp">
					thePersistInfo.createStamp
				</column>
				<object alias="Product" heading="Creator (creator).Name" propertyName="creator.name">
					<property name="creator">
						<property name="name"/>
					</property>
				</object>
			</select>
			<from>
				<table alias="Product" isExternal="false">
					wt.pdmlink.PDMLinkProduct
				</table>
			</from>
			<where>
				<compositeCondition type="and">
					<condition>
						<operand>
							<column alias="Product" heading="Created" isExternal="false" propertyName="createTimestamp" selectOnly="false" type="java.sql.Timestamp">
								thePersistInfo.createStamp
							</column>
						</operand>
						<operator type="greaterThan"/>
						<operand>
							<parameterTarget name="START_DATE"/>
						</operand>
					</condition>
				</compositeCondition>
			</where>
		</query>
	</statement>
</qml>
