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

Замена названия в XML



 
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP
View previous topic :: View next topic  
Author Message
z01
Специалист
Специалист



Joined: 18 Jan 2008
Posts: 59

PostPosted: Wed Feb 11, 2009 5:18 pm    Post subject: Замена названия в XML Reply with quote

Использую пример XML конвертации
http://www.sapnet.ru/viewtopic.php?t=1746

Как сменить название - <item> в выходном файле на другое?
Back to top
View user's profile Send private message
John Doe
Модератор
Модератор


Age: 45
Joined: 05 Nov 2007
Posts: 725
Location: КраснАдар

PostPosted: Wed Feb 11, 2009 5:51 pm    Post subject: Reply with quote

Люблю задачки Smile
К примеру, можно дописать после вызова ФМ SDIXML_DATA_TO_DOM следующее:
Code:
  DATA: l_child TYPE REF TO if_ixml_node_list,
        l_node TYPE REF TO if_ixml_node,
        xcount TYPE i.

  CALL METHOD l_dom->if_ixml_node~get_children
    RECEIVING
      rval = l_child.

  DO.
    FREE l_node.
    CALL METHOD l_child->get_item
      EXPORTING
        index = xcount
      RECEIVING
        rval  = l_node.
    IF l_node IS INITIAL.
      EXIT.
    ELSE.
      xcount = xcount + 1.
    ENDIF.

    CALL METHOD l_node->set_name
      EXPORTING
        name = 'fig_item'.
  ENDDO.

Back to top
View user's profile Send private message Blog
z01
Специалист
Специалист



Joined: 18 Jan 2008
Posts: 59

PostPosted: Wed Feb 11, 2009 6:00 pm    Post subject: Reply with quote

Работает, спасибо!
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.