Kodo 3.0 migrator does not honor metadata table/column names

it outputs <field_name>X instead completely disregarding what's in the
metadata

Ok running it on classess enhanced with 2.5.2 produces bad names, while
runnung it on unenhanced classed works all right
<mapping>
<package name="peacetech.nci.cs.jdo">
<class name="Contract">
<jdbc-class-map type="base" table="CONTRACTX"/>
<jdbc-version-ind type="version-number" column="JDOLOCKX"/>
<jdbc-class-ind type="in-class-name" column="JDOCLASSX"/>
<field name="currentModification">
<jdbc-field-map type="one-one"
column.CONTRACTIDX="CONTRACTID_CURRENTMODIFICATIOX"
column.MODIFICATIONIDX="MODIFICATIONID_CURRENTMODIFICX"/>
</field>
<field name="id">
<jdbc-field-map type="value" column="IDX"/>
</field>
<field name="lastModification">
<jdbc-field-map type="one-one"
column.CONTRACTIDX="CONTRACTID_LASTMODIFICATIONX"
column.MODIFICATIONIDX="MODIFICATIONID_LASTMODIFICATIX"/>
</field>
<field name="modifications">
<jdbc-field-map type="many-many"
element-column.CONTRACTIDX="CONTRACTID_MODIFICATIONSX"
element-column.MODIFICATIONIDX="MODIFICATIONID_MODIFICAT
IONSX" ref-column.IDX="ID_JDOIDX" table="CONTRACT_MODIFICATIONSX"/>
</field>
</class>
<class name="Modification">
<jdbc-class-map type="base" table="MODIFICATIONX"/>
<jdbc-version-ind type="version-number" column="JDOLOCKX"/>
<jdbc-class-ind type="in-class-name" column="JDOCLASSX"/>
<field name="approved">
<jdbc-field-map type="value" column="APPROVEDX"/>
</field>
<field name="contract">
<jdbc-field-map type="one-one" column.IDX="ID_CONTRACTX"/>
</field>
<field name="contractId">
<jdbc-field-map type="value" column="CONTRACTIDX"/>
</field>
<field name="description">
<jdbc-field-map type="value" column="DESCRIPTIONX"/>
</field>
<field name="modificationId">
<jdbc-field-map type="value" column="MODIFICATIONIDX"/>
</field>
<field name="obligations">
<jdbc-field-map type="many-many"
element-column.IDX="ID_OBLIGATIONSX"
ref-column.CONTRACTIDX="CONTRACTID_JDOIDX" ref-column.MODIFICATIONIDX="MOD
IFICATIONID_JDOIDX" table="MODIFICATION_OBLIGATIONSX"/>
</field>
</class>
<class name="Obligation">
<jdbc-class-map type="base" table="OBLIGATIONX"/>
<jdbc-version-ind type="version-number" column="JDOLOCKX"/>
<jdbc-class-ind type="in-class-name" column="JDOCLASSX"/>
<field name="amount">
<jdbc-field-map type="value" column="AMOUNTX"/>
</field>
<field name="id">
<jdbc-field-map type="value" column="IDX"/>
</field>
<field name="modification">
<jdbc-field-map type="one-one"
column.CONTRACTIDX="CONTRACTID_MODIFICATIONX"
column.MODIFICATIONIDX="MODIFICATIONID_MODIFICATIONX"/>
</field>
</class>
</package>
</mapping>
running on unenhanced classes produces proper metadata (as far as names
concerned)
<?xml version="1.0" encoding="UTF-8"?>
<mapping>
<package name="peacetech.nci.cs.jdo">
<class name="Contract">
<jdbc-class-map type="base" table="CONTRACT"/>
<jdbc-version-ind type="version-number" column="JDO_LOCK"/>
<field name="currentModification">
<jdbc-field-map type="one-one"
column.CONTRACT_ID="CONTRACT_ID"
column.MODIFICATION_ID="CURRENT_MODIFICATION_ID"/>
</field>
<field name="id">
<jdbc-field-map type="value" column="CONTRACT_ID"/>
</field>
<field name="lastModification">
<jdbc-field-map type="one-one"
column.CONTRACT_ID="CONTRACT_ID"
column.MODIFICATION_ID="LAST_MODIFICATION_ID"/>
</field>
<field name="modifications">
<jdbc-field-map type="one-many"
ref-column.CONTRACT_ID="CONTRACT_ID" table="MODIFICATION"/>
</field>
</class>
<class name="Modification">
<jdbc-class-map type="base" table="MODIFICATION"/>
<jdbc-version-ind type="version-number" column="JDO_LOCK"/>
<field name="approved">
<jdbc-field-map type="value" column="IS_APPROVED"/>
</field>
<field name="contract">
<jdbc-field-map type="one-one"
column.CONTRACT_ID="CONTRACT_ID"/>
</field>
<field name="contractId">
<jdbc-field-map type="value" column="CONTRACT_ID"/>
</field>
<field name="description">
<jdbc-field-map type="value" column="DESCRIPTION"/>
</field>
<field name="modificationId">
<jdbc-field-map type="value" column="MODIFICATION_ID"/>
</field>
<field name="obligations">
<jdbc-field-map type="one-many"
ref-column.CONTRACT_ID="CONTRACT_ID"
ref-column.MODIFICATION_ID="MODIFICATION_ID" table="OBLIGATION"/>
</field>
</class>
<class name="Obligation">
<jdbc-class-map type="base" table="OBLIGATION"/>
<jdbc-version-ind type="version-number" column="JDO_LOCK"/>
<field name="amount">
<jdbc-field-map type="value" column="AMOUNT"/>
</field>
<field name="id">
<jdbc-field-map type="value" column="OBLIGATION_ID"/>
</field>
<field name="modification">
<jdbc-field-map type="one-one"
column.CONTRACT_ID="CONTRACT_ID" column.MODIFICATION_ID="MODIFICATION_ID"/>
</field>
</class>
</package>
</mapping>
"Patrick Linskey" <[email protected]> wrote in message
news:[email protected]...
Yes; see
http://solarmetric.com/Software/beta/3.0.0/b1-docs/docs/ref_guide_mapping_factory.html
for descriptions of the various options.
The three basic ways to store mapping information are: in metadata
extensions, in the database, and in separate .mapping files. IMO, storing
in separate .mapping files is the best -- storing the info in metadata
makes your metadata get really ugly, and storing it in the db makes it
relatively hard to modify (at least, until we release our GUI tool...)
-Patrick
On Mon, 04 Aug 2003 19:38:16 -0400, Alex Roytman wrote:
can mapping files be used as an alternative to jdo extensions to
complement standard jdo metadata or it is strictly for mapping tool? in
other words can I have a standard jdo metadata with no extensions plus a
mapping file to replace jdo metadata with extensions if yes, what is
your primary format two file (jdo + mapping file) or one file jdo with
extensions--
Patrick Linskey
SolarMetric Inc.
"Patrick Linskey" <[email protected]> wrote in message
news:[email protected]...
Can you post the command that you used to run the conversion? I just ran
through the conversion process for a small (10 tables or so) schema
earlier today with no problems.
-Patrick
On Mon, 04 Aug 2003 19:31:06 -0400, Alex Roytman wrote:
it outputs <field_name>X instead completely disregarding what's in the
metadata--
Patrick Linskey
SolarMetric Inc.

Similar Messages

  • Membership rules does not work with UDF column name having the max length

    Found a bug in OIM .
    Membership rules does not work with UDF column name having the maximum length
    Steps to Reproduce
    1.Create a UDF having max column name length for eg UDF_USR_PERSONAL_SUB_DOMAIN_CO (lable = Personal Code)
    2. Create a simple Rule like Personal Code = 7000
    3. Assign this Rule as a member ship rule of a Group.
    4. Create a user with Personal Code = 7000.
    5. User doesnot get the group membership.
    Thanks
    Suren

    Yes , i verified logs as well .
    If you just decrease the column name length , w/o making change to any other attributes , it starts working ..
    Thanks
    Suren

  • Please help me I am not seeing Database table column names in field explorer view

    Hi,
    I am developing a crystal report using eclipse and sql server. After creating connection, when i drag and drop tables, The table name and its columns should apper in field explorer view. Then we drag the columns onto crystal report. Unfortunately I am just  seeing only table names but not column names in field explorer view. Could anyone help me?
    After downloading eclipse I have plugged in the crystal report using the following instructions
    1. Click on the Help menu, and then Software Updates > Find and Install... to open the Install/Update wizard.
    2. Select Search for new features to install and click Next.
    3. Click the New Remote Site button. This will launch the New Update Site wizard
    4. Type the Business Objects Updsate Site for the Name field and the following for the URL: http://www.businessobjects.com/products/dev_zone/eclipse/
    5. Click OK to complete the wizard.
    6. Enable the newly created Business Objects Update Site checkbox as well as the Callisto Discovery Site (which should appear by default with Eclipse 3.2) and click Finish.
    Expand the Business Objects Update Site node and enable the Crystal Reports for Eclipse 1.0.0v555 checkbox.
    8. Expand the Callisto Discovery Site and click the button "Select Required". This will automatically select the required Eclipse features necessary to successfully install Crystal Reports for Eclipse.
    Thank You
    Rajavardhan Sarkapally

    Now we have a lot of views which select data from the tables, but I need to get the "Table Column Name" that is linked in the view.
    If you are using SQL Server 2012/2014, then you can use
    sys.dm_exec_describe_first_result_set (Transact-SQL) to gte the informations.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Report Column Attributes Does Not Display All the Column Names

    Good Morning,
    I have an interactive query Select * from table_name. I have to select * since my query returns well over 32k. I have 162 columns in the query. On the screen, all the columns are displayed; however, on the report tab, only about half of the columns are displayed. The rest are cut off. I need to be able to go into these field's attributes. Is this an APEX bug, or am I just missing something.
    Regards,
    Kelly

    Hello Tony,
    I can't break them out because APEX is limited to one interactive report per page. There is need to be able to do computations on the data, which interactive reports allows. The data is all statistical.
    Regards,
    Kelly

  • Pages '08 Export does not honor the "Hide extension" checkbox

    I have noticed that Pages '08, even with the latest update (3.0.3), does not honor the state of the "Hide extension" checkbox in the Export save dialog (or "sheet" that slides out from the title bar). Specifically, I have seen this happen when exporting to Word. When un-checking the "Hide extension" checkbox, the filename is displayed in the dialog with the .doc extension, but the file appears in the save folder (anywhere in the file system) without the .doc extension until I do a Get Info on the file and un-check Hide Extension in the Name & Extension section.
    This is really annoying because I hate automatic hiding of file extensions in general, and I find it unacceptable with any kind of MS Office docs because my Windows-using colleagues can't seem to cope without a file extension they recognize.
    Also note that this does not seem to affect the Save or Save As dialogs in Pages '08, only the Export save dialog. I can create a regular Pages document, do a Save As, uncheck Hide Extension, and I'll see the document show up in the file system with the .pages extension.
    Is this a known bug in Pages '08? I can't find any mention of it in the forums. I also want to know if this is fixed in Pages '09. I've been looking for a way to report this as a bug, but am not having much luck.

    LionMage wrote:
    Is this a known bug in Pages '08?
    Yes. just add the extension manually in the Finder.
    I can't find any mention of it in the forums.
    It has been mentioned many times but not lately.
    I also want to know if this is fixed in Pages '09.
    No.
    I've been looking for a way to report this as a bug, but am not having much luck.
    +Menu > Pages > Provide Pages Feedback+
    Peter

  • Server does not return metadata, check the query.

    Hi,
    I need your help in using report designer of Bex, The issue is when we try to open a query in the report designer we get a Error Server does not return metadata, check the query.
    Thanks in Advance
    Kind Regards
    Phutane

    Hi,
    All the yellow and red lights will have an effect on query performance or execution.  Read up on them as there are too many to explain via this forum.
    There is a document on SDN on query performance.  Some useful links:
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9f4a452b-0301-0010-8ca6-ef25a095834a]
    [http://help.sap.com/saphelp_nw70/helpdata/en/41/b987eb1443534ba78a793f4beed9d5/frameset.htm]
    [http://help.sap.com/saphelp_nw70/helpdata/en/d9/31363dc992752de10000000a114084/frameset.htm]
    [http://help.sap.com/saphelp_nw04/helpdata/en/2e/caceae8dd08e48a63c2da60c8ffa5e/frameset.htm]
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e0501cb9-d51c-2a10-239c-c141a22c45a6]
    Cheers...

  • Global ATP does not honor supply from some orgs

    Global ATP does not honor supply from some orgs
    ATP based on planning data.
    Planning completes OK and shows enough supply (in planning workbench).
    ATP plan based on Bill of Distribution defined like this:
    Source for ORG1 is ORG2 -&gt;
    Source for ORG2 is ORG3 -&gt;
    Source for ORG3 is Supplier
    When inquiring ATP in ORG1 it considers supply only from ORG2,
    nor ORG3/Supplier.
    Despite the plan contains supply from all orgs.
    Any solution ?

    I think you need to set up a direct relationship between ORG1, ORG3 and the supplier. ORG3 and supplier would be lower ranked options.
    For Example-
    ORG1 from ORG2 rank 1 100%
    ORG1 from ORG3 rank 2 100%
    ORG1 from Supplier rank 3 100%
    The results will also depend on whether the plan is constrained and/or optimized.

  • AR aging report does not print alphabetically by customer name in 8.8

    AR aging report does not print alphabetically by customer name in version 8.8.
    It is possible to create a custom layout for the receivables aging summary report (to print alphabetically by BP name) to overcome this problem. However, itu2019s not possible for the u201Cdetailed receivables aging reportu201D or u201Ccustomer statement reportu201D.
    Why has SAP changed this functionality? In version 2007 SAP takes the order of the rows set on the screen unless other order is specified in the layout.
    How can we make the u201Cdetailed receivables aging reportu201D and u201Ccustomer statement reportu201D print alphabetically by customer name?
    Steps to reproduce:
    Business partners > Business partner reports > Aging > customer receivables aging
    Doubleclick on customer name to sort it in alphabetical order.
    Click on preview and select u201Creceivables aging summary reportu201D.
    The system layouts do not print by customer name in alphabetical order.
    Click on preview and select u201Cdetailed receivables aging reportu201D. The system layouts do not print by customer name in alphabetical order.
    Also, customer statement report does not print by customer name in alphabetical order.
    In SAP 2007 versions, when a marketing document or aging report is printed, SAP takes the order of the rows set on the screen unless other order is specified in the layout.
    In SAP 8.8 although it works the same way for marketing documents, it doesnu2019t work like this for Aging reports.
    I was able to change the order for the u201CReceivables Aging Summary Reportu201D only.  We cannot overwrite a System report, I had to create a new layout called:  u201CBusiness Partner Aging (Summary) (Alphabetically Sorted)u201D.
    I couldnu2019t set up the order based on BP Name for the other 2 options: Detailed Receivables Aging Report and Customer Statement Report (One page per Customer).
    Iu2019ve checked print settings and properties, and I donu2019t see any way of changing the default order for these reports.

    Reported it to SAP support + they plan to fix it in a future patch.

  • Position does not exist in table T528

    I have transported from Dev to QAS.
    I am trying to hire an employee using PA40 and when i select position it is giving an error saying does not exist in table T528

    Hello,
    I have created a entire new org. structure in QA including the positions.
    When I am trying to assign the positions I am getting the same error as entry does not exist in table T528B.
    I have checked the table and there are no entires for my positions.
    What I need to do now?
    Kindly reply.
    Thank you

  • Argument does not exist in Table?

    Hi,
    I'm trying to create Planned Independent Requirements using the BAPI_REQUIREMENTS_CREATE.
    Getting the error "Argument does not exist in Table".
    I'm passing the following parameters.
    REQUIREMENTS_ITEM
          MATERIAL    = '000000000000015197'.
          PLANT         = 'ABC1'.
          REQU_TYPE= 'TEST'.
          VERSION    = '00'.
          VERS_ACTIV = 'X'.
          REQ_NUMBER = ''.
    REQUIREMENTS_SCHEDULE_IN
    DATE_TYPE = '2'.
    REQ_DATE  = '20101001'.
    REQ_QTY   =  50.
    PROD_VES  = '0010'.
    REQUIREMENT_PARAM
          STATUS  = ''.
          TRTYP   = 'X'.
          DELKZ   = SPACE.
          SYNCRON = 'X'.
    Did I miss any parameters?
    Why I'm getting this error?
    Thanks
    Thruna

    Ryan,
    Are you passing all the parameters like below?
      SSHDIN-DATE_TYPE = '2'.
      SSHDIN-REQ_DATE  = '20100101'.
      SSHDIN-REQ_QTY   =  100.
      APPEND SSHDIN.
          ITEM-MATERIAL    = '00000000000012345'.
          ITEM-PLANT         = 'ABC1'.
          ITEM-REQU_TYPE  = 'TEST'.
          ITEM-VERSION    = '00'.
          ITEM-VERS_ACTIV = 'X'.
          ITEM-REQ_NUMBER = ''.
          ITEM-MRP-AREA = 'ABC1'.
          PARAM-STATUS  = 'X'.
          PARAM-TRTYP   = 'X'.
          PARAM-DELKZ   = SPACE.
          PARAM-SYNCRON = 'X'.
          CALL FUNCTION 'BAPI_REQUIREMENTS_CREATE'
               EXPORTING
                    REQUIREMENTS_ITEM        = ITEM
                    REQUIREMENT_PARAM        = PARAM
               IMPORTING
                    MATERIAL                 = BAPI_MATNR
                    PLANT                    = BAPI_WERKS
                    REQUIREMENTSTYPE         = BAPI_BEDAE
                    VERSION                  = BAPI_VERSB
                    REQMTSPLANNUMBER         = BAPI_PBDNR
               TABLES
                    REQUIREMENTS_SCHEDULE_IN = SSHDIN
                    RETURN                   = RETURN1
               EXCEPTIONS
                    OTHERS                   = 1.
    Thanks
    Thruna

  • Management Studio 2008 does not refresh after table create / alter

    hello
    Management Studio 2008 does not refresh after table create / alter, why?
    f5 / refresh button does not work in "Object Explorer".... i always need the restart the whole application to see any changes, this is strange...
    regards, jan

    Hi jm,
    I’m writing to follow up with you on this post. Was the problem resolved after performing Vishal ‘s steps? If you are satisfied with our solution, I’d like to mark this issue as "Answered". Please also feel free to unmark the issue, with any new findings
    or concerns you may have.
    Thanks,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Certificate does not contain the correct site name

    Hello,
    I have to make a midlet that connect to a tomcat 5.5.9 server with ssl.
    I import the certificate whit tomcat alias in the wireless toolkit but when i run the midlet this error appear: Certificate does not contain the correct site name
    import java.io.*;
    import javax.microedition.midlet.*;
    import javax.microedition.io.*;
    import javax.microedition.lcdui.*;
    public class HelloNet extends MIDlet implements CommandListener , Runnable{
    // User interface command to exit the current
    // application.
    private Command exitCommand = new Command("Exit",
    Command.EXIT, 2);
    // User interface command to issue an HTTP GET
    // request.
    private Command getCommand = new Command("Get",
    Command.SCREEN, 1);
    /// The current display object.
    private Display display;
    // The url to GET from the 'net.
    private String url;
    * Initialize the MIDlet with a handle to the
    * current display.
    public HelloNet() {
    url = "https://127.0.0.1:8443/Hello.txt";
         display = Display.getDisplay(this);
    * This lifecycle method should return immediately
    * to keep the dispatcher
    * from hanging.
    public void startApp() {
         showPrompt();
    * Display the main screen.
    void showPrompt() {
    String s = "Press Get to fetch " + url;
    TextBox t = new TextBox("Http Result", s,
    s.length(), 0);
    t.addCommand(exitCommand);
    t.addCommand(getCommand);
    t.setCommandListener(this);
         display.setCurrent(t);
    * pauseApp signals the thread to stop by clearing
    * the thread field.
    * If stopped incorrectly, it will be restarted from
    * scratch later.
    public void pauseApp() {
    * destroyApp must cleanup everything. The thread
    * is signaled
    * to stop and no result is produced.
    * @param unconditional is a flag to indicate that
    * forced shutdown
    * is requested
    public void destroyApp(boolean unconditional) {
    * commandAction responds to commands
    * @param c command to perform
    * @param s Screen displayable object
    public void commandAction(Command c, Displayable s) {
         if (c == exitCommand) {
         destroyApp(false);
         notifyDestroyed();
         } else if (c == getCommand) {
              Thread th= new Thread (this);
              th.start();
    * Read the content of the page.
    public void run() {
    TextBox t = null;
    StringBuffer b = new StringBuffer();
    HttpsConnection c = null;
    InputStream is = null;
         try {
         int len = 0;
         int ch = 0;
         System.out.println("Cerco di leggere");
    c = (HttpsConnection)Connector.open(url);
    c.setRequestMethod(HttpsConnection.GET);
         is = c.openInputStream();
    // length of content to be read.
    len = (int) c.getLength();
    if (len != -1) {
    // Read exactly Content-Length bytes
    for(int i=0; i<len; i++) {
    if((ch = is.read()) != -1) {
    b.append((char) ch);
    } else {
    // Read until connection is closed.
    while((ch = is.read()) != -1) {
    len = is.available();
    b.append((char) ch);
    t = new TextBox("Https Result", b.toString(),
    b.length(), 0);
         } catch (Exception e) {
    e.printStackTrace();
    String s = e.toString();
    if(s != null) {
    t = new TextBox("Https Error", s, s.length(),
    0);
    } finally {
    if (is != null) {
         try {
              is.close();
         } catch (Exception ce) { }
    if (c != null) {
         try {
              c.close();
         } catch (Exception ce) { }
    display.setCurrent(t);
    }

    re: code tags, please see http://forum.java.sun.com/help.jspa?sec=formatting.
    As for the rest:
    See, we now know that you used keytool to generate you certificate. You need a new certificate. This time, when keytool asks you for a first and last name, type 127.0.0.1.

  • VBA Outlook Email Failing: "Outlook does not recognize one or more names"

    I use VBA code to send emails from within Microsoft Project 2010 Standard to notify task owners of task status.  This code has been working fine until the last couple of weeks.  Now I get the error "Outlook does not recognize one or more names". 
    The VBA code sends email to each addressees internet address.  I am referencing the Microsoft Outlook 14.0 Object Library.
    I deleted the "suggested contacts" entries in my address book to no avail. 
    Below is the key snipit of code I am using.  I get the error when the ".Send" line is executed.
    When I check OutMail.To, .CC, etc everything looks fine.
    Any suggestions would be greatly appreciated.
    Dim OutApp As Object
        Dim OutMail As Object
        Set OutApp = CreateObject("Outlook.Application")
        Set OutMail = OutApp.CreateItem(0)
        On Error GoTo BadOutlookMail
       ' Change the mail address and subject in the macro before you run it.
        With OutMail
            .To = vTo
            .CC = vCC
            .BCC = vBCC
            .Subject = strSubject
            .Body = strBodyText
        End With

    Hi,
    I'm glad to hear your problem has been resolved by yourself, I hope this thread will hope other users who may come up against the same problem.
    Thank you for sharing your experience here with us.
    Regards,
    Melon Chen
    TechNet Community Support

  • Database Adapter Wizard does not show accessible table

    HI guys,
    in the wizard I am unable to see the tables which I need to use for database adapter.
    But I do have access to those tables, and able to select from them in SQL worksheet from with in Jdev.
    I dont own the tables, but my user id have readable access to those tables.
    Any help is appreciated.
    P.S. If I didnt explain it properly, plz let me know. It really creates lot of access issues if I can only create DB adapter on My owned tables.
    :)

    Hi there,
    please see the answer to your duplicate post on the BPEL forum:
    DB Adapter does not show selectable tables
    In general BPEL forum gets a lot more traffic but I will try to address questions on both equally.
    Thanks
    Steve

  • Error in formula field: Column 'TASK_BCWP' does not belong to table Task

    Hi,
    We have a formula field to calculate the a cost KPI and that field throws an error in the ULS logs. The error is: PWA:PWA, ServiceApp:Project Server Service Application, User:GDFN\IPL_Content, PSI: SSP: Formula Evaluation Failed! - trying to continue - (System.ArgumentException:
    Column 'TASK_BCWP' does not belong to table Task.
    We are running EPM 2010. Recreating of the custom field did not work. We are not running with the latest CU yet.
    The formula that we use is:
    IIf([BCWP] > 0; [ACWP] / [BCWP]; 1)
    The stack trace from the ULS log is:
    PWA:http://gdfn-ipl-14/PWA, ServiceApp:Project Server Service Application, User:GDFN\IPL_Content, PSI: SSP: Formula Evaluation Failed! - trying to continue - (System.ArgumentException: Column 'TASK_BCWP' does not belong to table Task.
    at System.Data.DataRow.GetDataColumn(String columnName)
    at System.Data.DataRow.get_Item(String columnName)
    at Microsoft.Office.Project.Server.BusinessLayer.FormulaDataProvider.HaveColumn(DataRow row, String columnName)
    at Microsoft.Office.Project.Server.BusinessLayer.FormulaDataProvider.GetTaskData(Guid nodeId, Int32 fieldId)
    at Microsoft.Office.Project.Server.BusinessLayer.FormulaDataProvider.GetDataInternal(Int32 entityId, Guid nodeId, Int32 fieldId, Boolean canChangeEntity)
    at Microsoft.Office.Project.Server.BusinessLayer.FormulaDataProvider.GetData(Int32 entityId, Guid nodeId, Int32 fieldId)
    at Microsoft.Office.Project.Server.BusinessLayer.Formula.FieldExpression.Evaluate(IFieldEvaluator context, Guid nodeId)
    at Microsoft.Office.Project.Server.BusinessLayer.Formula.GreaterExpression.Evaluate(IFieldEvaluator context, Guid nodeId)
    at Microsoft.Office.Project.Server.BusinessLayer.Formula.ConditionalExpression.Evaluate(IFieldEvaluator context, Guid nodeId)
    at Microsoft.Office.Project.Server.BusinessLayer.Formula.FormulaEvaluator.Evaluate(PlatformContext context, Expression formula, Int32 entityId, Int32 fieldId, Guid nodeId, Dictionary`2 entityFormulaFields)) + -- FieldId = 188776525 -- NodeId = 1b1149c1-52c2-4f7f-ba60-6d65effdb6b3
    -- Formula = IIf(Greater([MSPJ188743691], 0), Divide([MSPJ188743800], [MSPJ188743691]), 1)
    I have no clue where to start looking for the cause of this error. Any help would be appreciated.
    Thanks,
    Quint Mouthaan

    Hi Quint,
    This can because of database fragmentation. I would recommend you to re-index the databases and perform a de-fragmentation and can check the behavior.
    On the other hand when you receive this message, you can try an IISRESET and check. Additionally you can use refer to following link for de-fragmenting queries.
    http://support.microsoft.com/kb/943345
    Happy troubleshooting.
    Vikram Daruru - MSFT

Maybe you are looking for

  • Premiere Pro Refuses to Load the Correct Clip.

    Oh man, Premiere has been hosing my projects with extreme prejudice and causing me to seriously question my sanity. Here's what's going on. I open an existing project and scrub through a sequence only to find that certain clips in the sequence seem t

  • Fix multiple broken aliases after sync

    I've synchronised my iMac with my new MacBook. I have quite a lot of aliases set up on the iMac, however, when they're transferred across, they retain their source path (i.e. when on the MacBook, clicking on the alias doesn't work because it's lookin

  • Infosource invisible in Productive system (APO BW)

    Hello I've created a new setup where i'm uploading from a flat file to an infocube. It works fine in the T and Q system. However after transport to the P system i can only see the infocube in RSA1, i cannot see the infosource so i can't create an inf

  • False Messages

    I often received calls with the caller ID showing "Message Receive."  (I'm assuming my phone screen is not large enough to show the "d" in received.)  Note this is not the same as the problem "Video Message Received."  There is no phone number associ

  • Accessing Public Site Manager

    I've successfully migrated and published our site using Public Site Manager. How do I access PSM in order to edit the public site? When I use the admin log in the page no longer has a Public Site Manager link as it did before publishing.