<?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: Changes in Table Maintanance in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-table-maintanance/m-p/5053642#M1174681</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;   Thanks for the reply. I also tried the event AA but the method is standard methos which I need to change.How can I change that.&lt;/P&gt;&lt;P&gt;  Some of u mentioned that I need to changed entries in TOTAL table but I m not getting how to change and whre to change.&lt;/P&gt;&lt;P&gt;   Again I would like to mention that I want to delete some entries for which user is not authorized.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly suggest..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Jan 2009 05:04:28 GMT</pubDate>
    <dc:creator>rajesh_akarte2</dc:creator>
    <dc:date>2009-01-15T05:04:28Z</dc:date>
    <item>
      <title>Changes in Table Maintanance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-table-maintanance/m-p/5053637#M1174676</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 one requirement in table maintanance generator.I have 4 fields werks,matnr and to other fields for uper and lower limit.I want to display only those entry in the table maintanance for which user is authorized.&lt;/P&gt;&lt;P&gt; I want to check authorization on plant.I want to write some logic  for this where I will check the user id for auth. in authorization object and based on the authorization plant I will select those entries and display.&lt;/P&gt;&lt;P&gt;  If somebody know something then please suggest.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jan 2009 09:53:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-table-maintanance/m-p/5053637#M1174676</guid>
      <dc:creator>rajesh_akarte2</dc:creator>
      <dc:date>2009-01-14T09:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: Changes in Table Maintanance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-table-maintanance/m-p/5053638#M1174677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; just a suggestion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the table generation, you can edit some "exits" places in some points by Sap. For example in data selection or data input validation, before data display and so on.&lt;/P&gt;&lt;P&gt;Implementig this exit, you can (after the standard selection), delete the entries form the internal table that doesen't fullfill your requirements (eg authority-checks).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;Bye&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jan 2009 10:04:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-table-maintanance/m-p/5053638#M1174677</guid>
      <dc:creator>andrea_galluccio2</dc:creator>
      <dc:date>2009-01-14T10:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: Changes in Table Maintanance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-table-maintanance/m-p/5053639#M1174678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi rajesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;se54 -&amp;gt; menue "environment" -&amp;gt; events.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think you should try AA instead of the standard routine. i think the generated subroutine is named get_&amp;lt;viewname&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;either you can edit the where-statement or you can work with the result itab TOTAL which ahs the fields of your view and the fields of vimflagtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so i would recommend to define a itab &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF t_itab.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE &amp;lt;your_view&amp;gt;t.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE vimflagtab.&lt;/P&gt;&lt;P&gt;TYPES: END OF t_itab,&lt;/P&gt;&lt;P&gt;       ti_itab TYPE STANDARD TABLE OF t_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then move the TOTAL to your itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is getting you closer to the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;robert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jan 2009 11:30:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-table-maintanance/m-p/5053639#M1174678</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-14T11:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: Changes in Table Maintanance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-table-maintanance/m-p/5053640#M1174679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this sap help on tmg events&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/06/395e3c80530f6be10000000a11405a/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/06/395e3c80530f6be10000000a11405a/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check for event 25 for additional authorization checks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jan 2009 11:47:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-table-maintanance/m-p/5053640#M1174679</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-14T11:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: Changes in Table Maintanance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-table-maintanance/m-p/5053641#M1174680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls goto table maint.Dialog Generat. screen of table, then Environment-&amp;gt;Modification-&amp;gt;Events&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in change mode, you can choose event for display. and inside that event which is exit you can check authorization object written for plant(or any other field).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think all are pointing you to use those events, please check those.&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;Bin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jan 2009 15:53:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-table-maintanance/m-p/5053641#M1174680</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-14T15:53:17Z</dc:date>
    </item>
    <item>
      <title>Re: Changes in Table Maintanance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-table-maintanance/m-p/5053642#M1174681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;   Thanks for the reply. I also tried the event AA but the method is standard methos which I need to change.How can I change that.&lt;/P&gt;&lt;P&gt;  Some of u mentioned that I need to changed entries in TOTAL table but I m not getting how to change and whre to change.&lt;/P&gt;&lt;P&gt;   Again I would like to mention that I want to delete some entries for which user is not authorized.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly suggest..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jan 2009 05:04:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-table-maintanance/m-p/5053642#M1174681</guid>
      <dc:creator>rajesh_akarte2</dc:creator>
      <dc:date>2009-01-15T05:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: Changes in Table Maintanance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-table-maintanance/m-p/5053643#M1174682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the function pool you will find a subroutine get_data_-alr_sorted = 'R'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run your table maintance and you will stop in your subroutine, which will be identical to the standard.&lt;/P&gt;&lt;P&gt;take a look at the tabel total after the endselect. you will see that the table-lines have no structure. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;define your own itab as i described. it has to include the structure of your view and the structure of the vimtbflags. move the total to your table, so you have access to your fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;program your own authority check to know, which entries to show in the dialog. remove the false entries from your itab. then move your itab back to total.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope this desciption is a little bit more detailed and you can go a step further.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kindly regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Robert&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jan 2009 08:12:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-table-maintanance/m-p/5053643#M1174682</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-15T08:12:31Z</dc:date>
    </item>
  </channel>
</rss>

