PDA

View Full Version : How can I annotate the reducer with its Tag No. ?



qmlm1981
03-22-2006, 01:41 AM
I want to annotate the reducer with its Tag No. .How can I do that?

dave
03-22-2006, 07:37 AM
By tag number do you mean annotation?

http://www.davetyner.com/images/autoplant/reducer.JPG

qmlm1981
03-22-2006, 08:37 AM
I want to assign a tag no for the reducer and annotate it .Mu target is to calculate the quantity.

dave
03-22-2006, 11:36 AM
ah, good one. May I ask why you want to keep track of that?

dave
03-22-2006, 02:49 PM
If all you want is to keep track of the number of reducers here is an easy way. In Data Manager, create a new view called reducers. Open your SQL view and paste this string:

SELECT PID_LNK.TAG_TYPE, PID_LNK.LINK_ID
FROM PID_LNK
WHERE (((PID_LNK.TAG_TYPE) Like "%REDUCER"));

That will give you the reducer and reducer LINK ID. Then you can total it in your report. There is another longer harder way to do it but if all you want is a running total, this is a good quick way.

dave
03-22-2006, 10:38 PM
q, did this solve your problem?

qmlm1981
03-22-2006, 11:19 PM
Hi Dave,
I will test it later.Thanks.

dave
09-20-2007, 06:45 AM
Noor, it's been a while since I posted that idea. I apologize but I don't remember which direction I was headed with the post.