BP Relationship and Org is not matching

Hi Gurus,
I have a issue where in BP relationship for a user a different org is appearing than in org. structure.
USER A---- Org A (in BP)
USER A----- Org B(In org Structure)
I have tried reparing in users-gen but no use.
Can any one help.
IS

Hi,
I do not know which acenario you're talking about (BP integration on ERP, CRM SRM?), but in general the following procedure will work for all scenarios:
if you encounter an inconsistency between the org. assignment in organizational management and the relatedbusiness partner relationship (and only one relationship exist) you may reassign the employee (or assigned position) to the org. unit which the business partner (BP) shown in table BUT050 is related to (you have to use the same period as shown in BUT050) and save.
Afterwards you reassign to the former org. unit again and save again.
Precondition is to be on a recent support package level of component SAP_ABA; available corrections are linked to note 550055 and 934372.
Regards,
Michael

Similar Messages

  • ORA-19007: Schema and element do not match

    I've registered a schema with my DB provided in the Oracle 9i XML DataBase Developer's Guide. I've created a table that has one field of type XMLType and is associated with the registered schema. Now I am trying to insert an xml string - also directly from the Oracle's developer's guide site and am getting 'ORA-19007: Schema and element do not match'.
    These are the steps I took:
    1.begin dbms_xmlschema.registerSchema( 'http://www.oracle.com/po.xsd', getClobDocument ('po.xsd','XSDDIR'), TRUE, TRUE, FALSE, FALSE); end;
    2.create table po_tab(id number,po sys.XMLType ) xmltype column po XMLSCHEMA "http://www.oracle.com/po.xsd"element "PurchaseOrder";
    3.INSERT INTO PurchaseOrder VALUES (xmltype.createxml('<PurchaseOrder xmlns="http://www.oracle.com/po.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.oracle.com/po.xsd"><PONum>1001</PONum><Company>Oracle Corp</Company><Item><Part>9i Doc Set</Part><Price>2550</Price></Item></PurchaseOrder>'));
    this is the po.xsd used:
    <schema targetNamespace="http://www.oracle.com/PO.xsd"
    xmlns:po="http://www.oracle.com/PO.xsd"
    xmlns="http://www.w3.org/2001/XMLSchema">
    <complexType name="PurchaseOrderType">
    <sequence>
    <element name="PONum" type="decimal"/>
    <element name="Company">
    <simpleType>
    <restriction base="string">
    <maxLength value="100"/>
    </restriction>
    </simpleType>
    </element>
    <element name="Item" maxOccurs="1000">
    <complexType>
    <sequence>
    <element name="Part">
    <simpleType>
    <restriction base="string">
    <maxLength value="1000"/>
    </restriction>
    </simpleType>
    </element>
    <element name="Price" type="float"/>
    </sequence>
    </complexType>
    </element>
    </sequence>
    </complexType>
    <element name="PurchaseOrder" type="po:PurchaseOrderType"/>
    </schema>
    thanks in advance

    Minor correction to the previous message, sorry: I've registered a schema with my DB provided in the
    Oracle 9i XML DataBase Developer's Guide. I've
    created a table that has one field of type XMLType
    and is associated with the registered schema. Now I
    am trying to insert an xml string - also directly
    from the Oracle's developer's guide site and am
    getting 'ORA-19007: Schema and element do not
    match'.
    These are the steps I took:
    1.begin dbms_xmlschema.registerSchema(
    'http://www.oracle.com/po.xsd', getClobDocument
    ('po.xsd','XSDDIR'), TRUE, TRUE, FALSE, FALSE); end;
    2.create table po_tab(id number,po sys.XMLType )
    xmltype column po XMLSCHEMA
    "http://www.oracle.com/po.xsd"element
    "PurchaseOrder";
    3.INSERT INTO PurchaseOrder VALUES
    (xmltype.createxml(1,'<PurchaseOrder
    xmlns="http://www.oracle.com/po.xsd"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.oracle.com/po.xsd"><PON
    m>1001</PONum><Company>Oracle
    Corp</Company><Item><Part>9i Doc
    Set</Part><Price>2550</Price></Item></PurchaseOrder>')
    this is the po.xsd used:
    <schema
    targetNamespace="http://www.oracle.com/PO.xsd"
    xmlns:po="http://www.oracle.com/PO.xsd"
    xmlns="http://www.w3.org/2001/XMLSchema">
    <complexType name="PurchaseOrderType">
    <sequence>
    <element name="PONum" type="decimal"/>
    <element name="Company">
    <simpleType>
    <restriction base="string">
    <maxLength value="100"/>
    </restriction>
    </simpleType>
    </element>
    <element name="Item" maxOccurs="1000">
    <complexType>
    <sequence>
    <element name="Part">
    <simpleType>
    <restriction base="string">
    <maxLength value="1000"/>
    </restriction>
    </simpleType>
    </element>
    <element name="Price" type="float"/>
    </sequence>
    </complexType>
    </element>
    </sequence>
    </complexType>
    <element name="PurchaseOrder"
    type="po:PurchaseOrderType"/>
    </schema>
    thanks in advance

  • 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>

  • How can i fix a clip when the video and audio are not matching up?

    How can i fix a clip when the video and audio are not matching up? I imported the video from a junkdrive in a .VOB format and concerted to a .mov the videos were filmed on a miniDVD recorder.

    I would try detaching the audio and the dragging the audio to the left or right until it lines up.

  • I would like to add to the Safari toolbar on my ipad 5 IOS 6  machine. I have searched the web and find some instructions to do this but the words and pictures do not match what I can see. I am beginning to think this is not a capabilty of the ipad 5

    I would like to add to the Safari toolbar on my ipad 5 IOS 6  machine. I have searched the web and find some instructions to do this but the words and pictures do not match what I can see. I am beginning to think this is not a capabilty of the ipad 5 but perhaps for a Mac computer running Safari. Does anyone know if it is possible to add tools to the toolbar on the latest version of iPad OS & Safari Browser? If so please tell me how. Thanks

    You cannot customize the Safari toolbar on the iPad.
    What you can do on the iPad is go to Settings>Safari>Always show Bookmarks Bar>On and that will add a bookmarks bar on to the Safari browser.

  • IMovie will not import or play the clips at the proper speed and the audio and video do not match up.

    i have a samsung hd camcorder. it records at 40 fps, but iMovie will not play the clips at the proper speed and the audio and video do not match up. I have tried to record at standard quality to no avail. Help. thanks in advance.

    samsung sc-hmx10c     ntsc
    im guessing that is the speed it records at due to the fact imovie puts a blue 40 at the top left corner of every clip i import.

  • Storage Breakdown On iTunes and iPhone Do Not Match Up

    I will preface this question by providing the following information:
    Computer Information
    Model: MacBook Pro, mid 2009, 15 inch
    Capacity: 1 TB
    OS: Yosemite (10.10.1)
    iTunes Version: 12.0.1.26
    iPhone Information
    Model: iPhone 6 Plus, purchased early 1/2015
    Capacity: 128 GB
    OS: iOS 8.1.2
    Okay here's the problem. I was attempting to sync my iPhone 6 Plus with my iTunes library. I have about 50 GB of music which I normally carry around on my iPhone, which amounts to about half of my total storage. On my latest sync, I was told in iTunes that I do not have enough space to complete the sync. Here's what the display looked like:
    As you can see:
    > The total capacity for audio is displayed as being 49.67 GB (aprox. 6889 songs).
    > The total capacity for photos is displayed as being 6.89 GB (aprox. 10,647 photos).
    > The total capacity for apps is displayed as being 5.04 GB (aprox. 110 apps).
    > The total capacity for other is displayed as being a whopping 45.08 GB.
    Upon seeing this, I'm shocked that the other category is taking up so much space. I immediately go to my iPhone to begin trying to eliminate things that could possibly be taking up all this space. When I take a look at my iPhone usage, I see this:
    As you can see, the photos and apps are approximately correct, but the songs are way off. In addition, the free space I have on my iPhone according to iTunes is 6.12 GB. According to my iPhone though, I have 47.1 GB (see the screenshot of my iPhone above).
    Essentially the storage breakdown on my iPhone and iTunes does not match up. I'm not sure how to fix this problem without restoring the phone, which I want to avoid doing if I don't have to.
    Has anyone else had this problem? If so, is anyone aware of a possible solution?
    Thanks.

    If it was an iOS bug I would expect to see it on the 3 devices I have upgraded to iOS 8. I don't see it on any. I would also expect there to be thousands of posts and views about it, as somewhere over 100 million users have updated. This is the only thread I have seen, and you are the only one posting about it.
    Go to Settings/iCloud. Turn off Find my iPhone. Then go to Settings/general/reset - Erase all content and settings. Check your "Other". I would expect it to be minimal.

  • 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

  • Username and password do not match

    I can no longer authenticate.  I get "Username and password do not match".
    Is there a file I can edit to reset the username and password?
    Thanks in advance,
    Mike Britton

    We should take a look at the log files to see what's really going on but if you haven't done anything with the installation yet then "reinstalling" is very easy.
    In the directory where you launched the jar file, you should find a directory named "crx-quickstart". Simply rename this directory to "crx-quickstart.old" and restart the jar file. Your new environment will be ready in a couple of minutes.  Keep the old directory and look into the [your directory]\crx-quickstart\logs directory for details on your original problem.

  • 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.

  • HT1551 sound and picture do not match

    Certain movies on Netflix, when played, the sound and picture do not match.  It looks like a voice over.  You see lips move to the wrong voice. 

    various. I have some of my dvds that i converted plus numerous others bought off itunes store. the problem seems fairly reccurrrent over all videos?

  • 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

  • Burned iMovie .mov to DVD and it caused movie to skip/have weird transitions between scenes and sound to not match with picture. What can I do to help fix this when reburning?

    Burned iMovie .mov to DVD and it caused movie to skip/have weird transitions between scenes and sound to not match with picture. What can I do to help fix this when reburning?
    Movie details
    QuickTime Movie
    Size: 17.95 GB
    Duration 17:39
    2 audio channels
    Codecs- Linear PCM, Apple ProRes 422, Timecode
    Thanks!!

    You can't use iMovie to create a video DVD - for that you need iDVD:
    Why is there no iDVD on my new Mac? How do I get it and how do I install it?
    https://discussions.apple.com/docs/DOC-3673
    To burn a DVD with iDVD from the latest version of iMovie, you have to export the movie using the Export button and select 480p as the size. Open iDVD and start a new project, then drag that exported movie file into the iDVD menu window, avoiding any drop zones you see.

Maybe you are looking for

  • Line Art in PSE (7)

    My projects typically involve doing pencil sketches on paper and then scanning them in. I used to be able to use special line art tools that would allow me to create special lines and curve them with each line segment as I worked around digitally ink

  • Using UTL_HTTP

    Hi ... I am using oracle 9i release 2 .... I want to use UTL_HTTP package to POST the Data .... Can Anyone Plz give me the hint of how to use it ..... I am also worried abt testing the above problem ... Is there anything on Internet to Test the Posti

  • PAL or NTSC on iMovie10 ?

    Mac recent Mini/Yosemite/iMove10 How to choose between PAL and NTSC it was easy with iMovie909 ..new project,theme ,PA Lor NTSC but with iMovie 10 ?? Thanks

  • Field setting when collective conversion from planned order to PR

    Dear expert: Is there any way(except ABAP enhancement) to add the field "tracking number" in MD15 when I conduct collective conversion from planned order to PR. Seems in standard config this field in not included in this screen. I have set this field

  • Best PDA/SmartPhone for Macs (iSync)?

    I love BlackBerrys and have had quite a few. Right now I'm on the BB 8800, but recently I have been trying to sync simple--though lengthy, around 1500-3000--word documents (not attatchments, just copy and paste) using both the Stickies app (which onl