How to make changes in Authorization profile?

Dear Guru's
                In R/3 4.7 i used to change authorization profile in tcode SU02.where as in ecc 6.0 i dont find any change option it shows "Generated profile can only be displayed"
       I want to remove the particular tcode from that authorization profile.please help.
Regards
AKI

Aki
In new SAP versions, they have replaced direct profile generation with Roles concept and all the new profiles are attached to the roles. Follow this link and read it completely and understand the concept.
http://help.sap.com/saphelp_bw21c/helpdata/en/52/6714b6439b11d1896f0000e8322d00/content.htm
You cannot change a profile directly, instead you will have to insert authorization from the existing profile into a new role and generate a new profile for that role.
Goto PFCG, create some new Z role. Save it, then goto authorizations tab, in the profile text box enter the profile name you want to edit authorization of. Goto change authorization Data. make the required changes. Then in the menu on top left hand side you will see a red and white ball press that and generate profile. Now you have a new role with required authorization. You can attach the role to required users.
Rahul

Similar Messages

  • How do I change the authorization e-mail for a device?

    We're trying to download library books to my wife's new Color Nook.  We've downloaded the books to our computer via Adobe Digital Editions (ADE).  But, whenever we connect the Nook to our computer with a USB cable, ADE shows a prompt asking us to authorize the device using an old e-mail address, not the one my wife is using for her Nook.  Also, when I try to use the Library > Authorize Computer command, ADE says that we've authorized a device using the old e-mail address, not the one my wife is using.  How can I change the authorization e-mail address so that it recognizes her device???

    1.  I'm sure you must have tried signing in to Adobe and changing email address in your profile.  Don't know if they retrofit.
    2.   I can't account for what just happened.  Last night I took screen shots of all the various manifestations of my problem, including messages that the book both could and could NOT be copied.  For the umpteenth time I reopened the original booksale into ADE and tried to drag to Nook--got the usual red X's.   This morning the icon miraculously allowed itself to be dragged into the nook. Green all the way--nothing had been changed.  Elves in the night?  Then I opened Nook--no book! But there it was in Documents.  No, it wasn't there all this time.  I knew to look there because of other threads.  I also remember someone else had a problem that sorted itself out after leaving the Nook attached to computer for a long time. 
    So thanks for all the suggestions.  What I take away from all this is that the Nook works well with B&N but using ADE for EPUB books is clumsy and tedious. Or possibly it is just slow.   If I had wanted only books in English I could have gotten the Kindle, but with Nook I expected to gain access to Dutch books.  It had worked before, but this time, perhaps with this seller, I spent hours spread over 3 days to sort it out and I still don't know how to avoid this the next time. 

  • How to create and allocate authorization profiles?

    How to create and allocate authorization profiles? please issue step by step and usage of  TC:PFCG.

    Hi Srinivas,
    I would like to try to explain how to create an authorization profile.
    1. you have to create a user with the Tcode SU01 at first
    2. run Tcode /nPFCG.
    3. enter a name for the role (naming convention is here very important) which you want to create and then click on "create Role".
    4. enter a short description for the role and then click on Authorization tab.
    5. now you are required to save the role. Click on it and continue.
    6. click on the tab "change authorization data" and select the authorization template what you need.
    7.change the authorization field value.
    8.click on button "Generate".
    9.click on button Back
    10. click on Tab user to assign the role to the user which you created in step one
    11.click on button User comparison and then complete comparison
    Hope this helps

  • How do I change the authorization on my laptop

    I have a windows 7 laptop that was the first place we installed Adobe Digital Edition and we used one email address.  Now we do not have access to the email account any more and want to chagne the authorization account to our new email account.  We have created the new ID on the web and I am logged in using it to write this request for help.  I cannot find any way to change the authorization account on my laptop.  I have tried uninstalling, deleting the digital editions folder, rebooting, and re-installing but it stills shows the authorization account using the old email address.
    Ideas?

    I found the answer in another discussion
    5. Jul 3, 2008 4:32 PM (in response to (JGS))
    Re: How can I change computer authorization after two Adobe IDs have been merged together?  
    The clean way to deauthrorize your computer is to launch ADE, and then press Ctrl+Shift+D (Windows) or Cmd+Shift+D (Mac). After deauthorizing, you will be forced to reactivate/authorize when you next run ADE.  --
    Jim Lester
    Adobe Systems

  • How to make changes in another program?

    Hi evrybody,
    how  to make changes from one program  to another program ?
    Changes should be reflecting in other program.
    thanx in advance n wud be surely Rewarded if answer is helpful.

    Hi Bharat,
    Thanx for the info.
    But what my requirement is , I'm scanning & reading another report into an Internal table. I want to change the Hyphen's
    '-' used in variable declarations of another program into Underscore '_' .
    My sample code is like this..
    Report Zmain.
    PARAMETERS:
      p_prog LIKE sy-repid,
      p_key LIKE stokex-str.
    Internal Table t_itab                                                *
    DATA:
      BEGIN OF t_itab OCCURS 0,
        line(256) TYPE c,
      END OF t_itab.
    *" Data declarations...................................................
    DATA:
      t_statements LIKE sstmnt OCCURS 0 WITH HEADER LINE,
      t_levels LIKE slevel     OCCURS 0 WITH HEADER LINE,
      t_tokens TYPE stokesx    OCCURS 0 WITH HEADER LINE,
      t_keywords LIKE t_itab   OCCURS 0 WITH HEADER LINE,
      w_i TYPE i,
      w_j TYPE i.
                            START-OF-SELECTION                           *
    START-OF-SELECTION.
      APPEND p_key TO t_keywords.
      READ REPORT p_prog INTO t_itab.
      SCAN ABAP-SOURCE t_itab
      STATEMENTS INTO t_statements
      LEVELS INTO t_levels
      TOKENS INTO t_tokens
      KEYWORDS FROM t_keywords
      WITH INCLUDES
      WITH ANALYSIS
      WITH COMMENTS.
                            END-OF-SELECTION                             *
    END-OF-SELECTION.
      LOOP AT t_statements.
        READ TABLE t_levels INDEX t_statements-level.
        w_i = t_statements-from.
        w_j = t_statements-to.
       IF t_statements-level > 0.
        WHILE w_i < w_j.
          READ TABLE t_tokens INDEX w_i.
          REPLACE '-' WITH '_' INTO t_tokens-str.
          w_i = w_i + 1.
        ENDWHILE.
       ENDIF.
      ENDLOOP.
    My called program is like this....
    Report Zcalled.
    DATA:
      w-var1 TYPE c,
      w-var2 TYPE c.
    DATA:
      fs_flight1 TYPE sflight,
      t_flight1 LIKE STANDARD TABLE OF sflight.
    START-OF-SELECTION.
      INCLUDE zinclude3.
      SELECT * FROM sflight
        INTO TABLE t_flight1
        WHERE carrid = 'AA'.
      SELECT * FROM sflight
       INTO TABLE t_flight1
       WHERE carrid = 'LH'.
    END-OF-SELECTION.
      LOOP AT t_flight1 INTO fs_flight1.
        WRITE: / fs_flight1-carrid,
                 fs_flight1-connid,
                 fs_flight1-fldate,
                 fs_flight1-price.
      ENDLOOP.
    Thanx very much.

  • Can any body tell me how to make changes in the print layout of Fb03.

    hi,
    Can any body tell me how to make changes in the print layout of Fb03.
    I want to add comapny address on the layout.
    Regards
    Mave

    If you mean the correspondence, you have to change the configuration in Financial Accounting -> AR and AP -> Business Transactions -> Outgoing Invoices -> Carry Out abd Check Settings for Correspondence. There, you need to assign your custom Program or Layout for the Correspondence Type (like SAP19) and Program.
    If you mean the display layout in transaction FB03, You can change a few settings, mainly with BKPF and BSEG fields. I don't think you can add company address, though.
    Good luck,
    Bhanu

  • How to make changes in default toolbar

    hi
    i m using oracle forms 6 and i want to know either it is possible to change in the default toolbar or not if so plz let me know how to make changes in default toolbar and re-adjust according to my need.i know how to create new toolbar and connect with form but i don't know whether this is possible to re-arrenge and change the default toolbar attached with forms.
    thnx in advance

    thnks for ur reply. i worte that i m using forms 6i so that ur reply do not fullfill my query.
    i posted my query because i have seen an application developed in oracle form 6 and he designed exactly the same iconic toolbar as we see normal while running the forms and i tried but could not able designed accordingly as button don't have "bevel" property and button we use .ico extension if we want to use icon buttons.now i m astonised if there is not any way make changes then how he did.

  • How to make changes in standard transaction ME51N.

    Hi,
       Can anyone tell me how to make changes in standard transaction ME51N.
       I want to call transaction AS01 by clicking on standard button create asset. Please do the needful.
    Regards.
    Aniruddha

    Hi anirudda
              As i understood from your question is that you want to add a new field 'CREATE ASSET' on me51n screen.
    If i am correct you can use 'MEREQ001' enhancement for this purpose and you can write you code in the exits available in this enhancement.
    Please check the documentation of this enhancement for more info.
    (Use Smod for this purpose)
    I hope it is helpful.
    Reward points
    Thanks,
    Prasanna

  • How to make changes in strong password policy

    hi,
    how to make changes in strong password policy.
    I m using apex 4.2.
    pls help

    1003090 wrote:
    I created a login page, but when i m putting a password or more then 7 character then in place of Invalid Login Credentials , its saying
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small.
    I need to put a password of min 8 character, since its taking not more then 7 so i cannot use validation for the same.You already have a thread open on that: +{thread:id=2532900}+. Continue with that issue there.
    If the original question above relating to how to configure password policies is answered then close this thread.

  • How to make changes in deduction column in IT 2006

    Hi All,
    Scenario: Employee had a sick leave & casual leave quota 6 days in a financial year.
    Now the employee had used all his sick leaves and casual leaves and the leaves got exhausted pertaining to this quota.
    These days are reflecting in 2001 IT as leaves taken  but the deduction did'nt happen in IT 2006
    Can anyone tell how to make changes in the deduction column for specific employee code's
    Regards,
    Srikanth

    Hi Megha,
    The assignment is properly mapped to counting rule.. Issue is with the validity intervals. SInce the employee already availed the leaves the quotas cannot be deleted in the IT 2006. Issue resolved by making some changes in the deduction column through SQL table entry..
    Really appreciate your response..
    Regards,
    Srikanth

  • How can I change my apple profile picture using iphone5?

    How can I change my apple profile picture using iphone5?

    Your "Apple Profile Picture" where? When do you see this picture?
    Cheers,
    GB

  • HT204053 How to make changes on my payment Account

    How to make changes to my payment account.

    in my Complete Selection window I have the following:
    FACT TTY( * ) FIG( RefDate <= CurrentDate And JDT1_BalDueDeb + JDT1_BalDueCred <> 0 )  Group By TTY.Code ,FIG.Ref1 ,FIG.OJDT_Ref2 ,FIG.LineMemo ,FIG.RefDate
    in the XLS cells I have the following:
    =ixGet("JDT1_BalDueDeb")
    and
    =ixGet("JDT1_BalDueCred")
    If you need additional clarification let me know.
    regards, Sotos Soteriou

  • How to make changes in company code global data

    Hi folks,
    Can some one suggest me how to make changes in company code global data (t code oby6). I want to assign 1 to co code > co Area which is blank.
    Thanks in advance

    Hi,
      actually if you want to change co code > co Area , it is under controlling (maintain controlling area), transaction code  OX06 .You change the assignment control and save it. It is automatic update you COmpany code global data.
    *give me a point if my answer solve your problem.
    Thank You.
    -akma-

  • How do I change my authorization ID?

    How do I change my authorization ID so I can download books from my public library? Long story about ID I used when I set up adobe account, but need to change so everything is in sync.

    I think you should ask in the Digital Editions forum, Adobe Digital Editions

  • How do you change ID authorization if wrong ID was installed?

    Got a new tablet with all my programs pre-installed.  Adobe ID used for setup is not my ID so now I cannot access my books.  How can I change the authorization ID so that I can access my books?

    CTL-shift-D does nothing.
    In ADE under Help it says “Authorize Computer CtrlShiftU”, however this line item is in light grey, indicating that you cannot click on this line and the command CtrlShiftU does not work either.  The next line under Help is” Authorization Information CtrlShiftI” which shows me the ID authorization that is set up for ADE, but this ID is not my correct ID.  It was set up by the “seller” of the tablet as a working dummy account ([email protected]) for them to set up all the programs I wanted on the tablet.  So now I am locked out from changing the authorization for this computer – it keeps telling me this computer is already authorized to that incorrect ID.
    How the heck can I get rid of it!!  I’m desparate for help.  I’m losing approx. 1000+ books because of this!!
    Please, Please help me.
    Denise Crncich
    [email protected]

Maybe you are looking for