<?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: Assingning all Fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/assingning-all-fields/m-p/7446304#M1552335</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order tp pass the data from field symbol  to workarea . you must have the workarea and field symbol same structure .&lt;/P&gt;&lt;P&gt;Then u can pass all the row data from field symbol to workarea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Phani Sista.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Dec 2010 10:56:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-12-17T10:56:18Z</dc:date>
    <item>
      <title>Assingning all Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assingning-all-fields/m-p/7446301#M1552332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi people,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using the command bellow to get the value of the field EKPO-ebeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; v_ebeln = '(SAPMM06E)EKPO-ebeln'.&lt;/P&gt;&lt;P&gt;  ASSIGN (v_ebeln) TO &amp;lt;ekpo&amp;gt;.&lt;/P&gt;&lt;P&gt;  it_ekpo-ebeln = &amp;lt;ekpo&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to use the same command to get the value of all fields from Ekpo ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tks&lt;/P&gt;&lt;P&gt;Flavio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 12:28:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assingning-all-fields/m-p/7446301#M1552332</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-15T12:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: Assingning all Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assingning-all-fields/m-p/7446302#M1552333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field-symbols : &amp;lt;fs&amp;gt; type table, &amp;lt;fs1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_ebeln = '(SAPMM06E)EKPO[].&lt;/P&gt;&lt;P&gt;ASSIGN (v_ebeln) TO &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at &amp;lt;fs&amp;gt; assigning &amp;lt;fs1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 12:39:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assingning-all-fields/m-p/7446302#M1552333</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2010-12-15T12:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: Assingning all Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assingning-all-fields/m-p/7446303#M1552334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FIELD-SYMBOLS &amp;lt;ekpo&amp;gt; TYPE ekpo.
v_ekpo = '(SAPMM06E)EKPO'.
ASSIGN (v_ekpo) TO &amp;lt;ekpo&amp;gt;.
it_ekpo-ebeln = &amp;lt;ekpo&amp;gt;-ebeln.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 12:43:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assingning-all-fields/m-p/7446303#M1552334</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2010-12-15T12:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: Assingning all Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assingning-all-fields/m-p/7446304#M1552335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order tp pass the data from field symbol  to workarea . you must have the workarea and field symbol same structure .&lt;/P&gt;&lt;P&gt;Then u can pass all the row data from field symbol to workarea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Phani Sista.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Dec 2010 10:56:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assingning-all-fields/m-p/7446304#M1552335</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-17T10:56:18Z</dc:date>
    </item>
  </channel>
</rss>

