Specification database

Hi Gurus,
I want to know what is <i>Specification Database</i> .
Anything related to this topic is appreciated .
Regards ,
Urjit

Hi Urjit,
the specification database is used by the Environment, Health & Safety (EH&S) module.
You can store different information for a specification like identifier, material assignments, properties (accessible over so called property trees with a link to the SAP class system). It is also possible to store the compositions of a specification out of other specifications. So it is possible to build up product structures down to Pure Substance compositions.
EH&S is using the spec database to store all relevant information for the different components (product safety, industrial hygiene and safety, ...) and to create reports like a Material Safety Data Sheet (MSDS), ....
The main transaction to enter the specification management is CG02.
Also have a look at the SAP Online Help:
<a href="http://help.sap.com/saphelp_erp2005/helpdata/en/c1/eda0f591ec12408b25e7a1b369ca45/frameset.htm">http://help.sap.com/saphelp_erp2005/helpdata/en/c1/eda0f591ec12408b25e7a1b369ca45/frameset.htm</a>
Hope it helps,
Andreas

Similar Messages

  • How to connect to a specific database in SQL server

    Hi,
    How can I connect to a specific database in SQL server? I used the following statement. But my table is inserted to the 'master' database in the SQL server. How can I insert my tables to the specific database tahta I have created before?
    Connection con;
    String sURL = "jdbc:microsoft:sqlserver://SERVER_NAME:1433";
    con = DriverManager.getConnection ( sURL, sUsername, sPassword);

    Hi,
    When I use the syntax:
    String sURL = "jdbc:microsoft:sqlserver://SERVER_NAME:1433/DATABASE_NAME;selectMethod=cursor";
    it gives an error as follows:
    problems connecting to jdbc:microsoft:sqlserver://SERVER_NAME:1433/DATABASE_NAME;selectMethod=cursor:
    [Microsoft][SQLServer 2000 Driver for JDBC]Unable to connect. Invalid URL.
    What is the way to connect to a specific database?

  • How to set a specific database as default?

    Hello;
    How i can set a specific database as default? please
    My sql server is Microsoft Sql Server 2000.

    You follow Micosoft's instructions. I posted a link for them in this thread;
    http://forum.java.sun.com/thread.jspa?threadID=747772&tstart=0
    More specifically, the link
    http://support.microsoft.com/default.aspx?scid=kb;en-us;313100
    gives an example of exactly how to do this in the sample code.

  • VM04: data transfering from specification database to table MGEF

    Hello everyone,
    I've customised for running VM04 in IMG.
    I've assigned the Hazardous Material number 11 to the Material 1666.
    I've assigned the Material 1666 to the Agent P182.
    But after running VM04, the data of Hazardous Material 11 which is in table MGEF (T-code: VM03) is still not covered by the data of P182 from specification database.
    Could anybody look for the reason for me, please?
    Thanks!

    Hello
    The MGEF approach as a very old one. Form legla perspective it is not useful any more.
    Documentation can be found here (e.g)
    http://help.sap.com/saphelp_45b/helpdata/en/35/71880186c2223ae10000009b38f984/content.htm
    I assume you have performed all necessary customizing activities? Do you receive error messages ??
    Furthermore may be take a look here:
    Need Warehouse Management Tables in SAP
    http://help.sap.com/printdocu/core/print46c/en/data/pdf/LEWM/MMWM.pdf
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a0e8c107-0435-2e10-a5bc-e295ed04049b?quicklink=index&overridelayout=true
    It is recommended from legal perspective to use eWM and not WM any more or at least the new WM approach as described in
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a0e8c107-0435-2e10-a5bc-e295ed04049b?quicklink=index&overridelayout=true
    With best regards
    C.B.
    Edited by: Christoph Bergemann on May 7, 2011 1:42 PM

  • NW 7.3 specific - Database partitioning on top of logical partitioning

    Hello folks,
    In NW 7.3, I would like to know if it is possible to add a specific database partition rule on top of a logical partitioned cube. For example, if I have a LP cube by fiscal year - I would also like to specifically partition all generated cubes at DB level. I could not find any option in the GUI. In addition, each generated cube can be viewed only (cannot be changed in the GUI). Would anybody know if it is possible?
    Thank you
    Ioan

    Fair point! Let me explain more in details what I am looking for - in 7.0x, a cube can be partitioned at the DB level by fiscal period. Let's suppose my cube has only fiscal year 2011 data. If I partition the cube at the DB level by fiscal period in 12 buckets, I will get 12 distinct partitions (E table only) in the database. If the user runs a query on 06/2012, then the DB will search for the data only in the 06/2012 bucket - this is obviously faster than  browsing entire cube (even with indexes).
    In 7.3, cubes can be logical partitioned (LP). I created a LP by fiscal year - so far so good. Now, I would like to partition at the DB level each individual cube created by the LP. Right now I could not - this means that my fiscal year 2012 cube will have entire data residing in only 1 large partition, so a 06/2012 query will take longer (in theory).
    So my question is --> "Is it possible to partition a cube generated by a LP in fiscal period buckets"? I believe the answers is no right now (Dec 2011).
    By the way, all the above is true in a RDBMS environment - this is not a concern for BWA / HANA since data is column based and stored in RAM (not same technology as RDBMS).
    I hope this clarifies by question
    Thank you
    Ioan

  • How to specific database instance for powershell commnad New-SPConfigurationDatabase

    I'm runing powershell commnad New-SPConfigurationDatabase ,
    there is a parameter is
    DatabaseServer, how to specific database instance?
    Awen

    Hi,
    Just use the instance name for Databse server...like below.
     -DatabaseServer server2012sql\instancename –AdministrationContentDatabaseName SharePoint_Admin_Content
    Hope this helps.
    Cheers,
    Sangeetha
    -Sangeetha

  • Which job is taking log Backup of specific database using command?

    In my SQL Server there are around 200 jobs of different databases for backup.
    Which job is taking log Backup of specific database using command?
    Kindly help.
    Thanks

    Hi,
    Its generally a bad design to create different jobs for different databases expecially backup and restore if you create you give specific names to the jobs otherwise it would be difficult for you to track. below query will give you littlt help but if you
    are running a proc to backup log files and that proc is situated in master database it wont help. If you are running SSIS package it wont help
    The column database name will help you in locating the DB name for which job is running
    use msdbgoselect sj.name,
    sj.description,
    jst.database_name,
    sj.date_created,
    sj.date_modified,
    jst.step_name,
    jst.command
    from
    dbo.sysjobs sj
    join
    dbo.sysjobsteps jst
    on
    sj.job_id=jst.job_id
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it.
    My TechNet Wiki Articles

  • List users of specific databases that are not using the default storage quotas

    I have an Exchange 2010 SP3 DAG with 4 databases. I am trying to use powershell to find out, per database, which mailboxes are
    not using the "mailbox database defaults", which is unlimited in this case (no quotas for Issue warning, Prohibit send, and Prohibit send and receive).
    Something like "get-mailbox | where  {$_.UseDatabaseQuotaDefaults -ne $true} will not work because I just want the data for specific databases".
    I have also tried "get-mailbox -database nameofdatabase | where {$_.UseDatabaseQuotaDefaults -ne $true} | out-file c:\temp\nameofdatabase.tx" but it lists some users that show unlimited for all categories and others some that have limits on certain
    other ones. In short, it is not correct.
    HDL

    Hi,
    From your description, I would like to clarify the following thing:
    Running the Get-Mailbox -Database MBX1 | Where-Object {$_.usedatabasequotadefaults -eq $false} cmdlet will list all mailboxes who have a custom storage quota. But it only displays the value of ProhibitSendQuota. You can check the values of other storage
    quotas via EMC.
    EMC -> Recipient Configuration -> Mailbox -> double click the mailbox -> Mailbox Settings -> Storage Quotas
    Hope my clarification can be helpful to you.
    Best regards,
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Amy Wang
    TechNet Community Support

  • Way of telling Enterprise manager to restrict number of databases displayed to one specific database?

    Way of telling Enterprise manager to restrict number of
    databases displayed
    to one specific database?
    Is there a way of telling Enterprise manager to display only
    my database.
    It's on a server with other databases and I would rather only
    see those that
    are mine. Is there a way to limit what I see?

    Thanks
    "Brendan"
    <Brendan.Collins@_RemoveThis_Singularity.co.uk> wrote in
    message
    news:e25gle$mnc$[email protected]..
    > Had the same problem with my database and once I told
    the host which
    > databases I could see they solved it. Their reply was
    'The issue occurs,
    > when a client allows Guest User Access to their
    databases.'
    > Brendan
    > ______________________________________________
    > Rate your experiences with your UK and Ireland builders
    at
    >
    http://www.ratethebuilder.co.uk
    > =========================================
    >
    >
    >
    > "Lionstone" <[email protected]> wrote
    in message
    > news:e25e6a$jco$[email protected]..
    >> EM will only show databases to which you have
    access. Your server
    >> administrator can remove access rights to the other
    databases for you.
    >>
    >> "lee" <[email protected]> wrote in
    message
    >> news:e25cak$gv1$[email protected]..
    >> > Is there a way of telling Enterprise manager to
    display only my
    > database.
    >> > It's on a server with other databases and I
    would rather only see those
    >> > that are mine. Is there a way to limit what I
    see?
    >> >
    >>
    >>
    >
    >

  • Get the number of tables of a specific database

    Hy, I have to get the number of tables of a specific database. To do this, I connect to the database(mysql) and I get a Connection object.
    I do the next with this object:
    DatabaseMetaData dbmd=connection.getMetaData();
    ResultSet tables=dbmd.getTables(null, null, null, null);
    Now what to do to get the number of tables of the database?-
    Maybe counting the rows of this resultset I would get it
    because each table of the database is represented in one row of
    this ResulSet?
    Thank you!!

    Yes. Count them.

  • How to suppress Log Shipping alert for a specific database?

    I want to disable log shipping for a database temporarily.   I have disabled the backup job, copy job, and restore job created automatically when log shipping is configured for the database.  However, I cannot disable the Log Shipping alert
    job since there are other databases configured for log shipping.   How can I suppress Log Shipping alert for specific database?  I don't want to disable the log shipping for the primary database since it will delete all jobs and history
    related to the log shipping configuration at the primary, secondary and monitor server instances.

    Too late but this is possible. We just need to set the value threshold_alert_enabled to 0 in the system table msdb.dbo.log_shipping_monitor_primary on the primary server and in msdb.dbo.log_shipping_monitor_secondary on the secondary server.
    I just tested it out and it should work.
    To test this out, perform the below:-
    1. Run exec master.sys.sp_check_log_shipping_monitor_alert will show the same error message that thresholds have been crossed. This is the same script used in LSAlert job.
    Use something like the below command to edit:-
    2. Run the below to change the values:
    update msdb.dbo.log_shipping_monitor_primary
    set threshold_alert_enabled = 0
    where primary_database = 'XYZ'
    Run this for all databases that needs to be excluded from monitoring.
    3. Run the script in step 1 again and it should run now. 
    Please mark the answer as helpful if i have answered your query. Thanks and Regards, Kartar Rana

  • Unable to connect to a specific database

    Hi,
    I have Oracle Client 9IR2 installed on my machine and I'm unable to connect to a specific Oracle9IR2 database on the network. I can connect to the same database if i log into another machine on the network with the same tnsnames.ora file. I can also connect to other databases on the network. All except the one in question.
    The Error message received is :"Test Connection failed because of an error in initializing provider. ORA-12154: TNS: could not resolve service name."
    Could you please help with probable solutions?
    Thanks
    - Lakshmi

    The tnsping command at command prompt just hangs..and so does SQL PLUS while trying to connect.I have to kill it. What's strange is that I can connect to other Oracle databases on the network and other clients on the network can connect to this database as well with the same tnsnames.ora file. Both the server as well as my machine belong to the same domain. Will try adding SID once I find out what the SID value should be.

  • Identifing DMLs on specific database objects in procedure.

    Hi,
    I'm looking for oracle dictionary views or oracle procedure to identify which DML operations exist in a specific stored procedure. For example,
    create or replace procedure test_proc as
    i integer;
    begin
    select count(*) into i from test_table;
    end;
    I want to identify which DML operation exist on which database object in this test_proc procedure. The answer should be such as, TEST_TABLE ------> SELECT.
    How I can solve this problem?
    Thanks.

    Tahnx Karthick, for response.
    Yes, I can identify objects used in procedure (from DBA_DEPENDENCIES) but actual matter is identifing whitch dml operation will be done on this objects. I wrote an procedure, witch can show object name and dml name on this object. But my procedure is working with strings (read from DBA_SOURCE), so if there is any variable witch has same name with any table used in procedure, output will be wrong. And there is some applications witch can show object name and DML name on this this object used in a procedure. I am searching how they can achive it. If there is any data dictionary view stores this information?
    Thanks

  • Can you force a Oracle Update Statement to use a specific database thread?

    We are attempting to write a Oracle Update Statement to update a value on all records in a single column. We are updating a column with a value found in a history table. Simple enough. We do it all the time. It works but we are having contention issue with users on the system using the main database threads and updating the same table at the same time. So what is happening is the update uses up all the available database threads and then the users just get timeouts and can't update. What we are trying to determine is can I write it to force the update statement to use a specific thread on the database when it is running?
    Here is the current update statement
    UPDATE
    TASK_DATA TSK
    SET
    dttSTATUS_WORK_IN_PROGRESS_TIM =
    SELECT
    HIS.T5
    FROM
    H2839 HIS
    WHERE
    TSK.REQUEST_ID = HIS.ENTRYID
    AND
    HIS.T5 IS NOT NULL
    AND
    TSK.dttSTATUS_WORK_IN_PROGRESS_TIM IS NULL
    Edited by: user11307503 on Oct 21, 2009 3:47 PM

    the update uses up all the available database threads and then the users just get timeouts and can't updateI'm not convinced that you're got a clear picture of how Oracle works and what is going on here.
    You're updating TASK_DATA, the whole table.
    Writers don't block readers - that's a key principle of Oracle.
    But if all the other users are trying to update a row or rows in TASK_DATA at the same time as your other process is updating all rows in the table, then there's going to be contention.
    This is not about "using up all available database threads" - that's nonsense.
    This is (probably) about sessions trying to update rows that your other process has locked.
    1. Get a clear picture of what the sessions are waiting on - it's probably TX locks.
    2. How many rows are you updating with this update on TASK_DATA?
    3. How long does it take? How often do you do it? Is there no quieter time when you can do it?

  • Automatically add user to a specific database based on the users title

    Is there away to automatically distribute users to a database based on their title?  My organization has different quotas depending on your job title, so if you are an Outside sales rep you get a 2 GB mailbox, and if you are a Inside sales rep you
    get a 1GB mailbox.   

    You can do that with cmdlet extension scripting agent. You need to do some custom setup but there are some examples in below articles (specially part 3)
    Understanding the Scripting Agent
    Cmdlet Extension Agents (Part 1)
    Cmdlet Extension Agents (Part 2)
    Cmdlet Extension Agents (Part 3)

Maybe you are looking for

  • Why do regular stereo mini jack headphones no longer work in macbook pro

    I have a macbook pro (2009) v10.9.5, 2.53GHz Core 2 Duo. Lately normal non apple stereo mini jack headphones no longer work. The jack doesn't cut the speaker sound as normal. It wasn't like this until comparatively recently. Apple iphone headphones d

  • Editing sales doc in R/3 that was created in CRM

    Hi all CRM Gurus I am in the process of cofiguring the CRM system to enable the creation of sales documents. All is working fine, I can create the sales doc is CRM, this them replicates through to R/3 without any errors, but I cant edit the sales doc

  • UCMDB Excel import - update/delete relationship

    Hi, is any solution to update or delete a relationship between the object in Excel import? I created one (excel import), but there are wrong way in the relationship, so I want to change/update or delete all wrong, and create the good . Anyone have an

  • Cisco Works Integration with MARS

    Can cisco works be integrated with MARS. I mean cisco works is acting as a syslog server for some switches. Can mars pull the records from Cisco Works and use it for its co-relation

  • DOMParser using a xdr schema

    I am trying to use the validating parser to validate a XML doc against a standard schema. The schema was in xdr format but I have used the msdn xdr-xds-converter to convert to a standard schema. The schema is from the BASDA eBIS format available at:-