Hi Experts,
I have created a Generic Back end Service where I have created a custom field to get Manager's Pernr no for an employee. I followed the Part 5: basic HCM Process and Forms scenario (Backend Service) by Philip Johnston. ()Part 5: basic HCM Process and Forms scenario (Backend Service)
In Initialize method I am able to fetch Manager's Pernr using my own logic but when i try to update this Manger's Pernr to FPM FORM using
DATA ls_field_value LIKE LINE OF service_field_values.
.
.
.
.
MODIFY service_field_values INDEX idx FROM ls_field_value TRANSPORTING fieldvalue.
It is not being updated in form. Rather it is only showing 00000000. I would greatly appreciate any help regarding this.