J
Jan Il
Hi all - Access 2000 - WinME
I am sorry, but, I am still in need of help in how to set up a way to
archive Purchase Request numbers that have been superceded/replaced by a
Purchase Order numbers.
My Table is: AcctCode Order Table..which has the following;
PRID - Autonumber - PK
PRNo - Text
OpenWONo - Text
PRDate - Date/Time
PONo - Text
AcctCode - Text
Equip - Text
Dept - Text
Vendor - Text
Description - Text
Amount - Currency - Std.
PRInactiveDate - Date/Time
This is the SQL for the Purchase Record Table Query
SELECT DISTINCT [AcctCode Order Table].PRNo, [AcctCode Order
Table].OpenWONo, [AcctCode Order Table].PONo, [AcctCode Order Table].PRDate,
[AcctCode Order Table].AcctCode, [AcctCode Order Table].Equip, [AcctCode
Order Table].Dept, [AcctCode Order Table].Vendor, [AcctCode Order
Table].Description, [AcctCode Order Table].Amount, [AcctCode Order
Table].PRInactiveDate
FROM [AcctCode Order Table];
Here is the current qryPRInactiveDate SQL:
SELECT DISTINCT [AcctCode Order Table].PRNo, [AcctCode Order
Table].PRInactiveDate
FROM [AcctCode Order Table]
ORDER BY [AcctCode Order Table].PRNo DESC;
Sequence of events - First a Purchase Requisition is opened. Then it is sent
to the designated personnel for approval. Once approved, it is then sent to
Purchasing, where a Purchase Order is generated. Once the Purchase Order is
generated and closed, the Purchase Requisition number ceases to exist. It is
invalidated as far as the system is concerned, and will never be used again.
But, I am not happy with the fact that once the PO is created, the original
PR number is no longer available for reference. Perhaps it is just me, but,
if for example, a Vendor is originally given the PR number to apply to all
invoices and shipping documents at the onset of the order, and for some
reason, fails to reference the replacement PO number and continue to use the
original PR number instead, which, no longer exists in the system. How then
can I associate the PR number to the correct replacement PO in the system?
You can't call up what essentially does not exist..right??
Therefore, I must create a way to archive the retired/replaced original PR
numbers so that they can be referenced if necessary in a specific form, but,
when the Vendor or order information is called up in a form, the PR number
will not be displayed.
Is _any_ of this making any sense at all?? I am trying to explain as best I
can, and I truly apologize if I'm just not explaining things very clearly.
But, it really is very important that I be able to track the original PR
information. Please let me know how I might explain more clearly in order
to provide sufficient information for assistance with this problem.
Very best regards,
Jan
I am sorry, but, I am still in need of help in how to set up a way to
archive Purchase Request numbers that have been superceded/replaced by a
Purchase Order numbers.
My Table is: AcctCode Order Table..which has the following;
PRID - Autonumber - PK
PRNo - Text
OpenWONo - Text
PRDate - Date/Time
PONo - Text
AcctCode - Text
Equip - Text
Dept - Text
Vendor - Text
Description - Text
Amount - Currency - Std.
PRInactiveDate - Date/Time
This is the SQL for the Purchase Record Table Query
SELECT DISTINCT [AcctCode Order Table].PRNo, [AcctCode Order
Table].OpenWONo, [AcctCode Order Table].PONo, [AcctCode Order Table].PRDate,
[AcctCode Order Table].AcctCode, [AcctCode Order Table].Equip, [AcctCode
Order Table].Dept, [AcctCode Order Table].Vendor, [AcctCode Order
Table].Description, [AcctCode Order Table].Amount, [AcctCode Order
Table].PRInactiveDate
FROM [AcctCode Order Table];
Here is the current qryPRInactiveDate SQL:
SELECT DISTINCT [AcctCode Order Table].PRNo, [AcctCode Order
Table].PRInactiveDate
FROM [AcctCode Order Table]
ORDER BY [AcctCode Order Table].PRNo DESC;
Sequence of events - First a Purchase Requisition is opened. Then it is sent
to the designated personnel for approval. Once approved, it is then sent to
Purchasing, where a Purchase Order is generated. Once the Purchase Order is
generated and closed, the Purchase Requisition number ceases to exist. It is
invalidated as far as the system is concerned, and will never be used again.
But, I am not happy with the fact that once the PO is created, the original
PR number is no longer available for reference. Perhaps it is just me, but,
if for example, a Vendor is originally given the PR number to apply to all
invoices and shipping documents at the onset of the order, and for some
reason, fails to reference the replacement PO number and continue to use the
original PR number instead, which, no longer exists in the system. How then
can I associate the PR number to the correct replacement PO in the system?
You can't call up what essentially does not exist..right??
Therefore, I must create a way to archive the retired/replaced original PR
numbers so that they can be referenced if necessary in a specific form, but,
when the Vendor or order information is called up in a form, the PR number
will not be displayed.
Is _any_ of this making any sense at all?? I am trying to explain as best I
can, and I truly apologize if I'm just not explaining things very clearly.
But, it really is very important that I be able to track the original PR
information. Please let me know how I might explain more clearly in order
to provide sufficient information for assistance with this problem.
Very best regards,
Jan