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.
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