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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Circular Reference ?

Status
Not open for further replies.

essnrv

Programmer
Jun 27, 2002
229
IN
Hi All,
Please Help me in fixing below Query

Insert Into [Inventory Physical Count] Select [Batch Number] ,[Page Number],[Line Number],
[Item Number],[Description],[Unit of Measure],[Location],[Bin],[Physical Count]
From [Physical Count Temp]
Where [Physical Count Temp].[Batch Number]= 2

I am getting Circular Reference Caused by alias
'Batch Number' in query definition's SELECT List.


Thanks in advance
 
Dear essnvr,

Try putting the table name in front of you select field names.

Insert Into [Inventory Physical Count] Select [Physical Count Temp]![Batch Number] ,[Physical Count Temp]![Page Number],[Physical Count Temp]![Line Number],
[Physical Count Temp]![Item Number],[Physical Count Temp]![Description],[Physical Count Temp]![Unit of Measure],[Physical Count Temp]![Location],[Physical Count Temp]![Bin],[Physical Count Temp]![Physical Count]
From [Physical Count Temp]
Where [Physical Count Temp].[Batch Number]= 2

Good Luck!
m6
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top