Authorization needed for executing f.05-urgent

Dear expert,
What tcode/authorization must be had for person to executed f.05?
Please advice.
Thank you

hi Putri,
the solution I suggested has to work for each kind of auth issue. Pls. give it a try. Start the transaction, do the posting and wherever you get the message that an auth. check failed, just try /nsu53. It will tell you what is missing (either transaction or org. element or whatever). if nothing is missing, than the issue is not related to auth. So simple.
You are right: F-05 starts FB01, so if a user wants to start F-05 he needs auth for FBB1 as well, but if he has not, the transaction will stop immediately with error message about the missing auth.
ec

Similar Messages

  • No ICF authorization CHECK for executing /sap/bc/bsp/sap/hap_document

    In EP we are trying to access bsp
    and we are getting error ,User T000209 (client 350) has no ICF authorization CHECK for executing /sap/bc/bsp/sap/hap_document
    How to give authorization please help
    venkateswararao

    First Check is the ICF service is active using the SICF transaction.
    Then Check for the authorization objects SAP_HR_HAP_EMPLOYEE
    and SAP_HR_HAP_MANAGER.
    Add the above roles to your user , it should work

  • Special authorization need for read cluster table??

    In one report, I use following coding to read information from RFDT table:
    form get_f110_parm .
      f110id-laufd   = p_laufd.
      f110id-laufi   = p_laufi.
      f110versionpar = space.
      clear:   buktab, fkttab, slktab, sldtab, trctab, usrtab,
               faetab, jobtab, f110v, f110c,  trcopt, f110versionpar.
      import buktab fkttab slktab sldtab trctab usrtab
             faetab jobtab f110c trcopt f110versionpar
             from database rfdt(fb) id f110id
             accepting padding.
    endform.                    " GET_F110_PARM
    I can fill F110c, trcopt and f110versionpar by this program. But there is no entry in table like fkttab, usrtab.
    Is there any authorization need for read cluster table??
    Thanks in advance.
    Edited by: Amy Xie on Dec 21, 2010 10:41 AM

    Hello,
    After you run your code, check transaction SU53 to see if any authorization check failed.

  • Authorizations needed for MAM 2.5 for RFC user and business users

    Hello all,
    We are using MAM 2.5 application but we are facing authorizations issues.
    It seems we have not enough authorizations on RFC user used between middleware system and back-end system located on the RFC destination MAM on the middleware.
    And we don't find any SAP document related to this customizing.
    Moreover is there any other or same document deals with authorizations needed on the back-end for each user using MAM on its mobile device ?
    Thank in advance,
    Eric GOURDOU

    Hello,
    Can you send me the errors you have?
    If you have a trusted connection, then each users need the authorization S_RFCACL .
    Other than that, I never had to set any authorization for the plant maintenance scenarios of MAM.
    Thank you,
    Julien.
    msc mobile Canada
    http://www.msc-mobile.com

  • S_DEVELOP authorization needed for CRM Web Client in SAP CRM 7.0?

    We implemented an own WebUI component in SAP CRM 2007 and use it in others components (with USAGE).
    After we transport the component in SAP CRM 7.0 we always got an error CX_BSP_DLC_CONFIG_GENERAL_ERR at loading the component. But if we set the permission to SAP_ALL all thing work fine.
    In SAP Note Nr. 1367944 we read:
    "It is not possible to run the CRM Web Client without the S_DEVELOP, activity=03
    authorization because it is needed by the Web Client Framework.
    The S_DEVELOP authorizatin is part of the SAP_CRM_UIU_FRAMEWORK PFCG role, which must
    be assigned to every user."
    "This dependency has been removed in CRM 7.0."
    Do we need to install some other SAP Notes at SAP CRM 7.0?
    Many thanks for advices!
    Handri Gunawan

    Hi Handri,
    I asked my collegue here, who created the note.
    The note is correct, in CRM 7.0 you do not need S_DEVELOP anymomre.
    The error that you have might occur because of another reason.
    Could you track the call stack of this exception?
    And send me back the call stack?
    Regards,
    Steve

  • Authorization restriction for executing the ABAP queries

    Hi
    In ABAP queiries how the restriction can be done for where users should not execute /authorized
    of other plant or company code - Projects/ WBS/NWA and its related components. I tried the following methods but not working - seems something is missing .
    method 1) restricting based on the profit center ( free coding )
    AUTHORITY-CHECK OBJECT 'C_PRPS_PRC'
             ID 'PRCTR' FIELD PROJ-PRCTR
             ID 'PS_ACTVT' FIELD '02'.
    (or)
    method 2 -(free coding)
    *---Authorization for Company code entered by the users.
    *---This code will restrict users to see data for company
    *---codes which they are not authorized to.
    *---Select all the company codes based upon selection entered by the
    *---user
    SELECT bukrs
       FROM t001
       INTO TABLE li_bukrs
      WHERE bukrs IN z_bukrs.
    IF sy-subrc EQ 0.
    *---Clear Screen variable for Company code
       CLEAR z_bukrs.
       REFRESH z_bukrs.
    *---Filter and prepare Select options for Company code table to be
    *---passed to query. Table will only have values of company codes he is
    *---authorized to for display.
       LOOP AT li_bukrs INTO lwa_bukrs.
         AUTHORITY-CHECK OBJECT 'F_BKPF_BUK'
                           ID 'BUKRS' FIELD lwa_bukrs
                           ID 'ACTVT' FIELD '03'.
         IF sy-subrc = 0.
           z_bukrs-sign = 'I'.
           z_bukrs-option = 'EQ'.
           z_bukrs-low = lwa_bukrs.
           z_bukrs-high = space.
           APPEND z_bukrs.
         ELSE.
           lv_flag = 'X'.
         ENDIF.
       ENDLOOP.
    *---Give warning message to the user in case he is not authorized to see
    *---data for all the company codes that he has entered.
       IF lv_flag = 'X'.
         MESSAGE ID 'ZF_MSS_FNG' TYPE 'W' NUMBER '015'.
       ENDIF.
    ENDIF.
    Just make sure that Z_BUKRS field is available in selection tab.
    Also, declare below mentioned variables in INITIALIZATION.
    DATA: li_bukrs TYPE TABLE OF bukrs,
           lwa_bukrs TYPE bukrs,
           lv_flag TYPE c.
    Kindly help if there is missing anything on the above or is there any other alternative.
    Regards
    PP

    Hi,
    Kindly help if there is missing anything on the above or is there any other alternative.
    Carlos is right about the Authorization check.
    If you further wants to explore something extra, just visit these links:
    1. http://help.sap.com/saphelp_NW70EHP1core/helpdata/en/52/671449439b11d1896f0000e8322d00/frameset.htm
    2. http://help.sap.com/saphelp_wp/helpdata/en/52/67129f439b11d1896f0000e8322d00/content.htm
    3. http://help.sap.com/crmcg_en/5c/deaa74d3d411d3970a0000e82de14a/content.htm
    4. http://www.sap-img.com/bc042.htm
    May this information helps you.
    Regards.
    Deepak Sharma.

  • Authorization needed for SAP BP Business Warehousing - V3.70

    Hello,
    I want to install SAP BP Business Warehousing - V3.70 on an ECC system and a BI system. Does anybody know what authorizations I need to accomplish the installation?
    Thanks in advance!!
    Kind regards, Ton

    Hi all,
        Iam really waiting for someone to see and  get the logic right  for this code.Iam completely stuck up.  i need ur help
    Thanks

  • Drivers needed for executable

        I've got a VI created in LV 8.0 that uses DAQmx
    & IMAQ drivers which I would like to convert to an exe & use on
    a destination system.
    My understanding is that the minimum set of things I would need to install on the destination is :
    DAQmx & IMAQ drivers
    LV Run Time Engine 8.0
    I use some VIs from the IMAQ Vision 7.1.1 software - does this have to be installed as well ?
    Are there any options I should watch out for when going thru the executable creation process ?
    Much thanks,
    ak

    Hi,
    It sounds like you are on the right track.  You will need to include DAQmx, IMAQ, and the
    LabVIEW run-time engine.  If you are
    using Vision VI’s you will also need to include the Vision runtime engine.  I is recommended to use Vision 8 if you are
    using LabVIEW 8.  If you are using Vision
    8 you can download the installer here.
    But if you want to use the Vision 7.1.1 runtime then you
    will need to call in and talk to one of our sales representatives. 
    Also if you are using IMAQdx, or IEEE 1394 then you will
    have to purchase those for the target computer as well. 
    If you want to make a stand alone installer, then you need
    to include all of those drivers as additional installers.  To have vision as an additional installer
    follow the steps included in this KB
    Here is how to do it if you are using LabVIEW 7.1.
    http://digital.ni.com/public.nsf/websearch/1A9A18AA574ABEDF86256F780062C240?OpenDocument
    Let me know if you have any other questions.
    Regards,
    GG

  • Need a Syatem variable for Executing the report by RFC.

    Hi Experts,
    Need a Syatem variable for Executing the report by RFC.
    what i mean to say is,i can execure the report directly ...then no issues.
    But if i execute the Report by RFC ,then i should put a condition with system variable...
    Please suggest me ,how can put a condition when i am executing the report through RFC.
    Thanks
    Babu

    Hello Friend,
    what I understood that you want to put some extra condition if that report is getting called from RFC...
    you can use the system variable SY-CPROG....it will hold the value of the report when it is geeting executing directly...
    but when it is getting executed therough RFC...it will hold that RFC name...
    Thanks
    Krish

  • Need your help !!! -- Authorization error for Real-Time Bex query

    Dear experts:
    I have a Bex query built on a multiprovider, this multiprovider is consist of one standard cube and one real-time cube(virtual provider). When I run this query, I can retrive the data and no error occured, but when others execute this query, they will get the error message below:
    Operation Generate a Request could not be carried out for DTP DTP_D7JVT8DGBQWPWL13VIUITNODG
    You do not have authorization for the data transfer process
    Errors occurred during parallel processing of query 2, RC: 3
    Error while reading data; navigation is possible
    Row: 54 Inc: WRITE_MESSAGES Prog: CL_RSDR_AT_QUERY
    I used tcode rsecadmin to track the authorization, when I execute as user XXX, I can get the same error above, but when I go to "Display Log", no error showed there.
    Did anybody meet the same error before? How to resolve that?
    Any post would be appreciated and thank you all in advance!
    Tim

    I think there is some missing authorization,here
    the user has no access to execute the DTP.
    You can analyse it in rsecadmin or also see
    which object you are getting in su53.
    Thanks,
    Saveen

  • I need help getting new authorization codes for digital copies

    I need help getting new authorization codes for digital copies of movies. Can someone help me out?

    There's a lot of results in Google when you search for this but unfortunately refreshing the page doesn't seem to generate a different code anymore. Mine also says already redeemed

  • What User authorization objects needed for connecting to SAP from xMII?

    We eneter a SAP user and password for connecting to SAP from xMII to retrieve the metadata of the incoming IDocs.
    When I specify a user with SAP_ALL user profiles, the IDocs are received properly in xMII. If I specify a user with privileges to run only certain transactions, IDocs are not received in xMII.
    What user authorization objects are needed for this user to connect to SAP from xMII?
    Thanks,
    Sara

    Sam,
    I turned on the SAP System trace for this user and figured out the following auth. objects are required for receiving IDocs in xMII:
    C_TCLA_BKA
    S_RFC
    S_CTS_ADMI
    B_ALE_MAST
    S_IDOCDEFT
    The following auth. object is required for making JCO call to SAP from xMII:
    C_AFRU_AWK
    Thanks,
    Sara

  • Need grant execute on dbms_rls for VPD

    Hi,
    I need grant execute on dbms_rls to setup "Virtual Private Database".
    How do I go about getting it?
    Thank you, Bill
    [email protected]

    Hi Scott and All,
    I got the DBA to grant execute to the workspace userid BHRS and run the 2 policies I have for the VPD as BHRS.
         begin
         dbms_rls.add_policy (
         object_schema => 'BHRS',
         object_name => 'MR_REQUEST',
         policy_name => 'USER_SU_POLICY',
         function_schema => 'BHRS',
         policy_function => 'GET_SU_USER_ID',
         statement_types => 'SELECT, UPDATE',
         update_check => TRUE
         end;
    But, when I went to select * from MR_REQUEST
    I got ORA-28112: failed to execute policy function
    So I reduced my function down to returning null
         create or replace function GET_SU_USER_ID
         return varchar2
         as
         l_retstr varchar2(2000);
         l_count integer:=0;
         begin
         l_retstr := null;
         return l_retstr;
         end;
    Researched a bit and found could look in the USER_DUMP file but the DBA here says the DB doesn't have one because we use the XDB ???
    How can I check the policy errors or debug this problem?
    Thanks Bill

  • Urgent need for help

    Hi folks,
    I really need help to solve an urgent issue.
    The context
    We are about to deliver an e-learning course made essentially
    with captivate lessons.
    The content is accessed through an html Main Menu which in
    turn is nested in a frameset.
    The reason for that is that in the second half of the
    frameset resides the SCO script since the content will be
    ultimately accessed from an LMS.
    The problem
    To exit the captivate content at the end of a lesson and go
    back to the main menu, we insert a button in the last slide where
    we indicate the main menu dynamic file location in case of success.
    All links are working fine during execution except when the
    main menu is called from the frameset.
    It looks like if captivate simulations don’t know what
    to do when they are launched from a frameset.
    I tried to go around it using JavaScript in the button, but
    that also won’t work.
    Any help would be greatly appreciated.
    Thanks in advance
    Mike

    I'm unclear on the issue.
    This is an HTML page your group has made? The Main Menu is
    nested in a
    frameset? Or, as I would think makes more sense, the Main
    Menu us *part*
    of the frameset, with the other frame being what loads the
    Captivate
    content?
    So you want to bundle a bunch of Captivate SWFs into one HTML
    frameset...
    And when you load the Captivate file, since the Captivate's
    HTML file -
    that contains the code to communicate with the LMS API - is
    in a
    frameset, it can't find the LMS?
    Or is it a different issue?
    Why would you call the Main Menu from the Captivate file?
    Erik
    MichelGervais wrote:
    > Hi folks,
    >
    > I really need help to solve an urgent issue.
    >
    >
    > The context
    >
    >
    > We are about to deliver an e-learning course made
    essentially with captivate
    > lessons.
    >
    > The content is accessed through an html Main Menu which
    in turn is nested in a
    > frameset.
    >
    > The reason for that is that in the second half of the
    frameset resides the SCO
    > script since the content will be ultimately accessed
    from an LMS.
    >
    > The problem
    >
    > To exit the captivate content at the end of a lesson and
    go back to the main
    > menu, we insert a button in the last slide where we
    indicate the main menu
    > dynamic file location in case of success.
    >
    > All links are working fine during execution except when
    the main menu is
    > called from the frameset.
    >
    > It looks like if captivate simulations don?t know what
    to do when they are
    > launched from a frameset.
    >
    > I tried to go around it using JavaScript in the button,
    but that also won?t
    > work.
    >
    > Any help would be greatly appreciated.
    >
    > Thanks in advance
    >
    > Mike
    >
    >
    >
    >
    Erik Lord
    http://www.capemedia.net
    Adobe Community Expert - Authorware
    http://www.adobe.com/communities/experts/
    http://www.awaretips.net -
    samples, tips, products, faqs, and links!
    *Search the A'ware newsgroup archives*
    http://groups.google.com/group/macromedia.authorware

  • Need Authorization Object for SE11

    Dear All,
                   I have created role in PFCG and created user in su01.
                   I need authorization object for se11 and sm30.
    With Regards,
    Baskaran

    Hi,
    For the Authorization Object for any Tcode goto SE93 Enter the Tcode and press display
    S_DEVELOP
    Cheers
    Ram

Maybe you are looking for

  • Front End Upgrade to 7.0

    Hi ,        Can some one give quick steps to take care in front end part of BI , before the upgrade and after the upgrade ?? Thanks ,

  • Change the play order of songs?

    how do i change the play order of songs on my iphone? when i upgrade my iphone on itunes , that puts the last purchase to last on the list and i would listen first. the playlist in inverted. why?

  • Exchange Server 2010 third party certification installation

    Hi, Is there any step by step instructions on how to install a third party certificate on the first exchange node in DAG and then how to export the third party certificate to second exchange node ? In addition I have two VM's which are running TMG (T

  • Access Control

    How to resolve the following error message: "access denied by Page security check" "No privilege for attempted action."

  • Does the new AppleTV require iTunes to be running all the time?

    The old AppleTV required iTunes to be running if you wanted to stream anything. Does this still apply to the new one?