Need authorization object for relaese of Invoice to accounting

Dear Folks,
Could you please let me know the authorization object which is available in standard SAP which restricts users from release of invoice to accounting and should have authorization to change the invoice....Pls don't forward  generic reply's...tried with available authorization objects using tcode SU24...for tcode VF02.
Regards,
Kishore

Hi,
See the program :   MV60AF0V_VBRK_BEARBEITEN
Freigabe für Buchhaltung ( Accounting for release)
ENHANCEMENT 65  OIC_SDP_SAPMV60A.    "active version
*Coding for Invoice Approval Process.             "SDP-BILLING
    IF TVFK-OIINVAPP EQ CHARX.
      PERFORM RELE_AUTH_CHECK.
    ENDIF.
ENDENHANCEMENT.
Here incorporate your Z authorisation object or you can use any of the standard one.
So that it will check the authorisation object before posting the same.
Hope this will resolve your problem.
regards,

Similar Messages

  • 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

  • Authorization object for plant on selection-screen

    Hi All,
    I need to cehck the authorization object for plant on sleection screen..the palnt is select-options.
    I have written the code
    Declaration of local constants.
      CONSTANTS : lc_i(1)  TYPE c VALUE 'I',
                  lc_eq(2) TYPE c VALUE 'EQ'.
      REFRESH : r_werks.
      LOOP AT s_werks.
        IF s_werks-low IS NOT INITIAL.
          AUTHORITY-CHECK OBJECT 'M_MATE_WRK'                "Check if the user has autorization for the plant.
                               ID 'ACTVT' FIELD '03'
                               ID 'WERKS' FIELD s_werks-low.
          IF sy-subrc NE 0.
            r_werks-sign   = lc_i.
            r_werks-option = lc_eq.
            r_werks-low    = s_werks-low.
            APPEND r_werks.
          ENDIF.
        ENDIF.
      ENDLOOP.
      LOOP AT s_werks.
        IF s_werks-high IS NOT INITIAL.
          AUTHORITY-CHECK OBJECT 'M_MATE_WRK'                "Check if the user has autorization for the plant.
                               ID 'ACTVT' FIELD '03'
                               ID 'WERKS' FIELD s_werks-high.
          IF sy-subrc NE 0.
            r_werks-sign   = lc_i.
            r_werks-option = lc_eq.
            r_werks-low    = s_werks-high.
            APPEND r_werks.
          ENDIF.
        ENDIF.
      ENDLOOP.
    My doubt is will the authorization will check the plants in between 1001 and 2001..suppose i have pplants 1001,1002,1003,1004,2001..Now will the above code will check for all the plants or only 1001 and 2001 if i specify in the select-options.
    Regards,
    raj

    Hi Raj
    First no need to LOOP AT s_werks and check s_werks-high as it will always be present only once in the table s_werks.
    Do this
    SELECT werks FROM t001w INTO li_werks
    WHERE werks IN s_werks.
    LOOP AT li_werks.
    *check your authority thing here and fill the range
    ENDLOOP.
    Pushpraj

  • Authorization object  for PLANNING PLANT

    Hi all,
    My client has different Planning plant & Production plant.
    If I need to give access to GR for order (MB31), how do I know the authorization object for the Planning plant.
    User should be given access to MB31 to the Planning plant & NOT to the Production plannt.
    Any idea where we could find the authoriz. objects for a particular field?
    Pls advise.

    Goods Receipt for Production Order: Movement Type            M_MSEG_BWF
    Goods Receipt for Production Order: Plant                    M_MSEG_WWF
    these are the authorisation objects with activities as  ACTVT and WERKS
    Maintaine the values for ACTVT  as
    01 Create or generate,
    02  Change
    03 Display
    04 Print, edit messages
    and maintaine the values WERKS   (ur plants 4 which u want to give authorisations)
    and BWAR ( movement types 4 which u want to give authorisations)

  • Authorization object for delivery block

    Hi ,
    How do I check the authorization object for any field? I specifically need one for delivery block.
    Please help.
    Thanks,
    Shailaja

    Hi,
    If your looking to put a delivery level block or its removal then i guess you explore it through userexit mv45afzz
    Regards,
    Saurabh

  • Maintain assignments of authorization objects for Z Webdynpros in SU24

    Hello experts,
    When we display the assignments of authorization objects for External Services -   Webdynpros in transaction SU24,  Z_webdynpros are not shown in the screen.
    We need to add more webdynpros in that table.
    I suposse that there must exist a way for updating that table with the Z webdynpros developed or some configuration is needed.
    Thanks in advance...
    Hector Longarte

    The Zwebdynpros I am talking about are Java Webdynpros in the SAP Portals, and the SAP ERP is onlyan ABAP stack.
    Is this configuration posible??

  • Custom Authorization Object for HR

    Hi,
    As per our Company's internal needs I have created a Custom Authorization Object for HR named ZP_ORGIN (it has Personnel Subarea field BTRTL besides what's there in Auth. Object P_ORGIN) and made it Check/Maintain for transaction PA30 in SU24.
    I can see the entries in the USOBT_C & USOBX_C tables for this object, I am also able to add this object in the roles as well.
    Everything looks fine, but when I execute the transaction & do a trace on it, the object ZP_ORGIN is never checked (for a user having this object in his/her User Master). Only P_ORGIN object is checked instead.
    I believe I'll have to write some ABAP code e.g. AUTHORITY-CHECK OBJECT 'ZP_ORGIN' etc. Can anybody tell  which User Exit or Field Exit I'll have to put the AUTHORITY-CHECK code in, so that my new custom authorization object is alwayz checked.
    Your help will be appreciated.
    Thanks,
    Mandeep Virk

    Hi,
    I have created a Custom Authorization Object for HR named Z_ORIGIN (it has Personnel Subarea field BTRTL besides what's there in Auth. Object P_ORIGIN) and made it Check/Maintain for transaction PA30 in SU24.
    I can see the entries in the USOBT_C & USOBX_C tables for this object, I am also able to add this object in the roles as well.
    Everything looks fine, but when I execute the transaction  the object Z_ORIGIN is never checked (for a user having this object in his/her User Master). Only P_ORIGIN object is checked instead.
    We've ran the report RPUACG00 also which is mentioned in this thread.
    We also coded the authority check code in the both user exit ZXPADU01 and ZXPADU02 for PA infotype operations
    I believe I'll have to write some ABAP code e.g. AUTHORITY-CHECK OBJECT 'ZP_ORGIN' etc. Can anybody tell which User Exit or Field Exit I'll have to put the AUTHORITY-CHECK code in, so that my new custom authorization object is alwayz checked
    but still it is taking the P_ORGIN object.

  • Authorization object for field, EBAN-ESTKZ (creation indicator)

    Dear All,
    Does anyone know if there is an authorization object for field, EBAN-ESTKZ?
    I need to control the PR's authorization at creation indicator level. i.e. we need to remove the ability for all users to change Purchase Requisitions created by MRP.
    Thanks,
    Arun.

    Hi Jay,
    Thanks for your response.
    I didnt find it there. You have any Z options?
    Thanks,
    Arun.

  • Authorization object for vL02N

    Hi,
    I need the Authorization object for the VL02N.
    My requirement is i need to give authorization for doing PGI in VL02N screen,but the user can only generate the VL02N(no change or modification). How can i control this?
    pls advice

    Hi,
    The authorisation object is:V_LIKP_VST
    First Goto T.Code:SUIM
    Check the role used for this T.Code:VL02N.I identified the role as "SAP_LE_GOODS_ISSUE_DELIVERY".
    Next goto T.Code:PFCG.
    Enter this role here.Click on Display.
    Goto Authorisations tab.
    Click on Display Authorisation data.
    Goto Utilities-->Technical names on(if it is available else leave it).
    Regrads,
    Krishna.

  • Authorization object for item level

    Hi,
    Is there an authorization object for item categories for business transactions.
    Actually our need is that partners at item level should edit the documents. Authorization objects CRM_ORD_OP and CRM_ORD_PR are not success this need.
    Regards.

    Thanks!
    I added with full authorization and still do not get any roles displayed. 
    Any other ideas?

  • Authorization object for sales tax code (MWSKZ) in FB60

    HI, there is a FI tcode FB60 in FI module. The requirement is that user wants to restrict some users to enter only few sales tax codes from among the list. For example if there are 30 tax codes, then user should be authorised to enter only 5 tax codes from the list. In standard authorization, there doesn't exist an authorization object to restrict tax codes. Kindly tell me the process of making authorization object for this task.
    I have made one authorization object. I think i need to call this object somewhere in user exit of FB60. Is this the way of doing this?? Kindly if someone have done this, mention down the procedure of making authorization object and how to implement it. Thanks

    Hi,
    Instead of creating a authorization obejct and assigning it to the tax code, it will be easy to write the code in a user exit to check whether the tax code is applicable for the user. Suppose if the user enters a non-applicable tax code, you can throw an error.
    Do u want to restrict the number of entries in F4 help for tax code for a particular user?
    Cheers
    ~Niranjan

  • Authorization object for Internal order

    Hi experts,
    My requirement is while creating the PO using the internal order as reference  i need to check the internal order is valid for that user or not.
    Is there is any standard authorization object  for internal order is available using which i can validate the internal order by assigning this authorization object in the user role.

    Hello,
    When you try to create internal order and once you get the error.
    Open another session with /OSU53
    This gives you the details of authorization objects or transaction codes you are lacking.
    Provide this to security administrator of your team.
    Hope your problem will be solved.
    Regards,
    Ravi

  • Authorization object for the "global settings" of a workbook of BW 7.0

    Hi colleagues,
    I search for a authorization object for the "global settings" of a workbook in the analyzer of BW 7.0.
    The normal user should not have the authorization to change the "default workbook" .

    Hello Hans-Dieter,
    have you solved the issue? I think it is not clearly defined and needs to be enhanced even Note 332738 has been applied. S_RS_TOOLS is not working, that's my opinion.
    I opened a customer message in Marketplace to become a solution.
    May be you have a solution already done?
    I would appreciate this very much.
    Best regards
    André
    Edited by: Andre Brachert on Apr 14, 2009 1:42 PM

  • Need Authentication Objects For SALES ORDERS

    Hi All,
    Can anyone provide me list of Authentication Objects For SALES ORDERS.
    I opened the SU03----SD class there are nearly 19 objects.
    i need to knwo what are the related Authorization Objects for SalesOrders.
    Regds
    Raj

    Role can be created with the authorizations to the transactions like VA01/02/03 and authorized users can be assigned to these roles, this way you can control the authorizations to standard transactions,
    Hope this helps,
    Vasanth

  • How do i find authorization object for a transaction code?

    Hi SD Guru's
    I need to find the authorization object for both standard & Z transactions.
    How can i find this?
    Regards
    Ravi

    Hi,
    check the coding with SE38 for "authority-check" and you will get the objects or set a breakpoint on statement "authority-check" while you execute the transaction.
    Regards,
    Andreas

Maybe you are looking for

  • How to block a number from a "stalker"?

    how can i block a an incoming number ? sick and tired of receiving calls from one particular person ... starting to feel like a stalker

  • How to check released request transported to Production sys or not

    hi, Iam not a Basis guy, so waiting for your replies. I have around 200 released requests in my dev system and i want to check wether these requests have reached my production system or not as a mass. I can able to check on one by one but how to do i

  • Critic error 1603

    Hi all I tried to install the latest version of Skype today. During installation process, it always pops up a message "Could not open key HKEY_LOCAL_MACHINE32\Software\Microsoft\Internet Explorer\Main\Feature Control\FEATURE_MAXCONNECTIONSPERSERVER.

  • My battery is draining really fast. What can I do?

    Lately my battery on my iPod will drain faster than it should because i won't use it very long and more of my battery will deplete than it use to and should? What could this be caused by and what can I do. I havent had it too long either.

  • Ascential Datastage error

    Hi All, I am getting the error while loading data from Ascential. There is red color error request in PSA and yellow color string in ‘Request update ‘ column. The error message in Details Tab Is : Error in Data Request When I click on the messages it