<?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: SM30 Table entry in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-table-entry/m-p/6880110#M1478384</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Jun 2010 11:46:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-06-28T11:46:23Z</dc:date>
    <item>
      <title>SM30 Table entry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-table-entry/m-p/6880102#M1478376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;           I have created a customised table in se11.For this table i have created table maintanence Generatore and a transaction code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If we give the transaction we can enter the record there and we can save it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But there is one automatic increment field.Is it possible to increment this variable whenever a record gets updated by using this table maintanence geenrator.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 May 2010 04:26:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-table-entry/m-p/6880102#M1478376</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-17T04:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: SM30 Table entry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-table-entry/m-p/6880103#M1478377</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 can done  this by using EVENTs in Table Maintainance Gemerator &lt;/P&gt;&lt;P&gt;Use 02 event for this and Increment variable in event. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raghava Channooru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 May 2010 04:37:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-table-entry/m-p/6880103#M1478377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-17T04:37:49Z</dc:date>
    </item>
    <item>
      <title>Re: SM30 Table entry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-table-entry/m-p/6880104#M1478378</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; I guess you need to write the logic in the Flow logic of your table maintenance generator.&lt;/P&gt;&lt;P&gt; Or try to make use of the event in TMG.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 May 2010 04:38:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-table-entry/m-p/6880104#M1478378</guid>
      <dc:creator>nirajgadre</dc:creator>
      <dc:date>2010-05-17T04:38:03Z</dc:date>
    </item>
    <item>
      <title>Re: SM30 Table entry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-table-entry/m-p/6880105#M1478379</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;To do this you can put your code in event '01' - Before saving the data in the database.&lt;/P&gt;&lt;P&gt;In table maintenance generator screen goto Environment-&amp;gt;Modification-&amp;gt;events from the menu bar.&lt;/P&gt;&lt;P&gt;choose the event 01 Before saving the data in the database and give the name of a form there.&lt;/P&gt;&lt;P&gt;in your form fetch the last value of that field and increment it by 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will help U.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Dillip&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 May 2010 04:45:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-table-entry/m-p/6880105#M1478379</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-17T04:45:22Z</dc:date>
    </item>
    <item>
      <title>Re: SM30 Table entry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-table-entry/m-p/6880106#M1478380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have written the cod in a subroutine.But how to call this routine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whether it will take the parameter which was given for the other fields before saving the entry.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 May 2010 05:42:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-table-entry/m-p/6880106#M1478380</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-17T05:42:42Z</dc:date>
    </item>
    <item>
      <title>Re: SM30 Table entry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-table-entry/m-p/6880107#M1478381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And also how to make that field disable in the transation code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because for this the entry will be created automatically.So i need to make this field grey.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 May 2010 05:45:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-table-entry/m-p/6880107#M1478381</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-17T05:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: SM30 Table entry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-table-entry/m-p/6880108#M1478382</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;To make the Field gray out in the table maintenance generator need to add the logic in the PBO module of the TMG screen.&lt;/P&gt;&lt;P&gt;Add the Zmodule in this and write the logic to gray out the field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 May 2010 06:12:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-table-entry/m-p/6880108#M1478382</guid>
      <dc:creator>nirajgadre</dc:creator>
      <dc:date>2010-05-17T06:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: SM30 Table entry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-table-entry/m-p/6880109#M1478383</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 table maintenance generator screen goto Environment-&amp;gt;Modification-&amp;gt;events from the menu bar.&lt;/P&gt;&lt;P&gt;choose the event 01 and give your routine number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To make the field gray out:&lt;/P&gt;&lt;P&gt;goto Environment-&amp;gt;Modification-&amp;gt;Maintenance screen.&lt;/P&gt;&lt;P&gt;Choose the screen no -&amp;gt;layout and cange the attributes of the field from INPUT FIELD to OUTPUTFIELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Dillip sahoo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 May 2010 07:13:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-table-entry/m-p/6880109#M1478383</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-17T07:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: SM30 Table entry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-table-entry/m-p/6880110#M1478384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2010 11:46:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-table-entry/m-p/6880110#M1478384</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-28T11:46:23Z</dc:date>
    </item>
  </channel>
</rss>

