Age: 165 Joined: 04 Oct 2007 Posts: 1218 Location: Санкт-Петербург
Posted: Wed Jul 07, 2010 1:07 pm Post subject:
Code:
REPORT zbdschtb.
TABLES bds_loio.
TYPES: BEGIN OF tabl,
lo_class TYPE sdok_locl,
prop01 TYPE sdok_prv_s,
loio_id TYPE sdok_loid,
END OF tabl.
DATA:
gt_dat TYPE TABLE OF tabl,
wa_dat TYPE tabl.
START-OF-SELECTION.
PERFORM getdata.
*&---------------------------------------------------------------------*
*& Form GetData
*&---------------------------------------------------------------------*
* text
*----------------------------------------------------------------------*
FORM getdata.
DATA:
p_lo_class TYPE sdok_locl,
p_prop01 TYPE sdok_prv_s,
p_loio_id TYPE sdok_loid.
DATA:
it_prop_tmp TYPE STANDARD TABLE OF sdokpropty,
it_prop TYPE STANDARD TABLE OF sdokpropty,
wa_prop TYPE sdokpropty.
DATA:
it_obj TYPE STANDARD TABLE OF sdokobject,
wa_obj TYPE sdokobject.
SELECT * FROM bds_loio INTO CORRESPONDING FIELDS OF TABLE gt_dat WHERE prop01 <> ''.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG. SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG. Every effort is made to ensure content integrity. Use information on this site at your own risk.