Skip to Content
0
Former Member
Oct 12, 2005 at 08:55 PM

Start routine problem

26 Views

I am having ODS1, ODS2. (Both are containing marital status InfoObjects)

My scenario is

1. I have to load data from a flat file to ODS1, which are having same marital status in ODS2.

For this I am writing a start routine .In this start routine first I am trying to read the records from ODS2. pls find the code ….but when I am trying to activate the transfer rules ..i am getting error…..i think the problem is in my code ….can you correct my code pls ..I am not a ABAP’er

TABLES : /BIC/AZMSTATUS00. (…….ODS2)

Data : ITAB LIKE /BIC/AZMSTATUS00 OCCURS 0 WITH HEADER LINE.

data: MST LIKE /BIC/AZMSTATUS00-/BIC/YM0_MST .

select * from /BIC/AZMSTATUS00 INTO TABLE ITAB.

  • READ TABLE ITAB.

  • MOVE ITAB-/BIC/YM0_MST TO MST.