An error occurred while trying to write to the data store [ISR Data Store]. No values have been written. Details: org.hibernate.PropertyValueException: not-null property references a null or transient value : ISRJMeetingAdhocReviewerDT8605.studyRequestId

Certified Associate Developer

Hi All,

I am getting the below error at write to multiple data story entities node ( Note ISRJMeetingAdhocReviewer --This is not a new table )

An error occurred while trying to write to the data store [ISR Data Store].  No values have been written. Details: org.hibernate.PropertyValueException: not-null property references a null or transient value : ISRJMeetingAdhocReviewerDT8605.studyRequestId (APNX-1-4208-004)

Thanks in advance

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer

    in your table structure, there is a column studyRequestId  which should not accept null values and you are trying to pass the null values, that;s why you got the issue. As a suggestion, add primary key as a auto generated. hope it will solve the problem if this is for primary key column, if it is for other column you have to check into table structure.

Reply
  • 0
    Certified Lead Developer

    in your table structure, there is a column studyRequestId  which should not accept null values and you are trying to pass the null values, that;s why you got the issue. As a suggestion, add primary key as a auto generated. hope it will solve the problem if this is for primary key column, if it is for other column you have to check into table structure.

Children