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
Have you worked with support? How ticket comes to you? What were the timings for resolving tickets types of severity?
What function does data dictionary perform?
What should be declared explicitly in the corresponding abap/4 statements to access internal tables without header lines & why? : abap modularization
What are the two ways for restricting the value range for a domain? : sap abap data dictionary
What is the use of a pretty printer?
What will exactly the hide statement do?
How can you display frames (horizontal and vertical lines) in lists?
What are number ranges?
How to upload data using catt ? : abap hr
Explain the Inportance of pa30? : abap hr
What are the dis-advantages of logical databases? : abap hr
What is the difference between dialog program and a report?
What is the max no of match code id's that can be defined for one match code object? : abap data dictionary
Explain how is batch input process different from processing on line?
Specify the types of data dictionary objects.