how to fetch data form without header line internal table ?
Answer Posted / p.lokesh
It is not possible to fetch data from Internal Table
without header line. u have to give explicit work area I
mean header to handle the records.
Ex code :
Types : Begin of ty_marc,
matnr type matnr,
werks type werks_d,
end of ty_marc.
Data : it_tab type standard table of ty_marc,
wa_tab type ty_marc.
* select statement to read the data.
* Display the output.
loop at it_tab into wa_tab.
write : / wa_tab-matnr,
wa_tab-werks.
endloop.
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
What is example class
What is the disadvantage of a call by reference? : abap modularization
How can we create callable modules of program code within one abap/4 program?
Difference between Read and Get cursor?
What are the different control break statements available inside a loop?
Event handling in oops
What is the function of a data element?
Different between Interface and Abstract classes?
Structures can contain data only during the runtime of a program (t/f) : abap data dictionary
What are the different types of parameters? : abap modularization
What is the use of a pretty printer?
1/ How do u apprach if error occur in sending idocs ? 2/ where u assigned process code ?
what is a text table ?
Explain the use of insert and append statement in sap abap?
What is an rfc?