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 are the events driven batch jobs?
What is a table pool? : abap data dictionary
What are the page headers for secondary lists?
Does sap handle multiple languages?
What are the abap/4 commands that link to a layout set?
How do you validate the selection criteria of a report? And how do you display initialvalues in a selection screen?
what is leave to TRANSACTION?
Explain how to create any functions? How to go about it?
What are two methods of modifying sap standard tables? : abap data dictionary
What is protect & endprotect?
I created a field and entered the field type, when I double clicked the field type to define the domain; it is asking for an ACCESS KEY, I am not changing any SAP defined tables, working on a user defined table.
Explain client-dependent and client-independent tables.
What are two different ways to add fields to sap tables?
What is a logical database?
What are the properties of selection screen?