Skip to main content
August 29, 2022
Question

Why do I get - "not-null property references a null or transient value" error?

  • August 29, 2022
  • 7 replies
  • 0 views

The first save does Ok, and the ID is created. So I dont understand why does it says that the ID is null in the second save.

 

the ID has been created in the first table, as you can see here 

7 replies

August 29, 2022

in your table structure, there is a column 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. Please check the candidate skills CDT primary key

joaoc1131Author
August 29, 2022

joaoc1131Author
August 29, 2022

the value that i´m trying to pass is the primary key from the first table, which is not null. It is created and it appears in the database after I run the first part of the process model