×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!
  • Students Click Here

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Jobs

Where is the System codes menu

Where is the System codes menu

Where is the System codes menu

(OP)
Who knows where i can find the System codes menu in INtools 6,

I want to add an UOM code

Kind regards,

RE: Where is the System codes menu

Hello,

It's not possible to add UOM codes into INtools using
INtools menu's.
To add UOM codes insert records into table [UNITS_OF_MEASURE].

read, update and execute the following script in the SQL
query analyser.
Script is made for MSSQLserver 2000

--###########################3
-- Next script will add 12 units to the table [UNIT_OF_MEASURE]
-- for use in the alarm trip list
-- C.Snoeij
-- 12-2005
-------------------------------------------------------------------

--USAGE: Run query #1 to retrieve the PROJ_ID, fill-in
--this proj_id in the script #3

--#1:
select proj_id,proj_name from project
----------------------------------------
--#2
--backup table:
select * into unit_of_measure_bak from unit_of_measure

--#3:
INSERT INTO UNIT_OF_MEASURE VALUES (
    <Fill-in last row id number>,
    <Fill-in proj_id number>,
    <Fill-in site_id number>,
    0,
    'SQL_INSERT',
    'W',
    GETDATE(),
    '<unit here e.g. mg>',
    '<description of unit here e.g milligram',
    'ML', --(see table UNIT_OF_MEASURE_TYPE for more info)
    NULL,
    NULL,
    NULL,
    0,
    1,
    'x',
    '%XX',
    NULL);
--###################################################

hope this helps.

Carlo
CS Webservice-Online
http://www.cs-webservice.nl

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members!


Resources