<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Import/Export dynpro not working in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-export-dynpro-not-working/m-p/6255698#M1384305</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;See the following example&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Double click on the method name; on the editor write the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;METHOD onactionaction_find .&lt;/P&gt;&lt;P&gt;  DATA: node_node_vbak           TYPE REF TO if_wd_context_node,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    elem_node_vbak                      TYPE REF TO if_wd_context_element,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    stru_node_vbak                        TYPE if_input_view=&amp;gt;element_node_vbak .&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;navigate from &amp;lt;CONTEXT&amp;gt; to &amp;lt;NODE_VBAK&amp;gt; via lead selection&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  node_node_vbak = wd_context-&amp;gt;get_child_node( name = if_input_view=&amp;gt;wdctx_node_vbak ).&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;get element via lead selection&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  elem_node_vbak = node_node_vbak-&amp;gt;get_element(  ).&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;get all declared attributes&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  elem_node_vbak-&amp;gt;get_static_attributes(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;   &lt;STRONG&gt;IMPORTING static_attributes = stru_node_vbak ).&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: ls_where(72) TYPE c,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        lt_where LIKE TABLE OF ls_where,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        lt_vbak TYPE STANDARD TABLE OF zstr_vbak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;create where condition&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF NOT stru_node_vbak-vbeln EQ ''.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CONCATENATE 'VBELN = ''' stru_node_vbak-vbeln '''' INTO ls_where.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    APPEND ls_where TO lt_where.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF NOT stru_node_vbak-erdat EQ '00000000'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CONCATENATE 'ERDAT = ''' stru_node_vbak-erdat '''' INTO ls_where.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF stru_node_vbak-vbeln NE ''.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CONCATENATE 'AND' ls_where INTO ls_where SEPARATED BY space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    APPEND ls_where TO lt_where.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT VBELN ERDAT ERZET ERNAM ANGDT BNDDT AUDAT VBTYP TRVOG AUART&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         AUGRU GWLDT SUBMI LIFSK FAKSK NETWR WAERK VKORG VTWEG SPART&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         VKGRP VKBUR GSBER GSKST GUEBG GUEEN KNUMV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  FROM vbak INTO TABLE lt_vbak WHERE (lt_where).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    node_node_alv                       TYPE REF TO if_wd_context_node,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    stru_node_alv                       TYPE if_input_view=&amp;gt;element_node_alv .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;navigate from &amp;lt;CONTEXT&amp;gt; to &amp;lt;NODE_ALV&amp;gt; via lead selection&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  node_node_alv = wd_context-&amp;gt;get_child_node( name = if_input_view=&amp;gt;wdctx_node_alv ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;get all declared attributes&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  node_node_alv-&amp;gt;bind_table( lt_vbak ).&lt;/P&gt;&lt;P&gt;ENDMETHOD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Oct 2009 06:13:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-29T06:13:50Z</dc:date>
    <item>
      <title>Import/Export dynpro not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-export-dynpro-not-working/m-p/6255692#M1384299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IMPORT DYNPRO h f e m ID id&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/abapdocu_70/en/ABAPIMPORT_DYNPRO.htm" target="test_blank"&gt;http://help.sap.com/abapdocu_70/en/ABAPIMPORT_DYNPRO.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to use IMPORT DYNPRO to import screen attributes and program flow and then perform necessary changes and export/generate the modified screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;well i used the sample from &lt;A href="http://www.sapfans.com/sapfans/repos/poonam.htm" target="test_blank"&gt;http://www.sapfans.com/sapfans/repos/poonam.htm&lt;/A&gt;, but regardless of how many times I tried, I couldn't get it to work. I'm still stuck at the first step, IMPORT DYNPRO will return sy-subrc = 4 (screen does not exist) no matter what program/screen I use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea?, Thanks &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: afro100 on Oct 22, 2009 9:45 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: afro100 on Oct 25, 2009 8:24 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2009 04:43:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-export-dynpro-not-working/m-p/6255692#M1384299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-22T04:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: Import/Export dynpro not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-export-dynpro-not-working/m-p/6255693#M1384300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;STRONG&gt;IMPORT DYNPRO  Syntax Diagram&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;This statement is for internal use only.&lt;/P&gt;&lt;P&gt;&amp;gt;It must not be used in application programs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;why are you using that?&lt;/P&gt;&lt;P&gt;in you program, just declare the same variable names of same type as defined in the dynpro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;they will automatically be bound.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Oct 2009 07:27:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-export-dynpro-not-working/m-p/6255693#M1384300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-25T07:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: Import/Export dynpro not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-export-dynpro-not-working/m-p/6255694#M1384301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to determine the number of rows in table control and also would like to learn more about dialog programming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what do you mean by same variable names in the dynpro?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i use this as my reference &lt;A href="http://www.sapfans.com/sapfans/repos/poonam.htm" target="test_blank"&gt;http://www.sapfans.com/sapfans/repos/poonam.htm&lt;/A&gt;  .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Oct 2009 07:49:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-export-dynpro-not-working/m-p/6255694#M1384301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-25T07:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: Import/Export dynpro not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-export-dynpro-not-working/m-p/6255695#M1384302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what do you put in a table control? a internal table... or a database table name... right?&lt;/P&gt;&lt;P&gt;that has a name lets say.. gt_itab .. or if its from ddic then lets say VBAK.. like this... !!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so in your dialogue program(i am not talking about the flow logic, i am talking about the se38 module pool program here) .. define those internal tables.. or database tables..&lt;/P&gt;&lt;P&gt;if you have used directly like VBAK, then in your program define,, : &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES : VBAK.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if its an internal table.. then it must have already been declared in your module pool program.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so to count number of lines,,,&lt;/P&gt;&lt;P&gt;use &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DESCRIBE TABLE GT_ITAB LINES LINE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Oct 2009 10:24:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-export-dynpro-not-working/m-p/6255695#M1384302</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-25T10:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: Import/Export dynpro not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-export-dynpro-not-working/m-p/6255696#M1384303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, my question isn't clear enough so I will try to get my point across with this one , I need to determine the number of visible lines for TC of a given screen in runtime for batch input processing. Since table control size varies from system to system and thus produce inconsistencies like 'no batch input data'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapfans.com/sapfans/repos/poonam.htm" target="test_blank"&gt;http://www.sapfans.com/sapfans/repos/poonam.htm&lt;/A&gt; provides the sample  i can run it but can't really do anything with it (always returns sy-subrc = 4 (indicates the specified screen doesn't exist)).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: afro100 on Oct 26, 2009 6:39 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: afro100 on Oct 27, 2009 1:23 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: afro100 on Oct 28, 2009 7:52 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Oct 2009 11:05:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-export-dynpro-not-working/m-p/6255696#M1384303</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-25T11:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: Import/Export dynpro not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-export-dynpro-not-working/m-p/6255697#M1384304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Aha, I found the solution already, the field that contains the program name should be of a specific size&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so I changed program(8) to program(40) and that solves all the problems&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Oct 2009 11:49:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-export-dynpro-not-working/m-p/6255697#M1384304</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-28T11:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: Import/Export dynpro not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-export-dynpro-not-working/m-p/6255698#M1384305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;See the following example&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Double click on the method name; on the editor write the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;METHOD onactionaction_find .&lt;/P&gt;&lt;P&gt;  DATA: node_node_vbak           TYPE REF TO if_wd_context_node,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    elem_node_vbak                      TYPE REF TO if_wd_context_element,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    stru_node_vbak                        TYPE if_input_view=&amp;gt;element_node_vbak .&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;navigate from &amp;lt;CONTEXT&amp;gt; to &amp;lt;NODE_VBAK&amp;gt; via lead selection&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  node_node_vbak = wd_context-&amp;gt;get_child_node( name = if_input_view=&amp;gt;wdctx_node_vbak ).&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;get element via lead selection&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  elem_node_vbak = node_node_vbak-&amp;gt;get_element(  ).&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;get all declared attributes&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  elem_node_vbak-&amp;gt;get_static_attributes(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;   &lt;STRONG&gt;IMPORTING static_attributes = stru_node_vbak ).&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: ls_where(72) TYPE c,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        lt_where LIKE TABLE OF ls_where,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        lt_vbak TYPE STANDARD TABLE OF zstr_vbak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;create where condition&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF NOT stru_node_vbak-vbeln EQ ''.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CONCATENATE 'VBELN = ''' stru_node_vbak-vbeln '''' INTO ls_where.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    APPEND ls_where TO lt_where.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF NOT stru_node_vbak-erdat EQ '00000000'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CONCATENATE 'ERDAT = ''' stru_node_vbak-erdat '''' INTO ls_where.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF stru_node_vbak-vbeln NE ''.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CONCATENATE 'AND' ls_where INTO ls_where SEPARATED BY space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    APPEND ls_where TO lt_where.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT VBELN ERDAT ERZET ERNAM ANGDT BNDDT AUDAT VBTYP TRVOG AUART&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         AUGRU GWLDT SUBMI LIFSK FAKSK NETWR WAERK VKORG VTWEG SPART&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         VKGRP VKBUR GSBER GSKST GUEBG GUEEN KNUMV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  FROM vbak INTO TABLE lt_vbak WHERE (lt_where).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    node_node_alv                       TYPE REF TO if_wd_context_node,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    stru_node_alv                       TYPE if_input_view=&amp;gt;element_node_alv .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;navigate from &amp;lt;CONTEXT&amp;gt; to &amp;lt;NODE_ALV&amp;gt; via lead selection&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  node_node_alv = wd_context-&amp;gt;get_child_node( name = if_input_view=&amp;gt;wdctx_node_alv ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;get all declared attributes&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  node_node_alv-&amp;gt;bind_table( lt_vbak ).&lt;/P&gt;&lt;P&gt;ENDMETHOD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 06:13:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-export-dynpro-not-working/m-p/6255698#M1384305</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-29T06:13:50Z</dc:date>
    </item>
  </channel>
</rss>

