SAP R/3 форум ABAP консультантов
Russian ABAP Developer's Club

Home - FAQ - Search - Memberlist - Usergroups - Profile - Log in to check your private messages - Register - Log in - English
Blogs - Weblogs News

Присвоение типов внутренних таблиц



 
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP
View previous topic :: View next topic  
Author Message
chaka
Участник
Участник



Joined: 14 May 2008
Posts: 8

PostPosted: Tue Jul 29, 2008 1:22 pm    Post subject: Присвоение типов внутренних таблиц Reply with quote

Возникла необходимость присвоения внутренней таблицы с описаным типом переменной. Я так понял что это можно сделать с помощью 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 заработает, но потом ошибка при передаче в форму.
Помогите решить проблему. Наверняка я что-то делаю не так.
Back to top
View user's profile Send private message
Armann
Модератор
Модератор



Joined: 01 Jan 2008
Posts: 422
Location: Moscow

PostPosted: Tue Jul 29, 2008 1:38 pm    Post subject: Reply with quote

Попробуйте вместо
Code:
assign tab1 to <T>.

написать
Code:
assign tab1[] to <T>.

А вообще вам нужно в подпрграмму test передавать либо таблицу t_tab1 либо t_tab2? Тогда в описании подпрограммы не указывайте тип таблицы и не заморачивайтесь с типами
Code:
form test tables tbl.
....
endform.
Back to top
View user's profile Send private message Blog
chaka
Участник
Участник



Joined: 14 May 2008
Posts: 8

PostPosted: Tue Jul 29, 2008 2:11 pm    Post subject: Reply with quote

Спасибо.
Я сам не догадался что потерял квадратные скобки Very Happy
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP All times are GMT + 4 Hours
Page 1 of 1

 
Jump to:  
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.