<?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: trancation code to table maintenance in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/trancation-code-to-table-maintenance/m-p/941302#M63246</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Try the following routine in a custom program as mentioned by Andreas:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM call_view .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: l_i_selections TYPE TABLE OF vimsellist INITIAL SIZE 0,&lt;/P&gt;&lt;P&gt;        rec_selections TYPE vimsellist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*plant&lt;/P&gt;&lt;P&gt;  rec_selections-viewfield = 'WERKS'.&lt;/P&gt;&lt;P&gt;  rec_selections-operator = 'EQ'.&lt;/P&gt;&lt;P&gt;  rec_selections-value = p_werks.&lt;/P&gt;&lt;P&gt;  APPEND rec_selections TO l_i_selections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'VIEW_MAINTENANCE_CALL'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      action                       = 'S'&lt;/P&gt;&lt;P&gt;      view_name                    = 'TCODE'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      dba_sellist                  = l_i_selections&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      client_reference             = 1&lt;/P&gt;&lt;P&gt;      foreign_lock                 = 2&lt;/P&gt;&lt;P&gt;      invalid_action               = 3&lt;/P&gt;&lt;P&gt;      no_clientindependent_auth    = 4&lt;/P&gt;&lt;P&gt;      no_database_function         = 5&lt;/P&gt;&lt;P&gt;      no_editor_function           = 6&lt;/P&gt;&lt;P&gt;      no_show_auth                 = 7&lt;/P&gt;&lt;P&gt;      no_tvdir_entry               = 8&lt;/P&gt;&lt;P&gt;      no_upd_auth                  = 9&lt;/P&gt;&lt;P&gt;      only_show_allowed            = 10&lt;/P&gt;&lt;P&gt;      system_failure               = 11&lt;/P&gt;&lt;P&gt;      unknown_field_in_dba_sellist = 12&lt;/P&gt;&lt;P&gt;      view_not_found               = 13&lt;/P&gt;&lt;P&gt;      maintenance_prohibited       = 14&lt;/P&gt;&lt;P&gt;      OTHERS                       = 15.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;P&gt;            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.                   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aveek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Aug 2005 16:13:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-08-10T16:13:31Z</dc:date>
    <item>
      <title>trancation code to table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/trancation-code-to-table-maintenance/m-p/941297#M63241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a custom table with table maintenance view. Our end users don't have authorization of SM30 transation. Can we attach transaction code to the table maintenance so that user can inser or modify or delete records by using T-code. Even though he dont have authorization of table maintenance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2005 18:01:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/trancation-code-to-table-maintenance/m-p/941297#M63241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-09T18:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: trancation code to table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/trancation-code-to-table-maintenance/m-p/941298#M63242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes - Create a parameter transaction that calls transaction SM30. You'll have to specify the viewname and whether updates are allowed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You'll want to skip the first screen as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rob Burbank&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2005 18:08:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/trancation-code-to-table-maintenance/m-p/941298#M63242</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-09T18:08:00Z</dc:date>
    </item>
    <item>
      <title>Re: trancation code to table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/trancation-code-to-table-maintenance/m-p/941299#M63243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I believe so, in SE93,  create the transaction as a "transaction with parameters".  Enter SM30 as the transaction,  then check the "skip first screen" checkbox and hit enter.  Now at the bottom of the screen in the default values table control,  enter the values like so...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;b&amp;gt;Name of Screen Field     Value&amp;lt;/b&amp;gt;
VIEWNAME                 &amp;lt;the maintenance view name&amp;gt;
UPDATE                   X&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save the transaction and execute....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rich Heilman&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2005 18:09:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/trancation-code-to-table-maintenance/m-p/941299#M63243</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-08-09T18:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: trancation code to table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/trancation-code-to-table-maintenance/m-p/941300#M63244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Correct answer is already provided by others.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Sanjeev&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Sanjeev Singh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2005 18:14:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/trancation-code-to-table-maintenance/m-p/941300#M63244</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-09T18:14:53Z</dc:date>
    </item>
    <item>
      <title>Re: trancation code to table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/trancation-code-to-table-maintenance/m-p/941301#M63245</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;or use fm &amp;lt;b&amp;gt;VIEW_MAINTENANCE_CALL&amp;lt;/b&amp;gt; in  own program/transaction&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Aug 2005 05:39:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/trancation-code-to-table-maintenance/m-p/941301#M63245</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2005-08-10T05:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: trancation code to table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/trancation-code-to-table-maintenance/m-p/941302#M63246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Try the following routine in a custom program as mentioned by Andreas:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM call_view .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: l_i_selections TYPE TABLE OF vimsellist INITIAL SIZE 0,&lt;/P&gt;&lt;P&gt;        rec_selections TYPE vimsellist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*plant&lt;/P&gt;&lt;P&gt;  rec_selections-viewfield = 'WERKS'.&lt;/P&gt;&lt;P&gt;  rec_selections-operator = 'EQ'.&lt;/P&gt;&lt;P&gt;  rec_selections-value = p_werks.&lt;/P&gt;&lt;P&gt;  APPEND rec_selections TO l_i_selections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'VIEW_MAINTENANCE_CALL'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      action                       = 'S'&lt;/P&gt;&lt;P&gt;      view_name                    = 'TCODE'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      dba_sellist                  = l_i_selections&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      client_reference             = 1&lt;/P&gt;&lt;P&gt;      foreign_lock                 = 2&lt;/P&gt;&lt;P&gt;      invalid_action               = 3&lt;/P&gt;&lt;P&gt;      no_clientindependent_auth    = 4&lt;/P&gt;&lt;P&gt;      no_database_function         = 5&lt;/P&gt;&lt;P&gt;      no_editor_function           = 6&lt;/P&gt;&lt;P&gt;      no_show_auth                 = 7&lt;/P&gt;&lt;P&gt;      no_tvdir_entry               = 8&lt;/P&gt;&lt;P&gt;      no_upd_auth                  = 9&lt;/P&gt;&lt;P&gt;      only_show_allowed            = 10&lt;/P&gt;&lt;P&gt;      system_failure               = 11&lt;/P&gt;&lt;P&gt;      unknown_field_in_dba_sellist = 12&lt;/P&gt;&lt;P&gt;      view_not_found               = 13&lt;/P&gt;&lt;P&gt;      maintenance_prohibited       = 14&lt;/P&gt;&lt;P&gt;      OTHERS                       = 15.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;P&gt;            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.                   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aveek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Aug 2005 16:13:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/trancation-code-to-table-maintenance/m-p/941302#M63246</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-10T16:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: trancation code to table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/trancation-code-to-table-maintenance/m-p/941303#M63247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,a small change to the soultion suggested by Rich would enable simaltaneous access to the maintenance table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead of &lt;/P&gt;&lt;P&gt;Name of Screen Field     Value&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;UPDATE                   X&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use &amp;lt;b&amp;gt;SHOW   X&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Aug 2005 20:31:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/trancation-code-to-table-maintenance/m-p/941303#M63247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-10T20:31:23Z</dc:date>
    </item>
  </channel>
</rss>

