Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Reg:Payroll calculation

Former Member
0 Likes
368

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.

2 REPLIES 2
Read only

anversha_s
Active Contributor
0 Likes
345

hi,

declare like this.

DATA : RESULT_DATA TYPE HRPAY99_RT .

Regards,

Anver

Read only

Former Member
0 Likes
345

Hi Sowmya.

In declaration use LINE OF in place of LINE.

DATA: rt_header type line of HRPAY99_RT.

Regards,

Srini