<?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: Inserting into table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-into-table/m-p/1585023#M263769</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i_mprn? is it an internal table or structure. In your perform validate_mprn, what are you validating? not sure your code. please elaborate!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Oct 2006 14:39:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-12T14:39:30Z</dc:date>
    <item>
      <title>Inserting into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-into-table/m-p/1585021#M263767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a 3 custom tables and a custom tab strip application linking to that table created in spwizard. I need to add the functionality of insert, delete, modify to the application. I created the icons already, just need the functionality. Were can I go to get some help or examples will be great.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  thanks in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Oct 2006 14:21:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-into-table/m-p/1585021#M263767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-12T14:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: Inserting into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-into-table/m-p/1585022#M263768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assign a FCode for the button. Write the code in PAI module of the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;  MODULE user_command_0100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE user_command_0100 INPUT.&lt;/P&gt;&lt;P&gt;  CLEAR okcode.&lt;/P&gt;&lt;P&gt;  MOVE sy-ucomm TO okcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN 'MPAD'.&lt;/P&gt;&lt;P&gt;      CLEAR okcode.&lt;/P&gt;&lt;P&gt;      APPEND INITIAL LINE TO i_mprn .&lt;/P&gt;&lt;P&gt;      ws_devloc_add = c_x.&lt;/P&gt;&lt;P&gt;    WHEN 'MPSB'.&lt;/P&gt;&lt;P&gt;      CLEAR okcode.&lt;/P&gt;&lt;P&gt;      DELETE i_mprn WHERE select = c_x.&lt;/P&gt;&lt;P&gt;    WHEN 'MPRN'.&lt;/P&gt;&lt;P&gt;      CLEAR okcode.&lt;/P&gt;&lt;P&gt;      PERFORM validate_mprn.&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " USER_COMMAND_0100  INPUT&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;Prakash.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Oct 2006 14:23:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-into-table/m-p/1585022#M263768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-12T14:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: Inserting into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-into-table/m-p/1585023#M263769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i_mprn? is it an internal table or structure. In your perform validate_mprn, what are you validating? not sure your code. please elaborate!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Oct 2006 14:39:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-into-table/m-p/1585023#M263769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-12T14:39:30Z</dc:date>
    </item>
    <item>
      <title>Re: Inserting into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-into-table/m-p/1585024#M263770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ervin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just copied the sample program.&lt;/P&gt;&lt;P&gt;You don't want to do the same thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ofcoure i_mprn is an internal table. Also I have my own validation for the program which I added there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN 'MPAD'. This will insert a new row to the table control.&lt;/P&gt;&lt;P&gt;      CLEAR okcode.&lt;/P&gt;&lt;P&gt;      APPEND INITIAL LINE TO i_mprn .&lt;/P&gt;&lt;P&gt;      ws_devloc_add = c_x.&lt;/P&gt;&lt;P&gt;    WHEN 'MPSB'. This will delete the specified row from table control.&lt;/P&gt;&lt;P&gt;      CLEAR okcode.&lt;/P&gt;&lt;P&gt;      DELETE i_mprn WHERE select = c_x.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For deleting the specified row, first u want to declare a varibale in the table control exmple SEL type c. You have to give that field in the properties of the table control example I_MPRN-SEL. So whenever u select a line in table it will marked with 'X'. so this statement (DELETE i_mprn WHERE select = c_x. ) will delete the row whichever is selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prakash.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Oct 2006 14:48:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-into-table/m-p/1585024#M263770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-12T14:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: Inserting into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-into-table/m-p/1585025#M263771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do you know if there is any sap programs that have tab strips with the functionality to add, delete, and modify the table so that I can have a good understanding of it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Oct 2006 15:05:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-into-table/m-p/1585025#M263771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-12T15:05:52Z</dc:date>
    </item>
    <item>
      <title>Re: Inserting into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-into-table/m-p/1585026#M263772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Goto &amp;lt;b&amp;gt;ABAPDOCU&amp;lt;/b&amp;gt; transaction.&lt;/P&gt;&lt;P&gt;In that ABAP User Dialogs -&amp;gt; Screens -&amp;gt; Processing screens &amp;amp; Complex screen Elements, have lot of programs on screens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prakash.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Oct 2006 15:09:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-into-table/m-p/1585026#M263772</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-12T15:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: Inserting into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-into-table/m-p/1585027#M263773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm looking at the codes and there isn't any codes to add into the table. do you have a complete sample program so that i can look at!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Oct 2006 16:00:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-into-table/m-p/1585027#M263773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-12T16:00:41Z</dc:date>
    </item>
    <item>
      <title>Re: Inserting into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-into-table/m-p/1585028#M263774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so do any one out there have a full codes tab strip program where they are adding to a custom table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Oct 2006 19:33:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-into-table/m-p/1585028#M263774</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-20T19:33:31Z</dc:date>
    </item>
  </channel>
</rss>

