Authorization roles for release strategy FRGSX

Hi guys,
we are using R/3 4.7. We are going to implement release strategy for Purchase orders in our company .
We have customized different release groups, for several release strategies and release codes, without implementing any workflow.
We have a problem on authorization roles because we assigned for each combination of release group and release code a authorization role but it is not sufficient to restrict the role for users because we don't take into consideration the release strategy.
We had a look on the system but we didn't find any object related to release strategy (techical name FRGSX).
Could you someone help me?
Thanks in advance
Vir

When assigning user authorization for PO release strategy each user is assigned to release group and release code. You cannot make a connection between specific release strategy to user.
Pay attention that the authorization needed are also for change PO (ME22N) - meaning you can limit the users by all the authorization values of the ME22N objects.
Use t.code SU24 to explore what auth. are checked in each transaction.
Nir

Similar Messages

  • Authorization roles for Release Codes

    Hi,
    We have a requirement wherein the release codes for the PO release strategy are about 100. The roles are repeating itself i.e. Buyer, Manager, Director etc for different countries and other attributes. Is there any way by which we can reduce the authorisation roles.
    Regards,
    Mohit Sehgal

    If you have implemented the Work flow than you don't need the repeated code for manager or buyer etc.
    you can just define the oce code for each position and use them in release strategy and based onthe workflow with combination of HR org structure you can send them to appopriate manager
    e.g. you have 10 manager and each manage has 10 buyer
    so you create one manager relese code e.g. MG and one Buyer code BY
    now you have create many release strategy where you enter the MG code and BY code but you want send the PO for approval based ont he buyer
    so you have to set up the HR ord sturcture in the tcode PPOCE and create teh tree for the buyer code and manager relation ship
    now when you create the release strategy you will enter the purchase group in the release strategy which is assigned to the buyer code and based on the HR org structue it will find the appropriate manager whitout defining many manager code and buyer code.
    or if you don't have the workflwo than you have to create diff buyer code and manager code.

  • Workflow for release strategy

    Dear All,
    PLz let us know the step by step procedure for worflow for release strategy.
    Regards,
    Arati.

    Hello Arati,
    Please see that you have maintained the release strategy and the same is getting affected in the PO.
    In PO -> Header Data -> Release Strategy (Last Tab) please check the Release Strategy and Release Grp.
    Now go to T - Code /nPFAC .. and enter the ID as 90100005 (PO Approver) and click on display.
    After this on the new screen there are different tabs.. in that click on last (fourth) tab: Responsibilities.
    There you will find responsibilities IDs assigned to each release strategy and Release grp.. of you cant see the same please adjust the layout.
    once you get the responsisbilities ID there for the referenced Release Strategy and Release Grp then go to T - Code /nPP01.
    There you need to do the maping. in the first field it please enter Responsibility and second tab you can put the same responsibility ID whihc u obtained from /nPFAC.
    Then select on applications and then click on new.. n there you can assign the user as a approver. Please check that proper authorization si also given to a user who is mapped for the release strategy...
    Let me know if any confusion ...
    Thanks And Regards,
    Krupesh Kothari.

  • BAPI for release strategy

    Hi Guys
    I need know one bapi for release strategy.
    Anybody can help me?
    Thanks Comunitty.

    Hi Ronaldo,
    Could you be more specific? Do you need to Release a PR, or you need to read/check the strategy or what?
    If you need to release a PR, check this ones (and others in FuGr MEWF):
    BAPI_REQUISITION_RELEASE       Release Purchase Requisition Item by Item
    BAPI_REQUISITION_RELEASE_GEN   Release Entire Purchase Requisition
    Cheers,
    Custodio

  • How to create authorization role for just displaying query prefix Q and X.

    Hi Expert,
    I hope someone can help me on how to create authorization role for just displaying and executing  BEX  Queries prefix Q and X. I'm currently using SAP BI 7.1.
    Actually, I already created one role called : Z_FORINDO_ONLYDISPLAY_QX
    where I only put in the Authorization Component (in the Role Maintenance - Tcode 'pfcg'):
    -->Manually Business Information Warehouse
        --> Manually Business Explorer - Components
    Activity : Display, Execute, Enter, Include, Assign
    InfoArea : *
    InfoCube : *
    Name(ID) of a reporting component : *
    Type of a reporting component : Calculated key figure, Restricted key figure, Template structure
        --> Manually Business Explorer - Components
    Activity : Display, Execute
    InfoArea : *
    InfoCube : *
    Name(ID) of a reporting component : Q* , X*
    Type of a reporting component : Query
    But, the problem is I still can make changes on that queries (Q* and X*). Even, I still can run query with prefix Z. I use S_RS_RREPU Tamplete for Query Display and execution.
    Please assist. Very much appreciate your help. Thanks.
    Edited by: nadiyah salleh on Mar 18, 2008 11:22 AM

    Question close. This issue has been resolved.

  • EXIT_SAPLEBND_002 -- user exit for release strategy

    Hi,
    This is regarding help on user exit for release strategy, ref: note no. 365604, however after going through all the config part given in the given note we activate the fm in cmod.... but after activating the release tab goes off from  me29n.
    That is after you activate in cmod and then if u create po and go to me29n the relese tab is not there.
    if u deactivate and create po and then relese the release tab in me29 would appear.
    All we are trying is that the po in me29n should be open to release again if we change the delivery date. However what coding and how is still a second step , first is as soon as the exit is active the tab goes off.
    New to user exit . plz help.

    Hi Again,
    I guess I have solved the issue temporarily, however Am not sure if this is the best which cld be doen to the issue.
    I didnt make any new characteristics in ct04, for the delivery dats since i didn't want to restrict the delivery date. All I did i yje coding below in the exit :
      DATA wa_eket TYPE LINE OF mmpur_beket.
      DATA wa_eket1 TYPE LINE OF mmpur_beket.
      data: c type i.
       data: p type i.
      break1.
      break2.
      e_cekko   = i_cekko.
    loop at it_beket into wa_eket . " for comparing previous and the current del date
      e_cekko-usrc1 = wa_eket-eindt.
      SELECT SINGLE * FROM eket INTO wa_eket1 WHERE ebeln = wa_eket-ebeln
      AND ebelp = wa_eket-ebelp.
      if wa_eket1-eindt <> wa_eket-eindt.
      import c from memory id 'CID'.
      c = c + 1.
      clear p.
      p = c mod 2.
      if p is not initial.             " adding 0.01 to the characteristic value for p.o amt.
      e_cekko-GNETW = e_cekko-GNETW + '0.01'.
      else.
      e_cekko-GNETW = e_cekko-GNETW - '0.01'.
      export c to memory id 'CID'.
      endif.
      endif.
      endloop.
    The logic I tried using is since the relese gets reset incase of p.o amnt and hence indirectly po amnt so i changed the value of p.o value by 0.01 incase of change in delivery date. cekok-gnetw doesnt reflect anywhere in the p.o as amnt, I guess its for defing range for relese stragey's amont in ct04 characteristics.
    However anything better incase u know plz let me know, or do u think this can cause any problems later....new to exits.
    Rgds,
    Anu.

  • Work flow for release strategy for PO & PR

    Hi Gurus
    Can anybody explain workflow for release strategy for PO and PR
    Thanks in advance.
    Atul Kulkarni

    Hi,
    First you set your all required configuration fro release strategy(Class,Char,Rel.Group,Release Strategy ,Release Indicator )
    For Work flow settings,You have to do follwoing configuration:
    MM - purchasing - purchase order - release procedure - Define Release Procedure for Purchase Orders - Work flow - Enter release code, group, user ID, object type as user.
    Creation of work flow object,activation of workflow and other related settings will be done by Techinical  work flow consulant.
    Thanks,
    AMIT

  • USRC1, USRC2 in CEKKO table for Release Strategy.

    Hi all,
    Can anybody shed some light on how i can make use of USRC1 and USRC2 in CEKKO table for Release Strategy?
    I see it in the table but i have no idea on how to use them.
    Thanks all.

    Hi,
    SAP has given user defined fileds in CEKKO communication structure which you can use by using user exits to fill in CEKKO.
    These fileds you can use as characteristics for release strategy.
    Details of user exit:
    M06E0004  Changes to communication structure for release purch. doc.
    EXIT_SAPLEBND_002, Changes to Communication Structure for Release of Purchasing Documents
    Description: User exit that control the values in CEKKO for the Release Strategy.        
    Regards,
    Shailesh Mackwan

  • Required Authorization Role for E-commerce manager

    Hi ,
    Could you please tell me required Authorization Role for E-commerce manager and catalog administartor?
    Thanks.
    Regards,
    PV

    SAP_CRM_ECO_ISA_WU_B2B_FULL           CRM-ECO: ISA Internet User (Full Document Authorization)             ISA_B2B_FULL
    SAP_CRM_ISA_UA_SUPERUSER              Internet Sales User Administration Authorizations                              Superuser
    *SAP_CRM_ISA_WEBSHOP_MANAGER     *    Authorizations for the Internet Sales Web shop Manager         Webshop Manager
    SAP_CRM_ECO_ISA_WU_B2C                  Internet User for B2C

  • Workflow for release strategy of Po's

    Dear Experts,
    We want to have Workflow for release strategy of Po's please let me know what settings are to be done from MM side. & form Abap what developments are required.

    Hi
    Pl check the below link
    http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/bpx-community/enterprise-resource-planning/sap%20mm%3a%20purchase%20requisition%20with%20classification%20and%20workflow%20approval.pdf
    SAS

  • Workflow for release strategy in PO

    Dear All,
    Will anybody tell me how to configure the workflow for release strategy for PO.
    Regards
    R Panda

    Dear Manish,
    I have done all the configuration as per your guidance.
    But I am not getting the mail in mail box. I have done the following config
    Gr                 Cd                WF                            Descrip
    02     I6     1     HOD Logistics-JSR
    02     I7     1     GM Logistics-JSR
    Gr                 Cd                         Descrip                      OT                  Agent it
    02     I6     HOD Logistics-JSR     US     RP
    02     I7     GM Logistics-JSR     US     DD
    OOCU---
    MM-PUR
    1) Activate event linking- WS 20000075---BUS2012-RELEASESTEPCREATED-ACTIVATED (I ticked both the check boxes)
                                                   Linkage status-no errors      error feedback---system defaults
    2) Assign agents----WS 20000075Create agent assignments-I assigned above two user ids against user......
                                            In attributes it was no general task & not classified.
    In trxn code SWETYPV both the check boxes are ticked with no error.
    Please reply.
    Regards
    R Panda

  • Customizing steps of workflow for Release strategy

    Hi Experts,
    Iam looking for step by step customizing details of workflow for Release Strategy for Purchase Requisition.
    I need necessary classification and Customizing settings for a release procedure in the purchase requisition to the workflow.
    I am looking for the steps, in which the purchase requisition can be edited straight from the workflow inbox.
    Regards
    Nani

    Hi Nani,
                First you have to confirm what kind of release it is in Purchase req you have Item level release and over all release.
    Item level release - WS00000038
    Over all Release - WS20000077
    Now please confirm with your MM consultant that he has done the release Strategy and tesed it Ok.
    Escecially things like assigning plant, Assigning Agents,Release codes and so on when everything is done by him in SPRO.
    Now your work starts If it is just release use the standard workflow.
    If they need additional notification mails and things like that copy the standard workflow and do the customization in the copied version and deactivate the standard workflow.
    You can also do dead line monitering (Factory Calander) and many more things.
    also please go through these 2 links you will get better idea.
    http://www.****************/Tutorials/Workflow/POReleaseStrategy/Details.htm
    http://www.****************/Tutorials/Workflow/PRRelease/PRRelease1.htm
    If you have any othere queries please feel to ask.
    Regards,
    Dheepak
    Edited by: dheepak on Dec 1, 2008 7:48 PM

  • User exit for workflow for release strategy

    HI,
    I got the user exit M06E0005  for workflow for release strategy. Is there any user exit during PO saving time, so that depending upon the PO no and the release code, the mail will go to respective person for the release of PO.
    Regards,

    Hi,
    Refer the below Link for PO workflow set up, for more information you can co-ordinate with your workflow team.
    http://help.sap.com/erp2005_ehp_05/helpdata/en/4c/16443c4a089537e10000000a114084/frameset.htm

  • Can we implement workflow for release strategy in 4.7

    can we implement workflow for release strategy in 4.7 for PO's please provide some documents.

    HI,
    Check the links
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/30c81e21-cd00-2c10-bbba-edb8ce4961be?quicklink=index&overridelayout=true
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/70fef212-b6cb-2c10-e085-c84b80d7068e?quicklink=index&overridelayout=true
    Regards
    KK
    Edited by: Kishore Kumar Galla on Mar 19, 2010 3:40 PM

  • Authorization Role for S_ALR_87099918

    Hi all,
    I am not sure if this is the right place to post this one (if it is not, please tell me which one is, i have tried to search the forum, but can't seem to find the place to post about this "security" problem)
    Currently having a trouble while creating the authorization role for transaction s_alr_87099918 (primary cost planning : depreciation / interest).
    I have already maintained the authorization objects:
    -  A_A_VIEW and
    - A_PERI_BUK
    Checked with Su53, but no missing authorization object or anything
    While executing the transaction, the system said "no records were found", when i execute it with another ID, there are results. I have checked the parameter input-ed, both are already the same.
    I am wondering if anyone has ever experienced this before? 
    What can be the possible cause and the solution?
    Thank you so much
    Regards, Erwin
    Edited by: Erwin Hartono on Dec 3, 2010 9:39 AM

    Sorry, my deepest apologies, i think i found the right place to post this

Maybe you are looking for

  • What's with the 12 hour Export progress bar?

    That's what it says, and that's after two hours of trying to encode a 20 minute clip using Export to QuickTime Conversion. It's 11% done. At this rate, it should be ready after midnight, EST. This can't be normal, or is it? I did increase the bit rat

  • Memory Leak with JVM.

    Hi, I am getting a jvm Memory Leak when i try to load and parse XMLs. The version of JDK is 1.4.1_05. Has anyone faced this problem? Any pointers to this will be very helpful. Thanks Rajdeep

  • Unhandled exeception has occurred in your application. On first time instal

    I am installing on a server 2003 for the first time. After loading it on the server, I begin to run Installer for my frist instance. After clicking finish on the 'Installation Tasks' screen, it runs until it gets to the 'Installing Webfiles'.  This i

  • Renaming packages

    Hello all We were recently asked to chnage our Java package names. That also means renaming the class files in the Mapping Workbench. Is there a clean way to refactor package names without completely redoing the mappings. I tried to rename all the pl

  • Trouble Upgrading to Adobe Air 3.3.0.3650 from 1.5.3.9130

    Hi, I have been unable to upgrade Adobe Air from 1.5.3.9130 to 3.3.0.3650 (the latest).  My OS is Windows XP.  I have pasted some errors from the msi installer log and the air log.  I am not sure what is happening.  Can anyone tell me what is going o