<?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 Table control program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-program/m-p/2723705#M631983</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all&lt;/P&gt;&lt;P&gt;              i have an urgent requirement on this..below i m giving the requirement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  There are four tables&lt;/P&gt;&lt;P&gt;                                1&amp;gt; ysd__cond_cntrl&lt;/P&gt;&lt;P&gt;                                2&amp;gt;ypric_ctrgp_ctrl&lt;/P&gt;&lt;P&gt;                                3&amp;gt; ypric_ctyp_cntrl&lt;/P&gt;&lt;P&gt;                               4&amp;gt;ypricing_cntrl&lt;/P&gt;&lt;P&gt;currently those tables are maintained with t-code SM30 by members of the project &lt;/P&gt;&lt;P&gt;        team&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now need one transaction code which allows controlled user access to all those tables for maintenance from one selection screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; now i have to create a new T-code&lt;/P&gt;&lt;P&gt;      i have to create a new selection screen from where the user can branch out to a specific table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         -and for all tables provide maintenance capabilities similar to transaction SM30(switch between display and change, new entries,select multiple,copycreate,&lt;/P&gt;&lt;P&gt;   delete,undo change, allow export to excel)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Can anyone give me any idea how to proceed and any sample program regarding &lt;/P&gt;&lt;P&gt;     this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                              thanking all&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Aug 2007 05:17:06 GMT</pubDate>
    <dc:creator>shilpik20</dc:creator>
    <dc:date>2007-08-15T05:17:06Z</dc:date>
    <item>
      <title>Table control program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-program/m-p/2723705#M631983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all&lt;/P&gt;&lt;P&gt;              i have an urgent requirement on this..below i m giving the requirement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  There are four tables&lt;/P&gt;&lt;P&gt;                                1&amp;gt; ysd__cond_cntrl&lt;/P&gt;&lt;P&gt;                                2&amp;gt;ypric_ctrgp_ctrl&lt;/P&gt;&lt;P&gt;                                3&amp;gt; ypric_ctyp_cntrl&lt;/P&gt;&lt;P&gt;                               4&amp;gt;ypricing_cntrl&lt;/P&gt;&lt;P&gt;currently those tables are maintained with t-code SM30 by members of the project &lt;/P&gt;&lt;P&gt;        team&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now need one transaction code which allows controlled user access to all those tables for maintenance from one selection screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; now i have to create a new T-code&lt;/P&gt;&lt;P&gt;      i have to create a new selection screen from where the user can branch out to a specific table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         -and for all tables provide maintenance capabilities similar to transaction SM30(switch between display and change, new entries,select multiple,copycreate,&lt;/P&gt;&lt;P&gt;   delete,undo change, allow export to excel)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Can anyone give me any idea how to proceed and any sample program regarding &lt;/P&gt;&lt;P&gt;     this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                              thanking all&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Aug 2007 05:17:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-program/m-p/2723705#M631983</guid>
      <dc:creator>shilpik20</dc:creator>
      <dc:date>2007-08-15T05:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: Table control program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-program/m-p/2723706#M631984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do something like this...&lt;/P&gt;&lt;P&gt;create 4 radio buttons and for each radio button call the transaction created for that table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS : p_r1 RADIOBUTTON GROUP r1.
PARAMETERS : p_r2 RADIOBUTTON GROUP r1.

START-OF-SELECTION.

  IF p_r1 = 'X'.
    CALL TRANSACTION 'VA01'.
  ELSEIF p_r2 = 'X'.
    CALL TRANSACTION 'VA02'.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Aug 2007 05:25:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-program/m-p/2723706#M631984</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-08-15T05:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: Table control program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-program/m-p/2723707#M631985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shilpik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;You can do by using the Authorization object by transaction SU21and  procedure is mentioned below&amp;lt;/b&amp;gt;(Authorization objects enable you to define complex authorizations,whether a user is allowed to perform a certain action) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1&amp;gt; F8 SU21,&lt;/P&gt;&lt;P&gt;2&amp;gt; Create Class .&lt;/P&gt;&lt;P&gt;3&amp;gt; create the Authorization object and assign this to class.&lt;/P&gt;&lt;P&gt;4&amp;gt; you can use the ACTVT field.&lt;/P&gt;&lt;P&gt;5&amp;gt; Click on the button "Maintain the permitted activities" and maintain the field value for ACTVT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once this is created you can use the "AUTHORITY-CHECK" statement in your program.Example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  AUTHORITY-CHECK OBJECT '&amp;lt;Your Authorization object&amp;gt;'&lt;/P&gt;&lt;P&gt;                        ID 'ACTVT'  FIELD '01'. "For create&lt;/P&gt;&lt;P&gt;if sy-subrc = 0 .&lt;/P&gt;&lt;P&gt;submit SM30 program (skip first screen) and allow the user to fill the entries in table.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this will definitely solve your problem Plz Reward Points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;saj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Aug 2007 05:56:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-program/m-p/2723707#M631985</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-15T05:56:28Z</dc:date>
    </item>
  </channel>
</rss>

