<?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: Problem while updating attribute using bapi BAPI_CASE_CHANGEATTRIBUTES in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-updating-attribute-using-bapi-bapi-case-changeattributes/m-p/6461703#M1415612</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solved my self...actually i was trying to update the wrong screen field so i got problem.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Satish Boguda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Jan 2010 20:56:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-01-11T20:56:29Z</dc:date>
    <item>
      <title>Problem while updating attribute using bapi BAPI_CASE_CHANGEATTRIBUTES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-updating-attribute-using-bapi-bapi-case-changeattributes/m-p/6461697#M1415606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Iam trying to update a attribute uisng bapi BAPI_CASE_CHANGEATTRIBUTES &lt;/P&gt;&lt;P&gt;Iam trying to update a standard table SCMG_T_CASE_Attr with follwing bapi. it is giving me sy-subrc value = 0 but its not updating the table..&lt;/P&gt;&lt;P&gt;Iam passing the case id and based on the case id iam passing the table lt_attr ( the value which has to be updated ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i use update statement it is updating the database table perfectly.... &lt;/P&gt;&lt;P&gt;But updating thestandard data base table using update statement is not correct way i need to use the below bapi..&lt;/P&gt;&lt;P&gt;can any one let me know any thing needs to be added for the below code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

 CALL FUNCTION 'BAPI_DISPUTE_ATTRIBUTES_CHANGE'
        EXPORTING
          case_guid  = v_case_guid
        IMPORTING
          return     = v_return1
        TABLES
          attributes = lt_attr.


 IF v_return1-type &amp;lt;&amp;gt; 'E' AND v_return1-type &amp;lt;&amp;gt; 'A'.

        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          IMPORTING
            return = v_return2.

endif.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jan 2010 08:33:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-updating-attribute-using-bapi-bapi-case-changeattributes/m-p/6461697#M1415606</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-07T08:33:13Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while updating attribute using bapi BAPI_CASE_CHANGEATTRIBUTES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-updating-attribute-using-bapi-bapi-case-changeattributes/m-p/6461698#M1415607</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;Your code reflects that &lt;STRONG&gt;commit will never get executed&lt;/STRONG&gt; as the variable will not have 2 values at any point of time and an AND condition in between will never result in a return of boolean TRUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jan 2010 08:57:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-updating-attribute-using-bapi-bapi-case-changeattributes/m-p/6461698#M1415607</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-07T08:57:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while updating attribute using bapi BAPI_CASE_CHANGEATTRIBUTES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-updating-attribute-using-bapi-bapi-case-changeattributes/m-p/6461699#M1415608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actaully there should be &amp;lt; &amp;gt; ( not equal to ) between v_return1-type  &amp;amp; E whicg is not visible in the code copy..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The actual code is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

IF v_return1-type NE 'E' AND v_return1-type NE  'A'.
 
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          IMPORTING
            return = v_return2.
 
endif.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jan 2010 09:00:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-updating-attribute-using-bapi-bapi-case-changeattributes/m-p/6461699#M1415608</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-07T09:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while updating attribute using bapi BAPI_CASE_CHANGEATTRIBUTES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-updating-attribute-using-bapi-bapi-case-changeattributes/m-p/6461700#M1415609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Satish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should use OR condition, else control never comes to BAPI commit.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

IF v_return1-type NE 'E' OR v_return1-type NE  'A'.
 
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          IMPORTING
            return = v_return2.
 
endif.
 &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Swarna Munukoti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jan 2010 09:17:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-updating-attribute-using-bapi-bapi-case-changeattributes/m-p/6461700#M1415609</guid>
      <dc:creator>former_member217544</dc:creator>
      <dc:date>2010-01-07T09:17:01Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while updating attribute using bapi BAPI_CASE_CHANGEATTRIBUTES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-updating-attribute-using-bapi-bapi-case-changeattributes/m-p/6461701#M1415610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BAPI is executing susccesfully but its not updating the data base table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Satish Boguda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jan 2010 09:22:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-updating-attribute-using-bapi-bapi-case-changeattributes/m-p/6461701#M1415610</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-07T09:22:14Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while updating attribute using bapi BAPI_CASE_CHANGEATTRIBUTES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-updating-attribute-using-bapi-bapi-case-changeattributes/m-p/6461702#M1415611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;any update on this....  how to correct it...!!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jan 2010 11:20:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-updating-attribute-using-bapi-bapi-case-changeattributes/m-p/6461702#M1415611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-07T11:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while updating attribute using bapi BAPI_CASE_CHANGEATTRIBUTES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-updating-attribute-using-bapi-bapi-case-changeattributes/m-p/6461703#M1415612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solved my self...actually i was trying to update the wrong screen field so i got problem.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Satish Boguda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jan 2010 20:56:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-updating-attribute-using-bapi-bapi-case-changeattributes/m-p/6461703#M1415612</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-11T20:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while updating attribute using bapi BAPI_CASE_CHANGEATTRIBUTES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-updating-attribute-using-bapi-bapi-case-changeattributes/m-p/6461704#M1415613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solved Myself...!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jan 2010 20:57:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-updating-attribute-using-bapi-bapi-case-changeattributes/m-p/6461704#M1415613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-11T20:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while updating attribute using bapi BAPI_CASE_CHANGEATTRIBUTES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-updating-attribute-using-bapi-bapi-case-changeattributes/m-p/6461705#M1415614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Satish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having the same problem while updating the case attributes using BAPI_CASE_CHANGEATTRIBUTES.&lt;/P&gt;&lt;P&gt;Can you please kindly help me in the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vishal Chauhan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2014 04:11:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-updating-attribute-using-bapi-bapi-case-changeattributes/m-p/6461705#M1415614</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-04-30T04:11:18Z</dc:date>
    </item>
  </channel>
</rss>

