Cita: Estado HTTP 500 - Request processing failed; nested exception is org.hibernate.exception.ConstraintViolationExcepti on: could not execute statement
java.sql.SQLIntegrityConstraintViolationException: ORA-01400: no se puede realizar una inserción NULL en ("DATADA"."T_PERFIL_DEMANDA"."IDLINEA")
El error es claro y preciso.
Tienes una restriccion not null para el campo IDLINEA. Sin embargo estas intentando guardar un null.
Seguramente no estas poblando correctamente el objecto.
Un saludo