Reason Codes not displaying when performing emergency access management(SPM

Hello guru,
I am experiencing a little problem when using superuser privilege management (emergency access) functionality in AC 10.0.
My problem is that the reason codes created in the AC system via the reason code link in the workcenter does not appear as drop down for me when I click on the logon button in the initial screen displayed in transaction SPM_GRAC.
Suffice to say that i do not have any reason code to pick from in the drop down for superuser privilege management in the AC system when i logon with the firefighter user to perform SPM.
Please help me out with your suggestions.
Thanks

Hello guru,
I am experiencing a little problem when using superuser privilege management (emergency access) functionality in AC 10.0.
My problem is that the reason codes created in the AC system via the reason code link in the workcenter does not appear as drop down for me when I click on the logon button in the initial screen displayed in transaction GRAC_SPM.
Suffice to say that i do not have any reason code to pick from in the drop down for superuser privilege management in the AC system when i logon with the firefighter user to perform SPM.
Please help me out with your suggestions.
Thanks

Similar Messages

  • Reversal Reason Code not displayed in document -FB08

    Hello,
    I have reversed the FI document using the transaction code FB08. While reversing I have given the SAP standard reversal reason code as 1. A new document was created on reversal of document.
    But Reversal reason code '1' is not getting displayed in FB03 or GL line item report FAGLL03. I have checked the Field staus of the Posting key as well as of the GL accounts, at both the places "Reason code" is optional entry field.
    Can you please suggest where/How to see the reversal reason in the document reversed through FB08.

    Hi Prasanna,
    First of all go to Table BKPF & check for the field STGRD value for the concerned document.If it has value then you will get the value for Reversal Reason in FB03.
    I think you have mistook selecting the Reversal Reason in the layout because there are 2 different Reversal Reason fields with the same name. So select the correct field (BKPF-STGRD) from the layout.
    Hope it solves.
    Regards
    Andrew

  • Emergency Access Management & SPM 5.3 - add default text!

    Hi, is there a way to initialize the text fields, which pop up when you logon as a firefighter, with default values (such as Enter Ticket Number here: #)?
    Would be interesting for 5.3 as well as 10.0.
    Thank you

    HI Andreas,
    There is no such possibility, You can only configure the reason codes, but I dont think there is any way to configure predfeined texts as such, since this is ABAP, you might find  a user exit that might allow you to write your own custom code. I have never explored the option.
    Regards,
    Chinmaya

  • Runtime Error displayed when attempting to access Forums

    I've IE 9 installed on a Windows Home Premium box. When I attempt to access the Technet Forums the following is displayed
    Server Error in '/Forums' Application.
    Runtime Error
    Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
    Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
    <!-- Web.Config Configuration File -->
    <configuration>
    <system.web>
    <customErrors mode="Off"/>
    </system.web>
    </configuration>
    Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
    <!-- Web.Config Configuration File -->
    <configuration>
    <system.web>
    <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
    </configuration>
    I'm running IE 9 on another PC (Windows 7 Pro) and it is able to acess the Technet Forums with no problem (I'm using it to make this entry).
    I've compared the settings on both browsers and they are identical. Why does IE on my Home Premium PC misbehave?
    Thanks in advance.

    Hi,
    What’s the result of other webpages?
    Can you access the thread link successfully?
    http://social.technet.microsoft.com/Forums/en-US/0c79aae9-3883-450a-bcd2-ba14ac5c8cd9/runtime-error-displayed-when-attempting-to-access-forums?forum=i
    You can test in compatible view for a try first.
    http://windows.microsoft.com/en-IN/internet-explorer/use-compatibility-view#ie=ie-9
    Alex Zhao
    TechNet Community Support

  • Included subview not displaying when run, only in editor

    Hallo -- I have a page called home.jsp that contains a subview.
    home.jsp looks like this:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <%@ page language="java" contentType="text/html; charset=iso-8859-1" %>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <f:view>
    <html>
    <head>
      <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
      <title>Untitled Document</title>
    </head>
    <body>
    <h:panelGrid width="100%" columns="1">
         <h:panelGroup>
              <h:outputText value="Hello?"/>
         </h:panelGroup>
         <h:panelGroup>
              <h:panelGrid width="100%" columns="2">
                   <h:panelGroup>
                        <f:subview id="navigationPane">
                             <jsp:include page="subview/navigationPane.jspf" flush="true" />
                        </f:subview>
                   </h:panelGroup>
                   <h:panelGroup>
                        <h:outputText value="Hello-o-o-o...?"/>
                   </h:panelGroup>
              </h:panelGrid>
         </h:panelGroup>
         <h:panelGroup>
              <h:outputText value="Where's my subview?"/>
         </h:panelGroup>
    </h:panelGrid>
    </body>
    </html>
    </f:view>
    [/code:1:ccbd93ceb2]
    And the file in the subview, named [b:ccbd93ceb2]navigationPane.jspf[/b:ccbd93ceb2] in the subfolder [b:ccbd93ceb2]/subview[/b:ccbd93ceb2] looks like this:
    [code:1:ccbd93ceb2]<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <h:panelGrid width="20%" columns="1" id="navigationPane">
         <f:facet name="header">
              <h:outputText value="Navigation Pane"/>
         </f:facet>
         <h:panelGroup>
              <h:form>
                   <h:commandLink id="gotoHome" action="gotoHome" immediate="true" style="text-align: center">
                        <h:outputText value="home"/>
                   </h:commandLink>
              </h:form>
         </h:panelGroup>
         <h:panelGroup>
              <h:form>
                   <h:commandLink id="viewByCustomer" action="viewByCustomer" immediate="true" style="text-align: center">
                        <h:outputText value="view by customer"/>
                   </h:commandLink>
              </h:form>
         </h:panelGroup>
         <h:panelGroup>
              <h:form>
                   <h:commandLink id="viewByJob" action="viewByJob" immediate="true" style="text-align: center">
                        <h:outputText value="view by job"/>
                   </h:commandLink>
              </h:form>
         </h:panelGroup>
         <h:panelGroup>
              <h:form id="quickSearchBeanForm">
                   <h:panelGrid columns="3">
                        <h:outputText value="Search By Option:"/>
                        <h:panelGroup>
                             <h:selectOneMenu id="quickSearchBean_searchByOption" value="#{navigationPaneBean.quickSearchBean.searchByOption}">
                                  <f:selectItems value="#{navigationPaneBean.quickSearchBean.searchByOptions}"/>
                             </h:selectOneMenu>
                        </h:panelGroup>
                        <h:message for="quickSearchBean_searchByOption"/>
                        <h:outputText value="Search For:"/>
                        <h:inputText id="quickSearchBean_searchFor" value="#{navigationPaneBean.quickSearchBean.searchFor}"/>
                        <h:message for="quickSearchBean_searchFor"/>
                   </h:panelGrid>
              </h:form>
         </h:panelGroup>
         <h:panelGroup>
              <h:form>
                   <h:commandLink id="gotoAdmin" action="gotoAdmin" immediate="true" style="text-align: center">
                        <h:outputText value="admin"/>
                   </h:commandLink>
              </h:form>
         </h:panelGroup>
         <f:facet name="footer">
              <h:form>
                   <h:commandLink id="logout" action="logout" immediate="true" style="text-align: right">
                        <h:outputText value="logout" style="text-align: right"/>
                   </h:commandLink>
              </h:form>
         </f:facet>
    </h:panelGrid>
    [/code:1:ccbd93ceb2]
    Just to be really clear, here is the dierctory structure for the relevant files:
    [code:1:ccbd93ceb2]/web
    |
    |
    |--/pages
    |   |
    |   |
    |   |--/app
    |   |   |
    |   |   |
    |   |   |--/subview
    |   |   |   |
    |   |   |   |--navigationPane.jspf
    |   |   |
    |   |   |
    |   |   |--home.jsp
    |   |
    |   |
    |   ...
    |
    ...[/code:1:ccbd93ceb2]
    My problem is that the subview will not display when I run the web app. In the design view I can see it just fine, but when I browse to home.jsp when running, all I get is this (from view source):
    [code:1:ccbd93ceb2]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
      <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
      <title>Untitled Document</title>
    </head>
    <body>
    <table width="100%"><tbody><tr><td>Hello?</td></tr>
    <tr><td><table width="100%"><tbody><tr><td></td><td>Hello-o-o-o...?</td></tr>
    </tbody></table></td></tr>
    <tr><td>Where's my subview?</td></tr>
    </tbody></table>
    </body>
    </html>
    <script type="text/javascript">
    <!--
    function getScrolling() {
        var x = 0; var y = 0;
        if (document.body && document.body.scrollLeft && !isNaN(document.body.scrollLeft)) {
            x = document.body.scrollLeft;
        } else if (window.pageXOffset && !isNaN(window.pageXOffset)) {
            x = window.pageXOffset;
        if (document.body && document.body.scrollTop && !isNaN(document.body.scrollTop)) {
            y = document.body.scrollTop;
        } else if (window.pageYOffset && !isNaN(window.pageYOffset)) {
            y = window.pageYOffset;
        return x + "," + y;
    //-->
    </script>
    [/code:1:ccbd93ceb2]
    Does anyone have any idea why this might not be working?
    I'm really stumped!
    Cheers,
       doug.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    http://forum.java.sun.com/thread.jspa?messageID=3413354&#3413354

  • RE: my input fields does not display when running the page

    my input fields does not display when running the page
    why is that so?

    Hi,
    Can you send the HTML code for us?
    Afonso

  • Has anyone received an error code of -3212 when trying to access the Itunes Store?

    Has anyone received an error code of -3212 when trying to access the Itunes Store?

    Just in case, let's try the following document:
    Apple software on Windows: May see performance issues and blank iTunes Store
    (If there's a SpeedBit LSP showing up in Autoruns, it's usually best to just uninstall your SpeedBit Video Accelerator.)

  • Latest code not displayed

    We are working in a team and therefore using NWDI for development. One of the applications developed by a team member when checked out by any other team member does not give the latest code. Instead it is showing the old code with lots of errors (as code is incomplete), nor it is allowing to make any changes to the code. However on the original developer's  machine where the code is developed it shows the latest code.I have tried "remove from client " option, Manually deleted the local poject folder and created again from Inactive DC,s but still it shows the old code.
    When i check from version graph i can see the latest code, so i assume DTR is having the latest version but not displaying when the project is created. Kindly help.

    Hi,
    Go to the project explorer view
    select the project
    rightclick DTR-> Sync-> Force Sync.
    When you do a force sync it will sync to all activities which are not even activated.
    Regards
    Ayyapparaj

  • Sharepoints not displayed when connecting via FTP

    Hi All,
    Leopard Server 10.5.8 xserve 2 G5
    I have an issue with the built in FTP server.
    All my share point are set to be shared via FTP, yet they are not displayed when users log in and access the server via FTP.
    In Server Admin, Authenticated users see: FTP Root and Share Points.
    All relevant users have access to the FTP service, in the server settings.
    ACL permissions have been set correctly for those users.
    This is *sudo sharing -l* tells me, for all share points.
    name: Archive
    path: /Volumes/External RAID/Archive
    afp: {
    ftp: {
    name: Archive
    shared: 1
    guest access: 0
    smb: {
    Is there anything that I missed?
    Thanks for you help,
    Johan
    Message was edited by: JohanDouma

    Hi,
    Sorry for the late respons.
    My config:
    1 mac mini with OSX Server leopard
    1 airport extreem
    1 external HDD LaCie
    An airport Extreme has the posibility to share a network drive. So I plugged in my HDD into the airport extreme and configured the thing.
    Than I turned to the mac mini. And started configuring my sharepoints.
    So one of my sharepoints is the external HDD.
    There are several directories on there that I want to make available thru the legacy protocol FTP.
    So by just making these sharepoints available thru FTP i expected for these sharepoint to show up in mij directories if I connect to my external IP with a FTP client like CyberDuck.
    (portforwarding and everything is not the problem, because I can make a connections and all directories show up as browseable.
    But the sharepoint I made on the network drive just show up as an bin or another kind off file I can't open.
    Everything else is browsable..
    They show up by the way in the root dir of the FTP Server as regular symbolic links.
    Thru Finder I can browse them and do everything. But as soon as i connect over the internet, lan or whatever, these symbolic links are not the access point towards the directory underneath.
    They show up with the correct name just not as an dir I can open.
    Hope this helps
    Grtz and thnx
    (typed on an iPad and not fully used to it)

  • Why is it when I add photos from iPhoto onto an iMovie project, it is not displayed when I play the movie from beginning to end, although I can see it in the (edit) format?

    Hi everyone,
    I'm just wondering why is it that when I place an image from iPhoto to an iMovie project, it is not displayed when I play it from beginning to end in fullscreen playback mode? However, when I exit it on the timeline, it is shown. All I did as drag it from the iPhoto column and place on at the beginning. I would really appreciate someones help because I really need to be able to place images onto my projects. Thanks!

    Sounds like your talking about iMovie for Mac?
    This is the iOS version, repost here:
                                                      iMovie

  • Adobe PDF files will not display when called via a link in page (FF 4.01)

    adobe PDF files will not display when called via a link in page.
    This happens when testing new web page from DWeaver CS5 - all other browser tests are OK (IE9, Safari5.05, Chrome etc.)

    [moved to the Adobe Reader (desktop) forum]

  • My edited photos will not display when clicked on, a large triangle with exclmation comes up

    my edited photos will not display when clicked on, instead a large grey area comes up wiht a triangle /exclamation sign. 

    Try these in order - from best option on down...
    1. Do you have an up-to-date back up? If so, try copy the library6.iphoto file from the back up to the iPhoto Library (Right Click -> Show Package Contents) allowing it to overwrite the damaged file.
    2. Download <a href="http://www.fatcatsoftware.com/iplm/"><b><u>iPhoto Library Manager</b></u></a> and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    3. If neither of these work then you'll need to create and populate a new library.
    To create and populate a new *iPhoto 08* library:
    Note this will give you a working library with the same Events and pictures as before, however, you will lose your albums, keywords, modified versions, books, calendars etc.
    In the iPhoto Preferences -> Events Uncheck the box at 'Imported Items from the Finder'
    Move the iPhoto Library to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library (Right Click -> Show Package Contents) on your desktop and find the Originals folder. From the Originals folder drag the individual Event Folders to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption. 

  • Help topics are not displaying when using Windows 7 / IE 9 / RH10

    We recently upgraded our library from RH8 to RH10.  Also used a trial version of  RH9 in this process. Now when we compile several of the projects have issues where help topics do not display when selected in the TOC or when a link to the topic is clicked within another internal topic. It is in a continous loop in the browser (like it is trying to load).  If you right-click on the topic it displays (we are currently using this as the work-around).  Anyone else having this problem?? I saw something similiar for Windows8/IE10, but the fix does not apply here (http://forums.adobe.com/message/5138909#5138909#5138909).

    Hi,
    I (April) apologize I have been OOO and have not been able to respond to your replies.  
    Let’s start over. 
    We have an issue where help topics do not display when selected in the TOC or when a link to the topic is clicked within another internal topic. It is in a continous loop in the browser (flickering like it is trying to load). If you right-click on the topic it displays (we are currently using this as the work-around).
    We use Windows 7, IE9 and RH10 for all our projects. (Recently upgraded from RH8 to RH10)
    Turns out the problem is not isolated. I have run across it in at least one other project, which leads me to think it also occurs in others.
    "Does this only occur when the help is called from your software? Is it OK if you double click the start page?"
              No. I it ALSO occurs when launched from the start page. 
    Have you tried deleting the CPD file and reopening Rh and the project?
              Yes, without success.
    Are you using any redirects?    
              Per (Adrienne), “I am not using any redirects. I encounter this issue only in IE. If I paste the .htm into a Firefox browser, the help displays as it should.” 
              I will add that the project also displays incorrectly in Google Chrome.
    Thanks  April

  • After Mozilla upgraded (5 I think) my igoogle homepage does not display when I sign in.

    I upgraded to Mozilla 5, (I think, as there does not seem to be any previous versions when I check), now my personalized igoogle homepage does not display when I sign in. I need to go to options then select igoogle. All was well before. How do I reset without having to completely redo my igoogle page. I do not believe I have the 6.0 version as that is what it says I can upgrade to. I am retired and am only learning.

    Unless you have a version of iPhoto that was 9.0 or later you will not be able to download iPhoto 9.6.1 from the App Store.  To get 9.6.1 you'll need to purchase a copy of the iLife 11 disk from an online retailer like Amazon.com and then go the App Store and download 9.6.1.  Those who had an iPhoto 9.0 or later already installed have been able to get 9.6.1.  But there's been no reports from anyone who bought iLife 11 and went that route so you're at your own risk. 

  • Module borders not displaying when using Aggregator

    I am using Captivate 4.  I created a TOC for both modules in a project. Then I created an Aggregator to connect them and display both TOCs.
    The issue I am havving is that the individual modules have borders on all 4 sides, yet they do not display when using the aggregator. How do I correct this?
    Thank you.

    Lenny,
    I apologize for not having an answer to your question, but I'm envious that you've successfully configured mod_jk. I've read several different versions of how to configure this, but nothing has worked so far. I wonder if you could either point me to some correct instructions on how to integrate Apache and Tomcat so I might try to duplicate your success.
    Thanks in advance,
    Vince

Maybe you are looking for