friends
i had change screen where i want to display the data from databse first come in text boxes then i will update
so for retriving data first
i had written
data : begin of itab_final,
perid like zhr_peR_m-perid,
fname like zhr_peR_m-fname,
lname like zhr_peR_m-lname,
end of itab_final.
module USER_COMMAND_0011 input.
CASE SY-UCOMM.
when 'DISP'.
break-point.
perform get_data.
endcase.
endmodule. " USER_COMMAND_0011 INPUT
form get_data .
select perid fname lname from zhr_peR_m into corresponding fields of itab_final
where perid = zhr_peR_m-perid.
endselect.
itab_final-fname = zhr_per_m-fname.
endform. " get_data
zhr_peR_m-fname is name of input/output text box where i want to display the output
please me the error and the solution for same
With Best Regards
Ruby