<?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 help me in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/2669734#M616330</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      I dont know how to do the following,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      I have the table called  ZTABLE.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;      Inwhich i want to do insert, delete, update the records.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;      Can you please explain me how to do and give me the procedure and then&lt;/P&gt;&lt;P&gt;      coding also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajaram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 25 Aug 2007 05:20:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-25T05:20:40Z</dc:date>
    <item>
      <title>help me</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/2669734#M616330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      I dont know how to do the following,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      I have the table called  ZTABLE.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;      Inwhich i want to do insert, delete, update the records.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;      Can you please explain me how to do and give me the procedure and then&lt;/P&gt;&lt;P&gt;      coding also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajaram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Aug 2007 05:20:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/2669734#M616330</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-25T05:20:40Z</dc:date>
    </item>
    <item>
      <title>Re: help me</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/2669735#M616331</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;For editing table.....use this path....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SE11--&amp;gt; Utilites menu ---&amp;gt; Table Contents ---&amp;gt; Create Entries &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For deleting data &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SE11--&amp;gt; PRess content button which is beside of technical setting button --&amp;gt; there is one button on application tool bar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards point is it is useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Aug 2007 05:25:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/2669735#M616331</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-25T05:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: help me</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/2669736#M616332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;INSERT { {INTO target VALUES source } &lt;/P&gt;&lt;P&gt;       | {     target FROM   source } }. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;The INSERT statement inserts one or more rows specified in source in the database table specified in target. The two variants with INTO and VALUES or without INTO with FROM behave identically, with the exception that you cannot specify any internal tables in source after VALUES. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE { {FROM target [WHERE sql_cond]} &lt;/P&gt;&lt;P&gt;       | {target FROM source} }. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;The statement DELETE deletes one or more rows from the database table specified in target. The rows that are to be deleted are specified either in a WHERE condition sql_cond or with data objects in source. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;System Fields &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The statement DELETE sets the values of the system fields sy-subrc and sy-dbcnt. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE dbtab - target &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax &lt;/P&gt;&lt;P&gt;... {dbtab|(dbtab_syntax)} [CLIENT SPECIFIED] &lt;/P&gt;&lt;P&gt;                           [CONNECTION {con|(con_syntax)}] ... . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatives: &lt;/P&gt;&lt;P&gt;1. ... dbtab &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. ... (dbtab_syntax) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Extras: &lt;/P&gt;&lt;P&gt;1. ... CLIENT SPECIFIED &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. ... CONNECTION {con|(con_syntax)} &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect: &lt;/P&gt;&lt;P&gt;The entries in target determine, statically or dynamically, which database table or which view is accessed, and control client handling. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternative 1 &lt;/P&gt;&lt;P&gt;... dbtab &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect: &lt;/P&gt;&lt;P&gt;For dbtab, a database table defined in the ABAP Dictionary or a view defined in the ABAP Dictionary can be specified. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only views that refer to a single database table, and whose maintenance status in the ABAP Dictionary permits change access can be specified. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternative 2 &lt;/P&gt;&lt;P&gt;... (dbtab_syntax) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect: &lt;/P&gt;&lt;P&gt;Instead of static specification, a bracketed data object dbtab_syntax can be specified, which must contain the name of the database table or the view when the statement is executed. A character-type data object can be specified for the data object dbtab_syntax. The syntax in dbtab_syntax, as in the AAP Editor, is not case-sensitive.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Aug 2007 05:25:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/2669736#M616332</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-25T05:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: help me</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/2669737#M616333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajaram..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Better way to Handle this is thru Table maintenace and Parameter transactions.&lt;/P&gt;&lt;P&gt;Instead of developing any code follow these  steps...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameter Transaction can be created for Table Maintenance program of a Custom Table in SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steps:&lt;/P&gt;&lt;P&gt;1. Create a Z table and Activate - SE11&lt;/P&gt;&lt;P&gt;2. Generate the Table Maintenance using SE54&lt;/P&gt;&lt;P&gt;    It will Generate the Function group and Screens.&lt;/P&gt;&lt;P&gt;3. Create a Parameter transaction to Call this Table maintenace program&lt;/P&gt;&lt;P&gt;   Goto SE93.&lt;/P&gt;&lt;P&gt;   Create a Tcode :&lt;/P&gt;&lt;P&gt;   Name : ZTCODE1&lt;/P&gt;&lt;P&gt;   Type : Parameter Transaction&lt;/P&gt;&lt;P&gt;   In the Attributes of Parameter Transaction&lt;/P&gt;&lt;P&gt;   Enter The Transaction SM30&lt;/P&gt;&lt;P&gt;   Select the Checkbox : Skip first Screen&lt;/P&gt;&lt;P&gt;   Enter the Following Fields below in the Table provide.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;   FieldName      FieldValue&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;       VIEWNAME    &amp;lt;YOUR ZTABLE&amp;gt;&lt;/P&gt;&lt;P&gt;       UPDATE         X&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save the Parameter Transaction and execute it like ant other Tcode..&lt;/P&gt;&lt;P&gt;It will allow you to maintain the Table entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if Helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Aug 2007 05:33:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/2669737#M616333</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-08-25T05:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: help me</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/2669738#M616334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry to all for the inconvenience.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am talking about the insert, delete and modify the recording in the table using table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls provide me the coding and the procedure also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajaram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Aug 2007 05:37:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/2669738#M616334</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-25T05:37:49Z</dc:date>
    </item>
    <item>
      <title>Re: help me</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/2669739#M616335</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;CHECK THIS CODE FOR INSERT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES:BKPF,J_1IPART2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PARAMETERS:P_FAWREF LIKE J_1IPART2-FAWREF,&lt;/P&gt;&lt;P&gt;             P_FAWRE1 LIKE J_1IPART2-FAWREF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: P_FAWREF2 LIKE J_1IPART2-FAWREF,&lt;/P&gt;&lt;P&gt;        P_FAWRE3 LIKE J_1IPART2-FAWREF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   MOVE P_FAWREF TO P_FAWREF2.&lt;/P&gt;&lt;P&gt;   MOVE P_FAWRE1 TO P_FAWRE3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  UPDATE J_1IPART2 SET FAWREF = P_FAWRE3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                    WHERE FAWREF = P_FAWREF2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;         MESSAGE S000.&lt;/P&gt;&lt;P&gt;       ELSE.&lt;/P&gt;&lt;P&gt;         MESSAGE E001.&lt;/P&gt;&lt;P&gt;       ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHECK BELOW CODE FOR MODIFY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : AFKO,&lt;/P&gt;&lt;P&gt;         AFPO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF GI_AFKO OCCURS 1,&lt;/P&gt;&lt;P&gt;       AUFNR LIKE AFKO-AUFNR,&lt;/P&gt;&lt;P&gt;       END OF GI_AFKO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data gi_AFPO like ZPRODUCT occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*DATA : BEGIN OF GI_AFPO  OCCURS 100,&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      MANDT LIKE&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      MATNR LIKE AFPO-MATNR,&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      DWERK LIKE AFPO-DWERK,&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      END OF GI_AFPO.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: gv_date(11)," LIKE ekpo-aedat,&lt;/P&gt;&lt;P&gt;      gv_date1(11),&lt;/P&gt;&lt;P&gt;      year(4),&lt;/P&gt;&lt;P&gt;      month(2),&lt;/P&gt;&lt;P&gt;      day(2),&lt;/P&gt;&lt;P&gt;      flag(1),&lt;/P&gt;&lt;P&gt;      read_flag(1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  gv_date1 = sy-datum.&lt;/P&gt;&lt;P&gt;  year = gv_date1+0(4).&lt;/P&gt;&lt;P&gt;  month = gv_date1+4(2).&lt;/P&gt;&lt;P&gt;  day = gv_date1+6(2).&lt;/P&gt;&lt;P&gt;  year = year - 3.&lt;/P&gt;&lt;P&gt;  CLEAR gv_date1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE year month day INTO gv_date1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select aufnr&lt;/P&gt;&lt;P&gt;         from afko&lt;/P&gt;&lt;P&gt;         into table gi_afko&lt;/P&gt;&lt;P&gt;         where ( GLTRP &amp;lt;= sy-datum AND gltrp &amp;gt;= gv_date1 ) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    select matnr&lt;/P&gt;&lt;P&gt;        dwerk&lt;/P&gt;&lt;P&gt;        from afpo&lt;/P&gt;&lt;P&gt;        into CORRESPONDING FIELDS OF table gi_afpo&lt;/P&gt;&lt;P&gt;        for all entries in gi_afko&lt;/P&gt;&lt;P&gt;        where aufnr = gi_afko-aufnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SORT GI_AFPO BY MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF NOT GI_AFPO[] IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &amp;lt;b&amp;gt;MODIFY ZPRODUCT FROM TABLE GI_AFPO.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;    IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      MESSAGE I003 WITH 'VALUES UPDATED IN TO TABLE ZPRODUCT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      MESSAGE I003 WITH 'VALUES NOT UPDATED IN TO TABLE ZPRODUCT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF U WANT TO USE DELETE  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE THE BOLD LETTERS WITH BELOW STATEMENT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE ZPRODUCT       FROM TABLE GI_AFPO.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Aug 2007 07:45:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/2669739#M616335</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-25T07:45:51Z</dc:date>
    </item>
  </channel>
</rss>

