Posted: Tue Jul 29, 2008 12:37 pm Post subject: Присвоение типов внутренних таблиц
Возникла необходимость присвоения внутренней таблицы с описаным типом переменной. Я так понял что это можно сделать с помощью assign.
Вот простой пример:
Code:
type:
begin of t_tab1,
c1(2),
c2(3),
i1 type i,
end of t_tab1,
begin of t_tab2,
p1 type p,
c2(2),
i1 type i,
begin of t_tab2.
data:
tab1 type t_tab1 occurs 0 with header line,
tab2 type t_tab2 occurs 0 with header line.
FIELD-SYMBOLS: <T> type STANDARD TABLE.
assign tab1 to <T>. *<--- ошибка
.......
.......
assign tab2 to <T>
.......
.......
Perform Test tables <T>.
Нужно чтоб <T> был связан с внутренней таблицей и потом передан в качестве параметра в форму.
Если сделать <T> type ANY то assign заработает, но потом ошибка при передаче в форму.
Помогите решить проблему. Наверняка я что-то делаю не так.
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.