<?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 SAP Netweaver 7.x BAPI_USER_CREATE doesnt work in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-netweaver-7-x-bapi-user-create-doesnt-work/m-p/8444234#M1648890</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am deploying a user create program which uses the FM BAPI_USER_CREATE. The RETURN parameter gives me the following message:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The entered password is not downward compatible (see long text)&lt;/P&gt;&lt;P&gt;The communication type RML is not defined&lt;/P&gt;&lt;P&gt;No data maintained for standard communication type 'Remote Mail'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code Extract of the program is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT Z_USER_CREATE .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: ZUSERTAB,&lt;/P&gt;&lt;P&gt;        USR02,&lt;/P&gt;&lt;P&gt;        USH02.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;E_BAPIBNAME    LIKE BAPIBNAME,&lt;/P&gt;&lt;P&gt;E_BAPILOGOND   LIKE BAPILOGOND,&lt;/P&gt;&lt;P&gt;E_BAPIADDR3    LIKE BAPIADDR3,&lt;/P&gt;&lt;P&gt;E_LANGU_P      TYPE SPRAS              VALUE 'E',&lt;/P&gt;&lt;P&gt;E_COMM_TYPE    TYPE AD_COMM            VALUE 'RML',&lt;/P&gt;&lt;P&gt;E_COMPANY      LIKE BAPIUSCOMP,&lt;/P&gt;&lt;P&gt;E_USR02        LIKE USR02,&lt;/P&gt;&lt;P&gt;E_USH02        LIKE USH02,&lt;/P&gt;&lt;P&gt;D_PASSWORD     LIKE BAPIPWD,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;D_PSWD         TYPE STRING,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E_SOUD3        LIKE SOUD3,&lt;/P&gt;&lt;P&gt;T_RETURN       LIKE BAPIRET2            OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM ZUSERTAB.         "Populate temporary table with new info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  E_BAPIBNAME-BAPIBNAME = ZUSERTAB-BNAME.&lt;/P&gt;&lt;P&gt;  E_BAPIADDR3-LASTNAME = ZUSERTAB-LASTNAME.&lt;/P&gt;&lt;P&gt;  E_BAPIADDR3-FIRSTNAME = ZUSERTAB-FIRSTNAME.&lt;/P&gt;&lt;P&gt;  E_BAPIADDR3-FUNCTION = ZUSERTAB-FUNCTION.&lt;/P&gt;&lt;P&gt;  E_BAPIADDR3-LANGU_P = E_LANGU_P.&lt;/P&gt;&lt;P&gt;  E_BAPIADDR3-COMM_TYPE = E_COMM_TYPE.&lt;/P&gt;&lt;P&gt;  E_BAPILOGOND-CLASS = ZUSERTAB-CLASS.&lt;/P&gt;&lt;P&gt;  E_BAPILOGOND-ACCNT = ZUSERTAB-ACCNT.&lt;/P&gt;&lt;P&gt;  E_BAPILOGOND-GLTGV = ZUSERTAB-GLTGV.&lt;/P&gt;&lt;P&gt;  E_BAPILOGOND-GLTGB = ZUSERTAB-GLTGB.&lt;/P&gt;&lt;P&gt;  E_USR02-ANAME = ZUSERTAB-ANAME.&lt;/P&gt;&lt;P&gt;  E_USH02-MODBE = ZUSERTAB-MODBE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MOVE zusertab-modti  TO  e_ush02-modti.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MOVE zusertab-modda  TO  e_ush02-modda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DEQUEUE_E_USR04'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          BNAME = ZUSERTAB-BNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO 2 TIMES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GENERAL_GET_RANDOM_PWD'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    NUMBER_CHARS       = 8&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;    RANDOM_PWD         = D_PSWD&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Do Nothing&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;D_PASSWORD = D_PSWD.&lt;/P&gt;&lt;P&gt;E_COMPANY = 'X&amp;amp;Y'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_USER_CREATE'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          USERNAME  = ZUSERTAB-BNAME&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        NAME_IN   =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          LOGONDATA = E_BAPILOGOND&lt;/P&gt;&lt;P&gt;          PASSWORD  = D_PASSWORD&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        DEFAULTS  =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          ADDRESS   = E_BAPIADDR3&lt;/P&gt;&lt;P&gt;          COMPANY   = E_COMPANY&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        SNC       =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        PARAMETER =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          RETURN    = T_RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regasrds,&lt;/P&gt;&lt;P&gt;Tashi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 Dec 2011 07:00:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-12-30T07:00:50Z</dc:date>
    <item>
      <title>SAP Netweaver 7.x BAPI_USER_CREATE doesnt work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-netweaver-7-x-bapi-user-create-doesnt-work/m-p/8444234#M1648890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am deploying a user create program which uses the FM BAPI_USER_CREATE. The RETURN parameter gives me the following message:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The entered password is not downward compatible (see long text)&lt;/P&gt;&lt;P&gt;The communication type RML is not defined&lt;/P&gt;&lt;P&gt;No data maintained for standard communication type 'Remote Mail'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code Extract of the program is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT Z_USER_CREATE .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: ZUSERTAB,&lt;/P&gt;&lt;P&gt;        USR02,&lt;/P&gt;&lt;P&gt;        USH02.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;E_BAPIBNAME    LIKE BAPIBNAME,&lt;/P&gt;&lt;P&gt;E_BAPILOGOND   LIKE BAPILOGOND,&lt;/P&gt;&lt;P&gt;E_BAPIADDR3    LIKE BAPIADDR3,&lt;/P&gt;&lt;P&gt;E_LANGU_P      TYPE SPRAS              VALUE 'E',&lt;/P&gt;&lt;P&gt;E_COMM_TYPE    TYPE AD_COMM            VALUE 'RML',&lt;/P&gt;&lt;P&gt;E_COMPANY      LIKE BAPIUSCOMP,&lt;/P&gt;&lt;P&gt;E_USR02        LIKE USR02,&lt;/P&gt;&lt;P&gt;E_USH02        LIKE USH02,&lt;/P&gt;&lt;P&gt;D_PASSWORD     LIKE BAPIPWD,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;D_PSWD         TYPE STRING,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E_SOUD3        LIKE SOUD3,&lt;/P&gt;&lt;P&gt;T_RETURN       LIKE BAPIRET2            OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM ZUSERTAB.         "Populate temporary table with new info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  E_BAPIBNAME-BAPIBNAME = ZUSERTAB-BNAME.&lt;/P&gt;&lt;P&gt;  E_BAPIADDR3-LASTNAME = ZUSERTAB-LASTNAME.&lt;/P&gt;&lt;P&gt;  E_BAPIADDR3-FIRSTNAME = ZUSERTAB-FIRSTNAME.&lt;/P&gt;&lt;P&gt;  E_BAPIADDR3-FUNCTION = ZUSERTAB-FUNCTION.&lt;/P&gt;&lt;P&gt;  E_BAPIADDR3-LANGU_P = E_LANGU_P.&lt;/P&gt;&lt;P&gt;  E_BAPIADDR3-COMM_TYPE = E_COMM_TYPE.&lt;/P&gt;&lt;P&gt;  E_BAPILOGOND-CLASS = ZUSERTAB-CLASS.&lt;/P&gt;&lt;P&gt;  E_BAPILOGOND-ACCNT = ZUSERTAB-ACCNT.&lt;/P&gt;&lt;P&gt;  E_BAPILOGOND-GLTGV = ZUSERTAB-GLTGV.&lt;/P&gt;&lt;P&gt;  E_BAPILOGOND-GLTGB = ZUSERTAB-GLTGB.&lt;/P&gt;&lt;P&gt;  E_USR02-ANAME = ZUSERTAB-ANAME.&lt;/P&gt;&lt;P&gt;  E_USH02-MODBE = ZUSERTAB-MODBE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MOVE zusertab-modti  TO  e_ush02-modti.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MOVE zusertab-modda  TO  e_ush02-modda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DEQUEUE_E_USR04'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          BNAME = ZUSERTAB-BNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO 2 TIMES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GENERAL_GET_RANDOM_PWD'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    NUMBER_CHARS       = 8&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;    RANDOM_PWD         = D_PSWD&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Do Nothing&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;D_PASSWORD = D_PSWD.&lt;/P&gt;&lt;P&gt;E_COMPANY = 'X&amp;amp;Y'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_USER_CREATE'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          USERNAME  = ZUSERTAB-BNAME&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        NAME_IN   =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          LOGONDATA = E_BAPILOGOND&lt;/P&gt;&lt;P&gt;          PASSWORD  = D_PASSWORD&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        DEFAULTS  =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          ADDRESS   = E_BAPIADDR3&lt;/P&gt;&lt;P&gt;          COMPANY   = E_COMPANY&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        SNC       =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        PARAMETER =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          RETURN    = T_RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regasrds,&lt;/P&gt;&lt;P&gt;Tashi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Dec 2011 07:00:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-netweaver-7-x-bapi-user-create-doesnt-work/m-p/8444234#M1648890</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-30T07:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Netweaver 7.x BAPI_USER_CREATE doesnt work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-netweaver-7-x-bapi-user-create-doesnt-work/m-p/8444235#M1648891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In my system this FM was not available....so could not check much&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For downward compatibility...&lt;/P&gt;&lt;P&gt;check below links&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/22/41c43ac23cef2fe10000000a114084/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/22/41c43ac23cef2fe10000000a114084/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://wiki.sdn.sap.com/wiki/display/Security/Solved" target="test_blank"&gt;http://wiki.sdn.sap.com/wiki/display/Security/Solved&lt;/A&gt;&lt;EM&gt;-&lt;/EM&gt;Password&lt;EM&gt;downwards&lt;/EM&gt;compatibility&lt;EM&gt;defaulted&lt;/EM&gt;to+0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Else Create a strong initial password and try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lalit Mohan Gupta.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Dec 2011 07:23:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-netweaver-7-x-bapi-user-create-doesnt-work/m-p/8444235#M1648891</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-30T07:23:54Z</dc:date>
    </item>
  </channel>
</rss>

