<?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: BAPI_USER_CHANGE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-user-change/m-p/4388142#M1043520</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This worked for me too.&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Dec 2013 15:53:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2013-12-17T15:53:49Z</dc:date>
    <item>
      <title>BAPI_USER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-user-change/m-p/4388133#M1043511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to change User's License Data in SU01 transaction. I am using BAPI_USER_CHANGE and after that BAPI_TRANSACTION_COMMIT.&lt;/P&gt;&lt;P&gt;I have tried commit work and wait also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is bapi_user_change says the user has been changed. But when i see it in SU01 there is no change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the problem, I am not able to understand?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2008 09:13:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-user-change/m-p/4388133#M1043511</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-02T09:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_USER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-user-change/m-p/4388134#M1043512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2008 09:29:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-user-change/m-p/4388134#M1043512</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-02T09:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_USER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-user-change/m-p/4388135#M1043513</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;&lt;/P&gt;&lt;P&gt;see the code below and then reply :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UCLASS-LIC_TYPE = '55'.&lt;/P&gt;&lt;P&gt;UCLASS-COUNTRY_SURCHARGE = '100'.&lt;/P&gt;&lt;P&gt;UCLASS-SUBSTITUTE_FROM = sy-datum.&lt;/P&gt;&lt;P&gt;UCLASS-SUBSTITUTE_UNTIL = '99991231'.&lt;/P&gt;&lt;P&gt;UCLASS-SYSID = 'DS1'.&lt;/P&gt;&lt;P&gt;UCLASS-CLIENT = '600'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UCLASSX-UCLASS = 'X'.&lt;/P&gt;&lt;P&gt;UCLASSX-UCLASSSYS = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_USER_CHANGE'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    username                = 'BCZRIM'&lt;/P&gt;&lt;P&gt;   UCLASS                  = UCLASS&lt;/P&gt;&lt;P&gt;   UCLASSX                 = uclassx&lt;/P&gt;&lt;P&gt;  tables&lt;/P&gt;&lt;P&gt;    return                  = RETURN&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  UCLASSSYS               = UCLASSSYS&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt; data : wa_return type BAPIRET2.&lt;/P&gt;&lt;P&gt;clear wa_return.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;   WAIT          = 'X'&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   RETURN        = wa_return&lt;/P&gt;&lt;P&gt;         .&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2008 10:00:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-user-change/m-p/4388135#M1043513</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-02T10:00:56Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_USER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-user-change/m-p/4388136#M1043514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pradeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sy-subrc is not checked in BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if RETURN is not initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bapi call_transaction_commit.&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;It will work provided all the data that you are passing is correct.&lt;/P&gt;&lt;P&gt;&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;Shree Tejus C.  &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2008 10:26:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-user-change/m-p/4388136#M1043514</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-02T10:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_USER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-user-change/m-p/4388137#M1043515</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;Error : Change indicator X is not supported&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's giving me an error on passing the change flag structure uclassx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;pradeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2008 10:35:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-user-change/m-p/4388137#M1043515</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-02T10:35:14Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_USER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-user-change/m-p/4388138#M1043516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pradeep,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;UCLASSX-UCLASSSYS = 'X'"is wrong which you passed&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following values are permitted for the field UCLASSX-UCLASSSYS:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;'R' The system-specific user classifications are deleted, and replaced with current values from the table.
'S' Only the user classifications for the listed systems are replaced. If the user classifications for a system are to be deleted, the user type must be initial.
Space The table is not used.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2008 10:42:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-user-change/m-p/4388138#M1043516</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-02T10:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_USER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-user-change/m-p/4388139#M1043517</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;Even I have tried with R &amp;amp; S also, then also it is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : uclass TYPE bapiuclass,&lt;/P&gt;&lt;P&gt;       uclassx TYPE bapiuclassx,&lt;/P&gt;&lt;P&gt;       return TYPE STANDARD TABLE OF bapiret2 INITIAL SIZE 0,&lt;/P&gt;&lt;P&gt;       uclasssys TYPE STANDARD TABLE OF bapiuclasssys INITIAL SIZE 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : wa_uclasssys TYPE  bapiuclasssys.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;uclass-lic_type = '55'.&lt;/P&gt;&lt;P&gt;uclass-country_surcharge = '100'.&lt;/P&gt;&lt;P&gt;uclass-substitute_from = sy-datum.&lt;/P&gt;&lt;P&gt;uclass-substitute_until = '99991231'.&lt;/P&gt;&lt;P&gt;uclass-sysid = 'DS1'.&lt;/P&gt;&lt;P&gt;uclass-client = '600'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*UCLASSX-UCLASS = 'X'.&lt;/P&gt;&lt;P&gt;uclassx-uclasssys = 'R'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_USER_CHANGE'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    username  = 'AJVHBI'&lt;/P&gt;&lt;P&gt;    uclass    = uclass&lt;/P&gt;&lt;P&gt;    uclassx   = uclassx&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    return    = return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF return IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA : wa_return TYPE bapiret2.&lt;/P&gt;&lt;P&gt;  CLEAR wa_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      wait   = 'X'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      return = wa_return.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2008 10:59:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-user-change/m-p/4388139#M1043517</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-02T10:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_USER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-user-change/m-p/4388140#M1043518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What about UCLASSSYS table which is in Table paramenter?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2008 11:33:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-user-change/m-p/4388140#M1043518</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-02T11:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_USER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-user-change/m-p/4388141#M1043519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pradeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pass the parameter you want to change and then raise the flag as 'X' after the parameter...like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If we want to change address then...provide the address details:&lt;/P&gt;&lt;P&gt;  wa_address-FIRSTNAME = 'TEST'.&lt;/P&gt;&lt;P&gt;  wa_address-LASTNAME = 'USER'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then raise the change flag against each field we changed...&lt;/P&gt;&lt;P&gt;  wa_addressx-FIRSTNAME = 'X'.&lt;/P&gt;&lt;P&gt;  wa_addressx-LASTNAME = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try wth  this it works in my case..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2009 06:22:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-user-change/m-p/4388141#M1043519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-24T06:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_USER_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-user-change/m-p/4388142#M1043520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This worked for me too.&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Dec 2013 15:53:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-user-change/m-p/4388142#M1043520</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-17T15:53:49Z</dc:date>
    </item>
  </channel>
</rss>

