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 |
Is it possible to include two transactions with one group name in one program in session method ?
what is BDCRECXX contains?
How to transfer legacy data into base tables by scheduling a time frame using bdc?
How to determine the attributes of an internal table?
how to change output option of table control?
where you will store your technical spec in your company? r u using any tool for that. how u will send the same to your functional people.
How to generate ABAP report ? requirement is like this... current Ratio and quick ratio and return on capital employed and debt equity ratio and employee turn over and gross profit ratio.. can u please prepare some function spec based on this requirement ..... can u send reply asap.
What is the difference between abap and hr abap? : abap hr
Can you print decimals in type n? What is difference between float and packed data type?
How many servers present for Database servers,Presentation and Application servers in Landscape? All these servers are present at client side or company side,means where the Database server is Located, where the Application and Presentation servers Located in a Landscape?
What is the max no of screen no's we create
In order to upload purchase order details, how you handle multiple values for a single field?