Skip to Content
0
Former Member
May 20, 2010 at 09:08 AM

Deep stracture problem

25 Views

Hi,

Good day guys

Ive got a two tables one which is lt_afvc and another is ct_claim. ct_claim is deep stracture.

each one got two records. i need to check one by one records.

ive got a prob when looping the second record with ct_claim. ive put the exit after modify first record .bcoz i need to check one record by record. after exit the second loop, its goes the first loop for the second record, it pass the second record then comes to second loop. here my prob starts. bcoz here ct_claim passes the again first record instead of second record. how to check record by record.

Ive tried with index.but it doesnt workout.

loop at lv_afvc into wa
 if wa-larnt = 'hm'.
 if wa_wty_ind = 'x'.
  loop ct_claim into wa1
   wa1-item_type = 'fr'.
   modify ct_claim from wa1.
  exit.
 endloop.
endloop

could u plz any one give me guide?

Regards

Chandu