how to fetch data form without header line internal table ?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / bhushan
i think we have to create header separtely for the internal
table and using that header we can fetch data .
example:
Loop at I_TABLE INTO wa_table .
endloop.
in the above statement i_table is table with out header
line and wa_table is work area corresponding to the above
internal table ....
Is This Answer Correct ? | 3 Yes | 2 No |
How do you generate Interactive report using ALV's?
What is the difference between a structure and a table? : abap data dictionary
Explain the concept of clusters in payroll
what is the use of control_form?
What is an internal table?
what are the two methods of modifying sap standard tables? : abap data dictionary
What is a table attribute? : abap data dictionary
what is Work flow?
did u done enhancement framework?how u implemented?
What are control tables? : abap data dictionary
6) Difference between a table and smartform?
what is meant by idoc filtering?