I am using java api webservice. I want create,read,update,delete(CRUD) values into my one2many field. I tried many ways to insert the values,but no output.
Then i insert values manually into the table and tried to read it. No output.
My fields are below
hr_employee()
experience : fields.one2many('employee_experience','name')
employee_experience()
name : fields.many2one(hr.employee)
firm_name : fields.char()
year : fields.date()
salary : fields.char()
I want to insert a value into firm_name,year,salary and also want to read these value through java api web service.
How can insert/read/update/delete values in a one2many field using JAVA API?