<?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: Table updation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-updation/m-p/3723446#M896215</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; 1.use the converter for the amount.(for amount problem)&lt;/P&gt;&lt;P&gt; 2.update syntax:&lt;/P&gt;&lt;P&gt; UPDATE (table) &lt;/P&gt;&lt;P&gt;    SET    (set_expr) &lt;/P&gt;&lt;P&gt;    WHERE  (condition). &lt;/P&gt;&lt;P&gt;3.With the name or by checking the documentation of that BAPi.&lt;/P&gt;&lt;P&gt;4.If the table is not maintainable,Then it cann't possible to create table maintenance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shiva.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 May 2008 07:08:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-06T07:08:01Z</dc:date>
    <item>
      <title>Table updation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-updation/m-p/3723445#M896214</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;Upon cross checking certain amounts of a std.transaction with a Y program we found there is some imbalance in the amounts.Can anyone suggest what would be the best way to update a data entry in a standard data base table (BSIS).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.Write a piece of code to update the particular table entry ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.Use any BAPI ? If yes , how to search for a correct BAPI which can do the update ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.The table is not maintainable , can we still use table maintenanace generator ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly Advise.&lt;/P&gt;&lt;P&gt;Answers will be rewarded  .&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raajessh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 07:03:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-updation/m-p/3723445#M896214</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-06T07:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: Table updation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-updation/m-p/3723446#M896215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; 1.use the converter for the amount.(for amount problem)&lt;/P&gt;&lt;P&gt; 2.update syntax:&lt;/P&gt;&lt;P&gt; UPDATE (table) &lt;/P&gt;&lt;P&gt;    SET    (set_expr) &lt;/P&gt;&lt;P&gt;    WHERE  (condition). &lt;/P&gt;&lt;P&gt;3.With the name or by checking the documentation of that BAPi.&lt;/P&gt;&lt;P&gt;4.If the table is not maintainable,Then it cann't possible to create table maintenance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shiva.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 07:08:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-updation/m-p/3723446#M896215</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-06T07:08:01Z</dc:date>
    </item>
    <item>
      <title>Re: Table updation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-updation/m-p/3723447#M896216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you are updating the standard table you should be careful about ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go through the following statements.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform dboperation_table using 'SET' 'BIRTHDT' '=' var_date.&lt;/P&gt;&lt;P&gt; perform dboperation_table using 'WHERE' 'PARTNER' '=' ls_import-partner.&lt;/P&gt;&lt;P&gt; perform dboperation_update using 'BUT000'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form dboperation_table&lt;/P&gt;&lt;P&gt;using p_type&lt;/P&gt;&lt;P&gt;      p_var1&lt;/P&gt;&lt;P&gt;      p_var2&lt;/P&gt;&lt;P&gt;      p_var3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: t_l type cmst_str_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: d_cx_root            type ref to cx_root,&lt;/P&gt;&lt;P&gt;        d_text               type string.&lt;/P&gt;&lt;P&gt;  try.&lt;/P&gt;&lt;P&gt;      clear t_l.&lt;/P&gt;&lt;P&gt;      if p_var3 is not initial.&lt;/P&gt;&lt;P&gt;        t_l = p_var3.&lt;/P&gt;&lt;P&gt;        condense t_l.&lt;/P&gt;&lt;P&gt;        concatenate '''' t_l '''' into t_l.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;      concatenate p_var1 p_var2 t_l into t_l&lt;/P&gt;&lt;P&gt;      separated by space.&lt;/P&gt;&lt;P&gt;      case p_type.&lt;/P&gt;&lt;P&gt;        when 'SET'.   append t_l to g_s_t.&lt;/P&gt;&lt;P&gt;        when 'WHERE'. append t_l to g_w_t.&lt;/P&gt;&lt;P&gt;      endcase.&lt;/P&gt;&lt;P&gt;    catch cx_root into d_cx_root.&lt;/P&gt;&lt;P&gt;      d_text = d_cx_root-&amp;gt;get_text( ).&lt;/P&gt;&lt;P&gt;      message a398(00) with  d_text.&lt;/P&gt;&lt;P&gt;  endtry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.                    "DBOPERATION_table&lt;/P&gt;&lt;P&gt;form dboperation_update&lt;/P&gt;&lt;P&gt;using  p_tabname type zdboperation-tabname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: tabname type bus_table.&lt;/P&gt;&lt;P&gt;  data: d_cx_root            type ref to cx_root,&lt;/P&gt;&lt;P&gt;        d_text               type string.&lt;/P&gt;&lt;P&gt;  try.&lt;/P&gt;&lt;P&gt;      tabname-tabname = p_tabname.&lt;/P&gt;&lt;P&gt;      call function 'ZDBOPERATION_UPDATE'&lt;/P&gt;&lt;P&gt;        in update task&lt;/P&gt;&lt;P&gt;        exporting&lt;/P&gt;&lt;P&gt;          tabname     = tabname&lt;/P&gt;&lt;P&gt;        tables&lt;/P&gt;&lt;P&gt;          where_table = g_w_t&lt;/P&gt;&lt;P&gt;          set_table   = g_s_t.&lt;/P&gt;&lt;P&gt;    catch cx_root into d_cx_root.&lt;/P&gt;&lt;P&gt;      d_text = d_cx_root-&amp;gt;get_text( ).&lt;/P&gt;&lt;P&gt;      message a398(00) with  d_text.&lt;/P&gt;&lt;P&gt;  endtry.&lt;/P&gt;&lt;P&gt;endform.                    "DBOPERATION_update&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;Madan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 08:55:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-updation/m-p/3723447#M896216</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-06T08:55:06Z</dc:date>
    </item>
  </channel>
</rss>

