2007 Jan 10 11:11 AM
hi
i want to know how to retrive a data from table
for example in b/s sundry liabilities is there then how to write or refere to any table that balance will retrive
thanks in advance
hi
i want to know how to retrive a data from table
for example in b/s sundry liabilities is there then how to write or refere to any table that balance will retrive
thanks in advance
2007 Jan 10 11:28 AM
Hi Santosh,
To retrive data from a table you can use the 'SELECT' statement. You can check with F4 over the command the help manual from abap editor.
Regards,
Paulo Sousa
2007 Jan 10 11:32 AM
use - Select keyword..
press F1 on select keyword ..
e.g -
tables zgill_main.
data: begin of itab occurs 0.
include structure zgill_main.
data end of itab.
SELECT * FROM zgill_main INTO TABLE itab .
2007 Jan 10 11:33 AM
Hello,
Use SELECT statement to get the data from a table.
data: itab like mara occurs 0 with header line.
select * from mara into table itab.
If useful reward
Vasanth
2007 Jan 10 11:35 AM
hi Santosh,
welcome to SDN ..
use <b>Select</b> statment for data retrival read help to know more ..
data: lt_vbfa type standard table of ly_vbfa
initial size 0 with header line.
types: begin of ly_vbfa,
vbeln type vbeln_nach,
vbtyp type vbtyp,
vbelv type vbeln_von,
erdat type erdat,
erzet type erzet,
end of ly_vbfa.
select vbeln vbtyp_v vbelv erdat erzet
from vbfa
into table lt_vbfa
for all entries in c_t_data
where vbeln = c_t_data-vbeln
2007 Jan 10 11:41 AM
which report is that??
I guess u are talking about balance sheet report
try checking in BSEG table
2009 Feb 12 5:18 PM
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |