<?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: Delimiting Dates Functionality in Z table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/delimiting-dates-functionality-in-z-table/m-p/3536643#M850941</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Plz do not write code in the PBO/PAI of a TMG.&lt;/P&gt;&lt;P&gt;You will lose all the code, once the TMG is regenerated.&lt;/P&gt;&lt;P&gt;It's safe to handle a TMG through events, since the code exist in a separate include.&lt;/P&gt;&lt;P&gt;Once the TMG is regenerated all you have to do is reattach the Subroutine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Remi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Mar 2008 11:50:51 GMT</pubDate>
    <dc:creator>RemiKaimal</dc:creator>
    <dc:date>2008-03-13T11:50:51Z</dc:date>
    <item>
      <title>Delimiting Dates Functionality in Z table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delimiting-dates-functionality-in-z-table/m-p/3536642#M850940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, i need to create the &lt;STRONG&gt;delimiting dates functionality, which will trigger proper warning message and will handle overlapping time periods.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Can anyone help me on this?&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've already enabled and coded the two Standard Modules in the Custom table's Screen Logic:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;  MODULE liste_initialisieren.&lt;/P&gt;&lt;P&gt;  LOOP AT extract WITH CONTROL&lt;/P&gt;&lt;P&gt;   tctrl_zxxm_pc CURSOR nextline.&lt;/P&gt;&lt;P&gt;    MODULE liste_show_liste.&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;MODULE liste_deactivate&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;  MODULE liste_exit_command AT EXIT-COMMAND.&lt;/P&gt;&lt;P&gt;  MODULE liste_before_loop.&lt;/P&gt;&lt;P&gt;  LOOP AT extract.&lt;/P&gt;&lt;P&gt;    MODULE liste_init_workarea.&lt;/P&gt;&lt;P&gt;    CHAIN.&lt;/P&gt;&lt;P&gt;      FIELD zxxm_pc-zz_tdate .&lt;/P&gt;&lt;P&gt;      FIELD zxxm_pc-z_poc .&lt;/P&gt;&lt;P&gt;      FIELD zxxm_pc-zz_fdate .&lt;/P&gt;&lt;P&gt;      FIELD zxxm_pc-zz_pc .&lt;/P&gt;&lt;P&gt;      MODULE set_update_flag ON CHAIN-REQUEST.&lt;/P&gt;&lt;P&gt;    ENDCHAIN.&lt;/P&gt;&lt;P&gt;    "INSERTED AJMAL.D 13/03/2008&lt;/P&gt;&lt;P&gt;    CHAIN.&lt;/P&gt;&lt;P&gt;      FIELD zxxm_pc-zz_fdate .&lt;/P&gt;&lt;P&gt;      FIELD zxxm_pc-zz_tdate .&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;MODULE temp_delimitation ON CHAIN-REQUEST.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    ENDCHAIN.&lt;/P&gt;&lt;P&gt;    "END&lt;/P&gt;&lt;P&gt;    FIELD vim_marked MODULE liste_mark_checkbox.&lt;/P&gt;&lt;P&gt;    CHAIN.&lt;/P&gt;&lt;P&gt;      FIELD zxxm_pc-zz_tdate .&lt;/P&gt;&lt;P&gt;      FIELD zxxm_pc-z_poc .&lt;/P&gt;&lt;P&gt;      FIELD zxxm_pc-zz_fdate .&lt;/P&gt;&lt;P&gt;      MODULE liste_update_liste.&lt;/P&gt;&lt;P&gt;    ENDCHAIN.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;  MODULE liste_after_loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But its giving me dump.  Are there any other coding of configurations to make?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2008 07:57:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delimiting-dates-functionality-in-z-table/m-p/3536642#M850940</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-13T07:57:39Z</dc:date>
    </item>
    <item>
      <title>Re: Delimiting Dates Functionality in Z table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delimiting-dates-functionality-in-z-table/m-p/3536643#M850941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Plz do not write code in the PBO/PAI of a TMG.&lt;/P&gt;&lt;P&gt;You will lose all the code, once the TMG is regenerated.&lt;/P&gt;&lt;P&gt;It's safe to handle a TMG through events, since the code exist in a separate include.&lt;/P&gt;&lt;P&gt;Once the TMG is regenerated all you have to do is reattach the Subroutine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Remi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2008 11:50:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delimiting-dates-functionality-in-z-table/m-p/3536643#M850941</guid>
      <dc:creator>RemiKaimal</dc:creator>
      <dc:date>2008-03-13T11:50:51Z</dc:date>
    </item>
  </channel>
</rss>

