Prblem while creating the view

Hai guys,
I have a view from sevaral table in R3N system.
But while i iam creating the same in R3S data is not seen in the view.
Can you come with the solution.
Thanks in advance.
Accurate solutions only willl be given points.
Thanks.
Regds,
Rama.Pammi

Hi Rama,
i hav faced the same prob..
  check your both databast tables with comparing field  ZFLD(2) .
if both are same..ok..else...
   check your internal table data that u r inserting into another system.
    suppose data type c of size 2 will not gives u leading zero while ZFLD(2) of type n gives u leading zero..now these 2 fields are not same..
so check the data first...
come back to me if any prob..
Ram

Similar Messages

  • Error while creating the view from one instance to another instance

    Hi Experts
    I want to Create a view which reside in one instance for example xxx Instance . I want to create the same view which reside in xxx instance to another instance for example YYY Instance How to acheive this ?
    I tried desc the View take the view script from XXX instance and copied the view script to YYY instance when I compiled Iam getting an Error
    For Example My view in XXX Instance
    CREATE OR REPLACE FORCE VIEW xxx.sample
    First_name,
    last_name
    as
         select "F_NAME",
                 "L_NAME"
         FROM  EMP;When try to copy and compile the same view in my YYY Instance
    i am getting error
    ORA: table or view does not exist
    Advance Thanks
    AT

    A.T wrote:
    Hi Experts ,
    Thanks For all your valuable information I amTrying Of DB Link i think so
    As per My understanding If wrong anywhere please advice me
    Here Instance is Like : One DB 10g divided into several Instance like (test , devlopement , production Instance)
    Now hope i ll make my req clear .
    Coming to my reqirement
    the actual table EMP is in xxi.TEST (Here xxi => Schema and test is an Instance )
    I want to create the view which is based on by table EMP which in my test instance to devoplment instance
    For example xxo.development (here xxo => Schema and development is an Instance )
    Need to access the xxi schema in Test Instance How can I create a DB Link please share your ideas and advice me
    Advance Thanks
    ATIt's still not at all clear, but let me outline what I think you are after
    Given a database, ORCL_A
    In database ORCL_A we have a schema, HALFTRACK
    User HALFTRACK has a table, MYSTUFF
    Given a database, ORCL_B
    In database ORCL_B we have a user GREENBRASS
    User GREENBRASS needs to be able to query the table HALFTRACK.MYSTUFF.
    In database ORCL_B, as user GREENBRASS
    create database link mylink
    connect to halftrack identified by halftracks_pswd
    using ORCL_A;
    select * from mytable@mylink;The db link defines a connection specification to ORCL_A, using the credentials of a user on ORCL_A. The target of the USING clause in the link definition must be an entry in the tnsames.ora file on the server hosting database ORCL_B.
    When querying through the link, database ORCL_B is simply acting as a client to ORCL_A, no different that a sqlplus session on ORACL_B's server. As far as ORCL_A is concerned, ORCL_B is just another client requesting a connection, connecting with the credentials defined in the link definition.

  • Getting *Not all values are bound* error while creating the VO

    Hi
    When i create a VO with the following query i am getting ORA-01008: not all variables bound error after giving apply.
    The Query is:
    SELECT
    emp.full_name CSA,
    COUNT(*) "Total # disputes",
    SUM(rac.total_amount) "Total Dispute Amt",
    (SELECT
    COUNT(jtb4.task_id)
    FROM
    jtf_tasks_b jtb4,
    ra_cm_requests_all rac4
    WHERE
    rac4.request_id = jtb4.attribute8
    AND jtb4.attribute_category = 'Dispute'
    AND trunc(jtb4.scheduled_end_date) = trunc(SYSDATE)
    AND rac4.org_id = *:1*
    AND jtb4.owner_type_code = 'RS_EMPLOYEE'
    AND rac4.status = 'PENDING_APPROVAL'
    AND jtb4.owner_id=emp.resource_id
    AND jtb4.open_flag = 'Y'
    AND EXISTS (SELECT 1
    FROM ar_payment_schedules_all arp4
    WHERE rac4.customer_trx_id = arp4.customer_trx_id
    AND arp4.amount_in_dispute IS NOT NULL)) "#D's on Today",
    (SELECT
    NVL (SUM (rac4.total_amount), 0)
    FROM
    jtf_tasks_b jtb4,
    ra_cm_requests_all rac4
    WHERE
    rac4.request_id = jtb4.attribute8
    AND jtb4.attribute_category = 'Dispute'
    AND trunc(jtb4.scheduled_end_date) = trunc(SYSDATE)
    AND rac4.org_id = *:2*
    AND jtb4.owner_type_code = 'RS_EMPLOYEE'
    AND rac4.status = 'PENDING_APPROVAL'
    AND jtb4.owner_id=emp.resource_id
    AND jtb4.open_flag = 'Y'
    AND EXISTS (SELECT 1
    FROM ar_payment_schedules_all arp4
    WHERE rac4.customer_trx_id = arp4.customer_trx_id
    AND arp4.amount_in_dispute IS NOT NULL)) "$Val Disp on Today",
    (SELECT
    COUNT (jtb4.task_id)
    FROM
    jtf_tasks_b jtb4,
    ra_cm_requests_all rac4
    WHERE
    rac4.request_id = jtb4.attribute8
    AND jtb4.attribute_category = 'Dispute'
    AND trunc(jtb4.scheduled_end_date) < trunc(SYSDATE)
    AND rac4.org_id = *:3*
    AND jtb4.owner_type_code = 'RS_EMPLOYEE'
    AND rac4.status = 'PENDING_APPROVAL'
    AND jtb4.owner_id=emp.resource_id
    AND jtb4.open_flag = 'Y'
    AND EXISTS (SELECT 1
    FROM ar_payment_schedules_all arp4
    WHERE rac4.customer_trx_id = arp4.customer_trx_id
    AND arp4.amount_in_dispute IS NOT NULL)) "#D's <Today",
    (SELECT
    NVL (SUM (rac4.total_amount), 0)
    FROM
    jtf_tasks_b jtb4,
    ra_cm_requests_all rac4
    WHERE
    rac4.request_id = jtb4.attribute8
    AND jtb4.attribute_category = 'Dispute'
    AND trunc(jtb4.scheduled_end_date) < trunc(SYSDATE)
    AND rac4.org_id = *:4*
    AND jtb4.owner_type_code = 'RS_EMPLOYEE'
    AND rac4.status = 'PENDING_APPROVAL'
    AND jtb4.owner_id=emp.resource_id
    AND jtb4.open_flag = 'Y'
    AND EXISTS (SELECT 1
    FROM ar_payment_schedules_all arp4
    WHERE rac4.customer_trx_id = arp4.customer_trx_id
    AND arp4.amount_in_dispute IS NOT NULL)) "$Val Disp<Today",
    (SELECT
    COUNT (jtb4.task_id)
    FROM
    jtf_tasks_b jtb4,
    ra_cm_requests_all rac4
    WHERE
    rac4.request_id = jtb4.attribute8
    AND jtb4.attribute_category = 'Dispute'
    AND trunc(jtb4.scheduled_end_date) > trunc(SYSDATE)
    AND rac4.org_id = *:5*
    AND jtb4.owner_type_code = 'RS_EMPLOYEE'
    AND rac4.status = 'PENDING_APPROVAL'
    AND jtb4.owner_id=emp.resource_id
    AND jtb4.open_flag = 'Y'
    AND EXISTS (SELECT 1
    FROM ar_payment_schedules_all arp4
    WHERE rac4.customer_trx_id = arp4.customer_trx_id
    AND arp4.amount_in_dispute IS NOT NULL)) "#D's >Today",
    (select
    nvl(SUM (rac4.total_amount), 0)
    FROM
    jtf_tasks_b jtb4,
    ra_cm_requests_all rac4
    WHERE
    rac4.request_id = jtb4.attribute8
    AND jtb4.attribute_category = 'Dispute'
    AND trunc(jtb4.scheduled_end_date) > trunc(SYSDATE)
    AND rac4.org_id = *:6*
    AND jtb4.owner_type_code = 'RS_EMPLOYEE'
    AND rac4.status = 'PENDING_APPROVAL'
    AND jtb4.open_flag = 'Y'
    AND jtb4.owner_id=emp.resource_id
    AND EXISTS (SELECT 1
    FROM ar_payment_schedules_all arp4
    WHERE rac4.customer_trx_id = arp4.customer_trx_id
    AND arp4.amount_in_dispute IS NOT NULL)) "$Val Disp>Today",
    MIN(jtb.scheduled_end_date) "EARLIEST_END_DATE",
    MAX(jtb.scheduled_end_date) "LATEST_END_DATE"
    FROM
    jtf_tasks_b jtb,
    ra_cm_requests_all rac,
    jtf_rs_emp_dtls_vl emp
    WHERE
    rac.request_id=jtb.attribute8
    AND jtb.owner_id=emp.resource_id
    AND jtb.attribute_category='Dispute'
    AND rac.org_id =*:7*
    AND jtb.scheduled_end_date IS NOT NULL
    AND rac.status = 'PENDING_APPROVAL'
    AND jtb.owner_type_code = 'RS_EMPLOYEE'
    AND jtb.open_flag = 'Y'
    AND EXISTS (SELECT 1
    FROM apps.dnb_ac_orc_coll_csa_map_s orc
    WHERE orc.csa_id = jtb.owner_id
    AND NVL(orc.attribute1,107) = *:8*
    AND orc.customer_segment = *:9*
    AND EXISTS (SELECT 1
    FROM ar_payment_schedules_all arp
    WHERE rac.customer_trx_id = arp.customer_trx_id
    AND arp.amount_in_dispute IS NOT NULL
    GROUP BY emp.full_name
    ,emp.resource_id
    I dont have any cue why the error is prompting while creating the VO itself. Kindly let me know the issue with the above query.
    Thanks,
    Praveen

    Praveen,
    In the Query , you are given alias name like "#D's on Today" . Avoid to use special charaters in coulmn alias in the view query, as the alias name is failed to conver it into view attributes.
    During creating view object, in the query screen, there is dropdown which is below the query region. By default it is style of "oracle named" , changed it to "Oracle Positional".
    Thanks,
    Kumar

  • Error While Creating Materialized View

    Hello,
    I am getting error ORA-22818: subquery expressions not allowed here while creating materialized view. I am using Oracle9i Enterprise Edition Release 9.2.0.1.0. Below pasted is my SQL Script.
    Any help is highly appreciable.
    Thanks
    *********SQL************
    select distinct(id),NAME,(select count(GRADE) from employees where
    nationality like '%US%'and id=a.organization_id and grade=a.grade
    group by ID,GRADE) US,(select count(GRADE) from employees where
    nationality not like '%US%' and organization_id=a.organization_id and grade=a.grade
    group by ORGANIZATION_ID,GRADE) NON_US,grade from employees a
    where grade is not null
    group by GRADE,ID,name
    order by to_number(grade) desc

    Hi,
    This is a documented restriction on MVs. You cannot have a scalar express (i.e a select statement) in the select list.
    You can get round this by joining your select count(grade).. expression in as an inline view in your FROM clause. Or you can create a normal view without the scalar expression, create your MV as a select from this view, then re-define your view to contain the query you want.
    Hope that helps,
    Rod West

  • Error while creating the AW

    Hi,
    While creating the analytic workspace I am getting following message..
    Can anyone please tell what might have gone wrong? Any help will be appriciated.
    Preparing
    Creating analytic workspace...
    Processing cube AW_SALES_CUBE
    Processing Creating Dimension : AW_CUST_DIM
    Processing Creating Dimension : AW_PROD_DIM
    Processing Creating Cube : AW_SALES_CUBE
    Processing Defining Load for Cube: AW_SALES_CUBE
    SqlException = ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "OLAPSYS.DBMS_AWM_PRV", line 469
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at "OLAPSYS.DBMS_AWM_PRV", line 983
    ORA-06512: at "OLAPSYS.DBMS_AWM", line 428
    ORA-06512: at line 1
    Error Code = 6510
    Sql State = 65000
    All the cubes could not be added to the Analytic Workspace AWSALE;
    The following cubes could not be added : SALES_CUBE
    Could not generate SQL for Views and ADTS for OLAP API and beans enabling.
    java.sql.SQLException: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "OLAPSYS.DBMS_AWM_PRV", line 469
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at "OLAPSYS.DBMS_AWM_PRV", line 983
    ORA-06512: at "OLAPSYS.DBMS_AWM", line 428
    ORA-06512: at line 1
    Tidying Up
    Failed to create the analytic workspace

    The versions are follows..
    Also, I tried with another set of tables. But, I still got the same errors. I am attaching all those details..
    Please help..
    --SOFTWARES....
    --Oracle Database:
    Oracle9i Enterprise Edition Release 9.2.0.5.0 - 64bit Production
    With the Partitioning and OLAP options
    JServer Release 9.2.0.5.0 - Production
    --OEM
    9.2.0.1.0 Production
    --AWM
    9.2.0.4.1D
    --TABLE CREATION SCRIPTS
    Note: I created the following tables in user RMS_PROTOTYPE
    create table meter (
    meter_id number(10),
    meter_name varchar2(40),
    make_id number(10),
    make_name varchar2(40)
    alter table meter
    add constraints meter_pk
    PRIMARY KEY (meter_id)
    NORELY DISABLE NOVALIDATE;
    create table month (
    month_id number(10),
    month_name varchar2(40)
    alter table month
    add constraints month_pk
    PRIMARY KEY (month_id)
    NORELY DISABLE NOVALIDATE;
    create table invoice (
    invoice_id number(10),
    month_id number(10),
    meter_id number(10),
    invoice_amount number(16,2)
    alter table invoice
    add constraints invoice_pk
    PRIMARY KEY (invoice_id)
    NORELY DISABLE NOVALIDATE;
    alter table invoice
    add constraints invoice_meter_fk
    FOREIGN KEY (meter_id)
    REFERENCES meter (meter_id)
    NORELY DISABLE NOVALIDATE;
    alter table invoice
    add constraints invoice_month_fk
    FOREIGN KEY (month_id)
    REFERENCES month (month_id)
    NORELY DISABLE NOVALIDATE;
    Note: I created the following dimensions/cube in user RMS_PROTOTYPE
    --METER DIMENSION
    CREATE DIMENSION RMS_PROTOTYPE.METER_DIM
    LEVEL LVL_METER IS METER.METER_ID
    ATTRIBUTE LVL_METER DETERMINES (METER.MAKE_ID, METER.METER_NAME, METER.MAKE_NAME)
    begin
    cwm_classify.remove_entity_descriptor_use(28, cwm_utility.DIMENSION_TYPE, 'RMS_PROTOTYPE', 'METER_DIM');
    cwm_olap_dimension.set_plural_name('RMS_PROTOTYPE', 'METER_DIM', 'METER_DIM');
    cwm_olap_dimension.set_display_name('RMS_PROTOTYPE', 'METER_DIM', 'METER_DIM');
    cwm_olap_dimension.set_description('RMS_PROTOTYPE', 'METER_DIM', 'Meter Dimension');
    cwm_olap_level.set_display_name('RMS_PROTOTYPE', 'METER_DIM', 'LVL_METER', 'LVL_METER');
    cwm_olap_level.set_description('RMS_PROTOTYPE', 'METER_DIM', 'LVL_METER', 'Level Meter');
    cwm_olap_level_attribute.set_name('RMS_PROTOTYPE', 'METER_DIM', 'LVL_METER', 'MAKE_ID', 'MAKE_ID');
    cwm_olap_level_attribute.set_name('RMS_PROTOTYPE', 'METER_DIM', 'LVL_METER', 'METER_NAME', 'METER_NAME');
    cwm_olap_level_attribute.set_name('RMS_PROTOTYPE', 'METER_DIM', 'LVL_METER', 'MAKE_NAME', 'MAKE_NAME');
    cwm_olap_dim_attribute.create_dimension_attribute('RMS_PROTOTYPE', 'METER_DIM', 'MTR_Name', 'MTR_Name', 'Meter Name');
    cwm_classify.add_entity_descriptor_use(41, cwm_utility.DIMENSION_ATTRIBUTE_TYPE, 'RMS_PROTOTYPE', 'METER_DIM', 'MTR_Name');
    cwm_olap_dim_attribute.create_dimension_attribute('RMS_PROTOTYPE', 'METER_DIM', 'Mk_Id', 'Mk_Id', 'Maker Id');
    cwm_classify.add_entity_descriptor_use(42, cwm_utility.DIMENSION_ATTRIBUTE_TYPE, 'RMS_PROTOTYPE', 'METER_DIM', 'Mk_Id');
    cwm_olap_dim_attribute.create_dimension_attribute('RMS_PROTOTYPE', 'METER_DIM', 'Mk_Name', 'Mk_Name', 'Maker Name');
    cwm_olap_dim_attribute.add_level_attribute('RMS_PROTOTYPE', 'METER_DIM', 'MTR_Name', 'LVL_METER', 'METER_NAME');
    cwm_olap_dim_attribute.add_level_attribute('RMS_PROTOTYPE', 'METER_DIM', 'Mk_Id', 'LVL_METER', 'MAKE_ID');
    cwm_olap_dim_attribute.add_level_attribute('RMS_PROTOTYPE', 'METER_DIM', 'Mk_Name', 'LVL_METER', 'MAKE_NAME');
    cwm_classify.add_entity_descriptor_use(41, cwm_utility.LEVEL_ATTRIBUTE_TYPE, 'RMS_PROTOTYPE', 'METER_DIM', 'LVL_METER', 'METER_NAME');
    cwm_classify.add_entity_descriptor_use(42, cwm_utility.LEVEL_ATTRIBUTE_TYPE, 'RMS_PROTOTYPE', 'METER_DIM', 'LVL_METER', 'MAKE_ID');
    commit;
    end;
    --Month DIMENSION
    CREATE DIMENSION RMS_PROTOTYPE.MONTH_DIM
    LEVEL LVL_MONTH IS MONTH.MONTH_ID
    ATTRIBUTE LVL_MONTH DETERMINES MONTH.MONTH_NAME
    begin
    cwm_classify.remove_entity_descriptor_use(28, cwm_utility.DIMENSION_TYPE, 'RMS_PROTOTYPE', 'MONTH_DIM');
    cwm_olap_dimension.set_plural_name('RMS_PROTOTYPE', 'MONTH_DIM', 'MONTH_DIM');
    cwm_olap_dimension.set_display_name('RMS_PROTOTYPE', 'MONTH_DIM', 'MONTH_DIM');
    cwm_olap_dimension.set_description('RMS_PROTOTYPE', 'MONTH_DIM', 'Month Dimension');
    cwm_olap_level.set_display_name('RMS_PROTOTYPE', 'MONTH_DIM', 'LVL_MONTH', 'LVL_MONTH');
    cwm_olap_level.set_description('RMS_PROTOTYPE', 'MONTH_DIM', 'LVL_MONTH', 'Month Level');
    cwm_olap_level_attribute.set_name('RMS_PROTOTYPE', 'MONTH_DIM', 'LVL_MONTH', 'MONTH_NAME', 'MONTH_NAME');
    cwm_olap_dim_attribute.create_dimension_attribute('RMS_PROTOTYPE', 'MONTH_DIM', 'MNTH_NAME', 'MNTH_NAME', 'Month Name');
    cwm_classify.add_entity_descriptor_use(41, cwm_utility.DIMENSION_ATTRIBUTE_TYPE, 'RMS_PROTOTYPE', 'MONTH_DIM', 'MNTH_NAME');
    cwm_olap_dim_attribute.add_level_attribute('RMS_PROTOTYPE', 'MONTH_DIM', 'MNTH_NAME', 'LVL_MONTH', 'MONTH_NAME');
    cwm_classify.add_entity_descriptor_use(41, cwm_utility.LEVEL_ATTRIBUTE_TYPE, 'RMS_PROTOTYPE', 'MONTH_DIM', 'LVL_MONTH', 'MONTH_NAME');
    commit;
    end;
    --SALE CUBE
    declare MTR_DIM number;
    MTH_DIM number;
    tmp number;
    begin
    CWM_OLAP_CUBE.Create_Cube('RMS_PROTOTYPE', 'INV_CUBE', 'Invoice Cube', '');
    MTR_DIM := CWM_OLAP_CUBE.Add_Dimension('RMS_PROTOTYPE', 'INV_CUBE', 'RMS_PROTOTYPE', 'METER_DIM', 'MTR_DIM');
    CWM_OLAP_CUBE.Map_Cube('RMS_PROTOTYPE', 'INV_CUBE', 'RMS_PROTOTYPE', 'INVOICE', 'INVOICE_METER_FK', 'LVL_METER', 'RMS_PROTOTYPE', 'METER_DIM', 'MTR_DIM');
    MTH_DIM := CWM_OLAP_CUBE.Add_Dimension('RMS_PROTOTYPE', 'INV_CUBE', 'RMS_PROTOTYPE', 'MONTH_DIM', 'MTH_DIM');
    CWM_OLAP_CUBE.Map_Cube('RMS_PROTOTYPE', 'INV_CUBE', 'RMS_PROTOTYPE', 'INVOICE', 'INVOICE_MONTH_FK', 'LVL_MONTH', 'RMS_PROTOTYPE', 'MONTH_DIM', 'MTH_DIM');
    CWM_OLAP_MEASURE.Create_Measure('RMS_PROTOTYPE', 'INV_CUBE', 'INVOICE_AMOUNT', 'Invoice Amount', '');
    CWM_OLAP_MEASURE.Set_Column_Map('RMS_PROTOTYPE', 'INV_CUBE', 'INVOICE_AMOUNT', 'RMS_PROTOTYPE', 'INVOICE', 'INVOICE_AMOUNT');
    CWM_OLAP_MEASURE.Create_Measure('RMS_PROTOTYPE', 'INV_CUBE', 'INVOICE_ID', 'Invoice Id', '');
    CWM_OLAP_MEASURE.Set_Column_Map('RMS_PROTOTYPE', 'INV_CUBE', 'INVOICE_ID', 'RMS_PROTOTYPE', 'INVOICE', 'INVOICE_ID');
    tmp:= cwm_utility.create_function_usage('SUM');
    cwm_olap_measure.set_default_aggregation_method('RMS_PROTOTYPE', 'INV_CUBE', 'INVOICE_AMOUNT', tmp, 'RMS_PROTOTYPE', 'METER_DIM', 'MTR_DIM');
    tmp:= cwm_utility.create_function_usage('SUM');
    cwm_olap_measure.set_default_aggregation_method('RMS_PROTOTYPE', 'INV_CUBE', 'INVOICE_AMOUNT', tmp, 'RMS_PROTOTYPE', 'MONTH_DIM', 'MTH_DIM');
    tmp:= cwm_utility.create_function_usage('SUM');
    cwm_olap_measure.set_default_aggregation_method('RMS_PROTOTYPE', 'INV_CUBE', 'INVOICE_ID', tmp, 'RMS_PROTOTYPE', 'METER_DIM', 'MTR_DIM');
    tmp:= cwm_utility.create_function_usage('SUM');
    cwm_olap_measure.set_default_aggregation_method('RMS_PROTOTYPE', 'INV_CUBE', 'INVOICE_ID', tmp, 'RMS_PROTOTYPE', 'MONTH_DIM', 'MTH_DIM');
    commit;
    end;
    Note: I tried to create the analytic workspace in user RMS_PROTOTYPE_AW. But I got the following error.
    --ERROR in AWM
    Preparing
    Creating analytic workspace...
    Processing cube P_INV_CUBE
    Processing Creating Dimension : P_METER_DIM
    Processing Creating Dimension : P_MONTH_DIM
    Processing Creating Cube : P_INV_CUBE
    Processing Defining Load for Cube: P_INV_CUBE
    SqlException = ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "OLAPSYS.DBMS_AWM_PRV", line 469
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at "OLAPSYS.DBMS_AWM_PRV", line 983
    ORA-06512: at "OLAPSYS.DBMS_AWM", line 428
    ORA-06512: at line 1
    Error Code = 6510
    Sql State = 65000
    All the cubes could not be added to the Analytic Workspace AW_INV_01;
    The following cubes could not be added : INV_CUBE
    java.sql.SQLException: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "OLAPSYS.DBMS_AWM_PRV", line 469
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at "OLAPSYS.DBMS_AWM_PRV", line 983
    ORA-06512: at "OLAPSYS.DBMS_AWM", line 428
    ORA-06512: at line 1
    Tidying Up
    Failed to create the analytic workspace
    Thanks in advance.

  • BI : Error While Creating the Generic DS

    Hi Experts,
    I would like to know that while creating the generic data for Journal entry i am getting the below error. Kindly advise.
    "Field FRATH with reference field WAERS: ZOXTCD0017 is to replace reference table T001".
    thanks & regards,
    M.S

    Hi,
    WAERS is refrence filed for FRATH taken from T001 .
    Field FRATH is not existing in T001 .T001 is having only WAERS Field.
    What you can do use create view on T001 &BKPF.BURKS key field in both the tables.So create  custom view on these tables.Then u r problem will be resolved.
    Regards
    Ram.
    Edited by: Ramakanth Deepak Gandepalli on Dec 17, 2009 12:30 PM

  • Error while creating Materialized View step 3 of 6 using wizard

    have oracle 9i Rel 1 on Windows 2000 server. Master Site has been setup. Database links are created at Materialized view site. But while creating Materialized View Group using wizard there is following error on step 3 of 6.
    Statement:----------------
    /*OracleOEM*/ SELECT 1 FROM SYS.dba_constraints@masterdbname WHERE OWNER='username' and table_name='tabname' AND constraint_type='P'
    Stack Trace:----------------
    ORA-00942: table or view does not exist.
    ORA-02063: preceding line from masterdbname.
    All parameters for replication are correct.
    Please help me early.
    Thanks

    Hello,
    In the masterdbname, logging as sys user, you must grant select permission on sys.dba_constraints view to mvadmin_dbname user (where dbname is the replicated database name).
    Regards,

  • Error while creating Materialized View step 3 of 6

    I have oracle 9i Rel 1 on Windows 2000 server. Master Site has been setup. Database links are created at Materialized view site. But while creating Materialized View Group there is following error on step 3 of 6.
    Statement:----------------
    /*OracleOEM*/ SELECT 1 FROM SYS.dba_constraints@masterdbname WHERE OWNER='username' and table_name='tabname' AND constraint_type='P'
    Stack Trace:----------------
    ORA-00942: table or view does not exist.
    ORA-02063: preceding line from masterdbname.
    All parameters for replication are correct.
    Please help me early.
    Thanks

    Hello,
    In the masterdbname, logging as sys user, you must grant select permission on sys.dba_constraints view to mvadmin_dbname user (where dbname is the replicated database name).
    Regards,

  • TP CONFIGURATION PROBLEM ( While creating a View Controller in Component )

    Hi All,
         I have a problem in TP Config while creating a View Controller in a component i am getting this Exception 
        Parameter lsm(&1) not in version 0004(&2) of tp configuration .
        This Exception Raised from this Function Module : RS_ACCESS_PERMISSION
    Any on can please help me to come out of this issue.
    Regards And Thank you,
    Nirmala.K

    Sounds like you should be using one of the Apps forums, perhaps {forum:id=210}

  • Error while creating the build definitation

    while creating the new build definition below error occurred:
     1 error(s), 0 warning(s)
     Exception Message: The build controller VWAGWOSOB515 does not contain an enabled build agent with name * and no tags. (type SoapException)SoapException Details: <soap:Detail xmlns:soap="http://www.w3.org/2003/05/soap-envelope" />
    Exception Stack Trace:    at Microsoft.TeamFoundation.Build.Hosting.AgentReservationExtension.EndReserveAgent(IList`1& possibleAgents, IAsyncResult result)
       at Microsoft.TeamFoundation.Build.Workflow.ReserveBuildAgent.RequestActivity.EndExecute(AsyncCodeActivityContext context, IAsyncResult result)
       at System.Activities.AsyncCodeActivity`1.System.Activities.IAsyncCodeActivity.FinishExecution(AsyncCodeActivityContext context, IAsyncResult result)
       at System.Activities.AsyncCodeActivity.CompleteAsyncCodeActivityData.CompleteAsyncCodeActivityWorkItem.Execute(ActivityExecutor executor, BookmarkManager bookmarkManager)
    How toresolve this issue?
    Thanks & Regards,
    Kanchan More
    Kanchan

    Hi Kanchan,  
    Thanks for your post.
    What’s the version of your TFS?
    Please ensure the build agent(s) created and enabled under your build controller. You can check the TFS Build Service information in your TFS Admin Console>>Build Configuration tab. For more information about TFS Build Server, please refer to this
    document: https://msdn.microsoft.com/en-us/library/ms181712.aspx.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Backup Fail with Volume Shadow Copy Service error: Error calling a routine on the Shadow Copy Provider, Event ID 12293, error returned while creating the volume shadow copy 0x8004230f,

    We are using TINA backup solution and windows 2003 backup is failling with VSS error.
    For testing purpose we initiate a system state backup (or any file backup) with the help of windows 2003 ntbackup.exe and found it is failing with below error.
    Backup error report.
    Backup Status
    Operation: Backup
    Active backup destination: File
    Media name: "Backup.bkf created 28/05/2014 at 06:34"
    Volume shadow copy creation: Attempt 1.
    Error returned while creating the volume shadow copy:0x8004230f.
    Error returned while creating the volume shadow copy:8004230f
    Aborting Backup.
    The operation did not successfully complete.
    We check event viewer and found below error event.
    Event Type:       
    Error
    Event Source:   
    VSS
    Event Category:               
    None
    Event ID:             
    12293
    Date:                    
    28/05/2014
    Time:                    
    05:48:10
    User:                    
    N/A
    Computer:         
    CQ329TOS
    Description:
    Volume Shadow Copy Service error: Error calling a routine on the Shadow Copy Provider {b5946137-7b9f-4925-af80-51abd60b20d5}. Routine details Cannot ask provider {b5946137-7b9f-4925-af80-51abd60b20d5} if
    volume is supported. [0x8000ffff] [hr = 0x8000ffff].

    Resolution:
    After getting this error we check Shadow Copy provider and writer health and fond it is fine.
    To get shadow copy providers details use below command.
    Command: vssadmin list providers
    Command output
    C:\>vssadmin list providers
    vssadmin 1.1 - Volume Shadow Copy Service administrative command-line tool
    (C) Copyright 2001 Microsoft Corp.
    Provider name: 'Microsoft Software Shadow Copy provider 1.0'
       Provider type: System
       Provider Id: {b5946137-7b9f-4925-af80-51abd60b20d5}
       Version: 1.0.0.7
    To get shadow copy writers health
    Command: vssadmin list writers
    Command Output.
    C:\>vssadmin list writers
    vssadmin 1.1 - Volume Shadow Copy Service administrative command-line tool
    (C) Copyright 2001 Microsoft Corp.
    Writer name: 'System Writer'
       Writer Id: {e8132975-6f93-4464-a53e-1050253ae220}
       Writer Instance Id: {333e02cd-d9ec-43c8-9b45-39691ad1b351}
       State: [1] Stable
       Last error: No error
    Writer name: 'Registry Writer'
       Writer Id: {afbab4a2-367d-4d15-a586-71dbb18f8485}
       Writer Instance Id: {800877a5-e13d-47a3-8f99-ebd4d3b3fd12}
       State: [1] Stable
       Last error: No error
    Writer name: 'MSDEWriter'
       Writer Id: {f8544ac1-0611-4fa5-b04b-f7ee00b03277}
       Writer Instance Id: {63400aa0-a17f-4121-9483-1cd226f03238}
       State: [1] Stable
       Last error: No error
    Writer name: 'COM+ REGDB Writer'
       Writer Id: {542da469-d3e1-473c-9f4f-7847f01fc64f}
       Writer Instance Id: {e13cb72b-84fa-4c86-86d8-48f523aafc9a}
       State: [1] Stable
       Last error: No error
    Writer name: 'Event Log Writer'
       Writer Id: {eee8c692-67ed-4250-8d86-390603070d00}
       Writer Instance Id: {ce63b3a0-e038-4e56-9d07-929f256639de}
       State: [1] Stable
       Last error: No error
    Writer name: 'WMI Writer'
       Writer Id: {a6ad56c2-b509-4e6c-bb19-49d8f43532f0}
       Writer Instance Id: {008e8714-ed6d-4288-81ce-4b0b1ec41294}
       State: [1] Stable
       Last error: No error
    Writer name: 'BITS Writer'
       Writer Id: {4969d978-be47-48b0-b100-f328f07ac1e0}
       Writer Instance Id: {e22a8953-a52c-4a76-bec0-8773122cbff8}
       State: [1] Stable
       Last error: No error
    Next I check Shadow Copies details from volume properties (right click on C or other drive then select properties then click on Shadow Copies Tab) and found it is showing the same error code..
    From this error it is clear that the issue is inside the registry hive and due to junk hive shadow copies services not able to working properly.
    For me the server have two disk we check disk signature at MBR and found the disk signature was.
    Signature disk 0 : 9351912b
    Signature disk 0 : FDFBE035
    But at registry we found lot of nonexistance signature. Which indicate lot of junk valu inside registry.
    Now how can we resolve this issue?
    It is very simple just delete the registry key “volume” (registry key “HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\STORAGE\Volume”) and reboot the server it will “Volume” registry hive automatically.
    Note:
     When you remove registry key it is showing error unable to delete, then please right click on it select permission then take ownership and assign full permission to your login account.
    Please be careful when you delete registry key because system can fully crashed if you delete or modify wrong registry key.
    Your can take a backup of the registry key by exporting.

  • Hello I bought a G-Raid GR4 4000 4 TB and used it for a backup with my new Imac27. Now this is all I get. "Time Machine couldn't complete the backup to "G-RAID". to complete backup. An error occurred while creating the backup folder.

    Hello I bought a G-Raid GR4 4000 4 TB and used it for a backup with my new Imac27. Now this is all I get. "Time Machine couldn’t complete the backup to “G-RAID”. to complete backup. An error occurred while creating the backup folder."
    Any idea what I should do?

    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the word "Starting" (without the quotes) in the String Matching text field. You should now see log messages with the words "Starting * backup," where * represents any of the words "automatic," "manual," or "standard." Note the timestamp of the last such message. Clear the text field and scroll back in the log to that time. Select the messages timestamped from then until the end of the backup, or the end of the log if that's not clear. Copy them (command-C) to the Clipboard. Paste (command-V) into a reply to this message.
    If all you see are messages that contain the word "Starting," you didn't clear the search box.
    If there are runs of repeated messages, post only one example of each. Don't post many repetitions of the same message.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Some personal information, such as the names of your files, may be included — anonymize before posting.

  • "Could not create the view" error

    Hey everyone,
    I'm new to Flash Builder and have been following a tutorial video to learn the basics. Today, when I tried to access my project, this error appeared in the Package Explorer:
    Could not create the view: Plug-in "com.adobe.flexbuilder.as.editor" was unable to instantiate class "com.adobe.flexbuilder.as.editor.ui.packageexplorer.FlexPackageExplorer".
    I also can't seem to create a new Flex project. If I try to, I can never click Finish. The button just remains faded out.
    Below are the details on the package explorer error.
    Any help would be much appreciated.
    Thanks.
    java.lang.NoClassDefFoundError: com/adobe/flexbuilder/codemodel/common/CMFactory
        at com.adobe.flexbuilder.as.editor.ui.packageexplorer.FlexPackageExplorer.<init>(FlexPackage Explorer.java:263)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
        at java.lang.reflect.Constructor.newInstance(Unknown Source)
        at java.lang.Class.newInstance0(Unknown Source)
        at java.lang.Class.newInstance(Unknown Source)
        at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI.createExecutableExtension(Re gistryStrategyOSGI.java:170)
        at org.eclipse.core.internal.registry.ExtensionRegistry.createExecutableExtension(ExtensionR egistry.java:874)
        at org.eclipse.core.internal.registry.ConfigurationElement.createExecutableExtension(Configu rationElement.java:243)
        at org.eclipse.core.internal.registry.ConfigurationElementHandle.createExecutableExtension(C onfigurationElementHandle.java:51)
        at org.eclipse.ui.internal.WorkbenchPlugin$1.run(WorkbenchPlugin.java:267)
        at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
        at org.eclipse.ui.internal.WorkbenchPlugin.createExtension(WorkbenchPlugin.java:263)
        at org.eclipse.ui.internal.registry.ViewDescriptor.createView(ViewDescriptor.java:63)
        at org.eclipse.ui.internal.ViewReference.createPartHelper(ViewReference.java:324)
        at org.eclipse.ui.internal.ViewReference.createPart(ViewReference.java:226)
        at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:595)
        at org.eclipse.ui.internal.WorkbenchPage$ActivationList.setActive(WorkbenchPage.java:4212)
        at org.eclipse.ui.internal.WorkbenchPage$18.runWithException(WorkbenchPage.java:3271)
        at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)
        at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
        at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)
        at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3855)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3476)
        at org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803)
        at org.eclipse.ui.internal.Workbench$28.runWithException(Workbench.java:1384)
        at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)
        at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
        at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)
        at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3855)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3476)
        at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2316)
        at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2221)
        at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500)
        at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
        at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493)
        at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
        at com.adobe.flexbuilder.standalone.FlexBuilderApplication.start(FlexBuilderApplication.java :109)
        at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:368)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:559)
        at org.eclipse.equinox.launcher.Main.basicRun(Main.java:514)
        at org.eclipse.equinox.launcher.Main.run(Main.java:1311)
    Caused by: org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter$TerminatingClassNotFoundExce ption: An error occurred while automatically activating bundle com.adobe.flexbuilder.codemodel (16).
        at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:125)
        at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :449)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:211)
        at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:381)
        at org.eclipse.osgi.internal.loader.SingleSourcePackage.loadClass(SingleSourcePackage.java:3 3)
        at org.eclipse.osgi.internal.loader.MultiSourcePackage.loadClass(MultiSourcePackage.java:31)
        at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:454)
        at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:410)
        at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:398)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:105)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClassInternal(Unknown Source)
        ... 51 more
    Caused by: org.osgi.framework.BundleException: Exception in com.adobe.flexbuilder.codemodel.internal.bridge.CMBridge.start() of bundle com.adobe.flexbuilder.codemodel.
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:806)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:7 55)
        at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:352)
        at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:280)
        at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:408)
        at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
        ... 62 more
    Caused by: java.nio.channels.OverlappingFileLockException
        at sun.nio.ch.FileChannelImpl$SharedFileLockTable.checkList(Unknown Source)
        at sun.nio.ch.FileChannelImpl$SharedFileLockTable.add(Unknown Source)
        at sun.nio.ch.FileChannelImpl.tryLock(Unknown Source)
        at java.nio.channels.FileChannel.tryLock(Unknown Source)
        at org.apache.lucene.store.NativeFSLock.obtain(NativeFSLockFactory.java:246)
        at org.apache.lucene.store.NativeFSLockFactory.acquireTestLock(NativeFSLockFactory.java:79)
        at org.apache.lucene.store.NativeFSLockFactory.setLockDir(NativeFSLockFactory.java:139)
        at org.apache.lucene.store.NativeFSLockFactory.<init>(NativeFSLockFactory.java:117)
        at com.adobe.flexbuilder.codemodel.internal.common.AbstractTextDatabase.start(AbstractTextDa tabase.java:111)
        at com.adobe.flexbuilder.codemodel.internal.search.ASSearchDataProvider.<init>(ASSearchDataP rovider.java:43)
        at com.adobe.flexbuilder.codemodel.internal.search.ASProviderFactory.createDataProvider(ASPr oviderFactory.java:47)
        at com.adobe.flexbuilder.codemodel.internal.search.SearchIndexManager.addISearchDataProvider dFactory(SearchIndexManager.java:70)
        at com.adobe.flexbuilder.codemodel.internal.CMCoreActivator.activate(CMCoreActivator.java:19 9)
        at com.adobe.flexbuilder.codemodel.internal.bridge.CMBridge.start(CMBridge.java:77)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1.run(BundleContextImpl.java:7 83)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:774)
        ... 67 more

    I'm having this issue since ever with FB 4.7 (the normal IDE version, not the command-line one).
    The most consistent way I found to resolve it is to delete the output folders of all flex projects, then restart and perform a clean build.
    My suspect is that the incremental compilation is flawed, but cannot be sure of it.
    P.S. usually the initial error has this root exception
    Root exception:
    java.lang.NullPointerException
      at com.adobe.flexbuilder.codemodel.internal.bridge.WorkspaceSpecification.getStateLocation(W orkspaceSpecification.java:157)
      at com.adobe.flexbuilder.codemodel.internal.bridge.WorkspaceSpecification.getFileInStateLoca tion(WorkspaceSpecification.java:149)
      at com.adobe.flexbuilder.codemodel.internal.search.AbstractTextDatabase.start(AbstractTextDa tabase.java:81)
      at com.adobe.flexbuilder.codemodel.internal.search.ASSearchDataProvider.<init>(ASSearchDataP rovider.java:25)
      at com.adobe.flexbuilder.codemodel.internal.search.SearchIndexManager.initialize(SearchIndex Manager.java:155)
      at com.adobe.flexbuilder.codemodel.CMCoreActivator.activate(CMCoreActivator.java:189)
      at com.adobe.flexbuilder.codemodel.CMCoreActivator.start(CMCoreActivator.java:76)

  • While creating the project contract, contract line tab is grayed out

    Hi Friends
    We are implementing Oracle contracts and while creating the contract, contract line tab is grayed out. I can not inset the contract lines in it. Can you please help.
    Regards
    Dharam

    I have generated the secure view again and issue got resolved.

  • Problem while creating help view.

    hi experts,
    i'm creating a help view.
    my base table is mara.
    i've to link it up with mast table.
    while creating help view, when i see its relationship with mast table its under the section  ("Relationships with unsuitable cardinality").
    when i click on it and then click on copy.
    it doesnot get copied.
    what is the reason and how should i go about it.
    plz help.

    hi
    good
    go through this link ,which ll give you detail idea about the help view
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ed13446011d189700000e8322d00/content.htm
    thanks
    mrutyun^

Maybe you are looking for

  • BI Infoset

    Hi All, How to enable fields in the infoset. I have dso and cube in an infoset, In the DSO there are certain infobjects with char more than 25 which are disabled for selection. I want these fields to be included in my Infoset. How to make it enable.

  • Uploading docs from iPad to MacBook Pro via iCloud

    Why are my Pages documents not syncing with iCloud, and what do I do about it? I have iCloud turned On, Documents and Data turned On to store on iCloud, I have 24.3 GB storage available, and I have Use iCloud turned On in Pages. What else do I have t

  • Blank pages every other page

    I have a photosmart 7280 and it spits out blank sheets between every other printed sheet. My daughter has the same printer and it is doing the same thing. Driving us crazy !! Does anyone have a solution?

  • How to make single full scan

    Hi, ALL I have this query like below and I see that it produced 3 <TABLE ACCESS FULL> for each Unioin, how to make it work with single Scan? It's simple table 2 colums, not indexes or PK, just for sample. explain plan for select count(*) from tt wher

  • I just opened a new account for my daughter with a different email than mine, but all of my music library is now showing in her music library as well. please help

    Hi, I just created a new account for my six year old daughter. The problem is that my entire music library is now in her music library as well. Please help