Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Query Locking out Changes

Status
Not open for further replies.

davidmo

Technical User
Apr 8, 2003
97
US
I have created a query (qry_process_steps) that is based on a table (tbl_loan_information) and a query (qryOriginatorsEmail)

Before I brought the qryOriginatorsEmail into qry_process_steps I was able to make changes to the fields generated by original query. Once I brought the qryOriginatorsEmail into the query it has locked out changes to the fields. Not sure why. Below is the SQL the query is based on.

SELECT tbl_Loan_Information.Lender_Case_Number, tbl_Loan_Information.Borrower_Social_Security_Number, tbl_Loan_Information.Borrower_Two_Year_Tax_Return, tbl_Loan_Information.Borrower_Two_Year_Tax_Return_Link, tbl_Loan_Information.Borrower_Paystubs, tbl_Loan_Information.Borrower_Paystubs_Link, tbl_Loan_Information.Borrower_Three_Month_Bank_Statement, tbl_Loan_Information.Borrower_Three_Month_Bank_Statement_Link, tbl_Loan_Information.Subject_Appraisal_Complete, tbl_Loan_Information.Subject_Appraisal_Complete_Link, tbl_Loan_Information.Subject_Escrow_Title, tbl_Loan_Information.Subject_Flood_Certificate_Need, tbl_Loan_Information.Subject_Flood_Certificate_Documentation, tbl_Loan_Information.Subject_Insurance_Coverage, tbl_Loan_Information.Subject_Insurance_Coverage_Link, qryOriginatorsEmail.[Full Name], qryOriginatorsEmail.Originator_Email_Address
FROM tbl_Loan_Information INNER JOIN qryOriginatorsEmail ON tbl_Loan_Information.Borrower_Social_Security_Number = qryOriginatorsEmail.Borrower_Social_Security_Number;

If anyone has an idea, would much appreciate it.

thanks.

DMo
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top