I am working on my first Access 2010 database and have run into a problem editing the recordset returned from a query.
I have two tables, "drugs" and "warehouse_stock". In "drugs" I have the name of the drugs. In the other table I have their corresponding info. For those drugs that are in "drugs" table, the pharmacist will manage their quantity and the other relative values, like the input quantity of each drug with specific expiry date. Pharmacist can import to the "warehouse_stocK" the same info for a drug but with different expiry date.
Each row data in "warehouse_stock" is characterized by the active_substance/strength/strength_type/dosage_form. This four values must be the same in a row data in "drug". Pharmacist will have the ability to update the curr_date, in_quant, out_quant_expiry_date and brand (from "warehouse_stock") for existing row data and import new quantities of drugs that existing in "drugs".
My query right now is:
SELECT warehouse.active_subs,
warehouse.strength,
warehouse.strength_type,
warehouse.dosage_form,
warehouse.curr_date,
warehouse.in_quant,
warehouse.out_quant,
warehouse.expiry_date,
warehouse.available_stock,
warehouse.brand,
warehouse.ID
FROM drugs
RIGHT JOIN warehouse
ON ( drugs.active_substance = warehouse.active_subs )
AND ( drugs.strength = warehouse.strength )
AND ( drugs.strength_type = warehouse.strength_type )
AND ( drugs.dosage_form = warehouse.dosage_form )
WHERE ( ( ( warehouse.active_subs ) LIKE
"*" &
Forms!Pharmacy.form!pharmacy_warehouse_stock_Subform.form!warehouse_stock_act_sub & "*" )
AND ( ( warehouse.strength ) LIKE
"*" &
Forms!Pharmacy.form!pharmacy_warehouse_stock_Subform.form!warehouse_stock_strength & "*" )
AND ( ( warehouse.strength_type ) LIKE
"*" &
Forms!Pharmacy.form!pharmacy_warehouse_stock_Subform.form!warehouse_stock_strength_type & "*" )
AND ( ( warehouse.dosage_form ) LIKE
"*" &
Forms!Pharmacy.form!pharmacy_warehouse_stock_Subform.form!warehouse_stock_dosage_form & "*" ) );
Is there a way to make the result updateable?
Thanks in advance for any suggestions!
Zinonas