Missing Create, Delte and Open buttons in Portal - RM 3.0

Hi All,
We are currently facing an odd issue in our Risk Management 3.0 frontend system (EP). In several screens u201Ccreateu201D, u201Cdeleteu201D and u201COpenu201D buttons are missing. All missing buttons appear when we click on the refresh button and everything works ok.
The thing is that if we move from one tab or screen to another the buttons are not available again. This may not look as an issue...however in one particular tab (Risk Assestment-->Activity Management) if buttons are not available and one of the displayed items is selected, the following dump is obtained:
Runtime Errors         GETWA_NOT_ASSIGNED
Short text                Field symbol has not yet been assigned.
We've tried in different browsers we have experienced the same. Does anyone face the same issue? Could someone suggest us what to check?
Thanks and regards

Hi Diego,
We have never faced this kind of issue. I think this is an unusual error. My suggestion would be in this case to raise a ticket to SAP. So that the developer can have a look into the application and suggest the needful.
Regards,
Guru

Similar Messages

  • Create Run And Stop Buttons on Front Panel, rather than using the toolbar run/stop

    I would like to make my vi more user friendly by creating start and stop buttons on the front panel. I havent found much info on how to create them. I have created a boolean stop button to stop my FOR LOOP.
    -Chris

    Creating the buttons is easy - just select the style you want from the Boolean palette. What you need to do is change your diagram and the VI properties. To have a VI automatically start running when opened, open VI Properties by selecting that under the File menu or right clicking the VI's icon. Select Execution and check the Run when opened box. If you need the user to enter some data or change parameters before running the program, there's a couple of ways to go about it with a front panel Start button. You could have a separate while loop with just the start button in it and connect an output of that to a main while loop. This creates data flow and ensures that the start while loop executes before the main. You could create a simple state machine. T
    here's a couple of shipping examples. Just open the Example Finder and enter state for the keyword. You could also use the Event structure. Again, there are several shipping examples. Instead of doing a search, you could also browse the Example Finder and look at what's underneath the Building User Interfaces topic.
    p.s. I don't think you created a stop button for a for loop as there is no way to stop a for loop. What you can stop is a while loop.

  • Analyzer API command to disable Navigate and Open button

    Hi,I would like to pass the parameters to Analyzer Java Web Client to disable Navigate and Open button.Is there any posibility in Analyzer API to do this?Thanks,Grofaty

    Hi,My system is:- Essbase 6.5.3- Analyzer 6.1.1

  • Missing maximize, minimize and close buttons

    I see that people have been having problems with these issues before the finalized FF4, I have the most updated version on my PC. The answers all seem to say it was a problem with beta versions. When I stay online for long periods of time my full screen, minimize and close buttons disappear. I have 2 screens and have found that when I pull a tab to the other screen the buttons reappear with that tab. But all the tabs still on previous screens are still missing. If I pull the whole set of tabs (opened together) I still can not get the buttons to reappear. when I am ready to close all the open tabs at once I use task manager and close down FF4. Right now I see my background screen where the button should be.

    Make sure that you do not run Firefox in full screen mode (press F11 or Fn + F11 to toggle; Mac: Command+Shift+F).
    *https://support.mozilla.org/kb/how-to-use-full-screen
    If you are in full screen mode then hover the mouse to the top of the screen to make the Navigation Toolbar and Tab bar appear.<br>Click the Maximize button (top right corner of the Navigation Toolbar) to leave full screen mode or right-click empty space on a toolbar and choose "Exit Full Screen Mode" or press the F11 key.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You can also try a different Windows theme.

  • Is it possible to create run and stop button on the control pannel instead fo using the ones on the tool bar?

    I have created a program which runs to all my specifications. The final thing I'd like to do is to be able to run it from the contrl panel.
    Can i create a run and stop button on the control panel or am i limited to using the little white arrow button on the toolbar?

    When you say Control Panel are you referring to the Front Panel of your VI?  If so then yes you can have the program start automatically upon being opened and close with a button push on the Front Panel.  Let me know if this is what you were looking for.
    CLA, CLED, CTD,CPI, LabVIEW Champion
    Platinum Alliance Partner
    Senior Engineer
    Using LV 2013, 2012
    Don't forget Kudos for Good Answers, and Mark a solution if your problem is solved.

  • How can i create forward and back buttons for a dreamweaver slideshow?

    Hi
    I am an illustrator attempting to create a website in dreamweaver (basically it will be an online portfolio). I would like to have a box/slideshow with images of my work that someone can browse through by clicking 'next' and 'back' buttons. Does anyone know how to do this? I have been trying to find out how to do this for ages - i dont want to use flash if possible as i am worried about making the site too complicated. I know how to make swap image thumbnails, but i think my site would be more user friendly (and look more professional) if i could have next and back buttons. Would this involve complicated css code (which scares the life out of me!) or is there a relatively easy way to do it? I have got two 'dreamweaver for idiots' books, but neither of them cover this topic. Can anyone help?

    If you are using CS4, there is a Command to create a Web Album... this does it automatically for you.
    Otherwise, you can create this manually.  Say you have 3 pages,
    page1.html  (is the index page of the album)
    page2.html
    page3.html
    Therefore, using ordinary text links
    Home would link to page1.html
    Previous would link to page3.html
    Next would link to page2.html
    You would need to make adjustments naturally to each page as you move along with the gallery pages, changing the previous and the next links as needed.  Below is a a basic example of setting up the links in a simple table structure.  You would also then style the table layout as you see fit - yes, using css preferably  :-)
    <table>
    <tr>
    <td><h2>MY GALLERY OF PHOTOS</h2>
    <a href="page3.html">Previous</a> | <a href="index.html">Home</a> | <a href="page2.html">Next</a>
    </td>
    </tr>
    <tr>
    <td>
    <br>
    <a href="../images/img_2401_jpg.jpg"><img src="../images/img_2401_jpg.jpg" border=0></a><br>
    </td>
    </tr>
    </table>
    Here's an article on creating an album using the DW Command I mentioned earlier. You could create the album and then copy and paste the code into a current page if you've already designed on.,... not too difficult, I just tested it.  You do however, need to have Fireworks to process the images.
    http://livedocs.adobe.com/en_US/Dreamweaver/9.0/help.html?content=WSc78c5058ca073340dcda91 10b1f693f21-7ad1.html
    You could also check out the Lightbox effect which is very popular:
    http://www.lokeshdhakar.com/projects/lightbox2/
    Or do a google search for 'jquery'.  There are different album effects using that framework as well.
    Hope some of this helps  :-)
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    Book: Ultimate CSS Reference
    http://www.sitepoint.com/launch/005dfd4/3/133
    http://twitter.com/nadiap

  • How to Deactivate MENU and SYSTEM button in Portal.

    Hello,
    I have created a SAP transaction iView of Y Transaction. Now it showing me all the buttons and Transaction Box on selection screen in EP. My requirement is to have only EXECUTE rest buttons should be hide.
    Some of the buttons I have controlled from ABAP Program.Like SAVE,CANCEL,BACK etc.
    And T-Code Box I have controlled from ICF transaction.
    Follows the route:  sicf->sap->bc->gui->sap->its->webgui->GUI Configuration
    ~WEBGUI                                     1
    ~THEME                                     sl
    ~LOGIN                                                                               
    ~PASSWORD                                                                               
    ~NOHEADEROKCODE     1
    Now Still it showing me MENU,SYSTEM and EXECUTE button.
    I want to hide MENU and SYSTEM.
    Please provide me the solution.Its really very important for me.Helpful answer definely be appreciate!
    Regards,
    Supriya.

    Hi santosh,
    Thanks.
    I have already checked the related note.And I am getting only Execute button when I set the parameter
    ~WEBGUI_SIMPLE_TOOLBAR     32 .It hides other button as well.
    But I have to show another T-Code in EP it should have all the buttons SAVE,CANCEL,BACK etc.
    Therefore in one report I want to show only Execute Button and in another report it should show all the button Except T-Code box.
    I have hide SAVE,CANCEL,BACK button from ABAP program,except Execute Button and T-Code Box from sicf Transaction.
    But shows MENU and SYSTEM button which I want to hide.
    Suggest me.
    Regards,
    Supriya.

  • Has anyone made a custom save and open button yet?

    could you please show me a vi example?
    using labview 6.1
    thx reen

    I am guessing that you want buttons containing graphics such as the open and save buttons in the MS word toolbar.
    Simply use a plain boolean button, customize it (right-click...advanced...customize) and import the desired graphics icon to the true and false states. You can get the graphics by taking a screen capture, then cropping it using a graphics program.
    LabVIEW Champion . Do more with less code and in less time .

  • Missing close, minimize, and maximize buttons

    I'm using OS X 10.7.4 Lion-- and have been unable to add back the minimize and other buttons when on webpages via Safari or in Mail. 
    I've tried rebooting, repair disk permission, but nothing seems to bring it back. 
    I seem to have a totally white screen, whereas I used to be able to see the background and have multiple windows.  I also cannot keep the dock
    visable- need to scroll below it to bring it back.
    And the toolbar stays hidden until I scroll upwards.
    Have googled for solutions, but nothing seems to come out of this that helps.  I can only think that my problems are related, since none of
    these situations used to occur.
    Any thoughts would be greatly appreciated.
    Ted

    I think you've accidently zoomed the screen.  Hold the Control key down and scroll with your mouse or trackpad.
    One direction zooms the other unzooms

  • I must be missing something...is there a video that teaches how to create, save and open a session?

    I just don't seem to get it. Opening an old session seems difficult if you can't remember the specific name. Files in those sessions are not saved it seems unless you save each one individually. (Am I wrong here) Can someone help this early morning radio guy...I must be missing a step but I can't figure it out.
    Ed in Hawaii

    edkanoi wrote:
    Opening an old session seems difficult if you can't remember the specific name.
    I have that problem sometimes, too. Personally I put it down to my age!
    Files in those sessions are not saved it seems unless you save each one individually. (Am I wrong here)
    Audition won't let you close a session with unsaved files without putting up a warning about it - and you get an option to save all of them. By default, files get put in the {session name}_Recorded file with the sesx file (the session information) in the root folder. In there as well you can get Bounced file folders, and also one for mixdowns. When you first create a session, you get to choose the path you use, and everything else just occurs in a structure beneath that, which you can add to if you want. Whenever you need to save things, you get a browse option as well - worth using that first.
    I really don't think it's that difficult, and the new scheme (yes it's not quite like the previous version) seems to work fine. With the best will in the world, Adobe can't compensate for anybody's amnesia though! Since there isn't a particular limit on what name you give your sessions, then the best thing to do if you're likely to forget is to give them longer, more meaningful names - and make sure that the folder they're in has the same name. Also, try to keep a relatively flat folder structure - in other words, don't have them nested several layers deep in a huge tree structure - that never helps.

  • Visual Studio 2013 Missing Design, Source and Split buttons

    Operating system Windows 8.1 preview.
    When editing a HTML file in Visual Studio 2013 Preview or Visual Studio Express 2013 for Web, the Design, Source and Split tabs are missing from the bottom left of the editor even though the "Enable HTML Designer" box is checked in the Options
    drop down. 
    This behavior occurs in the Web install of Visual Studio 2013 Preview and both the Web install and .iso install for Visual Studio Express 2013 Preview for Web. 

    Hi Jack:
    Thank you for your attention to this matter.
    Yes the problem also occurs on a different Windows 8 machine running Visual Studio Express 2013 Preview for Web.
    If I restart the VS IDE and reset the VS with the default settings, and then create a new sample, it DOES NOT WORK as expected. The Design, Source and Split tabs still are missing from the bottom left of the editor even though the "Enable
    HTML Designer" box is checked in the Options drop down.
    Here is an image, with buttons missing, of the lower left corner of the Visual Studio Express 2013 Preview for Web IDE.
    Here is an image, with the buttons as expected, of the lower left corner of the Visual Studio Express 2012 for Web IDE
    To try to repro the issue simply load a HTML file into the IDE of Visual Studio 2013 Professional Preview IDE or  Visual Studio Express 2013 Preview for Web IDE and see if the Design, Source and Split tabs are missing from the bottom left of the editor
    even though the "Enable HTML Designer" box is checked in the Options drop down.
    Robert Wishlaw

  • How to create a custom query button in Portal?

    Hello,
    I have a requirement.
    In the portal form developed on a table, I have a EmpCD field which is a LOV. when I select a empcd from the LOV, I want to display that empcd details like EmpName, EmpDept, etc. Is is possible to auto-refresh the page with this condition?
    Or, if this can be done with a custom button on the form, that is, if a user select the empcd from the LOV and then press this custom button, then on this, it gets the desired values from the underlying tables and displays them as labels on the portal form page.
    Any help would be desirable. I am trying this for the past so many days but without any luck. I tried searching the Forums as well as Metalink but could not get anything.
    Thanks.
    Saabir.

    Hi John,
    You can add a new button from the "Formatting and Validation " section by clicking on the FORM+ at the top of all the table fields.You can not do your own where clause as the query is made which includes all the columns of the form as shown on the form .
    for your own queries what you van do is that you can leave the field blank if you do not want that field to be added in the where clause.If you want to add the field to the where clause you can use operators (against each field in there text boxes) to make your own where clause.More operators support are supported in the
    latest version.
    Hope this give you some Information regarding your doubt.
    rahul

  • Creating headers and footers in the portal

    i had created a simple portal and modified the shell file inside the framework dir, include the path of the header.jsp which is inside the support dir form the shell file.
    But i didnt get the header part when i run the portal
    Why didnt i get the header.jsp include at the top of the portal

    i had created a simple portal and modified the shell file inside the framework dir, include the path of the header.jsp which is inside the support dir form the shell file.
    But i didnt get the header part when i run the portal
    Why didnt i get the header.jsp include at the top of the portal

  • I get error "This operation is not permitted" after creating form and opening it in Reader...

    Hi,
    I am very frustrated with this form I have created.  I created the form in Acrobat 8 but could not get it allow changes to be saved until I chose to "distribute" form.  I did that and now have a form that can be caved once filled out however when you open it you get the error "This operation is not permitted".
    From reading some other posts, I have done the following:
    Checked security settings and they do not fix it.
    Checked that all fields were form fields and they seem to be.
    Checked restrictions listed in purple bar and there were none.
    Checked for "unembedded" fonts and there were none.
    I think using Acrobat 9 might help me but I do not want the expense as I only use Acrobat for forms like this once a year.
    Does anyone know what is going on here and can maybe help?
    Thanks,
    Sean

    I'm having the same problem. Have you already found a solution?

  • Create, save, and open topics

    This question was posted in response to the following article: http://help.adobe.com/en_US/robohelp/robohtml/WS0C797037-A2A7-40ca-81AA-72EC6A560B21.html

    Hi Jeff
    With all the new Community Help and commenting, Adobe found that folks simply weren't using it properly. Most were using the help commenting to ask questions more like forum activity. So they built in a mechanism so that Community Help posts now end up as forum posts too so that folks can end up in the right place.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

Maybe you are looking for

  • Payroll area locked.How to Stop the workflow during this period ?

    Dear experts, In the travel workflows, after all the approvals, there is a standard task(Custom) with a custom method(BUS2089 Enhanced). This method updates the infotype 2002 (Attendances). This works fine for the whole month except during the  payro

  • Need a stop watch to use in Captivate 7.

    https://workspaces.acrobat.com/app.html#d=vtyrbwFWIniJ4b01F2g84A was suggested, but an error message appears when I try to import it into Captivate 7.  Says it's an invalid widget.

  • ALV GRID  and Integrated ITS 7 (SAP GUI for HTML) - dissapears on reload

    Hi All, We have a custom report that uses an ALV grid to display information to the user. Within this grid, there are fields that are display only and fields that are editable. Also, the grid is wider than the screen's width. It works fine in ECC. It

  • Change TS Labview Server from Labview OI?

    I have tried the NI recommended way to select the LabView server programatically from TestStand which works fine e.g.  RunState.Engine.GetAdapterByKeyName("G Flexible VI Adapter").AsLabVIEWAdapter.SetServerInfo(LabVIEWServer_RTEServer, "C:\\Program F

  • Text Pro In the Web UI

    Hi Everyone, I have a requirement where once any text is entered in the Assignment Block-->Note and saved, it should be saved with displaying the log. I have created the Text Pro and assigned it in the Transaction. When I am trying to save the text i