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

Прошу помощи с dynamic assign



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



Joined: 02 Feb 2009
Posts: 25

PostPosted: Thu Jul 07, 2011 5:40 pm    Post subject: Прошу помощи с dynamic assign Reply with quote

Всем привет. Подскажите, как правильно делать в этом случае:

В процедуру приходит табл. с типом ANY TABLE.

определён <fs_data> TYPE ANY.

Далее цикл по этой табл, и нужен доступ к компонентам структуры

Code:
LOOP it_data ASSIGN <fs_data>

  READ TABLE lt_log ASSIGN <fs_log> WITH TABLE KEY bukrs = <fs_data>-bukrs belnr = <fs_data>-belnr......   <---- вот эта конструкция не работает. говорит что конечно не знает ничего про эти поля.

ENDLOOP.


Делаю через
Code:
ASSIGN COMPONENT 'BUKRS' OF STRUCTURE <fs_data> TO <f_bukrs>.


и далее READ TABLE... WITH TABLE KEY bukrs = <f_bukrs>.


как то можно удобнее? сразу использовать <fs_data>-bukrs?
Back to top
View user's profile Send private message
Удав
Гуру
Гуру


Age: 48
Joined: 25 Jan 2008
Posts: 580
Location: Москва

PostPosted: Thu Jul 07, 2011 8:50 pm    Post subject: Reply with quote

Можно объявить структуру с полями для поиска (например использовать BKPF_KEY) и сделать MOVE-CORRESPONDING из <fs_data>.
_________________
С уважением,
Удав.
Back to top
View user's profile Send private message
ndm
Участник
Участник



Joined: 02 Feb 2009
Posts: 25

PostPosted: Fri Jul 08, 2011 11:59 am    Post subject: Reply with quote

Удав wrote:
Можно объявить структуру с полями для поиска (например использовать BKPF_KEY) и сделать MOVE-CORRESPONDING из <fs_data>.


не хотелось бы MOVE, т.к. всё через field-symbols, верю, что это много быстрее чем присвоение.
т.е. если untyped у меня структура, и даже если я знаю какого она типа (через CL_ABAP_TYPEDESCR) - то никак напрямую к полям этой структуры не обратиться?
Back to top
View user's profile Send private message
Удав
Гуру
Гуру


Age: 48
Joined: 25 Jan 2008
Posts: 580
Location: Москва

PostPosted: Fri Jul 08, 2011 12:28 pm    Post subject: Reply with quote

ndm wrote:
не хотелось бы MOVE, т.к. всё через field-symbols, верю, что это много быстрее чем присвоение.

А вы сделайте измерение в SE30 - и верить не нужно будет Wink

ndm wrote:
если untyped у меня структура, и даже если я знаю какого она типа (через CL_ABAP_TYPEDESCR) - то никак напрямую к полям этой структуры не обратиться?

Только через ASSIGN по имени поля, ИМХО.

_________________
С уважением,
Удав.
Back to top
View user's profile Send private message
ndm
Участник
Участник



Joined: 02 Feb 2009
Posts: 25

PostPosted: Fri Jul 08, 2011 1:04 pm    Post subject: Reply with quote

Quote:
А вы сделайте измерение в SE30 - и верить не нужно будет Wink


да это сарказм. понятно же.. Wink
спасибо за ответ.
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.