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 delivery class? : abap data dictionary
How do you find the information on the current screen?
What are the types of subroutines?
What does nw 7.4 sp 05/nw 7.5 sp 02 offers in abap?
Explain what is a logical database?
What are interface/conversion programs in SAP?
Explain the client concept of sap.
What is payroll driver
How would you define the exponents for a type âfâ field?
What are the function module in bdc?
Explain the advantages of logical databases?
What are the personnel administration related Infotypes
What is the function of the correction system? : abap data dictionary
How will you read from internal table records in a given value range (without using loop)
Explain the difference between a pool table and a transparent table and how they are stored at the database level?