Hi Sakthi,
I have tried using the Modify instead of Update statement. However, whle debuggin, the modify statement gave sy-subrc = 0. But values are not added into the table.
Yes, it seems to be a problem with passing the internal table values into the function module. I am getting the dump while executing the function module alone. In the input parameters screen I have provided each field name (attributes starting with BIC/Z*) and its respective values in the I_T_TABLE.
Two internal table are neither compatible not convertble.
Since this is a /BIC/PZ*, I had included the fields OBJVERS, CHANGED in the internal table.
I have passed the values A & M for OBJVERS fields in internal table.
wa_table-employee = l_emloyee.
wa_table-OBJVERS = 'A'.
CHANGED =''.
wa_table-ename = l_ename.
wa_table-eaddress = l_eaddress.
append it_table from wa_table.
Could you tell me how I should define my internal table or how I should pass values to this function module ?
Regards,
Spring