Consolidation BP error

Dear ALL,
the below mention problem  i am facing, when is make payment in AP invoice
The consolidating BP behind one or more of the selected invoices is differenct from the current consolidating BP,
pls give me a premenent solution for this
regards
S Arunprasad

Dear,
When the system message 'The consolidating BP behind one or more of the selected transactions is different from the current consolidating BP [Message 3524-83]' is displayed, it implies that one of the documents chosen in the incoming payment is not connected to the parent BP.
That is to say, one of the JE from the selected documents has the child BP code. Another JE from the selected documents has the parent BP code.
In the case that a credit note/invoice was added before the BP was consolidated to a parent, then it will not be possible to offset/pay these documents using the child BP code in the Incoming Payment. Once the BP is consolidated, its payments will always be made to its parent BP.
Details please refer to note [1339843.|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=0001339843&languE=]
We are sorry to say that according to current system definition, it no not possible to post the payment by the chile BP with current consolidation BP.
You have to release consolidating BP temporaly in order to add outgoing payment.
Wish the information above is helpful for you.
Best Regards
Apple

Similar Messages

  • Consolidating Library Error: File Name Too Long, But What File?

    I am trying to consolidate my library to put all my music (very unorganized) in one spot so I can back it all up. When I try to consolidate, it takes a second to prepare, then immediately brings up an error window saying "Copying Music Failed. The file name was invalid or too long."
    How do I fix this? I really would like to back up my music!

    Hi, ZeroGravity107.
    This can be a tricky problem to figure out since iTunes doesn't specify what file name is "invalid or too long" and there's no documentation on what determines if a file name is "invalid or too long".
    We had one user report that he was able to use his/her keen eyesight to note the last file that appeared before the error message appeared and it turned out that file was the cause of his/her trouble.
    If your eyesight isn't that keen, I'd suggest concentrating on the file name being too long possibility.
    The entire directory path leading to the file is considered part of the file name so, as an example, iTunes' default settings might place a particular file at C:\Documents and Settings\ user name \My Documents\My Music\iTunes\iTunes Music\artist folder\album folder\whatever.m4a.
    Is the directory path leading to your consolidated location much longer than that?
    polydorus has suggested a way to look over your file names: Assuming your music is currently in the default location, make your way there with Windows Explorer and select List in the View menu menu and see if anything stands out as being unusual.

  • Consolidator class error in java code...

    Hi, I have difficult time for testing create publication programically.
    Test step is
    1. create MOBILEADMIN.EMP2 based by SCOTT.EMP
    2. Create Primary Key to MOBILEADMIN.EMP2
    3. Write Test Code
    My test code is....as follows..
    [Publication2.java]
    import java.util.*;
    import java.sql.*;
    import oracle.lite.sync.*;
    import oracle.mobile.admin.*;
    public class Publication2
    public static void main(String args[])
    Statement s = null;
    ConsolidatorManager mgr = null;
    Connection con = null;
    try {
    con =getConnection( "MOBILEADMIN", "ADMIN" );
    con.setAutoCommit(false);
    ResourceManager.openConnection( "MOBILEADMIN", "ADMIN" );
    mgr = new ConsolidatorManager();
    s = con.createStatement();
    } catch (Throwable e) {
    System.out.println("con.createStatement failed: " + e + "\n");
    System.exit(0);
    System.out.println( "####################### OpenConnection ######################" );
    try {
    mgr.OpenConnection( "MOBILEADMIN", "ADMIN" );
    } catch (Throwable e) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on OpenConnection xxxxxxxxxxxxxxxxxxxxxxx " );
    System.exit( 0 );
    System.out.println( "####################### DeinstantiateSubscription ######################" );
    try {
    mgr.DeinstantiateSubscription( "PUBLISH01", "OTN" );
    } catch (Throwable e) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on DropSubscription xxxxxxxxxxxxxxxxxxxxxxx " );
    //System.exit( 0 );
    System.out.println( "####################### DropSubscription ######################" );
    try {
    mgr.DropSubscription( "PUBLISH01", "OTN" );
    } catch (Throwable e) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on DropSubscription xxxxxxxxxxxxxxxxxxxxxxx " );
    //System.exit( 0 );
    System.out.println( "####################### DropPublication ######################" );
    try {
    mgr.DropPublication("PUBLISH01");
    } catch (Throwable e) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on DropPublication xxxxxxxxxxxxxxxxxxxxxxx " );
    //System.exit( 0 );
    System.out.println( "####################### DropPublicationItem ######################" );
    try {
    mgr.DropPublicationItem("PUBLISH01_ITEM01");
    } catch (Throwable e) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on DropPublicationItem xxxxxxxxxxxxxxxxxxxxxxx " );
    //System.exit( 0 );
    System.out.println( "####################### CreatePublication ######################" );
    try {
    //mgr.CreatePublication("PUBLISH01", Consolidator.OKPI_CREATOR_ID, "%s", null );
    mgr.CreatePublication( "PUBLISH01", Consolidator.OKAPI_WIN32, "%s", null );
    } catch( Throwable e ) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on CreatePublication xxxxxxxxxxxxxxxxxxxxxxx " );
    System.exit( 0 );
    System.out.println( "####################### CreatePublicationItem ######################" );
    try {
    mgr.CreatePublicationItem( "PUBLISH01_ITEM01", "MOBILEADMIN", "emp2", "F", "SELECT * FROM emp2", null, null );
    } catch( Throwable e ) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on CreatePublicationItem xxxxxxxxxxxxxxxxxxxxxxx " );
    System.exit( 0 );
    System.out.println( "####################### PrimaryKeyHint ######################" );
    try {
    mgr.PrimaryKeyHint( "PUBLISH01_ITEM01", "EMPNO", "MOBILEADMIN", "EMP2", "EMPNO" );
    } catch( Throwable e ) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on PrimaryKeyHint xxxxxxxxxxxxxxxxxxxxxxx " );
    System.exit( 0 );
    System.out.println( "####################### CreatePublicationItemIndex ######################" );
    try {
    mgr.CreatePublicationItemIndex("PK_PUBLISH01_ITEM01", "PUBLISH01_ITEM01", "P", "EMPNO");
    mgr.CreatePublicationItemIndex("ID_PUBLISH01_ITEM01", "PUBLISH01_ITEM01", "I", "ENAME");
    mgr.CreatePublicationItemIndex("ID_PUBLISH01_ITEM02", "PUBLISH01_ITEM01", "I", "JOB");
    mgr.CreatePublicationItemIndex("ID_PUBLISH01_ITEM03", "PUBLISH01_ITEM01", "I", "MGR");
    mgr.CreatePublicationItemIndex("ID_PUBLISH01_ITEM04", "PUBLISH01_ITEM01", "I", "HIREDATE");
    mgr.CreatePublicationItemIndex("ID_PUBLISH01_ITEM05", "PUBLISH01_ITEM01", "I", "SAL");
    mgr.CreatePublicationItemIndex("ID_PUBLISH01_ITEM06", "PUBLISH01_ITEM01", "I", "COMM");
    mgr.CreatePublicationItemIndex("ID_PUBLISH01_ITEM07", "PUBLISH01_ITEM01", "I", "DEPTNO");
    } catch( Throwable e ) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on CreatePublicationItemIndex xxxxxxxxxxxxxxxxxxxxxxx " );
    System.exit( 0 );
    System.out.println( "####################### AddPublicationItem ######################" );
    try {
    mgr.AddPublicationItem("PUBLISH01", "PUBLISH01_ITEM01", null, null, "S", null, null);
    } catch( Throwable e ) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on AddPublicationItem xxxxxxxxxxxxxxxxxxxxxxx " );
    System.exit( 0 );
    System.out.println( "####################### CreateSubscription ######################" );
    try {
    mgr.CreateSubscription( "PUBLISH01", "OTN" );
    } catch( Throwable e ) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on CreateSubscription xxxxxxxxxxxxxxxxxxxxxxx " );
    System.exit( 0 );
    System.out.println( "####################### InstantiateSubscription ######################" );
    try {
    mgr.InstantiateSubscription( "PUBLISH01", "OTN" );
    } catch( Throwable e ) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on InstantiateSubscription xxxxxxxxxxxxxxxxxxxxxxx " );
    System.exit( 0 );
    System.out.println( "####################### Ending1... ######################" );
    try {
    ResourceManager.commitTransaction();
    } catch( Throwable e ) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on Ending1 xxxxxxxxxxxxxxxxxxxxxxx " );
    System.exit( 0 );
    System.out.println( "####################### Ending2... ######################" );
    try {
    ResourceManager.closeConnection();
    mgr.CloseConnection();
    } catch( Throwable e ) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on Ending2 xxxxxxxxxxxxxxxxxxxxxxx " );
    System.exit( 0 );
    private static Connection getConnection(String user ,String password)
    Connection conn =null;
    try
    DriverManager.registerDriver((Driver)(Class.forName("oracle.jdbc.driver.OracleDriver").newInstance()));
    catch(Exception e)
    e.printStackTrace();
    try
    conn=null;
    String jdbc_url = "jdbc:oracle:thin:@localhost:1521:sid";
    conn = DriverManager.getConnection(jdbc_url,user,password);
    catch(Exception e)
    e.printStackTrace();
    return conn;
    9_;}GO4B ?!7/ 8^=CAv @T4O4Y..
    log9: ####################### AddPublicationItem ######################
    log1: log_main: SELECT PUBLICATION FROM MOBILEADMIN.C$ALL_TEMPLATE_ITEMS WHERE TEMPLATE = ''PUBLISH01'' AND NAME = ''emp2''
    log1: log_main: SELECT COUNT(*) FROM MOBILEADMIN.C$PUBLICATION_MTD WHERE PUBLICATION_ID = 97
    log1: log_main: Will try to get object type for MOBILEADMIN,emp2
    log1: log_main: Will describe emp2
    log1: log_main: Finished describing emp2
    log1: log_main: NCOLS=0
    log1: log_main: PKS Length=0
    log9: oracle.lite.sync.ConsolidatorException:
    CONS-10032: MOBILEADMIN.emp2?! 4kGQ 1b:; E08& C#@; <v >x1b 6'9.?! 5n7O GW8q PUBLISH01_ITEM01@;(8&) 0;=EGR <v >x@=
    (in english, this message shows can't update PUBLISH01_ITEM01 because there's no primary key to MOBILEADMIN.emp2)
    log9: at oracle.lite.sync.Subscription.CreatePublicationMapInQueue(Subscription.java:2569)
    log9: at oracle.lite.sync.Subscription.AddPublicationItem(Subscription.java:2431)
    log9: at oracle.lite.sync.ConsolidatorManager.AddPublicationItem(ConsolidatorManager.java:730)
    log9: at Publication2.main(Publication2.java:164)
    log9: xxxxxxxxxxxxxxxxxxxxx Error on AddPublicationItem xxxxxxxxxxxxxxxxxxxxxxx
    I found primary key to MOBILEADMIN.EMP2 when I query user_constraints table.
    What did I wrong? Pls Help me out..
    Thanks in advance..

    Hi, I have difficult time for testing create publication programically.
    Test step is
    1. create MOBILEADMIN.EMP2 based by SCOTT.EMP
    2. Create Primary Key to MOBILEADMIN.EMP2
    3. Write Test Code
    My test code is....as follows..
    [Publication2.java]
    import java.util.*;
    import java.sql.*;
    import oracle.lite.sync.*;
    import oracle.mobile.admin.*;
    public class Publication2
    public static void main(String args[])
    Statement s = null;
    ConsolidatorManager mgr = null;
    Connection con = null;
    try {
    con =getConnection( "MOBILEADMIN", "ADMIN" );
    con.setAutoCommit(false);
    ResourceManager.openConnection( "MOBILEADMIN", "ADMIN" );
    mgr = new ConsolidatorManager();
    s = con.createStatement();
    } catch (Throwable e) {
    System.out.println("con.createStatement failed: " + e + "\n");
    System.exit(0);
    System.out.println( "####################### OpenConnection ######################" );
    try {
    mgr.OpenConnection( "MOBILEADMIN", "ADMIN" );
    } catch (Throwable e) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on OpenConnection xxxxxxxxxxxxxxxxxxxxxxx " );
    System.exit( 0 );
    System.out.println( "####################### DeinstantiateSubscription ######################" );
    try {
    mgr.DeinstantiateSubscription( "PUBLISH01", "OTN" );
    } catch (Throwable e) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on DropSubscription xxxxxxxxxxxxxxxxxxxxxxx " );
    //System.exit( 0 );
    System.out.println( "####################### DropSubscription ######################" );
    try {
    mgr.DropSubscription( "PUBLISH01", "OTN" );
    } catch (Throwable e) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on DropSubscription xxxxxxxxxxxxxxxxxxxxxxx " );
    //System.exit( 0 );
    System.out.println( "####################### DropPublication ######################" );
    try {
    mgr.DropPublication("PUBLISH01");
    } catch (Throwable e) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on DropPublication xxxxxxxxxxxxxxxxxxxxxxx " );
    //System.exit( 0 );
    System.out.println( "####################### DropPublicationItem ######################" );
    try {
    mgr.DropPublicationItem("PUBLISH01_ITEM01");
    } catch (Throwable e) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on DropPublicationItem xxxxxxxxxxxxxxxxxxxxxxx " );
    //System.exit( 0 );
    System.out.println( "####################### CreatePublication ######################" );
    try {
    //mgr.CreatePublication("PUBLISH01", Consolidator.OKPI_CREATOR_ID, "%s", null );
    mgr.CreatePublication( "PUBLISH01", Consolidator.OKAPI_WIN32, "%s", null );
    } catch( Throwable e ) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on CreatePublication xxxxxxxxxxxxxxxxxxxxxxx " );
    System.exit( 0 );
    System.out.println( "####################### CreatePublicationItem ######################" );
    try {
    mgr.CreatePublicationItem( "PUBLISH01_ITEM01", "MOBILEADMIN", "emp2", "F", "SELECT * FROM emp2", null, null );
    } catch( Throwable e ) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on CreatePublicationItem xxxxxxxxxxxxxxxxxxxxxxx " );
    System.exit( 0 );
    System.out.println( "####################### PrimaryKeyHint ######################" );
    try {
    mgr.PrimaryKeyHint( "PUBLISH01_ITEM01", "EMPNO", "MOBILEADMIN", "EMP2", "EMPNO" );
    } catch( Throwable e ) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on PrimaryKeyHint xxxxxxxxxxxxxxxxxxxxxxx " );
    System.exit( 0 );
    System.out.println( "####################### CreatePublicationItemIndex ######################" );
    try {
    mgr.CreatePublicationItemIndex("PK_PUBLISH01_ITEM01", "PUBLISH01_ITEM01", "P", "EMPNO");
    mgr.CreatePublicationItemIndex("ID_PUBLISH01_ITEM01", "PUBLISH01_ITEM01", "I", "ENAME");
    mgr.CreatePublicationItemIndex("ID_PUBLISH01_ITEM02", "PUBLISH01_ITEM01", "I", "JOB");
    mgr.CreatePublicationItemIndex("ID_PUBLISH01_ITEM03", "PUBLISH01_ITEM01", "I", "MGR");
    mgr.CreatePublicationItemIndex("ID_PUBLISH01_ITEM04", "PUBLISH01_ITEM01", "I", "HIREDATE");
    mgr.CreatePublicationItemIndex("ID_PUBLISH01_ITEM05", "PUBLISH01_ITEM01", "I", "SAL");
    mgr.CreatePublicationItemIndex("ID_PUBLISH01_ITEM06", "PUBLISH01_ITEM01", "I", "COMM");
    mgr.CreatePublicationItemIndex("ID_PUBLISH01_ITEM07", "PUBLISH01_ITEM01", "I", "DEPTNO");
    } catch( Throwable e ) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on CreatePublicationItemIndex xxxxxxxxxxxxxxxxxxxxxxx " );
    System.exit( 0 );
    System.out.println( "####################### AddPublicationItem ######################" );
    try {
    mgr.AddPublicationItem("PUBLISH01", "PUBLISH01_ITEM01", null, null, "S", null, null);
    } catch( Throwable e ) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on AddPublicationItem xxxxxxxxxxxxxxxxxxxxxxx " );
    System.exit( 0 );
    System.out.println( "####################### CreateSubscription ######################" );
    try {
    mgr.CreateSubscription( "PUBLISH01", "OTN" );
    } catch( Throwable e ) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on CreateSubscription xxxxxxxxxxxxxxxxxxxxxxx " );
    System.exit( 0 );
    System.out.println( "####################### InstantiateSubscription ######################" );
    try {
    mgr.InstantiateSubscription( "PUBLISH01", "OTN" );
    } catch( Throwable e ) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on InstantiateSubscription xxxxxxxxxxxxxxxxxxxxxxx " );
    System.exit( 0 );
    System.out.println( "####################### Ending1... ######################" );
    try {
    ResourceManager.commitTransaction();
    } catch( Throwable e ) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on Ending1 xxxxxxxxxxxxxxxxxxxxxxx " );
    System.exit( 0 );
    System.out.println( "####################### Ending2... ######################" );
    try {
    ResourceManager.closeConnection();
    mgr.CloseConnection();
    } catch( Throwable e ) {
    e.printStackTrace();
    System.out.println( "xxxxxxxxxxxxxxxxxxxxx Error on Ending2 xxxxxxxxxxxxxxxxxxxxxxx " );
    System.exit( 0 );
    private static Connection getConnection(String user ,String password)
    Connection conn =null;
    try
    DriverManager.registerDriver((Driver)(Class.forName("oracle.jdbc.driver.OracleDriver").newInstance()));
    catch(Exception e)
    e.printStackTrace();
    try
    conn=null;
    String jdbc_url = "jdbc:oracle:thin:@localhost:1521:sid";
    conn = DriverManager.getConnection(jdbc_url,user,password);
    catch(Exception e)
    e.printStackTrace();
    return conn;
    9_;}GO4B ?!7/ 8^=CAv @T4O4Y..
    log9: ####################### AddPublicationItem ######################
    log1: log_main: SELECT PUBLICATION FROM MOBILEADMIN.C$ALL_TEMPLATE_ITEMS WHERE TEMPLATE = ''PUBLISH01'' AND NAME = ''emp2''
    log1: log_main: SELECT COUNT(*) FROM MOBILEADMIN.C$PUBLICATION_MTD WHERE PUBLICATION_ID = 97
    log1: log_main: Will try to get object type for MOBILEADMIN,emp2
    log1: log_main: Will describe emp2
    log1: log_main: Finished describing emp2
    log1: log_main: NCOLS=0
    log1: log_main: PKS Length=0
    log9: oracle.lite.sync.ConsolidatorException:
    CONS-10032: MOBILEADMIN.emp2?! 4kGQ 1b:; E08& C#@; <v >x1b 6'9.?! 5n7O GW8q PUBLISH01_ITEM01@;(8&) 0;=EGR <v >x@=
    (in english, this message shows can't update PUBLISH01_ITEM01 because there's no primary key to MOBILEADMIN.emp2)
    log9: at oracle.lite.sync.Subscription.CreatePublicationMapInQueue(Subscription.java:2569)
    log9: at oracle.lite.sync.Subscription.AddPublicationItem(Subscription.java:2431)
    log9: at oracle.lite.sync.ConsolidatorManager.AddPublicationItem(ConsolidatorManager.java:730)
    log9: at Publication2.main(Publication2.java:164)
    log9: xxxxxxxxxxxxxxxxxxxxx Error on AddPublicationItem xxxxxxxxxxxxxxxxxxxxxxx
    I found primary key to MOBILEADMIN.EMP2 when I query user_constraints table.
    What did I wrong? Pls Help me out..
    Thanks in advance..

  • "No Fiscal Year Variant assinged to consolidation unit" error for 3EC_CS_1A

    Hi,
    I'm getting following extraction error using RSA3 for datasource 3EC_CS_1A in R3 (4.7) system. Could someone shed some ideas on how to fix it.
    No fiscal year variant assigned to consolidation unit 0000000000000000XX.
    same error is coming for all consolidation units.
    I checked ECMCT table and it has records in it.
    I went to "Consolidation unit change" using CX1N and found out that above consolidation unit has our customer defined "standard fiscal year variant assigned" for the corresponding ledger listed in ECMCT.
    What else might be missing & how to fix it. same error in both DEV & QAS. Appreciate any inputs
    Hari Immadi
    http://immadi.com
    SEM BW Analyst

    thanks for your post.
    I checked T009 and see that fiscal year variants are maintained. K4 as well as "customer defined standard fiscal year variant". what else might be missing.
    Hari Immadi
    http://immadi.com
    SEM BW Analyst

  • Lega consolidation package error

    Hi experts,
    We are executing the legal consolidation package and we get next error: 
    "Accounts and entities do not match data in application OWNERSHIP failed"
    We have entered the ownershipdata, but the "ultimate ownership calculation" package did nothing, so we guess that is the problem.
    Did it happen to anybody? How can we solve the problem?
    Regards.

    David and Jorge,
    Thanks a lot for your reply.
    Yes, we followed the procedure decribed in the How To Paper on NW Consolidation.
    I will create the message tomorrow. Strange, that there is still no reply from SAP to your message. It is time to escalate the issue.
    Were you able to run calculation of Group Shares (CALCOWN) before execution of the Consolidation Package?
    There are various sources of information on the function:
    On the help.sap.com
    "The calculation of PCTRL in the business rule table is supported as same as itu2019s in BPC5.1, however the automatic calculation scripts of PCTRL (% of control) from investor/investee ownership percentage is not supported in the BPC 7.0 version for NetWeaver, so This means the user mustneed manually input the PCTRL % into the ownership application in order to use it for further calculations."
    How To Paper
    Step4: Run the pre-delivered DM package u201CCalculate Ultimate Ownershipu201D to calculate the ultimate ownership that how much each consolidation group own on each entity. As a result that write back after calculation, the ultimate ownership is stored under the member  u201CI_NONEu201D of IntCo dimension, and POWN, PGROUP, METHOD member has the group-own-entity value
    described above.
    Traing Materials:
    Ultimate ownership is a function for legal consolidation used to perform certain calculations used by he application (primarily in regard to calculating the group share of a subsidiary). This information is needed by the business rule library to
    properly consolidate the operations of various subsidiaries in accordance with GAAP.
    Customers may decide to also enter the direct and indirect pown values instead of having the system derive them.
    The concusion is that we can enter Group POWN data manually. We can execute the function, we get a message "Could not write the transaction data successfully. No data found.' Do you have the same problem?
    The second question is whether we need to enter PCTRL?
    Best regards,
    Mila

  • Consolidating all Errors and sending mail in BPM

    Hi,
    I have a scenario in which i have the outbound IDOC zartmas04
    I have to update 6 tables of another application table.
    the idoc can have a material and n number of plant information.
    I have to check the mandatory fields that are to be updated into the table and if it is not avaialbe the details should be collected for each material plant combination and the error should be send as a mail (only 1 mail with consolidated errors).
    Those combinations of plant material which has no error should be updated into the database.
    Initially I designed a simple interface, but now as i Understand i should go for a BPM , I am not sure how to desgin.
    Request your thoughts for this design
    Regards
    John

    Hi John
    I think the Pattern defined in ur BASIS Component in IR details of which are given below fits into ur scenario.
    SWCV : <b>SAP BASIS 6.40</b>
    Namespace: <b>http://sap.com/xi/XI/System/Patterns</b>
    Integration Process name: <b>BpmPatternReqRespTimeOut</b>
    Go thru documentation of this pattern which u can find in http://help.sap.com.
    This might help u to design ur scenario. u copy this pattern into ur namespace and do modification according to ur scenario.
    Regards
    Shailesh

  • Consolidation Library Error

    Hi wonder if anyone can help. I have a new external Hard Drive, and wish to consolidate my libraries.
    My old stuff is on D/my docs/my music/itunes.
    I have changed the directory so that my itunes folder is now G/itunes (the new HD)
    I have followed the guide on the apple site, i.e. the consolidate library process.
    However I get a vague error message each time I try: Copying Music Failed: The Required File Could Not Be Found.
    Can anyone help? Thanks....

    Hi, Liam.
    This can be a tricky problem to figure out since iTunes doesn't specify what file name is "invalid or too long" and there's no documentation on what determines if a file name is "invalid or too long".
    We had one user report that he was able to use his/her keen eyesight to note the last file that appeared before the error message appeared and it turned out that file was the cause of his/her trouble.
    If your eyesight isn't that keen, I'd suggest concentrating on the file name being too long possibility.
    The entire directory path leading to the file is considered part of the file name so, as an example, iTunes' default settings might place a particular file at C:\Documents and Settings\ user name \My Documents\My Music\iTunes\iTunes Music\artist folder\album folder\whatever.m4a.
    Is the directory path leading to your consolidated location much longer than that?
    polydorus has suggested a way to look over your file names: Assuming your music is currently in the default location, make your way there with Windows Explorer and select List in the View menu menu and see if anything stands out as being unusual.

  • Consolidation Unknown Error

    After consolidation, i check messages, find many errors. I don't know why.
    Error Code:{4BAFAE85-A9EF-403B-B91A-6F2DB4E67D5B}
    System Message Summary
    Config consolidation muliti dimension data set.
    An unknown error has occurred in the HsvDSData2 object.
    CFTEST consolidation stop id:409116216,Actual,2011,.G01,APR-APR, Consolidation type:ALL
    System Message Detail
    Error Reference Number: {4BAFAE85-A9EF-403B-B91A-6F2DB4E67D5B}
    Num: 0x43481;Type: 1;DTime: 2011-5-2 12:11:43;Svr: HYSER;File: DataSetCubes.cpp;Line: 228;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 1;DTime: 2011-5-2 12:11:44;Svr: HYSER;File: DataSetCubes.cpp;Line: 5809;Ver: 11.1.2.1.000.3082;DStr: ORA-00001: unique constraint (ICSS_HFM.SYS_C0034873) violated;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:44;Svr: HYSER;File: DataSetCubes.cpp;Line: 4660;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:44;Svr: HYSER;File: DataSetCubes.cpp;Line: 4229;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:44;Svr: HYSER;File: DataSetCubes.cpp;Line: 2710;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:44;Svr: HYSER;File: DataSetCubes.cpp;Line: 2595;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 1;DTime: 2011-5-2 12:11:44;Svr: HYSER;File: DataSetCubes.cpp;Line: 2165;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 1;DTime: 2011-5-2 12:11:45;Svr: HYSER;File: DataSetCubes.cpp;Line: 5809;Ver: 11.1.2.1.000.3082;DStr: ORA-00001: unique constraint (ICSS_HFM.SYS_C0034873) violated;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:45;Svr: HYSER;File: DataSetCubes.cpp;Line: 4660;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:45;Svr: HYSER;File: DataSetCubes.cpp;Line: 4229;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:45;Svr: HYSER;File: DataSetCubes.cpp;Line: 2710;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:45;Svr: HYSER;File: DataSetCubes.cpp;Line: 2595;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 1;DTime: 2011-5-2 12:11:45;Svr: HYSER;File: DataSetCubes.cpp;Line: 2165;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 1;DTime: 2011-5-2 12:11:46;Svr: HYSER;File: DataSetCubes.cpp;Line: 5809;Ver: 11.1.2.1.000.3082;DStr: ORA-00001: unique constraint (ICSS_HFM.SYS_C0034873) violated;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:46;Svr: HYSER;File: DataSetCubes.cpp;Line: 4660;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:46;Svr: HYSER;File: DataSetCubes.cpp;Line: 4229;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:46;Svr: HYSER;File: DataSetCubes.cpp;Line: 2710;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:46;Svr: HYSER;File: DataSetCubes.cpp;Line: 2595;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 1;DTime: 2011-5-2 12:11:46;Svr: HYSER;File: DataSetCubes.cpp;Line: 2165;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 1;DTime: 2011-5-2 12:11:47;Svr: HYSER;File: DataSetCubes.cpp;Line: 5809;Ver: 11.1.2.1.000.3082;DStr: ORA-00001: unique constraint (ICSS_HFM.SYS_C0034873) violated;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:47;Svr: HYSER;File: DataSetCubes.cpp;Line: 4660;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:47;Svr: HYSER;File: DataSetCubes.cpp;Line: 4229;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:47;Svr: HYSER;File: DataSetCubes.cpp;Line: 2710;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:47;Svr: HYSER;File: DataSetCubes.cpp;Line: 2595;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 1;DTime: 2011-5-2 12:11:47;Svr: HYSER;File: DataSetCubes.cpp;Line: 2165;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 1;DTime: 2011-5-2 12:11:48;Svr: HYSER;File: DataSetCubes.cpp;Line: 5809;Ver: 11.1.2.1.000.3082;DStr: ORA-00001: unique constraint (ICSS_HFM.SYS_C0034873) violated;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:48;Svr: HYSER;File: DataSetCubes.cpp;Line: 4660;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:48;Svr: HYSER;File: DataSetCubes.cpp;Line: 4229;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:48;Svr: HYSER;File: DataSetCubes.cpp;Line: 2710;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:48;Svr: HYSER;File: DataSetCubes.cpp;Line: 2595;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 1;DTime: 2011-5-2 12:11:48;Svr: HYSER;File: DataSetCubes.cpp;Line: 2165;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 1;DTime: 2011-5-2 12:11:49;Svr: HYSER;File: DataSetCubes.cpp;Line: 5809;Ver: 11.1.2.1.000.3082;DStr: ORA-00001: unique constraint (ICSS_HFM.SYS_C0034873) violated;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:49;Svr: HYSER;File: DataSetCubes.cpp;Line: 4660;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:49;Svr: HYSER;File: DataSetCubes.cpp;Line: 4229;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:49;Svr: HYSER;File: DataSetCubes.cpp;Line: 2710;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:49;Svr: HYSER;File: DataSetCubes.cpp;Line: 2595;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 1;DTime: 2011-5-2 12:11:49;Svr: HYSER;File: DataSetCubes.cpp;Line: 2165;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 1;DTime: 2011-5-2 12:11:50;Svr: HYSER;File: DataSetCubes.cpp;Line: 5809;Ver: 11.1.2.1.000.3082;DStr: ORA-00001: unique constraint (ICSS_HFM.SYS_C0034873) violated;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:50;Svr: HYSER;File: DataSetCubes.cpp;Line: 4660;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:50;Svr: HYSER;File: DataSetCubes.cpp;Line: 4229;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:50;Svr: HYSER;File: DataSetCubes.cpp;Line: 2710;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:50;Svr: HYSER;File: DataSetCubes.cpp;Line: 2595;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 1;DTime: 2011-5-2 12:11:50;Svr: HYSER;File: DataSetCubes.cpp;Line: 2165;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 1;DTime: 2011-5-2 12:11:51;Svr: HYSER;File: DataSetCubes.cpp;Line: 5809;Ver: 11.1.2.1.000.3082;DStr: ORA-00001: unique constraint (ICSS_HFM.SYS_C0034873) violated;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:51;Svr: HYSER;File: DataSetCubes.cpp;Line: 4660;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:51;Svr: HYSER;File: DataSetCubes.cpp;Line: 4229;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:51;Svr: HYSER;File: DataSetCubes.cpp;Line: 2710;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:51;Svr: HYSER;File: DataSetCubes.cpp;Line: 2595;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 1;DTime: 2011-5-2 12:11:51;Svr: HYSER;File: DataSetCubes.cpp;Line: 2165;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 1;DTime: 2011-5-2 12:11:52;Svr: HYSER;File: DataSetCubes.cpp;Line: 5809;Ver: 11.1.2.1.000.3082;DStr: ORA-00001: unique constraint (ICSS_HFM.SYS_C0034873) violated;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:52;Svr: HYSER;File: DataSetCubes.cpp;Line: 4660;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:52;Svr: HYSER;File: DataSetCubes.cpp;Line: 4229;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:52;Svr: HYSER;File: DataSetCubes.cpp;Line: 2710;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:52;Svr: HYSER;File: DataSetCubes.cpp;Line: 2595;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 1;DTime: 2011-5-2 12:11:52;Svr: HYSER;File: DataSetCubes.cpp;Line: 2165;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 1;DTime: 2011-5-2 12:11:53;Svr: HYSER;File: DataSetCubes.cpp;Line: 5809;Ver: 11.1.2.1.000.3082;DStr: ORA-00001: unique constraint (ICSS_HFM.SYS_C0034873) violated;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:53;Svr: HYSER;File: DataSetCubes.cpp;Line: 4660;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:53;Svr: HYSER;File: DataSetCubes.cpp;Line: 4229;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:53;Svr: HYSER;File: DataSetCubes.cpp;Line: 2710;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 0;DTime: 2011-5-2 12:11:53;Svr: HYSER;File: DataSetCubes.cpp;Line: 2595;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 1;DTime: 2011-5-2 12:11:53;Svr: HYSER;File: DataSetCubes.cpp;Line: 2165;Ver: 11.1.2.1.000.3082;
    Num: 0x80040e2f;Type: 1;DTime: 2011-5-2 12:11:53;Svr: HYSER;File: DataSetCubes.cpp;Line: 1437;Ver: 11.1.2.1.000.3082;DStr: Cube update was not successful.;
    Num: 0x80041e80;Type: 1;DTime: 2011-5-2 12:11:53;Svr: HYSER;File: DataSetCubes.cpp;Line: 1440;Ver: 11.1.2.1.000.3082;
    Num: 0x80041e80;Type: 0;DTime: 2011-5-2 12:11:53;Svr: HYSER;File: DataSetCubes.cpp;Line: 596;Ver: 11.1.2.1.000.3082;
    Num: 0x80041c92;Type: 1;DTime: 2011-5-2 12:11:54;Svr: HYSER;File: CHsvDSCalculate.cpp;Line: 11976;Ver: 11.1.2.1.000.3082;

    Hi,
    Looks like you are using 11.1.2.1 version??
    If so i am facing the same issues and i have already raised this issue with oracle support team, have not heard back from them.
    We recently upgraded from 11.1.2 to 11.1.2.1 and we are facing lot of issues and one of them is consolidation issues.
    And let me know if you have tired the below solution:
    Applies to:
    Hyperion Financial Management - Version: 11.1.1.3.00 and later [Release: 11.1 and later ]
    Information in this document applies to any platform.
    Symptoms
    Consolidation hangs at 100% for a specific Scenario/Year POV. The consolidation does not complete and the hsvdatasource process eventually has to be killed.
    The Parent has CN status, whereas all its children have OK status, from Entity currency to Contribution total.
    The following error is generated in the Hsveventlog log:
    File: DataTransactions.cpp Version: 11.1.1.3.50.2839 Line: 3163
    Error: (-2147213696)(0x80041E80)(An unknown error has occurred in the HsvDSData2 object.)
    If the UseConsolidationRules are disabled, the consolidation then completes.
    Cause
    The database schema is missing tables for the affected POV, scenario x and year yyyy:
    APPNAME_ETX_x_yyyy
    APPNAME_RTD_x_yyyy
    APPNAME_RTS_x_yyyy
    Two of three tables, RTS and RTD, are used if ConsolidateRules is set to Y or R, and this is the direct cause of the error message generated. It is not known whether these tables ever existed or have been inadvertently deleted.
    Solution
    Restore Financial Management (HFM) repository database from the backup, if the missing tables exist in a prior backup. If no suitable backup exists, contact Oracle Support. A script may be provided by Oracle Development to create the missing tables and corresponding sequence and indexes.
    Regards,
    Bhargav

  • Incoming Payment Consolidating BP Error

    Hi Everyone,
    I would like to ask if anyone has encountered the same error in the Incoming Payment. I can't post the transaction and a system message will appear.
    "The consolidating bp behind one or more of the selected invoices is different from the current consolidating bp. [message 3524-74]"
    I have checked my customer and its consolidating bp and they are correct. What could be the possible error.
    Thanks in advance.
    Malu

    Hi ,
    Check the link
    Incoming payment - Consolidating BP problem
    *Close the thread if issue solved.
    Regards
    Jambulingam.P
    Edited by: Jambulingam P on Jun 22, 2009 11:30 AM

  • Consolidation route error

    Dear all,
    I am trying to save the target as WTP(Production) in the properties of a request which is in Quality system. I am getting error "WTP is not a consolidation Target". The request is created for SPAU and SPDD clear in the Quality systems. Please help.
    Thanks and regards,
    Prasad.

    I am trying to save the target as WTP(Production) in the properties of a request which is in Quality system. I am getting error "WTP is not a consolidation Target".
    This is true. You can not create a WorkBench Request in your quality system for target Prod.
    And if you release your WorkBench Request without Traget, it will not create any data & cofiles.
    if you need to move any object from QA > Prod, you can use transport request of type Transport of copies.
    best regards
    ashish

  • Consolidation logic error..We are using BPC 7.5 NW SP7.

    Hi Experts,
    We are using BPC 7.5 NW SP7.
    We are running the consolidation for 2011.NOVEMBER as a first month and  there is no data for previous months except 2011.MAR. My financial year starts on 2011.APR.
    When we are running consolidation using standard consolidation logic it is considering the 2011.MAR values for automatic data sources. it is considering automatic data source and F_999 AND F_100 flows.
    After running the consolidation F_999 flow is becoming as F_100  AND agin F_999 is adding the present month F_999 flow values.
    Example
    acct1                auto1datasrc       2011.mar     f_999         100
    After running standard consolidation logic in nov,
    acct1                auto1datasrc       2011.NOV     f_100         100
    acc1                auto1datasrc       2011.NOV     f_999         130   (100+30)...........[this is wrong, ideally we should have present mont value 30]
    1. why is it considering previous year values
    2. How to control restrict closeing bal not to add to current year closing balance.
    Please Share your expertise.
    Thanks,
    Raj

    Hello Raj, Im facing the same issue and also my problem is due to FLOW_TYPE maintainance. Could you please share your knowledge about the usage and behaviour of this property ?.
    Regards,
    Aldrin

  • Consolidation Manager error INTERCOMPANY MEMBER = Third Party

    Dear all,
    I made a little changing from the IFRS starter kit like the print screen below in the Dimension Scope.
    After that i tried to run the Ownership Manager as follow
    Any idea with this error?
    Regards
    George

    Hi Goerge,
    I am facing the same issue when I am updating ownership manager. There is no "THIRDPARTY" member in my INTCO dimension.
    I now this discussion is closed.
    Can you please share how you have solved this issue?
    Regards,
    Rahul

  • Legal Consolidation Package Error

    Hi ,
    While Executing SPRUNCONSO facing follOwing errror .
    ERROR CSD-130 Problem Extracting data from the Fact
    ERROR CSD-135 Problem Extracting data : C_FINANCE
    ERROR CSD-140 Problem extracting Data : C_DATA
    ERROR CSD-150 Problem extracting Data : C_REPART
    ERROR CSD-160 Problem extracting Data : C_CONSO .
    Checked Elim table,Rules,Group dim,Data source everything seems to be ok .Here is my Logic ...
    *RUN_STORED_PROCEDURE=SPRUNCONVERSION('%APP%','%CATEGORY_SET%','UG_CG1','GLOBAL','%SCOPETABLE%','%LOGTABLE%')
    *RUN_STORED_PROCEDURE = SPRUNCONSO('%APP%','ACTUAL','UG_CG1','%SCOPETABLE%','%LOGTABLE%')
    Any thoughts. guyz....
    Thanks
    Ram

    Hi this was due to not maintaining proper design and it was solved later once we setup all the parameters perfectly
    and had time dimension members for one year prior (though seems strange)

  • Consolidating music ERROR Need help!

    When I go to consolidate my music into the iTunes folder I get a Error message.
    +"Copying music failed. The file name was invalid or too long"+
    Any one have this problem and know how to fix it? I want to clean up my hard drive and this is one of the steps i plan on taking, but its not working.
    Thanks in advance for any help i can get!
    Stephan A. Hodgson

    The problem is what is says in the error message, one or more of your music file names, including the path, is too long for iTunes.
    Check through your music folders to look for long file names, List view is best for this.
    If you don't fancy doing it manually, I came across this utility;
    http://itunesfix.com/iTunes%20Fix.html
    I have not used it myself, so I don't know if it works OK.

  • Consolidation Error Documentation (CSD)

    Hi all,
    I have recently ended upon a consolidation engine error (CSD-070, CSD-080). Searching in the forum I have see some threads talking about some documentation about these errors. Could anyone please send that documentation?
    About the CSD-070 (No Time available) & CSD-080 (No Group Available) errors, does anybody know what they can be related to?
    Kind Regards,
    Rafael
    Edited by: Rafael Moreno on Oct 2, 2008 2:00 PM

    Please find below a list of all errorcodes per stored procedure.
    Alwin
    MSG     SPRUNCONVERSION
    FX-000     ERROR FX-000 Application not Available !
         Appset maintenance in progress
    FX-010     ERROR FX-010 Wrong Application, check your logic
         You may have hardcoded a wrong application in your logic.
    FX-020     ERROR FX-020 No Currency in your Appset ! You must have a Dimension with dimension type = u2018Ru2019 in your Application. !
         You must have at least one member with CURRENCY_TYPE = R In your currency dimension.
    FX-030     Warning : Application without INTCO dimension
         No INTCO Dimension IN your Application.(Dimtype = I)
    FX-040     Warning : Application without Flow Dimension
         No FLOW Dimension IN your Application.(Dimtype = S)
    FX-050     Warning : Application without Datasrc Dimension
         No DATASRC Dimension IN your Application.(Dimtype = D)
    FX-060     ERROR FX-060 No Local currency, You must have a currency with CURRENCY_TYPE Equal to L
         You must have one member with CURRENCY_TYPE = L (Local currency) In your currency dimension.
    FX-070     ERROR FX-070 No Entity available in your Application
         You have to select a parameter which is not a parent.
    FX-080     ERROR FX-080 No Time available in your Application
         Check if in the TIME Dimension, you have the property "MONTHNUM"
         Check if in the TIME Dimension, you have filled properly the property "MONTHNUM". The first Period of the Fiscal year must be 1, and then the second 2u2026.
    FX-090     ERROR FX-090 Problem IN Category Dimension check properties. 
         Your parameter CATEGORY is not valid.
    FX-100     ERROR FX-100 Problem IN Category OR Ratedim Dimension check properties. 
         Your parameter CATEGORY is not valid OR
         You don' t have the Property FX-SOURCE_CATEGORY In your Exchange Rate Dimension (For Simulation) OR
         The Exchange Rate id you chose doesn't exist.
    FX-110     ERROR FX-110 Problem IN Category Or Categhory_for_ope check properties. 
         Your parameter CATEGORY is not valid OR
         You don' t have the Property CATEGORY_FOR_OPE In your CATEGORY Dimension OR
         You don' t have the Property RATE_CATEGORY In your CATEGORY Dimension OR
         You don' t have the Property FX-DIFFERENCE_ONLY In your CATEGORY Dimension
    FX-120     ERROR FX-120 Problem IN Category Or TIME. 
    FX-130     ERROR FX-130 No Group available.
         Check if the selected group has the property CURRENCY_TYPE = "G".
    FX-140     ERROR FX-140 No Currency avalaible
    FX-150     ERROR FX-150 Problem IN Ownership
         Check if you have a base member equal to "METHOD" in the account dimension of the OWNERSHIP cube.
         Check If you have valid information in the OWNERSHIP cube for the selected Category  Time.
    FX-160     ERROR FX-160 No Entity available
    FX-170     ERROR FX-170 No Entity Available
    FX-180     ERROR FX-180 No Datasrc to be converted
    FX-190     ERROR FX-190 No Rate Application
    FX-200     ERROR FX-200 No Rate Extract From FactRate
         No Rate found for the selected category and time.
         Check If the Rateentiy you enter in the parameter is the Same as the one in the Rateentity Dimension
         Check If the Rates in the Rate Cube are in the RATE Dimension with Property Ratetype equal to "FX" OR "FX Rate".
    FX-210     Warning : No Rates found in the opening period
    FX-220     ERROR FX-220 No Rate for reference currency
         Check If you Pivot currency (The base currency to enter the rate, Rate = 1) is filled.
    FX-230     ERROR FX-230 Problem in your Entity Dimension id from your Rate application 
         The Rateentity (Dimension from the Rate cube with Evdimtype = E) you chose does not exist
    FX-240     ERROR FX-240 : No Rate Extract From MbrRate
         No Rate in the RATE Dimension with Property Ratetype equal to "FX" OR "FX Rate".
    FX-250     ERROR FX-250  No Rates found
    FX-260     ERROR FX-260 No Rate in Fact corresponding with Rate dimension
         Check If the Rates in the Rate Cube are in the RATE Dimension with Property Ratetype equal to "FX" OR "FX Rate".
    FX-270     ERROR FX-270 No Formulas extract from FXTRANS
         No Rate formulas in your Fxtrans Table.
         Check if the application name in the Logic.
    FX-280     ERROR FX-280 No values found (T_FIN)
         No values found for the selected Entities . Check if you have values in LC for the selected Entities OR
         Check if the LC values are fro DATASRC with Property IS_CONVERTED not equal to "N"
    FX-290     ERROR FX-290 No values found (Entity  - T_FINANCETMP)
    FX-300     ERROR FX-300 No values found (CLCFXTRANS  - T_FINANCE)
         No values found from FACT table for Account / Flow. Check if you have values in LC for the selected Account / Flow OR
         Check our Fxtrans Table.
    FX-310     ERROR FX-310 No values found (RATE  - T_DATA)
         No account extracted have a corresponding Rate_formula in the Fxtrans table.
    FX-320     ERROR FX-320 No values found (ENTITY - GROUPS - T_FINAL2)
         Check your Ownership and your group_currency values.
         SPRUNCONSO
    CSD-000     ERROR CSD-000 Application not Available !
         Appset maintenance in progress
    CSD-010     ERROR CSD-010 No Subtables. Verify properties FLOW_TYPE, IS_INPUT, SEGNOINV, SUBTABLES_ORIG  
         No Flow available, check the flow dimension, you must have the property "FLOW_TYPE"
    CSD-011     ERROR CSD-011 No instruction retreived from the ELIM table
         No instruction retreived from ELIM Table.
         Check If the Elim id in ELIM table Exist in the ELIMH Table.
         Check if the Account in the ELIM Table Exist. (as Base Member or as Agregat or as Value in property DIMLIST or value from property TYPELIM in the ACCOUNT Dimension)
    CSD-012     ERROR CSD-012 No instruction retreived from the ELIM Table : GROUP_ACC Problem
         No instruction retreived from ELIM Table. GROUP_ACC Problem
         Check if the GROUP_ACC in the ELIM Table Exist. (as Base Member or as Agregat or as Value in property DIMLIST or value from property TYPELIM in the ACOUNT Dimension)
    CSD-013     ERROR CSD-013 No instruction retreived from the ELIM Table : MINO_ACC Problem
         No instruction retreived from ELIM Table. MINO_ACC Problem
         Check if the MINO_ACC in the ELIM Table Exist. (as Base Member or as Agregat or as Value in property DIMLIST or value from property TYPELIM in the ACOUNT Dimension)
    CSD-014     ERROR CSD-014 No instruction retreived from the ELIM Table : EQUITY_ACC Problem
         No instruction retreived from ELIM Table. EQUITY_ACC Problem
         Check if the EQUITY_ACC in the ELIM Table Exist. (as Base Member or as Agregat or as Value in property DIMLIST or value from property TYPELIM in the ACOUNT Dimension)
    CSD-015     ERROR CSD-015 No instruction retreived from the ELIM Table with FLOW Dimension
         Check if the SUBTABLE_ORIG in the ELIM Table Exist. (as Base Member or as Agregat or as Value in property DIMLIST in the FLOW Dimension)
    CSD-020     ERROR CSD-020 No Currency in your Appset ! You must have a Dimension with dimension type = u2018Ru2019 in your Application. !
         No Account extracted from CLCELIM Table, please check the Account from CLCELIM.
         Check if the ACCOUNT in the ELIM Table Exist. (as Base Member or as Agregat or as Value in property DIMLIST or value from property TYPELIM in the ACOUNT Dimension)
    CSD-030     ERROR CSD-030 No Entity Available 
         No Entity extracted. Check if you have the Property INTCO and the property CURRENCY in your ENTITY Dimension
    CSD-040     ERROR CSD-040 No Account
         No Account Extract from Account Dimension
    CSD-050     ERROR CSD-050 No datasrc. Verify Properties DATASRC_TYPE,DATASRC_ORIG, IS_CONSOL
         No Datasrc extracted.
         Check if you have the Property "DATASRC_TYPE" and the property "IS_CONSOL" in your DATASRC Dimension
    CSD-060     ERROR CSD-060 No Rules
         No rules in your CLCRULES Table
         Make sure the METHOD from the CLCRULES is not blank.
         Make sure the I_METHOD from the CLCRULES is not blank.
    CSD-070     ERROR CSD-070 No Time available
         Check if in the TIME Dimension, you have the property "MONTHNUM"
         Check if in the TIME Dimension, you have filled properly the property "MONTHNUM". The first Period of the Fiscal year must be 1, and then the second 2u2026.
    CSD-080     ERROR CSD-080 No Group Available
         Check if the selected group has the property CURRENCY_TYPE = "G".
    CSD-090     ERROR CSD-090 Nothing Extracted From Ownership 
         Check if You have the property "IS_INPUT" in the Account dimension of the OWNESHIP Cube
         Check if You have some base member from the Account dimension of the OWNESHIP Cube with IS_INPUT = "Y"
         Check If you have valid information in the OWNERSHIP cube for the selected Category  Time.
    CSD-100     Warning : Nothing Extract From Ownership for OPENING Period 
         Nothing extracted from Opening period in the Ownership cube.
    CSD-110     ERROR CSD-110 No AccountOwn available
         Check if You have the property "IS_INPUT" in the Account dimension of the OWNESHIP Cube
         Check if You have the property "RATETPE" in the Account dimension of the OWNESHIP Cube
         Check if You have some base member from the Account dimension of the OWNESHIP Cube with IS_INPUT = "Y"
    CSD-120     ERROR CSD-120 No Entity - Method available
         No data found in OWNERSHIP Cube for this method.
         Check if you have METHOD in your ownership cube for the selected CATEGORY - TIME - GROUP
    CSD-125     ERROR CSD-125 No Entity - Method available 
         No data found in OWNERSHIP Cube for this method.
         Check if you have METHOD in your ownership cube for the selected CATEGORY - TIME - GROUP
    CSD-130     ERROR CSD-130 Problem Extracting data from the Fact Table
         No Values found
         Check if You have Some Account from the ELIM Table.
         Check if You have some DATASRC with IS_CONSOL = "Y"
    CSD-135     ERROR CSD-135 Problem Extracting data - C_FINANCE
         No Values found
         Check the Account in the FACT Tables
    CSD-140     ERROR CSD-140 Problem Extracting data  - C_DATA
         No Values found
         Check the Entity in the FACT Tables
         Check the INTCO in the FACT Tables
    CSD-145     ERROR CSD-145 Problem Extracting data  - C_DATA_ALL
         No Values found for those Account And/Or Flow.
         Check the DATASRC in the FACT Linked to the DATASRC_ORIG in the ELIMH Table.
    CSD-150     ERROR CSD-150 Problem Extracting data  - C_REPART
         No Values found for those rules.
         Check the method between METHOD Table and your ownership Cube.
         Check your Rules between the RULES Table and The ELIM Table.
         Check The INTCO.
    CSD-160     ERROR CSD-160 Problem Extracting data  - C_CONSO
         SPRUNCALC
    CALC-000     ERROR CALC-000 Application not Available !
         Appset maintenance in progress
    CALC-010     ERROR CALC-010 Nothing Extract from CALCACCOUNT TABLE  
         Nothing Extracted from CALCACCOUNT Table, check the account, The account must be a as Base Member or an Agregat or a Value in property DIMLIST or a value from property TYPELIM in the ACOUNT Dimension)
    CALC-020     ERROR CALC-020 Nothing Extract from CALCACCOUNT TABLE   (FLOWS)
         Nothing Extracted from CALCACCOUNT Table, check the Subtables, The Subtables must be a as Base Member or an Agregat or a Value in property DIMLIST in the FLOW Dimension)
    CALC-030     ERROR CALC-030 NoTime extract.
         Check your TIME Dimension
    CALC-040     ERROR CALC-040 NoTime extract for YTD
         Check your TIME Dimension.
         Check if in the TIME Dimension, you have the property "MONTHNUM"
         Check if in the TIME Dimension, you have filled properly the property "MONTHNUM". The first Period of the Fiscal year must be 1, and then the second 2u2026.
    CALC-050     ERROR CALC-050 NoEntity extract
         Check your Parameter Entity, it must be an base member (Or a list of base member)  from the ENTITY Dimension
    CALC-060     ERROR CALC-060 NoEntity extract
         Check your Parameter Currency, it must be a base member (Or a list of base member)  from CURRENCY Dimension
    CALC-070     ERROR CALC-070 NoEntity extract
         No values found, check if you have something to calculate for the selected CATEGORY - TIME - CURRENCY
         Check your CALCACCOUNT Table.
         Check : The account must be a as Base Member or an Agregat or a Value in property DIMLIST or a value from property TYPELIM in the ACOUNT Dimension)
    CALC-080     ERROR CALC-080 NoEntity extract
         No Values found.
         Check your CALCACCOUNT Table.
         Check : The SUBTABLES must be a as Base Member or an Agregat or a Value in property DIMLIST in the FLOW Dimension)
         SPCOPYCATEGORY
    CCAT-000     ERROR CCAT-000 Application not Available !
         Appset maintenance in progress
    CCAT-010     ERROR CCAT-010 No Time available in your Application
         Check your Parameter "Time".
    CCAT-020     ERROR CCAT-020 Nothing extracted from the Account Dimension
         Check the property in the parameter.
         Check that this property is in the ACCOUNT Dimension
    CCAT-030     ERROR CCAT-030 No Entities available
         Check your Parameter "Entity".
    CCAT-040     ERROR CCAT-040 No Currency available
         Check your Parameter "Currency".
    CCAT-050     ERROR CCAT-050 No data found
         No data found, check if you have data for the selected CATEGORY - TIME - CURRENCY
         SPCOPYOPENING
    COPYO-000     ERROR COPYO-000 Application not Available !
         Appset maintenance in progress
    COPYO-010     ERROR COPYO-010 No Datasrc Available
         Check if you have Datasrc with DATASRC_TYPE different from "A"
         Check if COPYOPENING Property is equal to Y
    COPYO-020     ERROR COPYO-020 Nothing extracted from COPYOPENING TABLE
         Check your COPYOPENING TABLE
    COPYO-030     ERROR COPYO-030 No Time available
         Check your Parameter "Time".
    COPYO-040     ERROR COPYO-040 No category available
         Your parameter CATEGORY is not valid OR
         You don' t have the Property CATEGORY_FOR_OPE In your CATEGORY Dimension OR
         You don' t have the Property OPENING_YEAR In your CATEGORY Dimension OR
         You don' t have the Property OPENING_PERIOD In your CATEGORY Dimension
    COPYO-045     ERROR COPYO-045 No category available
         Your parameter CATEGORY is not valid
    COPYO-050     ERROR COPYO-050 Problem in COPYOPENING Properties
         Check Opening_year and / Or  Opening period properties in CATEGORY Dimension.
    COPYO-060     ERROR COPYO-060 No Entities available
         Check your Parameter "Entity".
    COPYO-070     ERROR COPYO-070 No Currency available
         Check your Parameter "Currency".
    COPYO-080     ERROR COPYO-080 No Account available
         Check your COPYOPENING Table
         Check if the Account in the COPYOPENING Table Exist. (as Base Member or as Agregat or as Value in property DIMLIST or value from property TYPELIM in the ACCOUNT Dimension)
    COPYO-090     ERROR COPYO-090 No Data found
         Check if you have data for the selected CATEGORY - TIME - GROUP
         SPRUNVALID
    VALID-000     ERROR VALID-000 Application not Available !
         Appset maintenance in progress
    VALID-010     ERROR VALID-020 Nothing extracted from VALIDATION TABLE
         Check your VALIDATION TABLE
    VALID-020     ERROR VALID-020 Nothing extracted from VALIDATION_H TABLE
         Check your VALIDATION_H TABLE
    VALID-030     ERROR VALID-030 Wrong Application, check your logic
         You may have hardcoded a wrong application in your logic.
    VALID-040     ERROR VALID-040 No Datasrc available
         Check your Parameter "DATASRC".
    VALID-050     ERROR VALID-050 No Time available
         Check your Parameter "Time".
    VALID-060     ERROR VALID-060 Nothing extracted from VALIDATION - VALIDATION_H Table
         Check your VALIDATION TABLE
         Check your VALIDATION_H TABLE
         Check the validation iD in VALIDATION and VALIDATION_H Table.
    VALID-070     ERROR VALID-070 No Data found
         Check if you have data for the selected CATEGORY - TIME - GROUP
    VALID-080     ERROR VALID-080 No Data found for the selected period
         Check your PERIOD Property in the VALIDATION_H Table

Maybe you are looking for