FORM f4000_switchdoc_summary
TABLES
yt_swt_mprn_det STRUCTURE ls_swt_mprn_det
yt_lt_act_date STRUCTURE ls_lt_act_date
xt_crdate LIKE lit_create_date
xt_swtdoc LIKE lit_switchnum
2.
types: tt_data type table of ty_data,
data: i_data type tt_data.
RANGES: r_data FOR vbap-matnr.
...
perform send_data using i_data
changing r_data.
...
...
form send_data using pi_data type tt_data
changing pr_data type ???????
3.
Code:
REPORT YRT_TEST4.
data: r_range type range of matnr.
perform test changing r_range.
*&---------------------------------------------------------------------*
*& Form test
*&---------------------------------------------------------------------*
form test changing p_r_range like r_range.
endform. " test
4.
1. we have to use TABLES (and not using)
2. like this.
...
...
form send_data
tables mytable structure i_data
using pi_data type tt_data
where i_data should be a data variable declared
3. eg.
9.
Создать дополнительный типа в словаре не как таблицу, а именно таблицу диапазона:
"Тип данных - Создать - Тип таблицы - Обработать - Определить как тип таблицы диапазонов"
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.