Pls help in creating cluster view

Pls help in creating cluster view
regards
jindow

Hi,
Please try this and use BSEG as an example.
1. Go to SE12.
2. Enter BSEG
3. Click Display button
4. Go to Delivery and Maintenance' tab.
5. You should be able to see Pool/cluster RFBLG.
6. Double click RFBLG and then click Where-Used list button (CTRLSHIFTF3).
7. Select Table option and click Execute button.
8. System will show all the table that belong to this pool/cluster.
For Pool/Cluster REGUC, it is only used in table REGUP.
Look at the below link
Re: Define view for cluster table?
Regards,
Priyanka.

Similar Messages

  • Error while creating cluster view

    Hi all,
    Requirement is to create cluster view copying cluster view VC_TABWU01  into custom view.
    CV VC_TABWU01 has two data base views V_T093C_10 and V_T093U_01 I copied them both in to ZT093U_01 and ZT093C_10 and created a CV Z_TABWU01. Field dependence is set, when I am activating view I am getting message that screen 300 of ZT093U_01 is modified. I changed all possible options as standard view, kindly help me activating cluster view.
    Error: The flow logic of the screen ZT093U_01 0300 is not that of a generated view maintenance list screen. Either the screen has been considerably modified manually, or the view which it is based on has no maintainable key.
    Thanks
    Krishna.

    Need to add events in TMG. Solved with help of standard CV

  • Help for creating classification view in mm01

    hi guys can anybody help on creating classification views in mm01 using bdc recording i need a step by step procedure . since when i tryed in mm01 there are filds like class name i dont know where all these data's to find one more thing is i was asked to create classification view using bdc recording ...please help me with some programs if u have

    Hi,
    You need to use the BAPI 'BAPI_OBJCL_CREATE' to create characteristics for a material.
    The characteristics are need to be passed in the table ALLOCVALUESCHAR.
    If you do not know the values for a particular characteristics then you canmake use of FM
    BAPI_CLASS_GET_CHARACTERISTICS and BAPI_CHARACT_GETDETAIL to get the values.
    Regards,
    Ankur Parab

  • Pls help me writing a view

    Hi All,
    We have few tables , per_jobs table gives the details of the all jobs defined,
    PAY_JOB_WC_CODE_USAGES table contains the all the compensation codes defined and PAY_STATE_RULES
    table contains the all the state codes.
    Now, SELECT WC.STATE_CODE,
    PJ.JOB_ID,
    PSR.NAME STATE_NAME,
    PJ.NAME JOB_NAME
    FROM per_jobs pj,
    PAY_JOB_WC_CODE_USAGES WC,
    PAY_STATE_RULES PSR
    WHERE PJ.JOB_ID(+) = WC.JOB_ID
    AND WC.STATE_CODE(+) = PSR.STATE_CODE
    This Query gives the job_names which are defined in a state..
    But, Now what I want is
    I want to get the Job Names which are not defined in each state for that I want to create a view
    So, Could u pls help me in writing this Query.
    Example,
    SELECT * FROM PER_JOBS
    where job_id not in (select job_id from PAY_JOB_WC_CODE_USAGES where STATE_CODE = 'VA')
    This will give the job details which are not defined in the State called "VA"..
    But, I want all the Jobs which are not defined in all the states..
    Thanks

    Hi Gaurav,
    I want to get the job names as well as State name for each state which jobs are not defined
    This query will give The jobs which are defined in each state
    SELECT PJ.JOB_ID,
    PJ.NAME,
    WC.STATE_CODE,
    PSR.NAME STATE_NAME
    FROM PER_JOBS PJ,
    PAY_JOB_WC_CODE_USAGES WC,
    PAY_STATE_RULES PSR
    WHERE PJ.JOB_ID = WC.JOB_ID
    AND WC.STATE_CODE = PSR.STATE_CODE
    But, i want those jobs which are not defined in each state , not only one state but also each state and unassociated jobs for that state
    Thanks

  • Need help in creating a view with Encryption for hiding the code used by the multiple users

    Hi,
    Can anyone help me out in creating view with encryption data to hide the stored procedure logic with other users.
    I have create a stored procedure with encryted view but while running this manually temporary views are getting created, therefore the problem is if there are 500 entries then 500 temp views will get created.
    Any solution to aviod creating temporary views, please refer my code below
    USE [etl_validation]
    GO
    /****** Object:  StoredProcedure [dbo].[Pr_DBAccess_mod]    Script Date: 05/23/2014 12:53:22 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    ALTER PROCEDURE [dbo].[Pr_DBAccess_mod](@ETL_CONFIG_ID INT)
    AS
    BEGIN
    DECLARE @openquery NVARCHAR(MAX),
     @DATABASENAME NVARCHAR(100),
     @HIERNAME NVARCHAR(100),
     @TABLENAME NVARCHAR(100),
     @SERVERTYPE NVARCHAR(100),
     @SERVERNAME NVARCHAR(100),
     @USERNAME NVARCHAR(100),
     @PASSWORD NVARCHAR(100),
     @ETL_CONFIG_IDN NVARCHAR(100);
     SET @ETL_CONFIG_IDN=CAST(@ETL_CONFIG_ID AS NVARCHAR);
     SET @TABLENAME='Department';
     SET @SERVERTYPE='SQL';
     SET @SERVERNAME ='192.168.31.176';
     SET @DATABASENAME='AdventureWorks2008R2';
     SET @HIERNAME = 'HumanResources';
     IF @SERVERTYPE='SQL'
     BEGIN
    /*SET @openquery= 'SELECT * INTO ##TestTable
                     FROM OPENROWSET(''SQLNCLI'',''server=192.168.31.176;Trusted_Connection=yes;'','''+@query+''')'
    SET @openquery=  'CREATE VIEW '+@TABLENAME+@ETL_CONFIG_IDN+
                     ' WITH ENCRYPTION AS SELECT * FROM OPENROWSET(''SQLNCLI'',''SERVER='+@SERVERNAME+';TRUSTED_CONNECTION=YES;'',''SELECT * FROM '+@DATABASENAME+'.'+@HIERNAME+'.'+@TABLENAME+''')'
    SELECT @openquery
    END
    EXECUTE sp_executesql @openquery
    END

    Hi aa_rif,
    According to your description and code message, you execute the sp_executesql statement in your stored procedure, it indeed create many views with a tablename and ETL_CONFIG_ID named. If you need not to use these temporary views, you can delete them when
    it contains the tablename in one view name.  
    In addition, if you want to create view with encryption in SQL Server, you can use directly the ENCRYPTION option to encrypt the T-SQL of a view in create view commands, for more information, see:
    http://learnsqlserver.in/4/Create-View-With-Encryption.aspx. if not, you can descript more detail about requriements, so that more forum members can involve into the thread and help you
    out. 
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Help with Creating a View

    Dear Experts,
    I need to create two derived fields in the View.Iam a Newbie.
    I initially created a View from a Table. How should I go about
    creating the Derived columns?
    Column 1 In The Table Contains an ID.
    Derived Column in the View Must be having the following
    Condition.
    1) ID in table =
    14853 AMS
    10511 AMS
    13625 AMS
    8245 AMS
    12675 AMS
    Derived Column1 (Code) in the view must See If the Value in the
    ID as AMS if the part of the value in ID is AMS it must be
    Populated AMS in the Derived field else it must be set to PVT
    2) One More Column with another Derived Condition
    ID in the Table
    13449 AMS
    12196 AMS
    5055 AMS
    13647 AMS
    6927 AMS
    19243 AMS
    6057 AMS
    703 AMS
    29 AMS
    Resultant Derived Column2 (RNO) must be a 8 Digit field.
    If 29 AMS is there it must be 00000029
    IF 703 AMS is there it must be 00000703
    IF 19243 AMS is there it must be 00019243
    Here the AMS word must be removed and Prefixed with Zero’s to
    make it a 8 Digit
    Request you to Please help.
    Thanks and regards,
    Gayathri

    This..?
    sql>
    with qry as(
      select '14853 AMS' id from dual union all
      select '10511 AMS' id from dual union all
      select '13625 TXT' id from dual union all
      select '29 AMS' id from dual union all
      select '703 AMS' id from dual union all
      select '8245 XXX'  id from dual union all
      select '12675 AMS' id from dual)
    select id,decode(instr(id,'AMS'),0,'PVT','AMS') code,
          decode(instr(id,'AMS'),0,null,lpad(trim(replace(id,'AMS','')),8,'0')) RNO
    from qry;
    ID COD RNO 
    14853 AMS  AMS  00014853 
    10511 AMS  AMS  00010511 
    13625 TXT  PVT    
    29 AMS  AMS  00000029 
    703 AMS  AMS  00000703 
    8245 XXX  PVT    
    12675 AMS  AMS  00012675
    jeneesh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Help to create Materialized View that has timestamp conversion

    I need help creating materialized view with timestamp conversion between GMT to LocalTime.
    Feel free to make any comments.
    Thanks in advance.
    jon joaquino;)

    Here is one way.
    1. Alter the table hist_table and add a new column pdt_timestamp.
    2. Update the new column using the function 'new_time'
    For example,
    Update hist_table
    set pdt_timestamp = new_time(gmt_timestamp,'GMT','PDT');
    3. create a materialized view log on the table 'hist_table' using the syntax
    create materialized view log on hist_table
    with primary key, rowid, sequence;
    4. create a materialized view now using the syntax:
    (You have to specify your own storage numbers and tablespace name)
    create materialized view mview_hist_table
    pctfree 0 tablespace mymview
    storage (initial 16k next 16k pctincrease 0)
    build immediate
    refresh fast on commit
    as select uid,gmt_timestamp,pdt_timestamp
    from hist_table;
    Please test on your test instance before doing it on production. I have tested this on Oracle 10g for Windows 2000. I assumed that column 'uid' is the primary key on the table. I hope this helps.
    **********************************************************

  • HELP WITH CREATING A VIEW USING PL/SQL

    Hello,
    I have two tables, one is simply an audit version of the other and anytime data is updated, modified, or deleted the data is copied to the audit table (via a trigger) and the audit table records who made the changes and when.
    Here is the description of one of the archive tables:
    AUD_OBLIGATION_ID NOT NULL NUMBER(10)
    OBLIGATION_ID NUMBER(10)
    COMMUNICATION_ID NUMBER(10)
    COMMUNICATION_ID_OLD NUMBER(10)
    OBL_DESC VARCHAR2(4000)
    OBL_DESC_OLD VARCHAR2(4000)
    OBL_TYPE VARCHAR2(20)
    OBL_TYPE_OLD VARCHAR2(20)
    ORIGINAL_TARGET_DATE DATE
    ORIGINAL_TARGET_DATE_OLD DATE
    TARGET_DATE DATE
    TARGET_DATE_OLD DATE
    ACTUAL_DATE DATE
    ACTUAL_DATE_OLD DATE
    STATUS VARCHAR2(20)
    STATUS_OLD VARCHAR2(20)
    DOCLINK VARCHAR2(200)
    DOCLINK_OLD VARCHAR2(200)
    SERIAL_NUMBER NUMBER(10)
    SERIAL_NUMBER_OLD NUMBER(10)
    REMARKS VARCHAR2(200)
    REMARKS_OLD VARCHAR2(200)
    CREATED_BY VARCHAR2(10)
    CREATED_BY_OLD VARCHAR2(10)
    CREATION_TS DATE
    CREATION_TS_OLD DATE
    MODIFIED_BY VARCHAR2(10)
    MODIFIED_BY_OLD VARCHAR2(10)
    MODIFICATION_TS DATE
    MODIFICATION_TS_OLD DATE
    UPDATED_BY VARCHAR2(10)
    UPDATED_TS DATE
    ACTION_TYPE VARCHAR2(10)
    I now need to create a view of this audit table, but do not want to list all the columns from the audit table, instead I would like it to look like this:
    Modification_TS ** Action_Type ** Updated_By ** CHANGES
    Where CHANGES would be a variable that stores the concatenated new & old values (if they are different).
    I assume I need to create a stored procedure using PL/SQL to find these values then insert the values into a view...but all of my efforts do not seem to work.
    Here is the procedure I've written:
    CREATE OR REPLACE PROCEDURE proc_AUD_OBLIGATIONS AS
    modData VARCHAR2(2000) :=' ';
    emp VARCHAR2(200);
    actType VARCHAR2(100);
    actDate DATE;
    obUser VARCHAR2(500);
    CURSOR cur_AUD_OBLIGATION IS
    SELECT o.UPDATED_TS, o.UPDATED_BY, o.OBLIGATION_ID, o.COMMUNICATION_ID,o.COMMUNICATION_ID_OLD,o.OBL_DESC,o.OBL_DESC_OLD,
    o.OBL_TYPE, o.OBL_TYPE_OLD, o.ORIGINAL_TARGET_DATE,o.ORIGINAL_TARGET_DATE_OLD,o.TARGET_DATE,o.TARGET_DATE_OLD,
    o.ACTUAL_DATE,o.ACTUAL_DATE_OLD,o.STATUS,o.STATUS_OLD,o.DOCLINK,o.DOCLINK_OLD,o.SERIAL_NUMBER,o.SERIAL_NUMBER_OLD,
    u.FNAME || ' ' ||u.LNAME AS EMPLOYEE,o.ACTION_TYPE
    FROM AUD_OBLIGATION o, TRAC_USER u, OBLIGATION_USER ou
    WHERE o.OBLIGATION_ID = ou.OBLIGATION_ID
    AND
    ou.TRAC_USER_ID = u.TRAC_USER_ID;
    i_AUD_OBLIGATION cur_AUD_OBLIGATION%rowtype;
    BEGIN
    for i_AUD_OBLIGATION in cur_AUD_OBLIGATION loop
    actType := i_AUD_OBLIGATION.ACTION_TYPE;
    actDate := i_AUD_OBLIGATION.UPDATED_TS;
    emp := i_AUD_OBLIGATION.UPDATED_BY;
    IF i_AUD_OBLIGATION.OBL_DESC != i_AUD_OBLIGATION.OBL_DESC_OLD
    THEN modData := 'OBL. DESC. was: ' || i_AUD_OBLIGATION.OBL_DESC_OLD
    || 'It is now: ' ||i_AUD_OBLIGATION.OBL_DESC;
    ELSE modData := modData;
    END IF;
    IF i_AUD_OBLIGATION.OBL_TYPE != i_AUD_OBLIGATION.OBL_TYPE_OLD
    THEN modData := modData || 'OBL. TYPE. was: ' ||i_AUD_OBLIGATION.OBL_TYPE_OLD
    || 'It is now: ' ||i_AUD_OBLIGATION.OBL_TYPE;
    ELSE modData := modData;
    END IF;
    IF i_AUD_OBLIGATION.ORIGINAL_TARGET_DATE != i_AUD_OBLIGATION.ORIGINAL_TARGET_DATE_OLD
    THEN modData := modData || 'ORIG.TRGT DATE was: ' || i_AUD_OBLIGATION.ORIGINAL_TARGET_DATE_OLD
    || 'It is now: ' ||i_AUD_OBLIGATION.ORIGINAL_TARGET_DATE;
    ELSE modData := modData;
    END IF;
    INSERT INTO vw_AUD_OBLIGATIONS VALUES
    (actDate,actType, emp,modData);
    END LOOP;
    END;
    Here is the view I've created, based on this procedure (it does not compile):
    CREATE OR REPLACE VIEW vw_AUD_OBLIGATIONS
    (Action_Date, Action_Type, Action_User, Modified_Data)
    AS
    SELECT actDate,actType, emp,modData
    FROM proc_AUD_OBLIGATIONS
    END;
    Any thoughts on how to make this work - it seems like such a simple concept....
    Thanks in advance
    Tony

    You have a couple of misconceptions here. First, you cannot SELECT from a procedure. You need to write a PROCEDURE that INSERTs these columns into a TABLE, then simply SELECT from the TABLE. There are of course many variations, but I hope you get the general idea here.
    Greg

  • Needs help to create a VIEW

    EXAMPLE data as under below;
    TABLE customer_transactions;
    there is 4 columns
    cust_id type_of_transaction trasaction_no date_of_transactions amount
    1 INVOICE INV01 1/6/2002 9500
    1 DEBIT NOTE DB01 2/8/2002 1050
    1 RECEIPT R01 2/8/2002 10000
    1 INVOICE INV02 5/9/2002 2500
    1 CREDIT NOTE CR01 2/9/2002 70
    receipt_master
    rec_no rec_date amount
    R01 2/8/2002 10000
    receipt_details(child table to receipt_master)
    rec_no againest_voucher_type voucher_no
    R01 INVOICE INV01
    R01 DEBIT NOTE DB01
    i need a to create a VIEW like below
    custid total_due due0_30days due30_60days due60_90days due_above_90days
    1 2980 2430 550 0 0
    im facing critical situation with receipts which i have to deduct againest some invoices and
    debitnotes.
    now at the moment im using a long pL/SQL program to do this which i taking so much time. i saw a
    advise few days back to create view for the above report. i tried to in my way. but no success.
    please advise me on my issue.

    Not certain how you determine when to subtract, however you might be able to use DECODE.
    select A.Cust_Id, max(B.due_0_30), max(C.Due_31_60), max(D.Due_61_90), max(E.Due_Above90)
      from cust_trans A,
              (select Cust_ID, Sum(Decode(Trans_Type,
                                                                       'INVOICE', Amount,
                                                                       'CREDIT NOTE', (Amount*-1), 
                                                                       'DEBIT NOTE', Amount,
    --                                                                   'RECEIPT', (Amount*-1),  -- THIS IS WHERE I'M NOT CERTAIN
                                                                        Amount) ) Due_0_30
                     from Cust_trans
                     where Trans_dt between trunc(sysdate-30) and trunc(sysdate)
                    group by Cust_Id ) B,
                  (select Cust_ID, Sum(Decode(Trans_Type,
                                                                         'INVOICE', Amount,
                                                                         'CREDIT NOTE', (Amount*-1),
                                                                         'DEBIT NOTE', Amount,
    --                                                                   'RECEIPT', (Amount*-1),  -- THIS IS WHERE I'M NOT CERTAIN
                                                                         Amount) ) Due_31_60
                    from Cust_trans
                    where Trans_dt between trunc(sysdate-60) and trunc(sysdate-31)
                   group by Cust_Id ) C,
               (select Cust_ID, Sum(Decode(Trans_Type,
                                                                        'INVOICE', Amount,
                                                                        'CREDIT NOTE', (Amount*-1),
                                                                        'DEBIT NOTE', Amount,
    --                                                                   'RECEIPT', (Amount*-1),  -- THIS IS WHERE I'M NOT CERTAIN
                                                                         Amount) ) Due_61_90
                    from Cust_trans
                    where Trans_dt between trunc(sysdate-90) and trunc(sysdate-61)
                   group by Cust_Id ) D,
                (select Cust_ID, Sum(Decode(Trans_Type,
                                                                        'INVOICE', Amount,
                                                                        'CREDIT NOTE', (Amount*-1),
                                                                        'DEBIT NOTE', Amount,
    --                                                                   'RECEIPT', (Amount*-1),  -- THIS IS WHERE I'M NOT CERTAIN
                                                                         Amount) ) Due_Above90
                    from Cust_trans
                    where Trans_dt < trunc(sysdate-90)
                   group by Cust_Id ) E
    WHERE A.Cust_Id = B.Cust_Id(+)
      AND A.Cust_Id = C.Cust_Id(+)
      AND A.Cust_Id = D.Cust_Id(+)
      AND A.Cust_Id = E.Cust_Id(+)
    group by A.Cust_ID

  • SQL help with creating a view

    Hi I am looking to create a view that needs based on a table.
    Table:
    Roll, Code, Qual, Date
    1 05 KO 112010
    1 35 01 112010
    1 98 01 132011
    etc.....
    I need only the row(roll) that has code 05 and ko but that roll has to have had a row with Code 35 Qual 01 with the same Date. I am able to get all the rows the have the correct Codes (05 and KO along with 35 and 01). I am not sure how I can then join it on itself to give me just the 05/ko row where the rolls and date match.

    Hi,
    Here's one way, using the analytic COUNT function:
    CREATE OR REPLACE VIEW     view_y
    AS
    WITH     got_cnt_35     AS
         SELECT  roll, code, qual, dt     -- DATE is not a good column name
         ,     COUNT ( CASE
                             WHEN  code = 35
                        AND  qual = '01'
                       THEN  1
                         END
                    ) OVER ( PARTITION BY  roll
                                ,          dt
                        ) AS cnt_35
         FROM    table_x
         WHERE     (code, qual)     IN ( ( 5, 'KO')
                                  , (35, '01')
    SELECT  roll, code, qual, dt
    FROM     got_cnt_35
    WHERE     code     = 5
    AND     qual     = 'KO'
    AND     cnt_35     > 0
    ;You could do it with a self-join, also, but I think this way is simpler.
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables involved, and also post the results you want from that data.
    Point out where the statment above is getting the wrong results, and explain, using specific examples, how you get the right results from the given data in those places.
    Always say which version of Oracle you're using.
    See the forum FAQ {message:id=9360002}

  • Pls help!  Creating a new simple jsp iView...

    Hi, I would like to create a totally new iView JSP project from scratch.  I currently have NetWeaver and EP 6.0.  This is what I have done so far on NetWeaver: <b>File > New > Project > Select Portal Application > click 'Next' > Type in Project name and root folder > click 'FINISH'</b>.  Now, I think I have a project ready?  I have some basic iView JSP code already.   so now can someone provide me with detailed steps on what modifications and steps I need to make on my new project in order for my iView jsp to display on the EP 6.0?  Any files like 'portalapp.xml' that I have to modify?
    Thank you so much for your help,
    Baggett.
    What I know so far: I have looked at an example where I created one using an existing par.  I know how to export .par file to EP 6.0, it's the steps before that I don't know.  Thanks again.

    Hi, I think I found a little solution to my problem but now I have a new issue.  I think I "solved" my problem by doing:  <b>File > New > Project > Select Portal Application > click 'Next' > Type in Project name and root folder > click 'FINISH'.  Now, I do:
    File > New > Other > Portal Application > Create a new Portal Application Object > Select my Project > Portal Component/JSPDynPage (is this the 'easy' one to pick b/c it seems to update the portalapp.xml file, creates a jsp file (myFirstJSP.jsp) and bean for me) > I type in all the textfields for file name, package name, ... > click 'FINISH'. </b>
    Is this a correct/good way of starting a JSP project(I don't really know what a JSPDynPage is)
    Now I have a new issue.  I open up myFirstJSP.jsp and NetWeaver highlights all the code (pasted below) in yellow and there is no error displayed:
    <b><hbj:content id="myContext" >
      <hbj:page title="PageTitle">
       <hbj:form id="myFormId" >
       </hbj:form>
      </hbj:page>
    </hbj:content></b>
    So I try to paste this line into myFirstJSP.jsp: <b><%@ taglib uri="tagLib" prefix="hbj" %></b>and also paste this line onto portalapp.xml:
    <b><component-profile>
            <property name="tagLib" value="/SERVICE/htmlb/taglib/htmlb.tld"/>
    </component-profile>    </b>
    Now, I get an error saying: <b>"JSP Parsing Error:File "/dist/PORTAL_INF/pagelet/tagLib" not found"</b>
    Why is this?  How can I fix it?
    Thanks so much,
    Baggett.

  • Pls help to create repository

    SQL> drop user sysman cascade;
    User dropped.
    SQL> commit
    2 ;
    Commit complete.
    SQL> quit
    C:\Documents and Settings\SKS>emca -config dbcontrol db -repos create
    STARTED EMCA at May 10, 2012 11:16:57 AM
    EM Configuration Assistant, Version 11.1.0.7.0 Production
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Enter the following information:
    Database SID: VESS
    Listener port number: 1521
    Password for SYS user:
    Password for DBSNMP user:
    Password for SYSMAN user:
    Password for SYSMAN user: Email address for notifications (optional):
    Outgoing Mail (SMTP) server for notifications (optional):
    You have specified the following settings
    Database ORACLE_HOME ................ C:\app\SKS\product\11.1.0\db_1
    Local hostname ................ computer
    Listener port number ................ 1521
    Database SID ................ VESS
    Email address for notifications ...............
    Outgoing Mail (SMTP) server for notifications ...............
    Do you wish to continue? [yes(Y)/no(N)]: y
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at C:\app\SKS\cfgtoollogs\emca\vess\emca_2012_05_10_11_16_57.log.
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creating the EM repository (this may take a while) ...
    May 10, 2012 11:17:39 AM oracle.sysman.emcp.EMReposConfig invoke
    SEVERE: Error creating the repository
    May 10, 2012 11:17:39 AM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Refer to the log file at C:\app\SKS\cfgtoollogs\emca\vess\emca_repos_create_<date>.log for more details.
    May 10, 2012 11:17:39 AM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error creating the repository
    Refer to the log file at C:\app\SKS\cfgtoollogs\emca\vess\emca_2012_05_10_11_16_57.log for more details.
    Could not complete the configuration. Refer to the log file at C:\app\SKS\cfgtoollogs\emca\vess\emca_2012_05_10_
    11_16_57.log for more details.

    May 10, 2012 11:16:57 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-migrate' set to false
    May 10, 2012 11:16:57 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateFromDBControl' set to false
    May 10, 2012 11:16:57 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateToCentralAgent' set to false
    May 10, 2012 11:16:57 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateFromCentralAgent' set to false
    May 10, 2012 11:16:57 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateToDBControl' set to false
    May 10, 2012 11:16:57 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-config' set to true
    May 10, 2012 11:16:57 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'UPDATE_EMAIL' set to true
    May 10, 2012 11:16:57 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'dbcontrol' set to true
    May 10, 2012 11:16:57 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'db' set to true
    May 10, 2012 11:16:57 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'create' set to true
    May 10, 2012 11:16:57 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: ORACLE_HOME value: C:\app\SKS\product\11.1.0\db_1
    May 10, 2012 11:16:57 AM oracle.sysman.emcp.util.ClusterUtil isCRSInstalled
    CONFIG: isCRSInstalled: false
    May 10, 2012 11:16:57 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    May 10, 2012 11:16:58 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: EM_HOME value: C:\app\SKS\product\11.1.0\db_1
    May 10, 2012 11:17:05 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SID value: VESS
    May 10, 2012 11:17:05 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    May 10, 2012 11:17:05 AM oracle.sysman.emcp.util.ClusterUtil isCRSInstalled
    CONFIG: isCRSInstalled: false
    May 10, 2012 11:17:05 AM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: Cluster.isCluster: false. Skip call to getLocalNode
    May 10, 2012 11:17:05 AM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    May 10, 2012 11:17:05 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    May 10, 2012 11:17:05 AM oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured
    CONFIG: Sid: VESS Host: computer Node: null OH: C:\app\SKS\product\11.1.0\db_1 isDBC: false
    May 10, 2012 11:17:05 AM oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured
    CONFIG: Sid: VESS Host: computer Node: null OH: C:\app\SKS\product\11.1.0\db_1 agentHome: null isCentral: false
    May 10, 2012 11:17:05 AM oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured
    CONFIG: Sid: VESS Host: computer Node: null OH: C:\app\SKS\product\11.1.0\db_1 agentHome: null isCentral: false
    May 10, 2012 11:17:05 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    May 10, 2012 11:17:05 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: VESS, oracleHome: C:\app\SKS\product\11.1.0\db_1, and user:
    May 10, 2012 11:17:05 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    May 10, 2012 11:17:06 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    May 10, 2012 11:17:06 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    May 10, 2012 11:17:10 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: PORT value: 1521
    May 10, 2012 11:17:15 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    May 10, 2012 11:17:15 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: VESS, oracleHome: C:\app\SKS\product\11.1.0\db_1, and user: SYS
    May 10, 2012 11:17:15 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    May 10, 2012 11:17:22 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: VESS, oracleHome: C:\app\SKS\product\11.1.0\db_1, and user: DBSNMP
    May 10, 2012 11:17:22 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    May 10, 2012 11:17:30 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: EMAIL_ADDRESS value:
    May 10, 2012 11:17:32 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: MAIL_SERVER_NAME value:
    May 10, 2012 11:17:32 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    May 10, 2012 11:17:32 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: CONFIRMATION ANSWER value:
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: CONFIRMATION ANSWER value: yes
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter LOG_FILE.
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.EMConfig addEMCALogFile
    CONFIG: ORACLE_BASE :C:\app\SKS
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: VESS, oracleHome: C:\app\SKS\product\11.1.0\db_1, and user: SYS
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: vess
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at C:\app\SKS\cfgtoollogs\emca\vess\emca_2012_05_10_11_16_57.log.
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.util.ClusterUtil isCRSInstalled
    CONFIG: isCRSInstalled: false
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'CHECK_CONFIG' set to true
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: VESS, oracleHome: C:\app\SKS\product\11.1.0\db_1, and user: SYS
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: VESS, oracleHome: C:\app\SKS\product\11.1.0\db_1, and user: DBSNMP
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: VESS, oracleHome: C:\app\SKS\product\11.1.0\db_1, and user: SYS
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.DatabaseChecks getDbServiceName
    CONFIG: No service name available. Will try to set db_unique_name.db_domain
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: VESS, oracleHome: C:\app\SKS\product\11.1.0\db_1, and user: SYS
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value:
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: vess
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_DOMAIN.
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: vess
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SERVICE_NAME value: vess
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBID.
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.DatabaseChecks getDbid
    CONFIG: No dbid available. Will query db to extract it.
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: VESS, oracleHome: C:\app\SKS\product\11.1.0\db_1, and user: SYS
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DBID value: 2915575207
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'db' set to true
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.DatabaseChecks getDbServiceName
    CONFIG: No service name available. Will try to set db_unique_name.db_domain
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: VESS, oracleHome: C:\app\SKS\product\11.1.0\db_1, and user: SYS
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value:
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: vess
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_DOMAIN.
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: vess
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SERVICE_NAME value: vess
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter EMAIL_ADDRESS.
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MAIL_SERVER_NAME.
    May 10, 2012 11:17:35 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: VESS, oracleHome: C:\app\SKS\product\11.1.0\db_1, and user: SYS
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.EMDBPreConfig invoke
    CONFIG: Passed repository configuration check
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter GLOBAL_DB_UNIQUE_NAME.
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.DatabaseChecks getGlobalDbUniqueName
    CONFIG: No Global database unique name available. Will try to retrieve it from DB itself
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: VESS, oracleHome: C:\app\SKS\product\11.1.0\db_1, and user: SYS
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_DOMAIN.
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: GLOBAL_DB_UNIQUE_NAME value: vess
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\app\SKS\product\11.1.0\db_1\sysman\config\emd.properties to C:\app\SKS\product\11.1.0\db_1\sysman\config\emd.properties.emca.tmp
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file C:\app\SKS\product\11.1.0\db_1\sysman\config\emd.properties has been copied to C:\app\SKS\product\11.1.0\db_1\sysman\config\emd.properties.emca.tmp
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\app\SKS\product\11.1.0\db_1\sysman\config\emoms.properties to C:\app\SKS\product\11.1.0\db_1\sysman\config\emoms.properties.emca.tmp
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file C:\app\SKS\product\11.1.0\db_1\sysman\config\emoms.properties has been copied to C:\app\SKS\product\11.1.0\db_1\sysman\config\emoms.properties.emca.tmp
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\app\SKS\product\11.1.0\db_1\sysman\emd\targets.xml to C:\app\SKS\product\11.1.0\db_1\sysman\emd\targets.xml.emca.tmp
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file C:\app\SKS\product\11.1.0\db_1\sysman\emd\targets.xml has been copied to C:\app\SKS\product\11.1.0\db_1\sysman\emd\targets.xml.emca.tmp
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_CENTRAL_AGENT_RECONFIG' set to false
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured
    CONFIG: Sid: VESS Host: computer Node: null OH: C:\app\SKS\product\11.1.0\db_1 agentHome: null isCentral: false
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured
    CONFIG: Sid: VESS Host: computer Node: null OH: C:\app\SKS\product\11.1.0\db_1 isDBC: false
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_CENTRAL_AGENT_CONFIGURED' set to false
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_DBCONTROL_CONFIGURED' set to false
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT.
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT.
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT.
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT.
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured
    CONFIG: Sid: VESS Host: computer Node: null OH: C:\app\SKS\product\11.1.0\db_1 isDBC: false
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter PORTS_FILE.
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT_VESS.
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT.
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT_VESS.
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT.
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT_VESS.
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT.
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT_VESS.
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT.
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.util.OUIInventoryUtil setOUILoc
    CONFIG: Setting oracle.installer.oui_loc to C:\app\SKS\product\11.1.0\db_1\oui
    May 10, 2012 11:17:36 AM oracle.sysman.emcp.util.OUIInventoryUtil setOUILoc
    CONFIG: Setting oracle.installer.oui_loc to C:\app\SKS\product\11.1.0\db_1\oui
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Homes to scan for used ports: [C:\app\SKS\product\11.1.0\db_1]
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Searching all DBConsole instances for used ports under ORACLE_HOME C:\app\SKS\product\11.1.0\db_1
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking JMS port: null from C:\app\SKS\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking RMI port: null from C:\app\SKS\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking HTTP port: null from C:\app\SKS\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.util.PortManager getAgentPort
    CONFIG: Cannot parse EMD_URL correctly. No port identified
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking Agent port: null from C:\app\SKS\product\11.1.0\db_1\sysman\config\emd.properties
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Cannnot parse EMD_URL correctly. No port identified
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.util.FileUtil getProperties
    CONFIG: Error reading file C:\app\SKS\product\11.1.0\db_1\install\staticports.ini
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.util.PortManager getFreePorts
    CONFIG: C:\app\SKS\product\11.1.0\db_1:computer:null:VESS:{}:null:{DBCONTROL_HTTP_PORT=1158, RMI_PORT=5520, JMS_PORT=5540, AGENT_PORT=3938}
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT_VESS.
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: AGENT_PORT_VESS value: 3938
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT_VESS.
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DBCONTROL_HTTP_PORT_VESS value: 1158
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT_VESS.
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: JMS_PORT_VESS value: 5540
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT_VESS.
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: RMI_PORT_VESS value: 5520
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.EMDBPreConfig getFreePorts
    CONFIG: Ports assigned for SID: VESS : {DBCONTROL_HTTP_PORT=1158, RMI_PORT=5520, JMS_PORT=5540, AGENT_PORT=3938}
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.EMDBPreConfig copyAgentTimeStampFile
    CONFIG: File: C:\app\SKS\product\11.1.0\db_1\computer_VESS\sysman\emd\agntstmp.txt:computer does not exists.
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: VESS, oracleHome: C:\app\SKS\product\11.1.0\db_1, and user: SYS
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.EMReposConfig createRepository
    CONFIG: Spooling to C:\app\SKS\cfgtoollogs\emca\vess\emca_repos_create_2012_05_10_11_17_37.log
    May 10, 2012 11:17:37 AM oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creating the EM repository (this may take a while) ...
    May 10, 2012 11:17:39 AM oracle.sysman.emcp.EMReposConfig createRepository
    CONFIG: ORA-01921: role name 'MGMT_USER' conflicts with another user or role name
    oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-01921: role name 'MGMT_USER' conflicts with another user or role name
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1530)
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeScript(SQLEngine.java:880)
         at oracle.sysman.assistants.util.sqlEngine.SQLPlusEngine.executeScript(SQLPlusEngine.java:270)
         at oracle.sysman.assistants.util.sqlEngine.SQLPlusEngine.executeScript(SQLPlusEngine.java:311)
         at oracle.sysman.emcp.EMReposConfig.createRepository(EMReposConfig.java:492)
         at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:218)
         at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:147)
         at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:222)
         at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:535)
         at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1215)
         at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:519)
         at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:468)
    May 10, 2012 11:17:39 AM oracle.sysman.emcp.EMReposConfig invoke
    SEVERE: Error creating the repository
    May 10, 2012 11:17:39 AM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Refer to the log file at C:\app\SKS\cfgtoollogs\emca\vess\emca_repos_create_<date>.log for more details.
    May 10, 2012 11:17:39 AM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error creating the repository
    Refer to the log file at C:\app\SKS\cfgtoollogs\emca\vess\emca_2012_05_10_11_16_57.log for more details.
    May 10, 2012 11:17:39 AM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error creating the repository
         at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:230)
         at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:147)
         at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:222)
         at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:535)
         at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1215)
         at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:519)
         at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:468)

  • Please help me creating a view

    Hi Guru's
    Iam trying to write a view to acheive the below o/p
    CUST_UID MASTER_FLAG GROUP_ID
    AAAE55 1 001
    DDDE55 NULL 001
    AE56 1 002
    DDE56 NULL 002
    AAAE57 1 003
    AAAE58 1 004
    Expected o/p:
    CUST_UUID MASTER_UUID GROUP_ID
    AAAE55 AAAE55 001
    DDDE55 AAAE55 001
    AE56 AE56 002
    DDE56 AE56 002
    AAAE57 AAE57 003
    AAAE58 AAE58 0004
    Thanks in advance
    Raj

    I would go with first value but since Ganesh already posted that solution here is one using keep dense rank
    /* Formatted on 5/23/2011 12:22:17 PM (QP5 v5.149.1003.31008) */
    WITH t AS (SELECT 'AAAE55' CUST_UID, 1 MASTER_FLAG, '001' GROUP_ID FROM DUAL
               UNION
               SELECT 'DDDE55', NULL, '001' FROM DUAL
               UNION
               SELECT 'AE56', 1, '002' FROM DUAL
               UNION
               SELECT 'DDE56', NULL, '002' FROM DUAL
               UNION
               SELECT 'AAAE57', 1, '003' FROM DUAL
               UNION
               SELECT 'AAAE58', 1, '004' FROM DUAL)
      SELECT cust_uid,
             max(cust_uid) keep (dense_rank last order by master_flag desc) over  ( partition by group_id ) master_uid,
             GROUP_ID
        FROM t
        group by cust_uid, group_id, master_flag
        order by group_id, master_flag
    UST_UID     MASTER_UID     GROUP_ID
    AAAE55     AAAE55     001
    DDDE55     AAAE55     001
    AE56     AE56     002
    DDE56     AE56     002
    AAAE57     AAAE57     003
    AAAE58     AAAE58     004here is another option using model clause.
    /* Formatted on 5/23/2011 12:54:59 PM (QP5 v5.149.1003.31008) */
    WITH t AS (SELECT 'AAAE55' CUST_UID, 1 MASTER_FLAG, '001' GROUP_ID FROM DUAL
               UNION
               SELECT 'DDDE55', NULL, '001' FROM DUAL
               UNION
               SELECT 'AE56', 1, '002' FROM DUAL
               UNION
               SELECT 'DDE56', NULL, '002' FROM DUAL
               UNION
               SELECT 'AAAE57', 1, '003' FROM DUAL
               UNION
               SELECT 'AAAE58', 1, '004' FROM DUAL)
      SELECT CUST_UID, MASTER_UID, GROUP_ID
        FROM t
    MODEL
       PARTITION BY (GROUP_ID)
       DIMENSION BY (ROW_NUMBER ()
                        OVER (PARTITION BY GROUP_ID ORDER BY master_flag) d)
       MEASURES (cust_uid, cust_uid master_uid)
       RULES
          (master_uid [ANY] = cust_uid[1])
    ORDER BY GROUP_ID, cust_uidEdited by: pollywog on May 23, 2011 12:55 PM

  • Help in creating View

    Hi Guys,
    I am trying to create a view from table A and table B.  Data in table A and table B are as follows.
    Table A                              TableB
    Field_1       Field_2                    Field_1           Desc_1
    A1          B1                    A1          New York     
    A1          B1                    A2          Albany
    A1          B2                    A3          Rochester     
    A1          B2                    A4          Buffalo
    A1          B2                    A5          Syracuse
    A2          B1                              
    A2          B2
    I want to get the following result:
    Field_1        Desc_1          Field_2     
    A1          New York     B1                    
    A1          New York     B1                    
    A1          New York     B2                         
    A1          New York     B2                    
    A1          New York     B2                    
    A2          Albany          B1                              
    A2          Albany          B2
    Please advise me which type of view should I create. I create Maintenance view and I am getting following error"
    "No database view exists for view Z_TEST_VIEW".
    Please help in creating a view without the error.
    Thanks,

    Since your requirement is to view logically connected data from different tables, try creating the "database view".
    http://help.sap.com/saphelp_nw70/helpdata/en/cf/21ecab446011d189700000e8322d00/content.htm

  • Pls Help me to Create an Updatable report region

    hi,
    can u pls help in creating an updatable report region. as of now i have 2 regions in a page. 1st region is HTML type where we can select Year,Month&Account parameters and do submit.
    2nd region an updatable report region where the report generates according to the SQL query which includes conditions selected as parameters in where clause. even i have the processes to update the data in this report.
    now the problem is i am able to put only one submit button which is functioning for both parameter selection and as well as updating the data in report fields. so the functionality of the report became a bit tricky which is not user friendly to the client.
    whats happening is: after logging in&select the parameters month=Jan,year=2007,account=ALL
    -> If you would like to update the data for Jan’07, you can enter the value in the field and click on ‘Update’ button
    -> After that, if you would like to see the data for Feb’07, as of now you are not able to select the month from drop down list directly from this page and say ‘Update’. You need to log-out and log-in again and select ‘Feb’ for seeing Feb’07 data.
    -> Rather if you directly select the ‘Feb’ month and say ‘Update’ in the same page, it is updating by the New value you entered for ‘Jan’ ( the same thing happens for all the months what ever you select and click on ‘Update’ in the same page without log-out and log-in)
    -> So, the basic thing you have to do while you update the data is, you need to log-out & log-in for seeing or updating different month’s data after making changes to the present month and click on ‘Update’. You can not see correct data if you select the month directly after making changes to the present month’s data. This will cause automatic updating in the selected month.
    sorry for the long description of my problem, but your help in this regard will be appreciated. thanks in advance.
    Best Regards,
    _Rakesh Reddy.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    hi andy,
    thanks very much for ur reply mite..
    actually i have 2 page processes.
    1 is On Submit-Before Computations and Validations;is to populate
    2 is On Submit-After Computations and Validations;is to update
    both r PL/SQL anonymous blocks.the problem is i couldn't find any triggers like things in process point drop down list.for eg;'when button pressed' or 'when LOV changed' or 'when list changed'(like in forms developer)
    and also i couldn't allocate any processes or functions to button properties in APEX.
    can u pls help in this regard.
    Cheers,
    _Rakesh Reddy.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Maybe you are looking for

  • FI posting period variant restricted in OB52

    Hi, First all of you have HAPPY NEW YEAR 2009. My problem is i have multiple posting period variant (Multiple company code wise), i want to restrict posting peirod variant in OB52 i.e. one posting period variant for one company code to be open / clos

  • How do I reset the admin password on MacBook Air

    Does anyone know how to reset the admin password on MacBook Air ?

  • After upgrading to CS5, printing PDFs has become a nightmare!

    After upgrading to CS5, printing PDFs has become a nightmare! For example, 1. It would never finish printing the file, just the first so many pages. So...  2. I updated the driver, and then I could print one copy only without problems. But... 3. I ca

  • Network check?!

    How can i find out what network an Iphone is locked to without testing every network sim?

  • Ise and authorization vlans

    ineed to know for sure  (and with detailed official documentation links or experience if possible) if ISE for CoA accepts vlan names rather than vlan id numbers (multiple vtp domains: we have multiple vlan id numbers under the same consistant naming)