<?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 User Authorization problem in BAPI BAPI_REPMANCONF1_CREATE_MTS in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-authorization-problem-in-bapi-bapi-repmanconf1-create-mts/m-p/8425595#M1647036</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 am using the BAPI BAPI_REPMANCONF1_CREATE_MTS for the posting MFBF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But for some user this BAPI returning error message ' user doesnt have authorization to post MFBF'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This BAPI is calling function module RM_CHECK_AUTH_BACKFL to check the Authorization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i checked the BAPI , BAPI has called this function module 4 times with different parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to call the function module RM_CHECK_AUTH_BACKFL before calling the BAPI  BAPI_REPMANCONF1_CREATE_MTS &lt;/P&gt;&lt;P&gt;and capture the error. if user have authorization than only it has to post. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am not able to check which parameter checking user authorization for function module  and i dont have the debug authorization also for the user id which dont have authorization for MFBF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one tell which and all paramter i have to pass to function module  RM_CHECK_AUTH_B to check user authorization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;udupi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Jan 2012 07:55:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-01-16T07:55:18Z</dc:date>
    <item>
      <title>User Authorization problem in BAPI BAPI_REPMANCONF1_CREATE_MTS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-authorization-problem-in-bapi-bapi-repmanconf1-create-mts/m-p/8425595#M1647036</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 am using the BAPI BAPI_REPMANCONF1_CREATE_MTS for the posting MFBF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But for some user this BAPI returning error message ' user doesnt have authorization to post MFBF'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This BAPI is calling function module RM_CHECK_AUTH_BACKFL to check the Authorization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i checked the BAPI , BAPI has called this function module 4 times with different parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to call the function module RM_CHECK_AUTH_BACKFL before calling the BAPI  BAPI_REPMANCONF1_CREATE_MTS &lt;/P&gt;&lt;P&gt;and capture the error. if user have authorization than only it has to post. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am not able to check which parameter checking user authorization for function module  and i dont have the debug authorization also for the user id which dont have authorization for MFBF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one tell which and all paramter i have to pass to function module  RM_CHECK_AUTH_B to check user authorization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;udupi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jan 2012 07:55:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-authorization-problem-in-bapi-bapi-repmanconf1-create-mts/m-p/8425595#M1647036</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-16T07:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: User Authorization problem in BAPI BAPI_REPMANCONF1_CREATE_MTS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-authorization-problem-in-bapi-bapi-repmanconf1-create-mts/m-p/8425596#M1647037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'RM_CHECK_AUTH_BACKFL'
        EXPORTING
          werk                = l_bflushdata-werks "==&amp;gt;plant
          lagort              = l_bflushdata-alort "==&amp;gt;receiving storage location
          check_post          = c_auth_post  "==&amp;gt;this depends upon what you are doing = 1 for final post
          check_type          = c_auth_bfl_b "===&amp;gt; b for the first check..
        EXCEPTIONS
          no_auth             = 1
          userdata_incomplete = 2
          wrong_call          = 3
          miss_storage        = 4
          OTHERS              = 5.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or you can also just do a check on plant only by passing no_lagort    = 'X'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jan 2012 08:04:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-authorization-problem-in-bapi-bapi-repmanconf1-create-mts/m-p/8425596#M1647037</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-16T08:04:26Z</dc:date>
    </item>
    <item>
      <title>Re: User Authorization problem in BAPI BAPI_REPMANCONF1_CREATE_MTS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-authorization-problem-in-bapi-bapi-repmanconf1-create-mts/m-p/8425597#M1647038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sowmya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply. I passed the same parameter still it is not capturing error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Udupi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jan 2012 09:28:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-authorization-problem-in-bapi-bapi-repmanconf1-create-mts/m-p/8425597#M1647038</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-16T09:28:46Z</dc:date>
    </item>
  </channel>
</rss>

