How to remove transaction that was added under Menu - Role Menu

We have roles that we need to remove some transactions.
These transactions were added under Menu - Role Menu and expanded for ex: Logistics and Picked Miro transaction.
When I go to PFCD and check under s_tcode I cannot remove Miro transactions since it's grayed out.
The only way to remove this is to go back to the Menu and do a find on miro and work through the menu until I get to Miro transaction and then delete it.
Is there another way to accomplish this.
Thanks
Joe

This is the intended way a role built from a menu works. What might be the use of an authorization without any corresponding transaction to start it? It is only a risk...
Unless of course you know better or design differently and don't make the effort to adjust SU24, then you can insert manually or cause "changed" authorizations, but PFCG will not look at it from a "your own fault" view and not adjust it or protect it against illogical changes.
To use the discipline of the one approach but keep the flexibility of manual authorizations is not possible for S_TCODE, S_RFC and S_SERVICE objects (the entry points).
Cheers,
Julius
PS:
> Total Questions:  42 (36 unresolved) 
Please follow-up on your unresolved questions. There is a limit now of 10 open questions asked since July 2008.

Similar Messages

  • I imported a video I make in another program and I played it back in the video editor and I like the pan and zoom that was added by the program how do I save a copy with the effect of Premiere elements 12

    I imported a video I make in movie maker program and I played it back in the premiere video editor and I like the pan and zoom that was added by the program how do I save a copy with the effect of Premiere elements 12
    all I did was played it back how do I save that and make a new version of the video beacause when I save a copy the effect look I was trying to save was not there.
    Rodney
    [personal information removed... Mod - https://forums.adobe.com/docs/DOC-3731]
    [This is an open forum, not Adobe support, please do not post personal information]
    [If you are posting using email, please turn your 'sig file' function OFF for posting]

    silkman1
    I would be glad for the opportunity to customize a Premiere Elements 12 answer to your Premiere Elements 12 issue.
    But, I want to make sure that we are together on the details. This is my understanding of what you have written. Please review and let me
    know if I am misinterpreting anything that you have written.
    You have a video created in Windows Movie Maker.
    How did you output the video from Windows Movie Maker...wmv or mp4, what was the frame size and frame rate of that export?
    Next you import that video into Premiere Elements 12 (can we assume that this is on Windows 7, 8, or 8.1 64 bit?)
    From what you wrote, you have applied a pan and zoom effect to your video in Premiere Elements.
    Now you go to export the Premiere Elements 12 Timeline content with your video with the pan and zoom applied.
    But, the pan and zoom effect is not seen in playback of the export.
    Is all of the above correct so far?
    If so....we are going to need some more details from you...
    a. What is the project preset that you or the project are setting to match the properties of the video coming from Movie maker? See Edit Menu/Project Settings/General and the readings for Editing Mode, Timebase, Frame Rate, and Pixel Aspect Ratio even if the fields look grayed out.
    b. Are you applying the pan and zoom effect with the Pan and Zoom Tool, fx Effects Presets, or keyframing the Scale (for Zoom) and
    Position (for Pan) in the Motion Panel expanded?
    c. What are you selecting as your export in Publish+Share/. Please give details...are you using default settings or customizing the export
    setting under the Advanced Button/Video Tab and Audio Tab of the preset selected?
    I am suspecting some sort of mismatch of your project settings or some problems with working with the Pan and Zoom tool. I need
    your answers to help me help you. If I have written anything that you do not understand, please let me know. I will re-write if necessary
    so that we are in sync to resolve the issue.
    Thanks.
    ATR

  • How do I clear a persona that was added accidentally by my child?

    I need to clear a persona that was added accidentally to my foxfire at work. It is very hard for me to concentrate with this on. I just want it blank again. How do I do that.?
    == This happened ==
    Every time Firefox opened
    == It was accidentally added when an update was added

    '''Use default theme'''
    1. On top of Firefox, on the menu bar, select Tools
    2. In the drop-down menu, select <u>Add-ons==
    3. Select the Themes Panel
    4. Click on the default theme. Select Use theme
    5. OK
    </u> Uninstall Themes:===
    1. In the add-ons window, select the '''Themes Panel'''
    2. Select the theme you want to uninstall
    3. Click Uninstall. Again when prompted

  • [svn] 1418: Remove the optimization that was added as part of the fix for BLZ-133.

    Revision: 1418
    Author: [email protected]
    Date: 2008-04-25 11:16:16 -0700 (Fri, 25 Apr 2008)
    Log Message:
    Remove the optimization that was added as part of the fix for BLZ-133. We cannot depend on isRequestedSessionIdFromCookie reliably, instead we should rely on the fact that encodeURL returns the same url when cookies are enabled.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-133
    Modified Paths:
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/endpoints/amf/SessionFilter.j ava

    This indicates corrupt files.  A restore should resolve.

  • [svn:fx-trunk] 10201: Removing special case Container opaqueBackground logic that was added recently as it is no longer required .

    Revision: 10201
    Author:   [email protected]
    Date:     2009-09-12 13:23:35 -0700 (Sat, 12 Sep 2009)
    Log Message:
    Removing special case Container opaqueBackground logic that was added recently as it is no longer required.
    QE notes: None
    Doc notes: None
    Bugs: SDK-23129
    Reviewer: Glenn
    Tests run: V_H_Box, Canvas mustella tests.
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23129
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Container.as

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • RemoveChild for movie clip that was added in another function?

    Hello everyone.  I have 3 different functions for my preloader.  I have an Event.OPEN, ProgressEvent.PROGRESS, and an Event.COMPLETE.  In the event.OPEN function, I create a new variable that is data typed to the class name of my preloader that I set in it's property dialogue box.  This is just a simple circle animation.  Below is my code for it:
    function addPreloader(event:Event):void
        var myPreloader:mcPreloader = new mcPreloader();
        myPreloader.x = stage.stageWidth / 2;
        myPreloader.y = stage.stageHeight / 2;
        myPreloader.width = 75;
        myPreloader.height = 75;
        addChild(myPreloader);
    My ProgressEvent.PROGRESS function looks like so:
    function preloadImages(event:ProgressEvent):void
        var percent:Number = Math.round(event.bytesLoaded / event.bytesTotal * 100);
        percent_txt.text = percent + "%";
    and my Event.COMPLETE function looks like so:
    function imageLoaded(event:Event):void
        var myLoadedImage:Loader = Loader(event.target.loader);
        addChild(myLoadedImage);
        new Tween(myLoadedImage, "alpha", Strong.easeIn, 0, 1, 0.5, true);
        event.target.loader.removeEventListener(Event.OPEN, addPreloader);
        event.target.loader.removeEventListener(ProgressEvent.PROGRESS, preloadImages);
        event.target.loader.removeEventListener(Event.COMPLETE, imageLoaded);
    The only problem is that when it's done loading, I'd like to remove the myPreloader from the stage.  Since it is declared in the Event.OPEN function, I can't communicate with it via my Event.COMPLETE function.  How can I successfully remove it from the stage after it's done loading?  Thanks!
    Jesse

    Duh, thanks Kglad.  It's been a long week ;).
    Jesse
    Date: Thu, 9 Jun 2011 13:47:57 -0600
    From: [email protected]
    To: [email protected]
    Subject: removeChild for movie clip that was added in another function?
    var myPreloader:mcPreloader
    function addPreloader(event:Event):void
       myPreloader = new mcPreloader();
        myPreloader.x = stage.stageWidth / 2;
        myPreloader.y = stage.stageHeight / 2;
        myPreloader.width = 75;
        myPreloader.height = 75;
        addChild(myPreloader);
    My ProgressEvent.PROGRESS function looks like so:
    function preloadImages(event:ProgressEvent):void
        var percent:Number = Math.round(event.bytesLoaded / event.bytesTotal * 100);
        percent_txt.text = percent + "%";
    and my Event.COMPLETE function looks like so:
    function imageLoaded(event:Event):void
    removeChild(myPreloader);
    myPreloader=null;
        var myLoadedImage:Loader = Loader(event.target.loader);
        addChild(myLoadedImage);
        new Tween(myLoadedImage, "alpha", Strong.easeIn, 0, 1, 0.5, true);
        event.target.loader.removeEventListener(Event.OPEN, addPreloader);
        event.target.loader.removeEventListener(ProgressEvent.PROGRESS, preloadImages);
        event.target.loader.removeEventListener(Event.COMPLETE, imageLoaded);
    >

  • How to remove duplicates that appear on my Library?

    How to remove duplicates that appear on my library?

    On the PC or Mac in iTunes, in the File-menu, select "Show Duplicates". Clean them there and resync to your iPod.

  • Where can I find the GPS coordinates in iPhoto 11 for geotagged pics? In iPhoto 09 this information was available under the Photos menu "Show Extended Photo Information".

    Where can I find the GPS coordinates in iPhoto 11 for geotagged pics? In iPhoto 09 this information was available under the Photos menu "Show Extended Photo Information".

    I think you can only see the map.  To see the actual EXIF data you would need to export and use a viewer.

  • I don't know of there is anyone than can fix this age old Apple problem.   Does anyone know how to retrieve things under an old Apple ID when the email used for that account no longer exists? I am trying to update a number of apps that was bought under an

    I don't know of there is anyone than can fix this age old Apple problem.   Does anyone know how to retrieve apps under an old Apple ID when the email used for that account no longer exists &amp; I can't remember the password? After speaking with Apple Acct. Security, I got the security Q right but my birthday was wrong! They wanted the serial number from my phone that was 3 iPhones ago! Seriously??!!
    Any updated way to work around this? No Apple people can correct it.
    Thanks,
    Joe

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (122986)

  • How do I delete a toolbar that was added when I downloaded a program?

    I am using Firefox 7.0.1 and Microsoft Windows XP Professional Ver. 2002 Service Pack 3. I would like to delete (get rid of NOT hide only) a toolbar that was downloaded to Firefox when I downloaded a program to print internet coupons. The toolbar is called shopathome.com.
    I have read your article about deleting toolbars, but this solution only applies to toolbars that you add for Firefox buttons. I have not found other articles that talk about deleting downloaded toolbars.
    I want to delete this toolbar because it is slowing down Firefox since it continuously monitors the sites I visit and it displays offers for coupons or other stuff from this site.
    Is there a way to get rid of this toolbar? If not, would reinstalling Firefox fix the problem? Thank you.

    I found the answer in the same shopathome.com website. Here is the link with the information to remove the shopathome pesky toolbar
    http://www.shopathome.com/pages/Faqs.aspx#gen13
    Don't forget to reboot close Firefox and reboot your computer

  • What were the transactions that was used for a period in ECC6

    How to get a list of transactions that have been used for last 3 months.

    Please do excuse me... i have typed my message giving a wrong understanding to you allu2026
    Let me phrase my question clearly this timeu2026 I am extremely sorry for taking your time on this and appreciate for the quick respondu2026
    My requirement is to know few things:
    1. When was a program, transaction last used?
    2. How to know which users are using which transaction or executing which program?
    3. Which are the most frequently used programs or transaction?
    I tried working on ST03N but seems like I either am using it wrongly so I cannot view what I really wantu2026 Also one more thing to add we have not enabled audting becase of the performance issues...
    We are using ECC 6.0 with AFS 6.0
    Thanks alot for all the help...

  • Help - index page has disappeared after removing code that was recommended regarding Flash

    After inserting some conditional comments regarding earlier versions of IE not displaying bulleted lists properly. I received a message about Javascript code that should be removed regarding my Flash element.
    When I removed the code that was indicated, my index page changed to a gray screen that had some copy about needing to update the Flash player, so I thought I'd totally take out the code relating to the Flash element and I would reinsert the Flash movie. However when I preview it everything is gone except a gray background. In Live View the original page is there. When I try to look at in in design view preview or view it in a IE browser it is just a gray background.
    I'm attaching the code for the page to see if I accidently removed some element that needed to be in to display the page. Please advise ASAP. Thank you.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Total Care Nursing Services</title>
    <link href="css/twoColFixRtHdr.css" rel="stylesheet" type="text/css" /><!--[if IE 5]>
    <style type="text/css">
    /* place css box model fixes for all versions of IE in this conditional comment */
    .twoColFixRtHdr #sidebar1 { width: 190px; }
    </style>
    <![endif]--><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .twoColFixRtHdr #sidebar1 { padding-top: 10px; }
    .twoColFixRtHdr #mainContent { zoom: 1; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]-->
    <!--[if lte IE 7]>
    <style>
    .twoColFixRtHdr #container #sidebar1 ul {
    margin-left: 25px
    </style>
    <! [endif]-->
    <style type="text/css">
    <!--
    body,td,th {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    body {
    background-color: #242D80;
    margin-right: 0px;
    a:link {
    color: #DC3505;
    text-decoration: none;
    a:visited {
    text-decoration: none;
    color: #4A6FBB;
    a:hover {
    text-decoration: none;
    color: #038F0E;
    a:active {
    text-decoration: none;
    h1,h2,h3,h4,h5,h6 {
    font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
    font-weight: bold;
    -->
    </style>
    <link href="css/global.css" rel="stylesheet" type="text/css" /><style type="text/css">
    <!--
    a {
    font-weight: bold;
    -->
    </style>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    </head>
    <body class="twoColFixRtHdr">
    <a href="tcns_members.html"></a>
    <div id="container">
      <div class="twoColFixRtHdr" id="header">
    <!-- end #header -->
    <ul id="MenuBar1" class="MenuBarHorizontal">
      <li><a href="index.html">Home</a>    </li>
      <li><a href="about_us.html">About Us</a></li>
      <li><a href="staffing.html">Staffing Services</a>    </li>
      <li><a href="join_us.html">Join Us</a></li>
      <li><a href="contact_us.html">Contact Us</a></li>
      <li><a href="nursing_news.html">Nursing News</a></li>
      <li><a href="tcns_members.html">TCNS Members</a></li>
    </ul>
      </div>
      <div class="twoColFixRtHdr" id="sidebar1">
        <h3 class="sidebarTitle"><span class="sidebarTitle">TCNS MEDICAL PROFESSIONALS</span></h3>
        <ul>
          <li class="spacedList">Registered Nurses</li>
          <li class="spacedList">Licensed Practical Nurses</li>
          <li class="spacedList">Certified Nursing Assistants</li>
          <li class="spacedList">Radiological Technicians</li>
          <li class="spacedList">Physical Therapists</li>
          <li class="spacedList">Respiratory Therapists</li>
          <li class="spacedList">Home Health Assistants</li>
        </ul>
    <p class="sidebarCopy">Interested in a career at TCNS? <a href="contact_us.html">Contact us</a> to learn more today!</p>
        <p class="sidebarCopy">Are you a facility looking for health care staffing in South Florida? <a href="staffing.html">Click here</a>.</p>
      </div>
      <div id="mainContent">
        <h1>
      Offering Compassionate Care with a Committment to Excellence</h1>
        <p><span class="company">
        </span><span class="company">TOTAL CARE NURSING SERVICES</span> was founded as a bridge  between health care professionals and the many institutions in the health-care  industry, with the primary objective of promoting the patient’s well being and  satisfaction.</p>
    <p>With a nationwide nurse shortage approaching 800,000 and  projected to worsen as the baby boomer generation enters retirement age, the  need for skilled nurses and other health care professionals is rapidly  increasing. However, the greater challenge for health care facilities is to  recruit and retain motivated, dedicated professionals who will help deliver the  quality care that is demanded of them by every aspect of the industry. <span class="company">TOTAL  CARE NURSING SERVICES</span> has the vision to answer this challenge and provide the  needed personnel to its clients at reasonable cost.
      <!-- end #mainContent -->
    </p>
      </div>
    <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats --><br class="clearfloat" />
      <div id="footer">
        <p><span class="spaceFooter"><a href="index.html">Home</a></span>l <span class="spaceFooter"><a href="mailto:[email protected]">E-Mail</a></span>l <span class="spaceFooter"><a href="links.html">Links</a></span>l <span class="spaceFooter"><a href="search.html">Search</a></span><br />
          Copyright 2009 - Total Care Nursing Services, LLC
    <!-- end #footer -->
        </p>
    </div>
    <!-- end #container -->
    </div>
    </body>
    </html>

    2.
    Deleting and getting the file should solve this problem.
    3.
    You should only require 2 IE conditional statement (for css code), one for less than IE 8 and one for less than IE 7.
    Both or just one of these should be inside the <head> </head> tags not anywhere else.
    The conditional statment in flash are for <object> code.
    Here is an example of how the flash code should look for your webpage:
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="250" height="204" id="FlashID" title="name of your swf file here without .swf">
            <param name="movie" value="link to your swf file here" />
            <param name="quality" value="high" />
            <param name="wmode" value="opaque" />
            <param name="swfversion" value="8.0.35.0" />
            <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
            <param name="expressinstall" value="../Scripts/expressInstall.swf" />
            <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
            <!--[if !IE]>-->
            <object type="application/x-shockwave-flash" data="link to your swf file here" width="250" height="204">
              <!--<![endif]-->
              <param name="quality" value="high" />
              <param name="wmode" value="opaque" />
              <param name="swfversion" value="8.0.35.0" />
              <param name="expressinstall" value="../Scripts/expressInstall.swf" />
              <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
              <div>
                <h4>Content on this page requires a newer version of Adobe Flash
                  Player.</h4>
                <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
              </div>
              <!--[if !IE]>-->
            </object>
            <!--<![endif]-->
          </object>
    The width and height values to be changed to what you require.
    NO other code is required.
    PZ

  • How to remove audio clip I added to iMovie 10?

    I created a short video, added audio clip from itunes.  But I cannot upload it to Facebook due to copyright rules.  How can I remove the audio clip?  I separated the audio from the video, but it's only the original audio, not the clip I added.  I looked through several posts but could not find this exact topic. 
    I see some posts that talk about inspector, but imovie 10 doesn't seem to have it. 
    When I click on the video segments i don't see anything about the audio clip that I added.
    Newbie here, please be patient...
    Thanks.

    You just need to go back to the project in iMovie 10, delete the iTunes audio clip and share again.
    (I'm not quite clear what you did when you said you 'separarted the audio from the video'.)
    Geoff,

  • How to remove app that I don't use from ipad, icloud, everywhere?

    I bought some app a long time ago that I do not want to use ever. I have already remove the icon from the ipad and from my iphone, but it is saved in icloud. I want it to go away from icloud so that it would free up my icloud memory for other storage. I want to get rid of the app forever. How do I do that? Please, please help!
    By the way, I have already search the Apple Support communities. I did not find any helpful answers.

    You can turn off what you don't want to backup in iCloud (tap to enlarge image)

  • How to remove Adware that is driving me crazy?

    I downloaded a movie player and ended up with some Adware that is driving me crazy!  It opens a new tab with a random advertisement whenever I click on a 'submit' button or some other link.  It's been happening on sites that did not normally exhibit this behavior in the past.  The ads range from Mackeeper pro 2.0 to Sexy Latina girls.  Any ideas on what could be causing this and how to remove it?  I'm using Safari 8.0 with Yosemite.

    Yes, you have accidentally installed some sort of adware. The fastest, most effective way to identify and optionally remove all currently known adware is by using AdwareMedic, developed by thomas_r. this Forum's malware guru, owner of TheSafeMac and a colleague of mine.
    If it turns out to be the Downlite adware, then they have managed to block your access to that site and you will need to use an alternate technique as described in About the Downlite adware.
    To understand why this happened an how to avoid such things in the future read John Galt's How to install adware.

Maybe you are looking for

  • Firefox 18.0.1 often freezes, at random times, since about 31 Jan 2013

    2 Feb 2013 Concerns: Firefox 18.0.1 often freezes, at random times, since about 31 Jan 2013 I am using Mozilla Firefox 18.0.1, Windows Vista, PC, Desktop. My Mozilla Firefox freezes since about 31 Jan 2013 at random times quite often, when I do see T

  • Very urgent - Usage of IsError function in HFR

    Hi All, Its very urgent requirement for us. How can we use the is error function in HFR.bcoz if the both values in formula ex: a/b ; a=0,b=0; then it shows some garbage value.i came to know we can achieve that by using iserror function.but i dnt know

  • Sequence Number problem.

    I have situation like this: I am creating text files from a procedure and i am making FILE NAME as follows. v_file_name := v_document_code || '_' || p_printer_id || '_' || p_quote_ref_id || '_' || v_reference_id; All above values i have in my procedu

  • Middle Click in AS3

    Hi !!! I'm looking for the way to detect the middle click with AS3. I know there is a MouseEvent.MIDDLE_CLICK, but it's only for AIR: http://livedocs.adobe.com/flash/9.0/...l#MIDDLE_CLICK Why Flash didn't put that function for Flash Player too??? How

  • Help with running servlet with jakarta tomcat

    I had recently created a couple of java servlets and wanted to run them. I had put the .class files in Tomcat 4.1\webapps\Root\ then typed in http://localhost:8080/ then the servlet in the web browser. Here was the error page copied and pasted. If I