‎2007 Feb 21 11:32 AM
Hi,
DATA: rt_header type line HRPAY99_RT
When I am trying to declare a line type like the above table type , It is giving an error as follows:
unable to interpet. Possible causes of error.
‎2007 Feb 21 11:49 AM
hi,
declare like this.
DATA : RESULT_DATA TYPE HRPAY99_RT .Regards,
Anver
‎2007 Feb 21 12:05 PM
Hi Sowmya.
In declaration use LINE OF in place of LINE.
DATA: rt_header type line of HRPAY99_RT.
Regards,
Srini