UWL: Jump another role when clicking in a WI (Task)

HI Experts!
I tell them that I've have a problem when working with the UWL for SAP Enterprise Portal modules and SRM7.0 7.13.
The stage on which I locate the problem is this, we have created many custom roles portal with many features (standard and own client) and much of this role have the workset that brings SRM7.0 Portal installation to the UWL to display tasks that contains the user for management.
In this work, we find WI order approval standards, for example, which the user uses it daily and that when run, will open a document approver display mode (managed by the FPM and some dynamic parameters in the call). Inside the application for approval of orders, we have included a LINK to an custom application which we call clicking through on relative navigation (Path IVIEW), including the folder navigation role, the IVIEW Luncher for custom application.
Now comes the problem, the situation is that when you click the LINK application does not run giving an error in JAVASCRIPT. After analysis, we found that, at the time of the click, the WI (on tasks in UWL) the IVIEW on approval so that it runs is not relevant to the role from which you accessed the UWL, but has made a jump to a standard role. I mean, being in the role A (which is a custom role), for example, when you click on the task in the UWL, the system searches the IVIEW to execute that task in another role (role B - Standard Role) . Then the problem is that the navigation then run on the PCD_LOCATION corresponds to the standard role where not, the folder navigation, the IVIEW custom application and enforcement of this fails it.
We have reviewed all, SRM configurations for execution of tasks, XML configuration, configuration Roles, etc, but were unable to determine where and why you are running this jump in the role system.
What has happened to anyone?, Will created the wrong of the UWL IVIEW associated with the custom role?, Do these calls can be parameterized anywhere? This is happening to us in all systems and do not know why that is.
we really appreciate all the help we can provide
SP levels of the portal are the following;
Portal Version: 7.30 SP10
VM Java Version: 1.6.0_33
VM Runtime Version: 6.1.043 21.1-b02
Kernel Version: 7.30.3301.348013.20130703150204
At your disposal,
Best Regards,

Hi all
I am also facing a similar problem while implementing a dialog which needs to be shared by two pages. I am also implementing it the way described in the case that does not work. i.e. dialog is in the jsff of child taskflow. I am encountering the issues described here. Is there some solution to this problem?
Is there any other way also to implement a shared UI dialog?
Thanks
Arun

Similar Messages

  • How to switch to another page when clicking a button

    I have a main frame consits of many button.What I need to do when click
    a button,it switch to another page?
    Thanx....

    Try this, it should work.
    // not tested
    JButton linkButton = new JButton("<html><a href=\"http://forum.java.sun.com\">link to<br>forum</a></html>");

  • Page jumps to top when click on link

    Hello everyone!!
    I remember seeing a behavior for dreamweaver 8 that stops
    page jump. I have picture links on my pages that bring up a 600pix
    X 600pix picture and when it does, the page that you are curently
    on jumps to the top. This makes it anoying because you have to
    scroll back down to where you were. Can someone tell me what tis
    behavior is or give me a link? Thanks!!!

    Chad Z wrote:
    > I would rather use a behavior because this is my first
    website and I
    > dont really know code. I have no clue where to place the
    code? and
    > would I do this on the page itself or what? Thanks!!!
    Look at your link, you should have something like:
    <a href="#" onclick="somefunction(stuff here,and here too
    may be)">Your link
    text</a>
    As Murray said you need to include a "return false" statement
    in there, but
    the way he wrote it may confuse you. You don't put it within
    the "href"
    value itself but with *onclick*.
    Like this:
    <a href="#" onclick="somefunction(stuff here,and here may
    be);return
    false">Your link text</a>
    You may want to read the first paragraphs of this article:
    http://www.tjkdesign.com/articles/popup_window_with_no_extra_markup.asp
    It talks about the use of "null links".
    Thierry
    Articles and Tutorials:
    http://www.TJKDesign.com/go/?0
    The perfect FAQ page:
    http://www.TJKDesign.com/go/?9
    CSS-P Templates:
    http://www.TJKDesign.com/go/?1
    CSS Tab Menu:
    http://www.TJKDesign.com/go/?3

  • How to jump to dir when clicking .lnk in JFileChooser?

    this java program cant do that,
    who can help me to improve this code;
    import javax.swing.*;
    import java.awt.Container;
    import java.awt.FlowLayout;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import java.io.File;
    public class TestFileChooser extends JFrame{
        private JLabel pathLabel=new JLabel("path:");
        private JTextField pathTextField=new JTextField(20);
        private JButton browserButton=new JButton("browser");
        private JButton quitButton=new JButton("quit");
        private JFileChooser c=new JFileChooser();
        private TestFileChooser(){
            pathTextField.setEditable(false);
            Container cp=getContentPane();
            cp.setLayout(new FlowLayout());
            cp.add(pathLabel);
            cp.add(pathTextField);
            cp.add(browserButton);
            cp.add(quitButton);
            browserButton.addActionListener(new ActionListener(){
                public void actionPerformed(ActionEvent e){
                    int rVal=c.showOpenDialog(TestFileChooser.this);
                    if(rVal==JFileChooser.APPROVE_OPTION){
                        File filePath=c.getSelectedFile();
                        pathTextField.setText(filePath.getAbsolutePath());
            quitButton.addActionListener(new ActionListener(){
                public void actionPerformed(ActionEvent e){
                    System.exit(0);
            pack();
            setVisible(true);
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        public static void main(String[] args){
            new TestFileChooser();
    }

    Subclass FileChooser and overwrite the setCurrentDirectory method with:
    public void setCurrentDirectory(File dir)
    File f = new File(".lnk");
    ShellFolder folder = ShellFolder.getShellFolder(f);
    if(folder.isLink())
    dir = folder,getLinkLocation();
    super.setCurrentDirectory(dir);
    ShellFolder is not part of the public API, it can be found in the sun.awt.shell package, this class is availible in the Sun VMs and also the one from IBM (atleast the last time I checked it), other VMs may not have the class.

  • Making a button open up another JFrame when clicked? [NetBeans]

    Im having trouble with this.. Im using NetBeans.

    sorry about being snarky, but if the op wants a helpful answer, then s/he needs to ask a helpful question. Just saying "I'm having trouble with this" tells us nothing. To the OP if still out there:
    1) Describe your problem. Be as specific and precise as possible.
    2) Show code that you have tried and describe what doesn't work and where. If you get error codes, post the entire stack trace (but read it carefully first -- your answer is often found there).
    3) Put as much care and dilligence in asking your question as you'd like someone to use in answering it.
    Good luck.
    /Pete

  • Jump to another page by clicking on the inputtext

    i want tojump to another page by clicking on the inputtext.bu because i've made the tree's edit mode to "clicktoedit".
    so, i mean when i single click on the inputtext to jump,and double click on it to edit its value.
    here is the tree:
    <af:tree value="#{favoriteTreeMB.treeModel}" var="node"
    rowSelection="single" id="pt_t1" contextMenuSelect="true"
    editingMode="clickToEdit"
    binding="#{favoriteTreeMB.favoriteTree}"
    partialTriggers="deleteContextMenu">
    <f:facet name="nodeStamp">
    <af:group>
    <af:inputText value="#{node.attributes['name']}" autoSubmit="true"
    valueChangeListener="#{favoriteTreeMB.renameTreeNode}">
    <af:showPopupBehavior popupId="popupMenu"
    triggerType="contextMenu"/>
    </af:inputText>
    </af:group>
    </f:facet>
    </af:tree>

    the question is :
    how to implement when i single click on the inputtext to jump another page? the var node has a attribute :link.this is the attribute i will use to jump
    Edited by: Danny Zhou on 2009-12-9 上午12:25

  • I successfully transferred my itunes to another PC, when I click on most (not all) songs, it tells me to authorize the computer, I authorize it, it says this computer is already authorized, but when i click on a song, it tells me to authorize again. help

    I successfully transferred my itunes to another PC, when I click on most (not all) songs, it tells me to authorize the computer, I authorize it, it says this computer is already authorized, but when i click on a song, it tells me to authorize again. help

    Are the songs authorised to the same account? 
    Often people change their e-mail address over time, and also decide to set up new iTunes account names using that e-mail.  You can (and should) continue to use an old e-mail address as your account name.  Then you don't run into the issue of having different songs authorised to different accounts.
    To check the authorised account for the song, click "Get info" on the song name in iTunes.  It will show the account name in the Summary panel.
    If you have set up multiple accounts, log into each one, and burn the songs to CD as audio tracks (i.e. like a normal CD, not a data CD).  You can then re-import the files into iTunes without the authorisation embedded into the song.

  • Firefox is not letting me open another tab when I click the 'new tab' button. It says 'done' in the corner, but never opens a new tab.

    Firefox is not letting me open another tab when I click the button or the 'new tab' in file. I have restarted my computer, installed an update, and I still have the same problem browsing.

    In past threads, this problem has been linked with the Ask toolbar.
    [http://support.mozilla.com/en-US/questions/784371 I can't open a new tab anymore; what happened? | Firefox Support Forum | Firefox Help]
    [http://support.mozilla.com/en-US/questions/788008 New tab button does not work, nor does "Open New Tab" toolbar icon. | Firefox Support Forum | Firefox Help]
    And several users mentioned a link between Foxit Reader and Ask toolbar:
    [http://support.mozilla.com/en-US/questions/786427 "Open a new tab" is not working in Firefox 3.6.13 on WindowXP NT | Firefox Support Forum | Firefox Help]
    [http://support.mozilla.com/en-US/questions/794912 I can't open a new tab | Firefox Support Forum | Firefox Help]

  • When clicked on an icon in the infopath form, it will open another infopath form from another file. How do?

    When clicked on an icon in the infopath 2013 form, it will open another infopath 2013 form from another
    file. How do?

    Hello Eugene Astafiev!
    I need the following scenario: 
    I have a Sharepoint library with items created by Infopath (form A). 
    I developed another form (form B) that will query items created by form A. 
    The form B will be in a static "webpart" page navigation (Sharepoint). One of these fields returned by the query library that manages the items created is the URL responsible to load the item data . I would like to parameterize the URL into form B.
    So that when the user clicks on it, the form A with their respective data in a modal is returned (which may be a native modal Sharepoint)

  • When I launch Firefox 4.0.1 I get an error message that says "We noticed your may have signed inor signed out in another window. Click Ok to reload your page." I have to sign in with my username and password. Richard

    When I launch Firefox 4.0.1 I get an error message that says "We noticed your may have signed inor signed out in another window. Click Ok to reload your page." I deleted Firefox and reloaded it - did not solve the problem. This started occurring after I downloaded Windows Service Pack 2. I have Vista 7 OS. So every time I close and relaunch Firefox, I have to sign in with my username and password. Very very, annoying. If I can't get this corrected, I have to start using another Browser. Thanks for your help. Richard

    It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    * http://kb.mozillazine.org/sessionstore.js
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.<br />
    Deleting sessionstore.js will cause App Tabs and Tab Groups to get lost, so you will have to create them again (make a note).
    See:
    * http://kb.mozillazine.org/Session_Restore

  • Error encountered when clicking on the UWL

    Hi,
    I have this exception when selecting on the pending task in the UWL where it accompany with PAGE_NOT_FOUND.
    Any idea how to resolve?
    Error looking up url: portal_content/com.sap.pct/platform_add_ons/com.sap.caf.eu.gp.folders.gp/com.sap.caf.eu.gp.roles.runtime/com.sap.caf.eu.gp.worksets.runtime/com.sap.caf.eu.gp.pages.procinstance
    [EXCEPTION]
    javax.naming.NameNotFoundException: [Xfs] Object not found: com.sap.caf.eu.gp.worksets.runtime/com.sap.caf.eu.gp.pages.procinstance at portal_content/com.sap.pct/platform_add_ons/com.sap.caf.eu.gp.folders.gp/com.sap.caf.eu.gp.roles.runtime/com.sap.caf.eu.gp.worksets.runtime [Root exception is javax.naming.NamingException: [Xfs] Object not found: com.sap.caf.eu.gp.worksets.runtime/com.sap.caf.eu.gp.pages.procinstance at portal_content/com.sap.pct/platform_add_ons/com.sap.caf.eu.gp.folders.gp/com.sap.caf.eu.gp.roles.runtime/com.sap.caf.eu.gp.worksets.runtime]
    at com.sapportals.portal.pcd.gl.PcdPersContext.filteredLookup(PcdPersContext.java:555)
    at com.sapportals.portal.pcd.gl.PcdPersContext.deepFilteredLookup(PcdPersContext.java:467)
    at com.sapportals.portal.pcd.gl.PcdFilterContext.filterLookup(PcdFilterContext.java:480)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.recursiveLookup(PcdProxyContext.java:1503)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookupLink(PcdProxyContext.java:1579)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookup(PcdProxyContext.java:1523)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.java:1321)
    at com.sapportals.portal.pcd.gl.PcdGlContext.lookup(PcdGlContext.java:71)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.java:1314)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.java:1307)
    at javax.naming.InitialContext.lookup(InitialContext.java:351)
    at javax.naming.InitialContext.lookup(InitialContext.java:351)
    at com.sapportals.portal.pcd.pcm.roles.RoleNavigationConnector.getNodes(RoleNavigationConnector.java:463)
    at com.sapportals.portal.pcd.pcm.roles.RoleNavigationConnector.getNode(RoleNavigationConnector.java:337)
    at com.sapportals.portal.navigation.cache.connector.CacheNavigationConnector.getOriginalNode(CacheNavigationConnector.java:905)
    at com.sapportals.portal.navigation.cache.connector.CacheNavigationConnector.getNode(CacheNavigationConnector.java:777)
    at com.sapportals.portal.navigation.NavigationService.getNavNode(NavigationService.java:1591)
    at com.sapportals.portal.navigation.NavigationService.getNode(NavigationService.java:615)
    at com.sapportals.portal.navigation.NavigationEventsHelperService.getCurrentNavNode(NavigationEventsHelperService.java:443)
    at com.sapportals.portal.navigation.NavigationEventsHelperService.getCurrentLaunchNavNode(NavigationEventsHelperService.java:483)
    at com.sapportals.portal.navigation.NavigationEventsHelperService.getCurrentLaunchNavNode(NavigationEventsHelperService.java:471)
    at com.sapportals.portal.navigation.workAreaiView.doContent(workAreaiView.java:125)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:200)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sap.portal.prt.core.RequestDispatcherFactory$PortalComponentRequestDispatcher$5.service(RequestDispatcherFactory.java:308)
    at com.sap.engine.services.servlets_jsp.server.deploy.impl.module.IRequestDispatcherImpl.dispatch(IRequestDispatcherImpl.java:93)
    at com.sap.portal.prt.core.RequestDispatcherFactory$PortalComponentRequestDispatcher.service(RequestDispatcherFactory.java:298)
    at com.sap.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:278)
    at com.sap.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:115)
    at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable$1DoDispatchRequest.run(AsyncIncludeRunnable.java:359)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable.run(AsyncIncludeRunnable.java:372)
    at com.sapportals.portal.prt.core.async.ThreadContextRunnable.run(ThreadContextRunnable.java:176)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:729)
    at java.lang.Thread.run(Thread.java:606)
    Caused by: javax.naming.NamingException: [Xfs] Object not found: com.sap.caf.eu.gp.worksets.runtime/com.sap.caf.eu.gp.pages.procinstance at portal_content/com.sap.pct/platform_add_ons/com.sap.caf.eu.gp.folders.gp/com.sap.caf.eu.gp.roles.runtime/com.sap.caf.eu.gp.worksets.runtime
    at com.sapportals.portal.pcd.gl.xfs.BasicContext.lookup(BasicContext.java:1346)
    at com.sapportals.portal.pcd.gl.PcdPersContext.lookup(PcdPersContext.java:788)
    at com.sapportals.portal.pcd.gl.PcdPersContext.filteredLookup(PcdPersContext.java:547)

    Hi,
    Check this thread:
    Page_Not_Found error encounter in GP Runtime
    Reward points if it's helpful.

  • (When I launch Firefox 4.0.1 I get an error message that says "We noticed your may have signed inor signed out in another window. Click Ok to reload your page." Richard)

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [/questions/830592]</blockquote><br>
    (When I launch Firefox 4.0.1 I get an error message that says "We noticed your may have signed inor signed out in another window. Click Ok to reload your page." I deleted Firefox and reloaded it - did not solve the problem. This started occurring after I downloaded Windows Service Pack 2. I have Vista 7 OS. So every time I close and relaunch Firefox, I have to sign in with my username and password. Very very, annoying. If I can't get this corrected, I have to start using another Browser. Thanks for your help. Richard)

    It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    * http://kb.mozillazine.org/sessionstore.js
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.<br />
    Deleting sessionstore.js will cause App Tabs and Tab Groups to get lost, so you will have to create them again (make a note).
    See:
    * http://kb.mozillazine.org/Session_Restore

  • How to hide a TextField when clicking another button

    Hello!
    I've been able to generate a TextField to appear when clicking a button, but when I click on another button, to display some more information, I still have the first TextField displayed.  I've had a look around, but not been able to find anything to help me with getting the first to disappear.  Can anyone provide any ideas for this?
    The code I'm using for displaying the TextField is:
    button10.addEventListener(MouseEvent.CLICK, fl_ClickToPosition);
    var fl_TF:TextField;
    var fl_TextToDisplay:String = "Send disply to the right screen/projector";
    function fl_ClickToPosition(event:MouseEvent):void
    fl_TF = new TextField();
    fl_TF.autoSize = TextFieldAutoSize.LEFT;
    fl_TF.background = true;
    fl_TF.border = true;
    fl_TF.x = 300;
    fl_TF.y = 100;
    fl_TF.text = fl_TextToDisplay;
    addChild(fl_TF);
    Many thanks in advance

    all your buttons should call the same function. 
    because each button probably triggers different text to be displayed, you can use an object or dictionary to associate the buttons and their text:
    // execute these two lines and your function once at the start of your app
    var dictionary:Dictionary=new Dictionary(true);
    var fl_TF:TextField;
    function fl_ClickToPosition(event:MouseEvent):void
    if(fl_TF&&fl_TF.parent){  /
    fl_TF.parent.removeChild(fl_TF);
    fl_TF=null
    fl_TF = new TextField();
    fl_TF.autoSize = TextFieldAutoSize.LEFT;
    fl_TF.background = true;
    fl_TF.border = true;
    fl_TF.x = 300;
    fl_TF.y = 100;
    fl_TF.text = dictionary[e.currentTarget];
    addChild(fl_TF);
    ////////// and for each button use something like:
    button10.addEventListener(MouseEvent.CLICK, fl_ClickToPosition);
    dictionary[button10] = "Send disply to the right screen/projector";

  • Dialog box with one button, when clicked will launch another script

    How do I create a button inside a dialog box, which, when clicked, will open up another script?

    ]I've typed
    set myDialog to display dialog "Finished?" buttons {"Shutdown", "Screensaver"}
    if button returned of myDialog is "Screensaver" then
    run script ("Macintosh HD:Users:Seb:Applescript:ScreenSaver.scpt" as alias)
    if button returned of myDialog is "Shutdown" then++
    run script ("Macintosh HD:Users:Seb:Applescript:Shutdown.scpt" as alias)
    end if
    but it gives me an error and says "Expected end of line, etc. but found end of script."

  • Error when clicked on "Existing roles/groups" button in CUP

    Can you guys please help in resolving the following issues I am facing currently.
    CUP reports an error saying " Action failed" when clicked on  "Existing Roles/Groups" button in CUP request form.
    Below is the log
    2010-03-25 10:21:16,762 [SAPEngine_Application_Thread[impl:3]_2] ERROR com.sap.mw.jco.JCO$Exception: (127) JCO_ERROR_FIELD_NOT_FOUND: Field EXP_ROLES_FLAG not a member of INPUT
    com.sap.mw.jco.JCO$Exception: (127) JCO_ERROR_FIELD_NOT_FOUND: Field EXP_ROLES_FLAG not a member of INPUT
         at com.sap.mw.jco.JCO$MetaData.indexOf(JCO.java:9566)
         at com.sap.mw.jco.JCO$Record.setValue(JCO.java:14956)
         at com.virsa.ae.service.sap.RoleProfileDAO.findRoleProfByUser(RoleProfileDAO.java:110)
         at com.virsa.ae.search.bo.SearchRolesBO.searchExistingRoles(SearchRolesBO.java:580)
         at com.virsa.ae.search.actions.SearchRolesAction.loadExistingRolesHandler(SearchRolesAction.java:1610)
         at com.virsa.ae.search.actions.SearchRolesAction.execute(SearchRolesAction.java:372)
         at com.virsa.ae.commons.utils.framework.NavigationEngine.execute(NavigationEngine.java:295)
         at com.virsa.ae.commons.utils.framework.servlet.AEFrameworkServlet.service(AEFrameworkServlet.java:431)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:321)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:377)
         at com.virsa.ae.commons.utils.framework.servlet.AEFrameworkServlet.service(AEFrameworkServlet.java:461)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)

    Hi Anand,
    "Action Failed" error for "Exisitng Roles/Groups" comes up when Support Pack level of frontend(JAVA) and backend(ABAP) RTA are not synchronized. It happens mostly with HR RTA.
    Please follow the SAP Note below to make sure your SP's are in Sync.
    Note 1352498 - Support Pack Numbering - GRC Access Control
    Best Regards,
    Sirish Gullapalli.

Maybe you are looking for

  • Is the Automate/Web Photo Gallery function gone from CS5?

    I am currently operating a trial download of Photoshop CS5. I was surprised to see the "File > Automate > Web Photo Gallery" function missing from Photoshop CS5. Is that true, or has it been moved to another location?

  • Error itms-6000 using Producer.

    I'm trying submit an ebook to iTunes Producer and I'm getting the error message ITMS-6000. Anyone know how to fix it or what it is? Thanks, Mark

  • Need Better Profiles for HP B9180

    Hi all, Like others, I find that my HP Photosmart Pro B9180 produces prints that are 20-30% darker than the image on my calibrated monitor. I am running CS3 on my Mac OSX Leopard system. I am trying to print on HP's Advanced Photo Glossy paper. My co

  • OOPs concept in SAP 4.6C

    Hi all, Does SAP 4.6c version has OOPs concept? If not from which version, OOPs concept started in SAP. Thanks in advance Edited by: abap on Feb 16, 2009 2:27 PM

  • My Aspire 7750G does not show the login screen after upgrade to Windows 10

    I have upgraded to Windows 10 on my 7750G and the update went thru smooth.But when I restart Windows it shows the windows screen with the moving dotted circle,the harddisk led stays on for a while, then starts flickering, and a blank screen is shown!