Database Diff - Identical package bodies are reported as different

SQLDeveloper - Version 3.2.10.09
Package bodies (DDL) on both source and destination database are identical but package body on the source database is marked as "invalid" and package body on destination database is marked as "valid" - then Database Diff reports that package bodies different. (but on panel showing DDL for both compared package bodies there is visible no difference).
After compiling package body on the source database (no changes in DDL) and when status of that package body changed to "valid" - now Database Diff correctly shows no difference.
Is that intentional behavior or bug?

>
According to the CM team, in the previous (pre-MDAPI) incarnation of CM, status was not compared, and got complaints about that.
>
Point taken. Though it seems these days whichever path you take you will get complaints. ;)
>
It would be possible to provide the option whether to compare status of objects that have status (PL/SQL objects, triggers, views, indexes) provided MDAPI reports the status, but it's a fairly hefty enhancement.
>
I take that to mean that the results do now, and will continue to, take status into account.
Perhaps my experience is using the functionality differently than what your team is working with.
I make heavy use of the DBMS_METADATA and DBMS_METADATA_DIFF packages. Much of that functionality operates on CLOBS containing data in either the raw XML or the SXML format.
So, to me, an XML in a CLOB has no status. So in comparing XML1 in CLOB1 to XML2 in CLOB2 the status that MIGHT have existed on the real object in the real database is irrelevant. I do comparisons between what is in version control and what is from some other source. That other source might have been, or might still be, an object in a database but status is meaningless since DDL in version control has no status. That is why, for my use cases, I wouldn't want to see a comparison fail due to a status issue.
Oracle® Database PL/SQL Packages and Types Reference
http://docs.oracle.com/cd/E14072_01/appdev.112/e10577/d_metadiff.htm
>
85 DBMS_METADATA_DIFF
The DBMS_METADATA_DIFF package contains the interfaces for comparing two metadata documents in SXML format. The result of the comparison is an SXML difference document. This document can be converted to other formats using the DBMS_METADATA submit interface and the CONVERT API.
>
That is the basis for the comments I was making; that METADATA doesn't necessarily represent an actual object in an actual database.
Thanks for the links; I will add my vote there.

Similar Messages

  • 3.1EA1: Database Diff Package Body

    I've had some problems when comparing package bodies.
    1. Sometimes two or more lines in package bodies are combined into one in the DDL and script tabs of the comparison pane in the difference report.
    2. Sometimes differences in package bodies are missed completely. When this happens, the package body text shown in both sides of the DDL tab of the comparison pane are from the same connection.
    Rodney

    Turns out the consequences of the first problem (merging lines) I mentioned can be severe. The problem occurs when a line ends with a single quotation mark as in the following contrived example.
    CREATE PACKAGE b AS END;
    CREATE PACKAGE BODY b AS
        v       --'
        INTEGER --'
        :=      --'
        1;      --'
    END;
    /The difference process produces the following:
    CREATE OR REPLACE PACKAGE BODY "B" AS
        v       --'    INTEGER --'    :=      --'    1;      --'END;/That ends up in the final script as well which means the script will fail upon execution.
    Rodney

  • Database Diff - One column and triggers won't fall off report

    I'm trying to use the database diff tool (which I LOVE, by the way), and I'm getting just a few odd results. I'm comparing two databases and can never seem to get to where the diff report is empty, even though everything is the same. No matter what I do, it lists one column in a table as different and lists ALL 13 triggers in the database as different. I have tried dropping the table and all triggers in question and having the diff scripts recreate them, but when I try a diff again, they keep showing up as different somehow.
    Also, the diff script is generating this as code to modify the column:
    alter table "USERS" modify ( "UPID" NVARCHAR2 );
    Which I don't think is valid syntax - I get "Missing left parentheses." I think it's because it doesn't like specifying the NVARCHAR2 type without a size. If I change that statement to NVARCHAR2(20), then the statement runs. However, as I said before, it still shows up in the diff report later on as if something is different, even though both databases are exactly the same.
    I'm using SQL Developer 2.1.1.64 on Windows XP Pro. Database is 10g.

    Does the ext directory have the php_oci8.dll? In the original steps the PHP dir is renamed. In the given php.in the extension_dir looks like it has been updated correctly. Since PHP distributes php_oci8.dll by default I reckon there would be a very good chance that the problem was somewhere else. Since this is an old thread I don't think we'll get much value from speculation.
    -- cj

  • When comparing database tables with lob columns via "Database diff" in different environments indexes are shown as different

    When using "Database diff" selecting other schemas only for compare own objects are shown too!Hi!
    For tables with lob columns (clob, blob, etc.) indexes with system names are automatically created per lob column.
    If I am on different database instances (eg. dev/test) these system names can differ and are shown as differences, but these is a false positive.
    Unfortunately there is now way to influence the index names.
    Any chance to fix this in sql developer?
    Best regards
    Torsten

    Only the Sql Dev team can respond to that question.
    Such indexes should ONLY be created by Oracle and should NOT be part of any DDL that you, the user, maintains outside the database since they will be created by Oracle when the table is created and will be named at that time.
    It is up to the Sql Dev team to decide whether to deal with that issue and how to deal with it.

  • Invoke oracle report 10g from database pl/sql package

    Hi
    Is there a way that i can invoke an oracle report 10g from the database pl/sql package? I am working on a requirement that needs to generate a report when one of the criteria is not met.
    Please suggest me on this.

    Thanks for the info.
    I have a scenario where i need to fetch members details like name , email address and so on from the mainframes on the oracle database. Then on the oracle database i need to check if they have a email address or not. If yes then i need to generate a notice and mail it to them. If they don't have an email address, i'll have to print that out in a some centralized location.
    By the way, the notice was developed using oracle reports 10g.
    Now i am developing a pl/sql package which will do the address validation but i didn't know how to call a oracle report to generate the notice in pl/sql procedure.
    As suggested i will try with dbms scheduler and see if that works for me.

  • Where are Javascript Handlers in PL/SLQ Package for Forms/Reports

    Where do i find javascript event handlers in pl/sql package for a report/form? I created some javascript code for onclick in my form button using portal form
    builder wizard. When i bring up the pl/sql code for that form, i can't find the javascript that added. Where can i find it? Also which package contains the following procedures used by forms:
    onINSERT
    onUPDATE
    onDELETE
    onQUERY
    The javascript i'm talking about is when i create a form using the forw wizard provided by Portal for DB providers. I would like access to the javascript code
    from the pl/sql side of the form, b/c there are some pl/sql variables p_arg_names, p_arg_values, p_session that i need to use w/ the javascript for the event handles for button clicks on the buttons on my forms. where can I access the javascript of this form? I can the pl/sql of most of the form, namely, the package of the form. but i do not see anywhere in the package the
    javascript that i add in the wizard for the onclick event.

    That's what i want to know too.
    You know what their response was to me? they fwd'd my tar to their internal dev group. been waiting for a week now for a response from them. will keep you posted..

  • 3.1 EA1: Database Diff

    I'm using the 3.1 EA1 of SQL Developer and when I'm trying to run the Database diff I ran into the following questions:
    1. When using the database diff, is there a way to ignore differences in comment, from a procedure/function/package?
    2. The database diff detects a difference when using special character like é ï etc inside the pl/sql code. Do I have to change something to the environment, like character settings or something? The database are identical and when browsing the procedure/function/package in both the databases I see no difference. Both database contain the special characters inside the procedure/function/package.

    There are no NLS differences between the two databases, they have both the same settings.
    NLS_CHARACTERSET     WE8ISO8859P9
    NLS_COMP      BINARY
    NLS_LENGTH_SEMANTICS     BYTE
    NLS_NCHAR_CHARACTERSET     AL16UTF16
    I ran the same report(National Language Support Parameters) for both databases and they have the same values.
    I created a procedure called test_special_characters with some special characters inside comments:
    CREATE OR REPLACE PROCEDURE TEST_SPECIAL_CHARACTERS AS
    BEGIN
    -- this is a test of éëîï
    NULL;
    END TEST_SPECIAL_CHARACTERS;
    In the Diff report I see the following:
    From the first database:
    CREATE OR REPLACE PROCEDURE "MARKS"."TEST_SPECIAL_CHARACTERS" AS
    BEGIN
    -- this is a test of éëîï
    NULL;
    END TEST_SPECIAL_CHARACTERS;/
    And form the second database
    CREATE OR REPLACE PROCEDURE "MARKS"."TEST_SPECIAL_CHARACTERS" AS
    BEGIN
    -- this is a test of éëîï
    NULL;
    END TEST_SPECIAL_CHARACTERS;/
    When checking the procedures inside the connection navigator both show:
    create or replace
    PROCEDURE TEST_SPECIAL_CHARACTERS AS
    BEGIN
    -- this is a test of éëîï
    NULL;
    END TEST_SPECIAL_CHARACTERS;
    Regards,
    Mark

  • Database Diff script creates redundant indexes and fails

    In Version 4.1.0.18, I create a table such that the primary key constraint and unique index have the same name:
        CREATE TABLE "MY_TABLE"
         ( "CORP_ID" CHAR(2 BYTE),
           "COMPANY_ID" NUMBER(5,0),
           CONSTRAINT "PK_MY_TABLE" PRIMARY KEY ("CORP_ID", "COMPANY_ID") ENABLE
    The DDL export of this table yields a different approach but the same end results:
        CREATE TABLE "MY_TABLE"
         ( "CORP_ID" CHAR(2 BYTE),
           "COMPANY_ID" NUMBER(5,0)
        CREATE UNIQUE INDEX "PK_MY_TABLE" ON "MY_TABLE" ("CORP_ID", "COMPANY_ID");
        ALTER TABLE "MY_TABLE" ADD CONSTRAINT "PK_MY_TABLE" PRIMARY KEY ("CORP_ID", "COMPANY_ID") ENABLE;
    Perfectly fine - no issue there.
    But if I do a complete Database Diff (all object types) and the target database is missing the table, the resulting script uses a combined approach:
        CREATE TABLE "MY_TABLE"
         ( "CORP_ID" CHAR(2) NOT NULL ENABLE,
           "GL_ACCOUNT" VARCHAR2(16),
           CONSTRAINT "PK_MY_TABLE" PRIMARY KEY ("CORP_ID","COMPANY_ID") ENABLE
       CREATE UNIQUE INDEX ."PK_MY_TABLE" ON "MY_TABLE" ("CORP_ID","COMPANY_ID");
    In this script, the CREATE TABLE will correctly create both the constraint and index.  Therefore the CREATE INDEX fails because the index already exists.

    In this script, the CREATE TABLE will correctly create both the constraint and index.  Therefore the CREATE INDEX fails because the index already exists.
    Can't help you beyond saying that is a bug since the DIFF should NOT do both of those.
    Someone from the sql dev team will need to tell you if the bug is in sql dev or the package sql dev is using to do the diff.
    Can you open the log window and review the SQL being generated/executed by sql dev?
    Sql Dev is likely using the DBMS_METADATA_DIFF package to generate the diff:
    http://docs.oracle.com/cd/E11882_01/appdev.112/e40758/d_metadiff.htm
    If they are using it correctly but you get that error then it is an Oracle DB bug that needs to be filed.
    If sql dev is using the package incorrectly then sql dev has a bug and the team can address that.
    Sorry I can't help you more.

  • SQL Dev  3.0.04 Database Diff on Tables ignores Enabled/Disabled flag. Bug?

    Hello everyone,
    it seems like SQLDeveloper Ver. 3.0.0.4 Tools -> Database Diff ignores ENABLED/DISABLED flag when comparing tables. Namely, two tables (in two schemas) were reported identical although a foreign key constraint was enabled in one schema and disabled in the other schema.
    Am I missing something or is this indeed a bug?
    Many thanks,
    Bob

    Hello everyone,
    it seems like SQLDeveloper Ver. 3.0.0.4 Tools -> Database Diff ignores ENABLED/DISABLED flag when comparing tables. Namely, two tables (in two schemas) were reported identical although a foreign key constraint was enabled in one schema and disabled in the other schema.
    Am I missing something or is this indeed a bug?
    Many thanks,
    Bob

  • Sql developer database diff - generate script not working

    Using SQL devleloper 2.1. Database diff generate script gives errors making it completely non-usable
    ORA-31600: invalid input value 0 for parameter SEGMENT_ATTRIBUTES in function SET_TRANSFORM_PARAM
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 105
    ORA-06512: at "SYS.DBMS_METADATA_INT", line 8150
    ORA-06512: at "SYS.DBMS_METADATA_INT", line 9270
    ORA-06512: at "SYS.DBMS_METADATA", line 4757
    ORA-06512: at line 1
    and
    Illegal Lock State: executeOracleQuery requires connection lock to be held. oracle.dbtools.raptor.diff.oracle.table.DiffTableRefConstraints.setup(DiffTableRefConstraints.java:215) called oracle.dbtools.db.DBUtil.executeQuery(DBUtil.java:681) without it
    I do get the differences visually (yes, I am bugged that constraints are not smart enough to compare on content of the constraint....problem when the contstraint names are sys-nnnnnn generated). Just cannot create the script.
    Any ideas to solve this issue? Thanks in advance, Kelly

    Can reproduce same issue in 11gR1.. DIFF works fine in 10gR2.
    I noticed that 10gR2 allows something like:
    DBMS_METADATA.SET_TRANSFORM_PARAM(th,'SEGMENT_ATTRIBUTES',0);
    and 11GR2 returns error similar to error SQLNAVIGATOR returns while running diff:
    DBMS_METADATA.SET_TRANSFORM_PARAM(th,'SEGMENT_ATTRIBUTES',0);
    end;
    Error report:
    ORA-31600: invalid input value 0 for parameter SEGMENT_ATTRIBUTES in function SET_TRANSFORM_PARAM
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 105
    ORA-06512: at "SYS.DBMS_METADATA_INT", line 8424
    ORA-06512: at "SYS.DBMS_METADATA_INT", line 9484
    ORA-06512: at "SYS.DBMS_METADATA", line 3950
    Its safe to assume that this is SQLDEVELOPER bug. Hope it will be addressed sometime.
    Edited by: user5420304 on Jun 15, 2010 10:29 AM

  • Database Diff Wizard Tool problem

    Using Oracle SQL Developer 1.5.1 Build 5440.
    Third Party Extension jtds-1.1.2.jar
    I'm trying to determine if the Database Diff Wizard Tool contains functionality to allow/support diff compares between objects found in an Oracle Db instance and objects found in a MSSQL 2005 Db instance? I've established successful connections to each of the Db instances and can open/browse each one via the Connections browser. If compares between Oracle and MSSQL Db objects (vs. Oracle-to-Oracle only) are supported I must not have something configured correctly. Upon opening the Diff Wizard, (Tools --> Database Diff) and clicking on either the Source Connection or Destination Connection drop-downs only my Oracle Db connected instances are listed for selection. Could someone with experience using the Diff Wizard Tool offer assistance? (Provided SQL Developer supports this function).
    Thanks!

    Folks,
    I'm trying to compare two tables using Oracle SQL Developer, but I'm not being successful. :-(
    The tables are the same, but they are placed in two differente environments: development and production.
    Every time we need to make changes, we do it firstly at development environment. And I need to know which differences don't exist yet in production environment.
    Everytime I try to compare tables, I always receive a diff report with just one difference, like below:
    Type | Owner | Name | Change | Diff Count
    Table SINFA Artesao CREATE 1
    And in the the details window, there's the DDL of the table (source connection).
    Does someone have any idea of what's the problem?
    Thanks,
    Auler.

  • Unable to recompile invalid package bodies

    Hello,
    Recently, I cloned the EBS installation, and there were a lot of invalid objects. I used the script to recompile them, and they went fine except for some package bodies, that can't be recompiled neither manually via sqlplus, nor sqldeveloper. Tried also via adadmin, there is no way to be recompiled.
    There are 39 packages owned by apps schema as follows:
    SQL> select object_name, object_type, owner, status
    2 from dba_objects where status='INVALID';
    OBJECT_NAME                                                                           OBJECT_TYPE     OWNER               STATUS
    FII_AP_INV_ON_HOLD_F_C                                                                      PACKAGE BODY     APPS               INVALID
    FII_AP_HOLD_DATA_F_C                                                                      PACKAGE BODY     APPS               INVALID
    FII_AP_INV_PAYMTS_F_C                                                                      PACKAGE BODY     APPS               INVALID
    FII_AP_INV_LINES_F_C                                                                      PACKAGE BODY     APPS               INVALID
    FII_AP_SCH_PAYMTS_F_C                                                                      PACKAGE BODY     APPS               INVALID
    FII_AR_TRX_DIST_F_C                                                                      PACKAGE BODY     APPS               INVALID
    FII_PA_COST_F_C                                                                       PACKAGE BODY     APPS               INVALID
    FII_PA_REVENUE_F_C                                                                      PACKAGE BODY     APPS               INVALID
    FII_PA_UOM_CONV_F_C                                                                      PACKAGE BODY     APPS               INVALID
    FII_PA_BUDGET_F_C                                                                      PACKAGE BODY     APPS               INVALID
    EDW_HR_ASG_CHNG_M_C                                                                      PACKAGE BODY     APPS               INVALID
    OBJECT_NAME                                                                           OBJECT_TYPE     OWNER               STATUS
    EDW_HR_AGE_BAND_M_C                                                                      PACKAGE BODY     APPS               INVALID
    EDW_HR_ASSGNMNT_M_C                                                                      PACKAGE BODY     APPS               INVALID
    EDW_HR_GRADE_M_C                                                                      PACKAGE BODY     APPS               INVALID
    EDW_HR_JOBS_M_C                                                                       PACKAGE BODY     APPS               INVALID
    EDW_HR_SERVICE_M_C                                                                      PACKAGE BODY     APPS               INVALID
    EDW_HR_MVMNT_TYP_M_C                                                                      PACKAGE BODY     APPS               INVALID
    EDW_HR_PERSON_M_C                                                                      PACKAGE BODY     APPS               INVALID
    EDW_HR_POSITION_M_C                                                                      PACKAGE BODY     APPS               INVALID
    EDW_HR_REC_ACT_M_C                                                                      PACKAGE BODY     APPS               INVALID
    EDW_ORGANIZATION_M_C                                                                      PACKAGE BODY     APPS               INVALID
    EDW_HR_PRSN_TYP_M_C                                                                      PACKAGE BODY     APPS               INVALID
    OBJECT_NAME                                                                           OBJECT_TYPE     OWNER               STATUS
    EDW_HR_RQN_VCNCY_M_C                                                                      PACKAGE BODY     APPS               INVALID
    EDW_HR_REASON_M_C                                                                      PACKAGE BODY     APPS               INVALID
    HR_EDW_WRK_CMPSTN_F_C                                                                      PACKAGE BODY     APPS               INVALID
    ISC_EDW_BOOK_SUM1_F_C                                                                      PACKAGE BODY     APPS               INVALID
    EDW_MTL_INVENTORY_LOC_M_C                                                                 PACKAGE BODY     APPS               INVALID
    OPI_EDW_COGS_F_C                                                                      PACKAGE BODY     APPS               INVALID
    OPI_EDW_OPM_JOB_RSRC_F_C                                                                 PACKAGE BODY     APPS               INVALID
    OPI_EDW_OPM_JOB_DETAIL_F_C                                                                 PACKAGE BODY     APPS               INVALID
    OPI_EDW_OPMCOGS_F_C                                                                      PACKAGE BODY     APPS               INVALID
    OPI_EDW_OPMINV_DAILY_STAT_F_C                                                                 PACKAGE BODY     APPS               INVALID
    EDW_OPI_OPRN_M_C                                                                      PACKAGE BODY     APPS               INVALID
    OBJECT_NAME                                                                           OBJECT_TYPE     OWNER               STATUS
    EDW_OPI_ACTV_M_C                                                                      PACKAGE BODY     APPS               INVALID
    EDW_OPI_LOT_M_C                                                                       PACKAGE BODY     APPS               INVALID
    EDW_OPI_PRDL_M_C                                                                      PACKAGE BODY     APPS               INVALID
    OPI_EDW_UOM_CONV_F_C                                                                      PACKAGE BODY     APPS               INVALID
    EDW_POA_SPLRITEM_M_C                                                                      PACKAGE BODY     APPS               INVALID
    EDW_POA_LN_TYPE_M_C                                                                      PACKAGE BODY     APPS               INVALID
    39 rows selected.
    The compilation errors are all the same.
    SQL> select name, text from user_errors;
    and it gives me this:
    EDW_HR_ASG_CHNG_M_C
    PL/SQL: SQL Statement ignored
    EDW_HR_AGE_BAND_M_C
    PL/SQL: ORA-02083: database name has illegal character '-'
    EDW_HR_AGE_BAND_M_C
    PL/SQL: SQL Statement ignored
    The same errors I get when I try to recompile them in sqldeveloper.
    Please, any Idea how can I solve this?
    I would be grateful If you help me with this one.
    Thanks

    Hi,
    I was also facing similar problem when I applied packages from the code line to local DB.
    You can try to first compile first the package specification and then compile the package body again.
    If still you get the error : PL/SQL: SQL Statement ignored, this means that the package specification and the package body are not in sync (either one of them is an older version). In that case you need to check from the version control of these.
    Regards,
    Rahul

  • Corrupted PLSQL package bodies

    On creating a Link the package wwv_builder is called. The package I have although valid has a corrupted body (I've included an extract below)
    I was going to re-build the package from the plb in the ...\admin\plsql\wwv directory but I noticed that this file is corrupt as well(along with many other .plb, all the headers are OK)
    Can anyone tell me how to re-create the plsql for the package bodies and will I loose anything that I've already done?
    Thanks in advance
    Extract from wwv__builder.plb
    /* @Copyright (c) 2000, Oracle Corporation. All rights reserved. */
    create or replace package body wwv_builder wrapped
    0
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    abcd
    1
    b
    8106000
    1
    4
    0
    2f0
    2 :e:
    1PACKAGE:
    1BODY:
    1WWV_BUILDER:
    1SPACE:
    1VARCHAR2:
    11:
    1 :
    1L_LONG_COUNT:
    1NUMBER:
    1LONGPREFIX:
    15:
    1p_al:
    1L_MC_COUNT:
    1MCPREFIX:
    1p_mc:
    1L_CB_COUNT:
    10:
    1CBPREFIX:
    1p_cb:
    1G_SHOW_NULL:
    1BOOLEAN:
    1G_DISPLAY:
    132767:
    1G_VALUE:
    1G_PARSE_AS:
    1255:
    end of extract

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Mike Thompson ([email protected]):
    BY the way I installed the HLW demo last night!<HR></BLOCKQUOTE>
    But does it work? I just installed it as well, but if I try to go into any of the components like a form or report, it complains about missing tables. Very frustrating.
    null

  • BIG PROBLEM: sqldeveloper package error "not reported"

    I am editing oracle database packages. Syntax error are reported, but for example I forget to declare a cursor ... but I am using it ... no error is reported (compiled with warning - but warning still exists in other place of code)
    But calling it ... the database says that the object has errors! If I refresh I see the
    package is in error ... but no error line are displayed :-(
    This behaviour still exist in more version, I have today downloaded the latest version and the problem still exist!
    Please fix this as soon as possible!

    Does the suggestion provided in this thread (compile with many warnings causes compiler dont show errors correctly reduce the number of warnings displayed and then display your error?

  • Live office database errors in Citrix - underlying WebI reports work fine

    Hi,
    We have a live office report with 30 tabs in the excel file i.e. 30 webi report parts in it. It accesses 20 webi reports, each built on a BEX query.
    Please see below the error which users get while running the report in Citrix environment. The underlying WebI report has no database errors, and we were able to run the Live Office reports at the same time on LAN. The Citirx users get these database/auth errors intermittently, on different tabs of the report at different times - the underlying BO reports are error free and users have proper rights to execute them.
    "An error occured while opening the report. The report does not exist; youhave insufficient rights to open the report; or you cannot make a connection to the BusinessObjects Web Service. (LO 02010)
    Failed to get the document information (LO 26315)
    A database error occured. The database error text is: ...."
    Please help.
    Thanks,
    Soumya

    Hi,
    BO Version is BO XI 3.1 SP2 FP2.1
    Datasource - BEX queries BW Relese 701, support pack level 8
    We have made users login to Infoview and checked that they are able to execute the WebI reports. Also, earlier they were able to run all reports, so there is no access problem.
    These errors started occuring when we had to refersh BO Universes after some of the BEX queries changed. We even asked users to stop using the excel files on which they used to get errors, thinking the files may be corrupt. Then we sent them new files which we had successfully refershed at our end. But still they get these errors in their environment.
    Please advise.
    Thanks,
    Soumya

Maybe you are looking for

  • Error while provisioning from OIM to MS Exchange

    Hi All, I am trying to provision a user from OIM to MS Exchanger server 2007. For that i used MSFT_Exchange _91110 connector. I also deployed the AD connector(MSFT_AD_Base_91100) before deploying this Exchange connector. I can provision a user from O

  • Extraction of Open Activities from CRM (CRM t-code S_AE2_89000019)

    Hi Experts, we are to extract data from CRM, in detail the data is about open activities. However it is not pretty clear to me if there does exist SAP content for this requirement (DataSource, InfoSource, DSO, InfoCube etc). The t-code we can use to

  • Not able to change the price of PO

    Hi All, I am not able to edit the price on PO. Materail is free text catalog orders from SRM, I am not able to change the price. Could you please help me in changing the price. Is there any other steps i need to do to change the price. Thanks

  • A very strange /r/n problem in mysql

    Dear friends, I have a jsp form with textarea field which people can add article. Before I change mysql to big5 charset, everything works fine. However, after I change it to big5, and when I execute an insert operation The /r/n which should save as 1

  • Calling PL/SQL Functions And Open Oracle Reports From ADF Application

    Hi all, My company will convert some projects from Oracle forms to Oracle ADF so, we need to call the PL/SQL functions and open the Oracle Reports (which are already exist) from ADF Application. Thank You.. Jack.N