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 your current client number?
What is your approach to find exit and BAdi?
What is output determination?
A subroutine can contain nested form and endform blocks. State true or false. : abap modularization
What is a view in sap? : abap data dictionary
How can we achieve MVC ?
While using extract datasets it is required to have a special workarea for interface. State true or false. : abap modularization
performance tuning concepts
What is difference between check table and value table ?
What is buffering in abap?
Filter badi and multiple used badi? Will the sequence matter of the badi implementation in case of multiple used badi?
What is roll area?
How do you do bdc for a table control? : abap bdc
What is the symbol to do “concatenation” operation in nw abap 7.4 ?
what is defference between repository and non repository Object?