Posted: Wed Nov 09, 2011 4:33 pm Post subject: Помогите решить задачку по SELECT.
Дан вот такой код:
TYPES: BEGIN OF sbook_type,
carrid TYPE S_CARR_ID,
forcuran TYPE S_F_CUR_PR,
loccuram TYPE S_L_CUR_PR,
END OF sbook_type.
DATA: lt_sbook_0 TYPE STANDARD TABLE OF sbook_type.
SELECT CARRID SUM( LOCCURAM ) SUM( FORCURAM )
INTO TABLE lt_sbook_0
FROM SBOOK
WHERE carrid in s_car
GROUP BY CARRID.
Как вы понимаете суммы 2 и 3 заносятся не в те поля. Выбирать
SELECT CARRID SUM(FORCURAM ) SUM( LOCCURAM ) и менять sbook_type нельзя. INTO CORRESPONDING FIELDS у меня не проходит. Как сделать?
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.