Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm new to ABAP, so please bear with me.

I'm getting the error "IT_COMBINE" is a table without a header line and therefore has no component called "EBELN".

I have tried using "into corresponding fields" and that doe not work.

I have provided my code here: http://pastebin.com/y64T2nah

Thank you in advance!

share|improve this question

2 Answers

up vote 2 down vote accepted

You can not use the fields in internal tables directly if you did not declare your internal table with header line.

There are 2 possibilities to change your code.

  1. You have called field ebeln in line no 35. Since you did not declare it_combine with header line in line no 19, you can not use it_combine-ebeln like this. Instead you have to declare Work Area

    Data wa_combine type ty_combine. 
    

and use the work area in line no 35 as

Loop at it_combine into wa_combine .
 select ebeln lifnr ekorg bsart ekgrp
   into table it_po
    from ekko
      where ebeln = wa_combine-ebeln.
End Loop.

2 You have to declare your internal table with header line

 Data it_combine type standard table of ty_combine with header line.

Hope it will be usefull. Refer Sap help document for breif description about header line and work area.

Thanks

Dhivya

share|improve this answer
1  
SAP recommends against using header lines. The loop part of your answer would work, but rather than suggesting a header line, a for all entries select would make more sense. – Bryan Cain Aug 9 '12 at 10:38
Thank you everyone! – Richard Aug 9 '12 at 14:12

You can also use the addition "FOR ALL ENTRIES IN" for statement "SELECT":

SELECT DISTINCT ebeln netwr werks INTO TABLE it_combine
  FROM ekpo
  WHERE netwr IN s_netwr. "in is only for select options

  CHECK it_combine[] IS NOT INITIAL. " not empty, obligatory

 SELECT ebeln lifnr ekorg bsart ekgrp
  INTO TABLE it_po  
  FROM ekko FOR ALL ENTRIES IN it_combine
  WHERE ebeln = it_combine-ebeln.

"with header line" or additional work area - not need

Also, using "with header line" impossible in the OOP context.

share|improve this answer
Worth mentioning that FOR ALL ENTRIES IN x is a not-cool addition, and it should be used only when x is a rather small itab (regarding the row count). Of course, it's good that you mentioned it. – vlad-ardelean Aug 18 '12 at 6:30
I'd change the first select to: SELECT ebeln netwr werks INTO TABLE it_combine FROM ekpo WHERE netwr IN s_netwr. SORT it_combine. DELETE ADJACENT DUPLICATES FROM it_combine COMPARING ALL FIELDS. to leave removing duplicates to ABAP, not the DB engine. – bariz Sep 3 '12 at 17:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.