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

FUNCTION 'RSDRI_ODSO_INSERT'

Former Member
0 Likes
614

Hi

I load data from CSV files to transactional ODS in BW.

My code looks like:

PERFORM READ_FILE TABLES it_data it_data1 USING p_file.

CALL FUNCTION 'RSDRI_ODSO_INSERT'

EXPORTING

I_ODSOBJECT = C_ODS

I_T_INSERT = it_data1

and works well.

but if i try to chang code to:

PERFORM READ_FILE TABLES it_data it_data1 USING p_file.

PERFORM LOAD_DATA TABLES it_data1.

......

***************************************************************

*FORM

***************************************************************

FORM LOAD_DATA TABLES it_data1.

CALL FUNCTION 'RSDRI_ODSO_INSERT'

EXPORTING

I_ODSOBJECT = C_ODS

I_T_INSERT = it_data1

i get error.

How to change code so that works well?

THX

Adam

1 REPLY 1
Read only

Former Member
0 Likes
403

SOME SUGESSTIONS