Application Development 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 REPORT report name err.

vallamuthu_madheswaran2
Active Contributor
0 Kudos

Hi Friends,

READ REPORT 'zhr_com_emp_sal_mast_dwn1' INTO t.

i am using the above statement.

here we get 'zhr_com_emp_sal_mast_dwn1' program lines to internal table t.

now i want to execute the t-lines ie i wnt to execute the program 'zhr_com_emp_sal_mast_dwn1' using current program.

is i possible?

Thanks & Regards,

Vallamuthu.m

5 REPLIES 5

former_member189059
Active Contributor
0 Kudos
Submit zhr_com_emp_sal_mast_dwn1.

Former Member
0 Kudos

Why do you want to read into internal table...

Do like this...


SUBMIT zhr_com_emp_sal_mast_dwn1.  "write this stmt in current program..

Former Member
0 Kudos

Hi,

Make this to UPPER CASE 'zhr_com_emp_sal_mast_dwn1'

<b>'ZHR_COM_EMP_SAL_MAST_DWN1'</b>

Reward Points if this helps,

Satish

0 Kudos

'ZHR_COM_EMP_SAL_MAST_DWN1' in this program has internal tables. i want to get the values withot distrubing the program coding 'ZHR_COM_EMP_SAL_MAST_DWN1' .

Former Member
0 Kudos

Hi,

Ignore my old answer

do like this

Data: t_line LIKE LINE OF rspar_tab,

t LIKE RANGE OF text,

SUBMIT report1 WITH <selcrit> IN t.

Regards,

Satish