<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1030073#M83528</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abdul,&lt;/P&gt;&lt;P&gt;try using the 'field' statements from screen 100's PAI in screen 200's PAI too. This moves the field values from the screen to make them available in abap variables. You might not need all the fields ... only the ones that appear on screen 200.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Neil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Nov 2005 11:17:56 GMT</pubDate>
    <dc:creator>former_member186741</dc:creator>
    <dc:date>2005-11-15T11:17:56Z</dc:date>
    <item>
      <title>Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1030068#M83523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am working on some enhancement to existing module pool program.&lt;/P&gt;&lt;P&gt;I need to save the changes the user has made on screen nos 100 and 200.&lt;/P&gt;&lt;P&gt;So when the user has pressed the SAVE button i am calling a subroutine which carries out the &lt;/P&gt;&lt;P&gt;update task.&lt;/P&gt;&lt;P&gt;I am using the same subroutine for both screens since these infos needs to saved together.&lt;/P&gt;&lt;P&gt;I am using sy-datar system variable to check whether the user has made any changes.&lt;/P&gt;&lt;P&gt;For screen 100 it is working fine.&lt;/P&gt;&lt;P&gt;For screen 200 it is not working even though i entered some entries.&lt;/P&gt;&lt;P&gt;I dont know what is the exact problem?&lt;/P&gt;&lt;P&gt;Shall i check my changes with my own flag or is it possible to achive through sy-datar for any number of screens?&lt;/P&gt;&lt;P&gt;Note: I have checked in my own programs with mulitple screens it is working fine!!&lt;/P&gt;&lt;P&gt;Kindly advice,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abdul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 07:32:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1030068#M83523</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2005-11-15T07:32:29Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1030069#M83524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abdul,&lt;/P&gt;&lt;P&gt;this could be any number of things. Please show your flow logic for the two screens and the abap code for the pai modules.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Neil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 09:59:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1030069#M83524</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2005-11-15T09:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1030070#M83525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neil,&lt;/P&gt;&lt;P&gt;Below is the required source code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  USER_COMMAND_0100  INPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_0100 INPUT.&lt;/P&gt;&lt;P&gt;  CASE OKCODE100.&lt;/P&gt;&lt;P&gt;     WHEN 'SAVE'.&lt;/P&gt;&lt;P&gt;      PERFORM SAVE_REC.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " USER_COMMAND_0100  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  USER_COMMAND_0200  INPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&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;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_0200 INPUT.&lt;/P&gt;&lt;P&gt;  CASE OKCODE200.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN 'SAVE'.&lt;/P&gt;&lt;P&gt;      PERFORM SAVE_REC.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM SAVE_REC.&lt;/P&gt;&lt;P&gt;**invoice details&lt;/P&gt;&lt;P&gt;  MOVE: invoice           TO wa_temp-invce,&lt;/P&gt;&lt;P&gt;        vbrk-fkdat        TO wa_temp-fkdat,&lt;/P&gt;&lt;P&gt;        vbrk-inco1        TO wa_temp-inco1,&lt;/P&gt;&lt;P&gt;        vbrk-inco2        TO wa_temp-inco2,&lt;/P&gt;&lt;P&gt;        tvzbt-zterm       TO wa_temp-zterm,&lt;/P&gt;&lt;P&gt;        akkb-baanr        TO wa_temp-baanr,&lt;/P&gt;&lt;P&gt;        txt_del_terms     TO wa_temp-dlvtr,&lt;/P&gt;&lt;P&gt;        vbrk-netwr        TO wa_temp-netwr,&lt;/P&gt;&lt;P&gt;        vbrk-waerk        TO wa_temp-waerk,&lt;/P&gt;&lt;P&gt;        vbrp-aubel        TO wa_temp-aubel,&lt;/P&gt;&lt;P&gt;        vbrp-vgbel        TO wa_temp-vgbel,&lt;/P&gt;&lt;P&gt;        c_various         TO wa_temp-vario,&lt;/P&gt;&lt;P&gt;        vbrp-ernam        TO wa_temp-ernam,&lt;/P&gt;&lt;P&gt;        vbrp-erzet        TO wa_temp-erzet,&lt;/P&gt;&lt;P&gt;        vbkd-bstkd        TO wa_temp-bstkd,&lt;/P&gt;&lt;P&gt;        shipto_name1      TO wa_temp-shnm1,&lt;/P&gt;&lt;P&gt;        shipto_name2      TO wa_temp-shnm2,&lt;/P&gt;&lt;P&gt;        shipto_street     TO wa_temp-shstr,&lt;/P&gt;&lt;P&gt;        shipto_street4    TO wa_temp-shst4,&lt;/P&gt;&lt;P&gt;        shipto-pstlz      TO wa_temp-shpst,&lt;/P&gt;&lt;P&gt;        shipto-ort01      TO wa_temp-shcty,&lt;/P&gt;&lt;P&gt;        shipto-land1      TO wa_temp-shcun,&lt;/P&gt;&lt;P&gt;        shipto-regio      TO wa_temp-shreg,&lt;/P&gt;&lt;P&gt;        billto_name1      TO wa_temp-bpnm1,&lt;/P&gt;&lt;P&gt;        billto_name2      TO wa_temp-bpnm2,&lt;/P&gt;&lt;P&gt;        billto_street     TO wa_temp-bpstr,&lt;/P&gt;&lt;P&gt;        billto_street4    TO wa_temp-bpst4,&lt;/P&gt;&lt;P&gt;        soldto-pstlz      TO wa_temp-bppst,&lt;/P&gt;&lt;P&gt;        soldto-ort01      TO wa_temp-bpcty,&lt;/P&gt;&lt;P&gt;        soldto-land1      TO wa_temp-bpcun,&lt;/P&gt;&lt;P&gt;        soldto-regio      TO wa_temp-bpreg,&lt;/P&gt;&lt;P&gt;        forwarder_name    TO wa_temp-ffnm1,&lt;/P&gt;&lt;P&gt;        forwarder_street  TO wa_temp-ffstr,&lt;/P&gt;&lt;P&gt;        forwarder_street4 TO wa_temp-ffst4,&lt;/P&gt;&lt;P&gt;        forwarder-pstlz   TO wa_temp-ffpst,&lt;/P&gt;&lt;P&gt;        forwarder-ort01   TO wa_temp-ffcty,&lt;/P&gt;&lt;P&gt;        forwarder-land1   TO wa_temp-ffcun,&lt;/P&gt;&lt;P&gt;        forwarder_phone   TO wa_temp-ffphn,&lt;/P&gt;&lt;P&gt;        forwarder_fax     TO wa_temp-fffax,&lt;/P&gt;&lt;P&gt;        despatch_country  TO wa_temp-despt,&lt;/P&gt;&lt;P&gt;        destination       TO wa_temp-destn,&lt;/P&gt;&lt;P&gt;        herkl             TO wa_temp-orign,&lt;/P&gt;&lt;P&gt;        c_mixed           TO wa_temp-mixed,&lt;/P&gt;&lt;P&gt;        final_destination TO wa_temp-fdest,&lt;/P&gt;&lt;P&gt;        prtload           TO wa_temp-prtld,&lt;/P&gt;&lt;P&gt;        prtdis            TO wa_temp-prtds,&lt;/P&gt;&lt;P&gt;        vessel            TO wa_temp-fltno,&lt;/P&gt;&lt;P&gt;        delivery_place    TO wa_temp-delvy,&lt;/P&gt;&lt;P&gt;        gross_wt          TO wa_temp-grswt,&lt;/P&gt;&lt;P&gt;        net_wt            TO wa_temp-netwt,&lt;/P&gt;&lt;P&gt;        volume            TO wa_temp-totcb,&lt;/P&gt;&lt;P&gt;        sign_company      TO wa_temp-compy,&lt;/P&gt;&lt;P&gt;        sign_name         TO wa_temp-signm,&lt;/P&gt;&lt;P&gt;        sign_place        TO wa_temp-place.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**charge screen details&lt;/P&gt;&lt;P&gt;  MOVE: chrg_text1 TO wa_temp-text1,&lt;/P&gt;&lt;P&gt;        chrg_text2 TO wa_temp-text2,&lt;/P&gt;&lt;P&gt;        chrg_text3 TO wa_temp-text3,&lt;/P&gt;&lt;P&gt;        chrg_text4 TO wa_temp-text4,&lt;/P&gt;&lt;P&gt;        chrg_text5 TO wa_temp-text5,&lt;/P&gt;&lt;P&gt;        chrg_text6 TO wa_temp-text6,&lt;/P&gt;&lt;P&gt;        chrg_total TO wa_temp-totll,&lt;/P&gt;&lt;P&gt;        price1     TO wa_temp-prce1,&lt;/P&gt;&lt;P&gt;        price2     TO wa_temp-prce2,&lt;/P&gt;&lt;P&gt;        price3     TO wa_temp-prce3,&lt;/P&gt;&lt;P&gt;        price4     TO wa_temp-prce4,&lt;/P&gt;&lt;P&gt;        price5     TO wa_temp-prce5,&lt;/P&gt;&lt;P&gt;        price6     TO wa_temp-prce6,&lt;/P&gt;&lt;P&gt;        total      TO wa_temp-total.&lt;/P&gt;&lt;P&gt;*Updating the table zinvoice_updt&lt;/P&gt;&lt;P&gt;IF SY-DATAR EQ 'X'&lt;/P&gt;&lt;P&gt;    MODIFY zinvoice_updt FROM wa_temp.&lt;/P&gt;&lt;P&gt;    CLEAR WA_TEMP.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " SAVE_REC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 10:19:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1030070#M83525</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2005-11-15T10:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1030071#M83526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abdul,&lt;/P&gt;&lt;P&gt;thanks, could you also show the 'flow logic' of the two screens?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 10:34:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1030071#M83526</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2005-11-15T10:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1030072#M83527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neil,&lt;/P&gt;&lt;P&gt;Below is the flow logic,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;  MODULE STATUS_0100.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;  field invoice.&lt;/P&gt;&lt;P&gt;  field vbrk-fkdat.&lt;/P&gt;&lt;P&gt;  field vbrk-inco1.&lt;/P&gt;&lt;P&gt;  field vbrk-inco2.&lt;/P&gt;&lt;P&gt;  field vbrk-netwr.&lt;/P&gt;&lt;P&gt;  field vbrk-waerk.&lt;/P&gt;&lt;P&gt;  field vbrp-aubel.&lt;/P&gt;&lt;P&gt;  field vbrp-vgbel.&lt;/P&gt;&lt;P&gt;  field vbrp-ernam.&lt;/P&gt;&lt;P&gt;  field vbrp-erzet.&lt;/P&gt;&lt;P&gt;  field vbkd-bstkd.&lt;/P&gt;&lt;P&gt;  field shipto_name1.&lt;/P&gt;&lt;P&gt;  field shipto_name2.&lt;/P&gt;&lt;P&gt;  field shipto_street.&lt;/P&gt;&lt;P&gt;  field shipto_street4.&lt;/P&gt;&lt;P&gt;  field shipto-pstlz.&lt;/P&gt;&lt;P&gt;  field shipto-ort01.&lt;/P&gt;&lt;P&gt;  field shipto-land1.&lt;/P&gt;&lt;P&gt;  field shipto-regio.&lt;/P&gt;&lt;P&gt;  field billto_name1.&lt;/P&gt;&lt;P&gt;  field billto_name2.&lt;/P&gt;&lt;P&gt;  field billto_street.&lt;/P&gt;&lt;P&gt;  field billto_street4.&lt;/P&gt;&lt;P&gt;  field soldto-pstlz.&lt;/P&gt;&lt;P&gt;  field soldto-ort01.&lt;/P&gt;&lt;P&gt;  field soldto-land1.&lt;/P&gt;&lt;P&gt;  field soldto-regio.&lt;/P&gt;&lt;P&gt;  field forwarder_name.&lt;/P&gt;&lt;P&gt;  field forwarder_street.&lt;/P&gt;&lt;P&gt;  field forwarder_street4.&lt;/P&gt;&lt;P&gt;  field forwarder-pstlz.&lt;/P&gt;&lt;P&gt;  field forwarder-ort01.&lt;/P&gt;&lt;P&gt;  field forwarder-land1.&lt;/P&gt;&lt;P&gt;  field forwarder_phone.&lt;/P&gt;&lt;P&gt;  field forwarder_fax.&lt;/P&gt;&lt;P&gt;  field DESPATCH_COUNTRY.&lt;/P&gt;&lt;P&gt;  field HERKL.&lt;/P&gt;&lt;P&gt;  field C_MIXED.&lt;/P&gt;&lt;P&gt;  field DESTINATION.&lt;/P&gt;&lt;P&gt;  field FINAL_DESTINATION.&lt;/P&gt;&lt;P&gt;  field PRTLOAD.&lt;/P&gt;&lt;P&gt;  field PRTDIS.&lt;/P&gt;&lt;P&gt;  field vessel.&lt;/P&gt;&lt;P&gt;  field delivery_place.&lt;/P&gt;&lt;P&gt;  field gross_wt.&lt;/P&gt;&lt;P&gt;  field net_wt.&lt;/P&gt;&lt;P&gt;  field volume.&lt;/P&gt;&lt;P&gt;  field SIGN_COMPANY.&lt;/P&gt;&lt;P&gt;  field SIGN_NAME.&lt;/P&gt;&lt;P&gt;  field SIGN_PLACE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MODULE USER_COMMAND_0100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;  MODULE STATUS_0200.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;  MODULE USER_COMMAND_0200.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 10:41:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1030072#M83527</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2005-11-15T10:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1030073#M83528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abdul,&lt;/P&gt;&lt;P&gt;try using the 'field' statements from screen 100's PAI in screen 200's PAI too. This moves the field values from the screen to make them available in abap variables. You might not need all the fields ... only the ones that appear on screen 200.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Neil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 11:17:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1030073#M83528</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2005-11-15T11:17:56Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1030074#M83529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neil,&lt;/P&gt;&lt;P&gt;The sy-datar systm variable will be set when the user has made any changes on the screen regardless of the FIELD statement.Are you sure of your logic?Explain me how?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hakim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 11:24:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1030074#M83529</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2005-11-15T11:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1030075#M83530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure but know that I usually use the field statement to ensure data transfer has occurred before modules are processed. Give it a try. It also might be useful to see the abap code where the screens are called from.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 11:53:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1030075#M83530</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2005-11-15T11:53:51Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1030076#M83531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; I think you can use FIELD XXXX MODULE XXXX ON CHANGE INPUT..&lt;/P&gt;&lt;P&gt;If there is any change made to the field mentioned then this module is triggered.There you can keep a flag (ie)if the module is triggered mark a variable 'X'.Then in the okcode you can check for this variable value.If it is 'X' then u can modify the table.Hope it works .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;vivek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 12:41:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1030076#M83531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-15T12:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1030077#M83532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neil,&lt;/P&gt;&lt;P&gt;I have solved the problem according to your idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Abdul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Nov 2005 11:53:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1030077#M83532</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2005-11-17T11:53:32Z</dc:date>
    </item>
  </channel>
</rss>

