Hello guys,
I have a frmJobtracking which is bound to this query:
Where qryTAT came from:
qryCurrentStatus came from:
qryLoggedIn came from:
this query returns the correct records we need, although this makes frmJobtracking not updateable... before this was okay... but then I was just told now that for the fields ConsolidatedFS and ConsolidatedRR need to be able to be updated by the user...
with how the RecordSource of frmJobTracking is setup, this is not possible...
Is there a way to modify the query, or anything so that I could make the form updateable?
Any help is greatly appreciated.
Thanks,
I have a frmJobtracking which is bound to this query:
Code:
SELECT tblJobTracking.SitusID, tblJobTracking.WeekNumber, tblJobTracking.DealName, tblJobTracking.UBSOriginator, tblJobTracking.Broker, tblJobTracking.City, tblJobTracking.State, tblJobTracking.Region, tblJobTracking.AssetType, tblJobTracking.PropertyCount, tblJobTracking.Priority, tblJobTracking.PCComments, tblJobTracking.DocumentLinks, tblJobTracking.Update, tblJobTracking.Model, qryCurrentStatus.Status, qryCurrentStatus.Analyst, qryTAT.TAT, tblJobTracking.ConsolidatedFS, tblJobTracking.ConsolidatedRR
FROM ((tblJobTracking INNER JOIN qryLoggedIn ON tblJobTracking.SitusID = qryLoggedIn.SitusID) INNER JOIN qryCurrentStatus ON tblJobTracking.SitusID = qryCurrentStatus.SitusID) INNER JOIN qryTAT ON tblJobTracking.SitusID = qryTAT.SitusID;
Where qryTAT came from:
Code:
SELECT tblJobTracking.SitusID, tblDealStatus.StatusChangeID, tblDealStatus.StatusDate, [StatusDate]+1 AS TAT
FROM tblJobTracking INNER JOIN tblDealStatus ON tblJobTracking.SitusID = tblDealStatus.SitusID
WHERE (((tblDealStatus.StatusChangeID)=1));
qryCurrentStatus came from:
Code:
SELECT qryMaxStatusDate.SitusID, qryMaxStatusDate.WeekNumber, qryMaxStatusDate.DealName, tblStatusChange.Status, qryMaxStatusDate.MaxOfStatusDate, tblDealStatus.Analyst
FROM tblStatusChange INNER JOIN (qryMaxStatusDate INNER JOIN tblDealStatus ON (qryMaxStatusDate.MaxOfStatusDate = tblDealStatus.StatusDate) AND (qryMaxStatusDate.SitusID = tblDealStatus.SitusID)) ON tblStatusChange.StatusChangeID = tblDealStatus.StatusChangeID;
qryLoggedIn came from:
Code:
SELECT DISTINCT tblJobTracking.SitusID
FROM tblJobTracking LEFT JOIN tblDealStatus ON tblJobTracking.SitusID=tblDealStatus.SitusID
WHERE tblDealStatus.Analyst=getuserName();
this query returns the correct records we need, although this makes frmJobtracking not updateable... before this was okay... but then I was just told now that for the fields ConsolidatedFS and ConsolidatedRR need to be able to be updated by the user...
with how the RecordSource of frmJobTracking is setup, this is not possible...
Is there a way to modify the query, or anything so that I could make the form updateable?
Any help is greatly appreciated.
Thanks,