ERROR org.hibernate.util.JDBCExceptionReporter - ORA-00904: "THIS_"."thermalOrEorDecsDL": invalid identifier

Getting the following error when accessing new CDT ,Datastore is published successfully and the new column is there in DB aswell.

ERROR org.hibernate.util.JDBCExceptionReporter - ORA-00904: "THIS_"."thermalOrEorDecsDL": invalid identifier

  Discussion posts and replies are publicly visible

Parents
  • the error itself is this
    ——————
    ORA-00904 string: invalid identifier
    Cause: The column name entered is either missing or invalid.
    Reference: www.dba-oracle.com/t_ora_00904_string_invalid_identifier.htm
    —————

    So, Please check in your CDTs how are you doing your mapping’s to the table and the fields. When doing this please add to all annotations(@Table, @Columns, and so on) the attribute “name”.
    And the trick is that all the names(the name attribute value) should be uppercase.
    For example: @Table(name=“YOUR_TABLE_NAME”)

    I am not sure why but when using oracle this kind of things happens, hoe this helps.

    Best Regards
    Jose Perez
Reply
  • the error itself is this
    ——————
    ORA-00904 string: invalid identifier
    Cause: The column name entered is either missing or invalid.
    Reference: www.dba-oracle.com/t_ora_00904_string_invalid_identifier.htm
    —————

    So, Please check in your CDTs how are you doing your mapping’s to the table and the fields. When doing this please add to all annotations(@Table, @Columns, and so on) the attribute “name”.
    And the trick is that all the names(the name attribute value) should be uppercase.
    For example: @Table(name=“YOUR_TABLE_NAME”)

    I am not sure why but when using oracle this kind of things happens, hoe this helps.

    Best Regards
    Jose Perez
Children