<?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: using module pool pgm, Con't modify the table field valus in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-module-pool-pgm-con-t-modify-the-table-field-valus/m-p/6609369#M1438660</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;change the code like:&lt;/P&gt;&lt;P&gt;(IF ZRFIM1 is the structure has been used on screen)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_itab-zrepno = ZRFIM1-ZREPNO.&lt;/P&gt;&lt;P&gt;wa_itab-zplant = ZRFIM1-ZPLANT.&lt;/P&gt;&lt;P&gt;wa_itab-zrimno = ZRFIM1-ZRIMNO.&lt;/P&gt;&lt;P&gt;wa_itab-zrimdat = ZRFIM1-ZRIMDAT.&lt;/P&gt;&lt;P&gt;modify zrfim1 from wa_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 20 Feb 2010 22:59:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-02-20T22:59:58Z</dc:date>
    <item>
      <title>using module pool pgm, Con't modify the table field valus</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-module-pool-pgm-con-t-modify-the-table-field-valus/m-p/6609368#M1438659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello frnds,&lt;/P&gt;&lt;P&gt;i m create one rpt using module pool pgm, click display button display the table values .&lt;/P&gt;&lt;P&gt;Iwant to modify some fields that changes is update to table.&lt;/P&gt;&lt;P&gt;Bellow coding is correct or not, how can modify the fields with save changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : ZRFIM1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ZREPNO TYPE ZRFIM1-ZREPNO,&lt;/P&gt;&lt;P&gt;ZPLANT TYPE ZRFIM1-ZPLANT,&lt;/P&gt;&lt;P&gt;ZRIMNO TYPE ZRFIM1-ZRIMNO,&lt;/P&gt;&lt;P&gt;ZRIMDAT TYPE ZRFIM1-ZRIMDAT,&lt;/P&gt;&lt;P&gt;DISPLAY TYPE C,&lt;/P&gt;&lt;P&gt;CLEAR TYPE C,&lt;/P&gt;&lt;P&gt;EXIT TYPE C,&lt;/P&gt;&lt;P&gt;SAVE TYPE C,&lt;/P&gt;&lt;P&gt;OK_CODE LIKE SY-UCOMM.&lt;/P&gt;&lt;P&gt;data : itab type table of zrfim1 with default key.&lt;/P&gt;&lt;P&gt;data : wa_itab type zrfim1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SCREEN 100.&lt;/P&gt;&lt;P&gt;&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;amp; Module STATUS_0100 OUTPUT&lt;/P&gt;&lt;P&gt;&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------------" /&gt;&lt;P&gt;SET PF-STATUS 'SAVE'.&lt;/P&gt;&lt;P&gt;AT USER-COMMAND.&lt;/P&gt;&lt;P&gt;module STATUS_0100 output.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;SET PF-STATUS 'xxxxxxxx'.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;SET TITLEBAR 'xxx'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;WHEN 'EXIT'.&lt;/P&gt;&lt;P&gt;LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;WHEN 'BACK'.&lt;/P&gt;&lt;P&gt;LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'DISPLAY'.&lt;/P&gt;&lt;P&gt;SELECT SINGLE ZREPNO ZPLANT ZRIMNO ZRIMDAT FROM ZRFIM1&lt;/P&gt;&lt;P&gt;INTO (ZRFIM1-ZREPNO, ZRFIM1-ZPLANT, ZRFIM1-ZRIMNO, ZRFIM1-ZRIMDAT)&lt;/P&gt;&lt;P&gt;WHERE ZREPNO = ZRFIM1-ZREPNO.&lt;/P&gt;&lt;P&gt;WHEN 'CLEAR'.&lt;/P&gt;&lt;P&gt;CLEAR ZRFIM1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'SAVE'.&lt;/P&gt;&lt;P&gt;select single * from zrfim1 into wa_itab where ZREPNO = ZRFIM1-ZREPNO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_itab-zrepno = ZREPNO.&lt;/P&gt;&lt;P&gt;wa_itab-zplant = ZPLANT.&lt;/P&gt;&lt;P&gt;wa_itab-zrimno = ZRIMNO.&lt;/P&gt;&lt;P&gt;wa_itab-zrimdat = ZRIMDAT.&lt;/P&gt;&lt;P&gt;modify zrfim1 from wa_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Feb 2010 03:55:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-module-pool-pgm-con-t-modify-the-table-field-valus/m-p/6609368#M1438659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-20T03:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: using module pool pgm, Con't modify the table field valus</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-module-pool-pgm-con-t-modify-the-table-field-valus/m-p/6609369#M1438660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;change the code like:&lt;/P&gt;&lt;P&gt;(IF ZRFIM1 is the structure has been used on screen)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_itab-zrepno = ZRFIM1-ZREPNO.&lt;/P&gt;&lt;P&gt;wa_itab-zplant = ZRFIM1-ZPLANT.&lt;/P&gt;&lt;P&gt;wa_itab-zrimno = ZRFIM1-ZRIMNO.&lt;/P&gt;&lt;P&gt;wa_itab-zrimdat = ZRFIM1-ZRIMDAT.&lt;/P&gt;&lt;P&gt;modify zrfim1 from wa_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Feb 2010 22:59:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-module-pool-pgm-con-t-modify-the-table-field-valus/m-p/6609369#M1438660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-20T22:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: using module pool pgm, Con't modify the table field valus</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-module-pool-pgm-con-t-modify-the-table-field-valus/m-p/6609370#M1438661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sloved my issue.&lt;/P&gt;&lt;P&gt;meet again (after any issue)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank u for help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Feb 2010 05:56:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-module-pool-pgm-con-t-modify-the-table-field-valus/m-p/6609370#M1438661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-22T05:56:15Z</dc:date>
    </item>
  </channel>
</rss>

