Error Plant in reference document and plant do not match

Hi,
I have a problem where in the a shopping created and been approved but the backend communication error shows " 06730 Plant in reference document and plant do not match". The user has used the plant before without having any problem. Please let me know if any root causes.
Thank you,
Manyam

Hello Manyam,
R/3 is raising this message because you are trying to create a PO or PR with a plant that does not match the item reference document.
Reference document can be for example a R/3 contract or a R/3 source list.
It is not possible to change the plant when creating a purchase order with regard to a contract.
Are you using R/3 contract reference in SRM shopping cart ? (maybe coming from catalog item ?)
Did you checked the SOS tab in SRM SC item, to see if the system assigned automatically a SOS (this is the case if only one R/3 SOS is found) ? But in this case, the plant is used as a filter so you could not have SOS from wrong plant.
Rgds
Christophe

Similar Messages

  • Error: cannot read: C:\Documents; and Settings\JR\Desktop\logrand.java

    Thats the problem.
    Bug started happening all the sudden.
    Double click a java file on the desktop that just two second before was built fine. Go to build it and it says that.
    "error: cannot read: C:\Documents; and Settings\JR\Desktop\logrand.java"
    Now note this is a file in the IDE.
    copy/paste/change file name/brand new file/turn off the computer. Everything on the desktop path says that same error message. Then i noted the semicolon in the middle of the path after documents. The compilier has misspelled the path name. Its open the file in the IDE but somehow the build step gets a path with a semicolon in the middle.
    What do i do?

    dont bother.
    it felt like some sort of corruption so i just reinstalled netbeans and that did the trick.
    I was still using 3.5 any way =)

  • I am getting a 42404 error message when opening itunes and itunes will not let me connect my iphone to it trying to get me to restore. I need help?

    I am getting a 42404 error message when opening itunes and itunes will not let me connect my iphone to it trying to get me to restore. I need help? I am not that technically inclined and really simple terms  are appreciated.

    Try downloading the songs from a different device. If you are doing it from your iOS device, try form your computer.

  • Received this error message when starting iTunes and reinstalling does not resolve it:  The registry settings used by iTunes drivers for importing and burning CDs and DVDs is missing.

    Received this error message when starting iTunes and reinstalling does not resolve it:  The registry settings used by iTunes drivers for importing and burning CDs and DVDs is missing...
    Can I uninstall existing iTunes without losing my media library?  and then install fresh to fix this problem?

    Hi there kweitkamp,
    You may find the troubleshooting steps in the article below helpful.
    iTunes for Windows: "Registry settings" warning when opening iTunes
    http://support.apple.com/kb/TS3299
    -Griff W. 

  • I am working with Acrobat XI and when I try to add text to geopdf file I get a popup screen that says this is a secured document and editing is not permitted. How do I fix this?

    I am working with Acrobat XI and when I try to add text to a geopdf file I get a popup screen that says this is a secured document and editing is not permitted. How do I fix this?

    I figured it out...needed to use comment tool set, not the editing tool set.

  • Blank error message with ? appears and PDF does not open in Browser (IE11) when clicking link to open pdf. PC - IE11 Acrobat 9.0

    Blank error message with ? appears and PDF does not open in Browser (IE11) when clicking link to open pdf. PC - IE11 Acrobat 9.0
    Cannot access in browser PDF files unless blank box is closed and then website address is clicked on again in browser address bar and page reloaded.
    Uninstalled Acrobat 9, reinstalled, still same problem.
    Help please!

    Yes I can it only happens in the browser..
    I reinstalled Windows on my machine and started over a couple of weeks ago.
    When my desktop started up I didn’t have Acrobat installed and clicked on a pdf file and the open with xxx dialogue box came open.
    I chose a different program as Acrobat wasn’t installed yet so it associated pdf files with another program.
    Later Installed Acrobat and couldn’t associate the pdf file with acrobat so I went into Folder Options and manually associated PDF files with Acrobat.
    Ever since then I get the error when something is downloaded and opened in the browser.
    Works fine everywhere else and when I cancel the blank error, highlight the web address and press enter to reload it works 90% of the time.
    Not sure what to do..

  • Where are the bullets for adobe. im creating a document and they are not in the toolbar

    where are the bullets for adobe. im creating a document and they are not in the toolbar

    ADOBE PRO   I JUST GOT IT A FEW MONTHS AGO

  • I have an error in Verify disk permission and i can not fix it

    I have an error in Verify disk permission and i can not fix it ,is there any solutions ?

    I have 38 GB (other) in my storage ,I have 120 GB storage and this other part bothers me,is there any suggestions please ?

  • Still ORA-19007: Schema and element do not match Error

    Hi all,
    I'm new to XML and dealing with lots of information but I'm stuck with this error ORA-19007: Schema and element do not match. Read some forums and tried some possibitlities but none has solved this issue. I think this is related with some malformed headers definitions but I'm not sure, so any help will be much appreciated.
    Here's what I've done so far:
    This is the xml file - emp.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <!--Sample XML file generated by XMLSpy v2006 rel. 3 sp2 (http://www.altova.com)-->
    <employees xmlns:xdb="http://xmlns.oracle.com/xdb" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/xdb/emp.xsd">
         <employee team="Team Test">
              <id>1</id>
              <name>Nelson Branco</name>
              <comment>No Comments</comment>
         </employee>
    </employees>
    ...and this is the XSD file: emp.xsd:
    <?xml version="1.0" encoding="ISO-8859-15"?>
    <!-- edited with XMLSpy v2006 rel. 3 sp2 (http://www.altova.com) by Nelson Branco (Oracle Corp) -->
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb" elementFormDefault="qualified" xdb:storeVarrayAsTable="true">
         <xs:element name="comment" type="xs:string"/>
         <xs:element name="id" type="xs:string"/>
         <xs:element name="name" type="xs:string"/>
         <xs:complexType name="employeeType">
              <xs:sequence>
                   <xs:element ref="id"/>
                   <xs:element ref="name"/>
                   <xs:element ref="comment" minOccurs="0"/>
              </xs:sequence>
              <xs:attribute name="team" type="xs:string" use="optional"/>
         </xs:complexType>
         <xs:element name="employee" type="employeeType"/>
         <xs:element name="employees" xdb:defaultTable="EMPLOYEES">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="employee" maxOccurs="unbounded"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
    </xs:schema>
    1) Created folders
    declare
    ignore boolean;
    begin
    ignore := dbms_xdb.createFolder('/public/Emp');
    ignore := dbms_xdb.createFolder('/public/Emp/xsd');
    ignore := dbms_xdb.createFolder('/public/Emp/xml');
    commit ;
    end;
    2) Copied emp.xsd to /public/Emp/xsd in Win Explorer (via WebDAV connection)
    3) Registered the schema
    begin
    dbms_xmlschema.registerURI(schemaURL => 'http://xmlns.oracle.com/xdb/emp.xsd'
    ,schemaDocURI => '/public/Emp/xsd/emp.xsd'
    ,genTables => true
    commit ;
    end ;
    4) Copied the xml file to /public/Emp/xml. At this point I was expecting that the xml file was automatically uploaded to corresponding tables based on is content but it didn't happen. I didn't got any error also. When I issue:
    Select count(*) from employees
    ...or
    select y."name", y."team" from employees x, table(x.xmldata."employee") y
    ...got 0 rows returned
    5) So then created the table:
    create table emp_tab(
    id number,
    emp sys.XMLType
    xmltype column emp
    XMLSCHEMA "http://xmlns.oracle.com/xdb/emp.xsd"
    element "employee";
    6) And tried to insert one record based on the emp.xml:
    insert into emp_tab values (1,
    xmltype('<?xml version="1.0" encoding="UTF-8"?>
    <!--Sample XML file generated by XMLSpy v2006 rel. 3 sp2 (http://www.altova.com)-->
    <employees xmlns:xdb="http://xmlns.oracle.com/xdb" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/xdb/emp.xsd">
         <employee team="Team Test">
              <id>1</id>
              <name>Nelson Branco</name>
              <comment>No Comments</comment>
         </employee>
    </employees>'));
    ...and that when I get ORA-19007: Schema and element do not match.
    Any help on this will be appreciated. Thx.

    SQL> set echo on
    SQL> spool testcase.log
    SQL> --
    SQL> connect sys/ as sysdba
    Enter password:
    Connected.
    SQL> set define on
    SQL> --
    SQL> define USERNAME = OTNTEST
    SQL> --
    SQL> def PASSWORD = OTNTEST
    SQL> --
    SQL> def USER_TABLESPACE = USERS
    SQL> --
    SQL> def TEMP_TABLESPACE = TEMP
    SQL> --
    SQL> drop user &USERNAME cascade
      2  /
    old   1: drop user &USERNAME cascade
    new   1: drop user OTNTEST cascade
    User dropped.
    SQL> grant connect, resource to &USERNAME identified by &PASSWORD
      2  /
    old   1: grant connect, resource to &USERNAME identified by &PASSWORD
    new   1: grant connect, resource to OTNTEST identified by OTNTEST
    Grant succeeded.
    SQL> grant create any directory, drop any directory to &USERNAME
      2  /
    old   1: grant create any directory, drop any directory to &USERNAME
    new   1: grant create any directory, drop any directory to OTNTEST
    Grant succeeded.
    SQL> grant alter session, create view to &USERNAME
      2  /
    old   1: grant alter session, create view to &USERNAME
    new   1: grant alter session, create view to OTNTEST
    Grant succeeded.
    SQL> alter user &USERNAME default tablespace &USER_TABLESPACE temporary tablespace &TEMP_TABLESPACE
      2  /
    old   1: alter user &USERNAME default tablespace &USER_TABLESPACE temporary tablespace &TEMP_TABLESPACE
    new   1: alter user OTNTEST default tablespace USERS temporary tablespace TEMP
    User altered.
    SQL> connect &USERNAME/&PASSWORD
    Connected.
    SQL> --
    SQL> alter session set events ='19027 trace name context forever, level 0x800'
      2  /
    Session altered.
    SQL> var schemaURL varchar2(256)
    SQL> var schemaPath varchar2(256)
    SQL> --
    SQL> begin
      2    :schemaURL := 'http://xmlns.oracle.com/xdb/emp.xsd';
      3    :schemaPath := '/public/testcase.xsd';
      4  end;
      5  /
    PL/SQL procedure successfully completed.
    SQL> create or replace directory XMLDIR as 'c:\xdb\otn'
      2  /
    Directory created.
    SQL> declare
      2    res boolean;
      3    xmlSchema xmlType := xmlType(
      4  '<?xml version="1.0" encoding="ISO-8859-15"?>
      5  <!-- edited with XMLSpy v2006 rel. 3 sp2 (http://www.altova.com) by Nelson Branco (Oracle Corp) -->
      6  <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb" elementFormDefault="qualified" xdb:store
    VarrayAsTable="true">
      7  <xs:element name="comment" type="xs:string"/>
      8  <xs:element name="id" type="xs:string"/>
      9  <xs:element name="name" type="xs:string"/>
    10  <xs:complexType name="employeeType">
    11  <xs:sequence>
    12  <xs:element ref="id"/>
    13  <xs:element ref="name"/>
    14  <xs:element ref="comment" minOccurs="0"/>
    15  </xs:sequence>
    16  <xs:attribute name="team" type="xs:string" use="optional"/>
    17  </xs:complexType>
    18  <xs:element name="employee" type="employeeType"/>
    19  <xs:element name="employees" xdb:defaultTable="EMPLOYEES">
    20  <xs:complexType>
    21  <xs:sequence>
    22  <xs:element ref="employee" maxOccurs="unbounded"/>
    23  </xs:sequence>
    24  </xs:complexType>
    25  </xs:element>
    26  </xs:schema>');
    27  begin
    28    if (dbms_xdb.existsResource(:schemaPath)) then
    29      dbms_xdb.deleteResource(:schemaPath);
    30    end if;
    31    res := dbms_xdb.createResource(:schemaPath,xmlSchema);
    32  end;
    33  /
    PL/SQL procedure successfully completed.
    SQL> begin
      2    dbms_xmlschema.registerSchema
      3    (
      4      :schemaURL,
      5      xdbURIType(:schemaPath).getClob(),
      6      TRUE,TRUE,FALSE,TRUE
      7    );
      8  end;
      9  /
    PL/SQL procedure successfully completed.
    SQL> var xmltext varchar2(4000)
    SQL> --
    SQL> begin
      2    :xmltext :=
      3  '<?xml version="1.0" encoding="UTF-8"?>
      4  <!--Sample XML file generated by XMLSpy v2006 rel. 3 sp2 (http://www.altova.com)-->
      5  <employees xmlns:xdb="http://xmlns.oracle.com/xdb" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation=
    "http://xmlns.oracle.com/xdb/emp.xsd">
      6  <employee team="Team Test">
      7  <id>1</id>
      8  <name>Nelson Branco</name>
      9  <comment>No Comments</comment>
    10  </employee>
    11  </employees>';
    12  end;
    13  /
    PL/SQL procedure successfully completed.
    SQL> insert into EMPLOYEES values ( xmltype(:xmltext));
    1 row created.
    SQL> /
    1 row created.
    SQL> create table emp_tab
      2  (
      3     id number,
      4     emp sys.XMLType
      5  )
      6  xmltype column emp
      7  XMLSCHEMA "http://xmlns.oracle.com/xdb/emp.xsd"
      8  element "employee"
      9  /
    Table created.
    SQL> insert into EMP_TAB values ( 1, xmltype(:xmltext))
      2  /
    insert into EMP_TAB values ( 1, xmltype(:xmltext))
    ERROR at line 1:
    ORA-19040: Element employees does not match expected employee.
    SQL> drop table emp_tab
      2  /
    Table dropped.
    SQL> create table emp_tab
      2  (
      3     id number,
      4     emp sys.XMLType
      5  )
      6  xmltype column emp
      7  XMLSCHEMA "http://xmlns.oracle.com/xdb/emp.xsd"
      8  element "employees"
      9  /
    Table created.
    SQL> insert into EMP_TAB values ( 1, xmltype(:xmltext))
      2  /
    1 row created.
    SQL>

  • ClickOnce: Reference in the manifest does not match the identity of the downloaded assembly Office.dll

    I have WPF application, which has the excel component reference. I have the deployment issue when i user Office 2007 installed on my server and try to access the application i get Reference in the manifest does not match the identity of the downloaded assembly Office.dll , but when office 2003 is installed there is no issue deplying.
    Below is the detail of the issue.
    PLATFORM VERSION INFO
        Windows             : 5.1.2600.131072 (Win32NT)
        Common Language Runtime     : 2.0.50727.3082
        System.Deployment.dll         : 2.0.50727.3053 (netfxsp.050727-3000)
        mscorwks.dll             : 2.0.50727.3082 (QFE.050727-3000)
        dfshim.dll             : 2.0.50727.3053 (netfxsp.050727-3000)
    SOURCES
        Deployment url            : http://<Server>/VFOLDER/pages.xbap
        Application url            : http://Server/VFOLDER/Application%20Files/pages_1_0_0_3/pages.exe.manifest
    IDENTITIES
        Deployment Identity        : pages.xbap, Version=1.0.0.3, Culture=neutral, PublicKeyToken=70c49c4ca21b317d, processorArchitecture=msil
        Application Identity        : pages.exe, Version=1.0.0.3, Culture=neutral, PublicKeyToken=70c49c4ca21b317d, processorArchitecture=msil, type=win32
    APPLICATION SUMMARY
        * Online only application.
        * Browser-hosted application.
    ERROR SUMMARY
        Below is a summary of the errors, details of these errors are listed later in the log.
        * An exception occurred while downloading the application. Following failure messages were detected:
            + Reference in the manifest does not match the identity of the downloaded assembly Office.dll.
    COMPONENT STORE TRANSACTION FAILURE SUMMARY
        No transaction error was detected.
    WARNINGS
        There were no warnings during this operation.
    OPERATION PROGRESS STATUS
        No phase information is available.
    ERROR DETAILS
        Following errors were detected during this operation.
        * [6/22/2009 5:43:31 PM] System.Deployment.Application.InvalidDeploymentException (RefDefValidation)
            - Reference in the manifest does not match the identity of the downloaded assembly Office.dll.
            - Source: System.Deployment
            - Stack trace:
                at System.Deployment.Application.DownloadManager.ProcessDownloadedFile(Object sender, DownloadEventArgs e)
                at System.Deployment.Application.FileDownloader.DownloadModifiedEventHandler.Invoke(Object sender, DownloadEventArgs e)
                at System.Deployment.Application.FileDownloader.OnModified()
                at System.Deployment.Application.SystemNetDownloader.DownloadSingleFile(DownloadQueueItem next)
                at System.Deployment.Application.SystemNetDownloader.DownloadAllFiles()
                at System.Deployment.Application.FileDownloader.Download(SubscriptionState subState)
                at System.Deployment.Application.DownloadManager.DownloadDependencies(SubscriptionState subState, AssemblyManifest deployManifest, AssemblyManifest appManifest, Uri sourceUriBase, String targetDirectory, String group, IDownloadNotification notification, DownloadOptions options)
                at System.Deployment.Application.DeploymentManager.SynchronizeCore(Boolean blocking)
                at System.Deployment.Application.DeploymentManager.SynchronizeAsyncWorker()
    COMPONENT STORE TRANSACTION DETAILS
        No transaction information is available.
    Any one has faced the problem... any help will be very grateful.
    Thanks in Advance.
    Sunil

    Thanks for the reply Robin, here is some of the observation, hope you can provide some solution from your end.
    1. When Publish my build, in the Manifest file dependentAssembly has two reference to Office.dll one with version 11.0.0.0 and another with version 7.0.3300.0.
    2. In the pages_1_0_0_4 Published folder has one office.dll with version 11.0.5530.0
    3. In the root folder of the virtual directory has one office.dll with version 7.0.9466.0
    Can you please give your thoughts, what exactly wrong with the deployment, i feel its a assembly mismatch.  where in the application files i have set the required assembly. please provide your useful solution.
    Thanks in Advance.
    Sunil

  • Accounts and entities do not match in application ownership

    Hi all,
    I'm working on NW 7.5 SP07 (upgrading in SP09 isn't an option at the moment) and when running Consolidation i am getting the error "Accounts and entities do not match in application ownership".
    I am very familiar with Consolidation and created consol appsets numerous times, so I am confident I have set up the dimensions correctly (with all the right properties), appset and app web parameters all look ok, business rules are good, ownership and rate data is all in correct place...but no matter what i do i still get this error.
    FX, carry-forward and calc accounts all work ok, so it is simply something wrong with the ownership app or with how finance is talking to it.
    There was only 1 thread I could find where others had this issue - many people had the same problem and there was never a clear solution to it ..... [Accounts and entities do not match data in application OWNERSHIP; 
    Any ideas besides upgrading to SP09?
    Tom.

    Hi Tom
    Thank you for answer. I found some missing data in my ownership cube and now  'Accounts and entities do not match in application ownership' gone but new error appears after validate script in se38 'GETWA_NOT_ASSIGNED'. Have you ever had this kind of error?
    SAP sent me some tasks list but it seems to me that I have all settings they sent in that document.
    I have a couple of questions and will be very appreciate if you can answer me.
    Are additional members in O_Acct  necessary? If I use only METHOD PCON PGROUP POWN in my input schedules.
    METHOD_SYS
    PCON_SYS
    PCTRL
    PCTRL_SYS
    POWN_SYS
    POWND
    POWND_SYS
    Are you using those above for your consolidation process?
    Are you using dynamic hierarchy editor or input schedules to maintain your ownership data?
    Regards!
    Justyna

  • RUN LOGIC:Accounts and entities do not match data in application Ownership (BPC10.0 NW)

    Hello Experts,
    During execution of the legal consolidation package we get the following error: "Accounts and entities do not match data in application OWNERSHIP"
    We have entered the ownership and transaction data.
    Could you, please, help us to solve the problem?
    Thanks.

    Hi
    The Ownership has accounts like Percentage consolidation etc. Please check if you have selected the correct ones, marked as use in consolidation process and loaded Ownership data aganst those .
    Regards
    Surabhi

  • Sound and picture did not match?

    After recording the presentation it was OK and I could show it. But the fourth time I would show the presentation the sound and animation did not match the pictures? t.i. Keynote did not move to next picture (e.g. I was in picture No. 3 and it shoud move to next picture 4 but it doesn't -  and the voice to the next picture No. 4 started continued in picture 3)
    Why does this happened? Is Keynote not reliable?

    If sound files and images are placed on the slide and timed using Inspector  > Builds they will maintain the timing.
    I have suggested to do that instead of using the recording feature built in to Keynote which has proven to be unreliable with large numbers of slides and  longer voice overs.
    Switching to using builds will eliminate these errors.

  • Accounts and entities do not match data in application OWNERSHIP

    Dear experts,
    During execution of the legal consolidation package we get the following error:
    "Accounts and entities do not match data in application OWNERSHIP"
    We have entered the ownership and transaction data.
    Could you, please, help us to solve the problem?
    Thanks.
    Mila

    This problem occurs when your Legal application is not in synch with your Ownership.
    See below what you have to do to fix this problem.
    I am considering you are using BPC for NETWEAVER.
    If you are using BPC for Windows, then you gonna have to check some other properties too. ok?
    Here we go.
    LEGAL APPLICATION parameters must be setup in web, as follows:
    ORG_ACCOUNTLIST = METHOD,PCON,POWN
    ORG_ACCOUNTOWN = PGROUP
    ORG_INTCO = I_NONE
    ORG_OWNERSHIPCUBE = OWNERSHIP (or the name of your ownership InfoCube)
    ORG_PARENTPROPERTY = PARENT_GROUP
    OWNERSHIP_APP = OWNERSHIP (or the name of your ownership application)
    USELIM = 1 (if you gonna use US elimination)
    VALIDATIONS = 1 (if you gonna use "online" validations entered in Netweaver)
    OWNERSHIP APPLICATION parameters must be setup in web, as follows:
    ORG_ACCOUNTLIST = METHOD,PCON,POWN
    ORG_ACCOUNTOWN = PGROUP
    ORG_INTCO = I_NONE
    ORG_OWNERSHIPCUBE = OWNERSHIP (or the name of your ownership InfoCube)
    ORG_PARENTPROPERTY = PARENT_GROUP
    OWNERSHIP_APP = OWNERSHIP (or the name of your ownership application)
    After setup web parameters, go to BPC console and check the following dimensions:
    (I am mentioning just the ones you need to setup for the consolidation)
    C_ACCT
    This is your account, and if you are using SAP ECC it should be equal to 0050 accounts of your GL (for example)
    In this dimension, you must check the following properties:
    ID - NEVER, I repeat NEVER, use lower case letters since BPC is case sensitive.
         ALWAYS USE UPPER CASE, FOR EXAMPLE, MY ACCOUNT ID'S ARE:   VLD_PL_INV,   VLD_PR_INV and so on.....
         This is valid for all dimensions or any other ID you gonna create in BPC.
    RATETYPE - must setup and must be the ones you gonna use in your RATE application
    DIMLIST2 - must use to GROUP your accounts for eliminations or any other automatic adjustment
    C_CATEGORY
    This is your consolidation categories used to link data you gonna load to your Legal InfoCube.
    You must have C_100 for example, for your Actual Version.
    You can use the ones that comes with APSHELL C_CATEGORY. It is fine.
    C_DATASRC
    This is just to TRACK your entries.
    Create as many data sources you need and you gonna use.
    You can use the ones that comes with APSHELL C_DATASRC. It is fine.
    ATTENTION for the following properties:
    DATASRC_TYPE - I for input (all the entries, transaction data from txt or ECC) and A for automatic adjustments
    IS_CONSOL - Y means that ALL entries in the Legal infocube must be considered for consolidation
    IS_CONVERTED - Y means that ALL entries in the Legal infocube must be converted to the GROUP for consolidation
    DATASRC_STAGE = Y (allways Y)
    ENTITY
    ID and PARENTH1 must be entered and must reflect your company hierarchy.
    INTCO - inform the associated Inter Company.
    CURRENCY - You must inform the currency of the company otherwise IT IS NOT GONNA WORK.
               This currency ID must be setup IN ALL the currency dimensions.
    In this entity you must enter:
    1-All the companies
    2-ALL TECHNICAL COMPANIES for the consolidation to work
    3-ALL TECHNICAL COMPANIES for VALIDATIONS (if you gonna do you validations thru script logic to
    have better control of accounts and values).
    ATTENTION:
    JUST FOR THE TECHNICAL COMPANIES FOR CONSOLIDATION YOU MUST INFORM  Y   TO THE ELIM PROPERTY.
    Leave it blank for all the other companies.
    FLOW - you can use the one that comes with APSHELL
    GROUPS
    If your version of BPC is 7.0 than this dimension has two objectives.
    First Objective - store all the currencies.
    All you company data must be loaded with LC currency i.e. in the Legal InfoCube, you gonna see LC in the GROUPS column.
    This is you Local Currency, so NEVER delete it.
    These currencies must have the following properties setup:
    REPORTING - Y for any other currency you insert, X for LC currency, X for Transction Currency.
    CURRENCY_TYPE - R for reporting, L just for LC currency, T for the transaction Currency
    Leave all the other properties blank!!!!
    Edited by: JADIRM on Nov 7, 2010 3:23 AM

  • "Accounts and entities do not match data in application OWNERSHIP failed"

    Hi experts,
    We are executing the IC Elimination package and we get next error:
    "Accounts and entities do not match data in application OWNERSHIP failed"
    We have entered the ownershipdata, post the correcta data, executed the currency conversion but the status package is error and gives the reported message.
    Did it happen to anybody? How can we solve the problem?
    Regards.

    Hi Dani, thanks a lot for your reply.
    I am running BPC 7.0.0.8 SP8
    I've turnned ELIM property of ENTITY to blank as you suggested.
    Now I get another error:
    DATA FOR CATEGORY C_100 NOT FOUND IN APPLICATION LEGAL.
    Looking into the LEGAL cube I have data for C_100....
    Do you have any idea?
    Thanks a lot again...
    Jadir

Maybe you are looking for

  • Oracle Application Server 10g (10.1.3.5.0) - Clustering Exception

    Hi, I installed OAS 10g (10.1.3.5.0) on Red Hat Enterprise Linux 5.5 and I am trying to do one cluster with session replication options. I created the cluster, but when I try to replicate user session (with database option), it throws next exception

  • Customer Service....Can you hear me at all???

    I have been with Verizon for years now, and have never had a single complaint until this past year. And the complaint I have is in a major way. I have always experienced kind and helpful associates when I have had an issue, since I upgraded my plan,

  • Syncing fails: unknown error (-50)

    Using iTunes v.9.0.2 music syncs properly to my iPod touch with 3.1.2, but photos and films will not sync. Backup completes but then the sync stops with the warning: "The iPod cannot be synced. An unknown error occured (-50)". Any suggestions. The on

  • Cant accept a pin invite?

    Hi, I just tried to invite my mom to be one of my bbm contacts, however when she got the message and opened it, she cant click on the "accept" or "decline" button, they become highlighted but when she actually clicks down the trackball nothing happen

  • HT204382 Cant open video file

    I received a video file through email with the code      .mov     and I can"t open it.