<?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: module pool-updating values in standard table when value changed in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-updating-values-in-standard-table-when-value-changed/m-p/3241751#M773723</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;You have to define an intenal table of type of the structure you defined. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select values from various table using inner join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;populate values to the table control from the internal table in the PBO like.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT it_emp INTO wa_empl  WITH CONTROL tc_emp.&lt;/P&gt;&lt;P&gt;    MODULE tc_insert.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inside MODULE tc_insert;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING wa_empl TO z03empmaster.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in PAI:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP.&lt;/P&gt;&lt;P&gt;    MODULE selectedvalue.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in selected value;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING z03empmaster TO wa_empl.&lt;/P&gt;&lt;P&gt;  MODIFY it_emp FROM wa_empl INDEX tc_emp-current_line&lt;/P&gt;&lt;P&gt;         TRANSPORTING emp_id emp_name dept dob doj grade sel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is just a sample code and you can customize it according to your need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can update the db table from this internal table. It will be having the changed values if you change any fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Renjith Michael.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 31 Dec 2007 10:20:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-31T10:20:41Z</dc:date>
    <item>
      <title>module pool-updating values in standard table when value changed</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-updating-values-in-standard-table-when-value-changed/m-p/3241750#M773722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i had to create an output list with fields from different tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i did this by creating a structure and called tat structure for table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i need to display al the fields in output list, change certain values and update them in the standard tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can someone help me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards- &lt;/P&gt;&lt;P&gt;Sunitha.S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Dec 2007 07:40:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-updating-values-in-standard-table-when-value-changed/m-p/3241750#M773722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-31T07:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: module pool-updating values in standard table when value changed</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-updating-values-in-standard-table-when-value-changed/m-p/3241751#M773723</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;You have to define an intenal table of type of the structure you defined. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select values from various table using inner join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;populate values to the table control from the internal table in the PBO like.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT it_emp INTO wa_empl  WITH CONTROL tc_emp.&lt;/P&gt;&lt;P&gt;    MODULE tc_insert.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inside MODULE tc_insert;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING wa_empl TO z03empmaster.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in PAI:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP.&lt;/P&gt;&lt;P&gt;    MODULE selectedvalue.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in selected value;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING z03empmaster TO wa_empl.&lt;/P&gt;&lt;P&gt;  MODIFY it_emp FROM wa_empl INDEX tc_emp-current_line&lt;/P&gt;&lt;P&gt;         TRANSPORTING emp_id emp_name dept dob doj grade sel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is just a sample code and you can customize it according to your need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can update the db table from this internal table. It will be having the changed values if you change any fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Renjith Michael.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Dec 2007 10:20:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-updating-values-in-standard-table-when-value-changed/m-p/3241751#M773723</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-31T10:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: module pool-updating values in standard table when value changed</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-updating-values-in-standard-table-when-value-changed/m-p/3241752#M773724</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;We can't update sap standard table. you can use BDC to update the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;L.Velu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Dec 2007 12:16:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-updating-values-in-standard-table-when-value-changed/m-p/3241752#M773724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-31T12:16:52Z</dc:date>
    </item>
  </channel>
</rss>

