Back button on Web template

Hi All,
I have a web template , which is working fine . There is no option of going back to the previous page on the template and the only way is to click on the back button on the explorer.
The users have requested me to add a back button on the template. I am not an HTML guy, so I want your expertise on the same .
Can someone who has worked on this guide me ?
Thanks

Hi,
I don´t know if there is a way in HTML to return to the previous page. You can do this in Javascript this way
!atras.gif!
atras.gif is the name of the image you'll use as button.
If you prefer HTML the only way I imagine is to make a link with the previous page.
Hope it helps.

Similar Messages

  • When i hit the back button, the web page can not reload ! and this button is disable ! I'm using Ubuntu 10.04 Lucid ! and I've just upgrade to firefox 4 RC. Sorry for my poor English skill !

    When i hit the back button, the web page can not reload ! and this button is disable ! I'm using Ubuntu 10.04 Lucid ! and I've just upgrade to firefox 4 RC. Sorry for my poor English skill !

    In Firefox 23 versions and later the keyword.URL pref is no longer supported and it is no longer possible to specify the search engine for the location bar via the keyword.URL pref.<br />
    The search engine that is used on the location bar and on the about:home page is the search engine that is selected in the search Bar on the Navigation Toolbar.<br />
    Current Firefox versions do not update the about:home home page until you refresh the page (future versions will do this automatically without a refresh) and that is what happens if you use the Back key.
    You can install the Keyword Search extension to specify with search engine to use for the location bar and which search engine to use for the about:home page via the Options/Preferences windows of this extension, accessible via the about:addons page.
    * Keyword Search: https://addons.mozilla.org/firefox/addon/keyword-search/

  • URGENT:  Not seeing the variable Pop-up for Button , on web template in WAD

    Hi gurus,
    In IP I have a standard plan function for 'Copy', which has a few variables defined on the funciton itself (as to be changed):
    Version from:
    Version to:
    Order from:
    Order To:
    Fiscal year from:
    Fiscal year to:
    All of the above variable are created with the following parameters:
    Variable input: Optional (have also tried madantory)
    Ready for input: is flagged.
    Variable represents: Single value.
    No default entry.
    No personalized data.
    Now in WAD, I create a button group for this function by selecting the Command, 'Executing Planning Function (simple)', manually entering my plan function technical name next to 'Command specific parameters', and selecting the dataprovider created for the filter I created in IP, and finally flagging the 'Display variable' button.
    The problem is, on the web template the variable screen does not appear when I click on the function button. It executes the function in the background without giving me the pop-up for variable selection. And obviously since the variables have no default values, nothing is processesed.
    I've tried this with planning sequence instead, and still wont give me the variable pop-up screen..
    I've actually explicitlet entered the variables on the 'Parameters for Command screen', the same screen where you enter the filter for databinding and well as the function.
    It still wont work (no variable pop-up screen).
    Is this issue related to the support pack. We're on SP12 right now?
    If not, do any of you gurus have any ideas? Big points will be rewarded for this.
    Thanks

    In the parameterization of the command, there is an option 'show variable screen'. I am not sure if you have mentioned this clearly, but have you checked this option?

  • Disable button in web template

    Hi,
    I have a requirement wherein i have to execute a process chain through a click of a button in a web template.
    Is there any option to disable the button until the chain gets completed or can we disable the button until further refresh of the template?
    Also can we generate a message that "Data Load is in Progress" until the chain completes and on completion we can give "Load Successful" message?
    Kindly help me with this.
    Best Regards,
    Prateek

    Got it!!!

  • Clicking on the Back button in web browser does not take you back properly

    When using Info View and drilling down through reports (using the InfoView Portal in the "View my documents" settings of User Preferences), if you have drilled down through several reports and then want to go back to the page you were viewing before you drilled down one more layer using the browsers BACK button takes you back a random number of pages - NOT back one page.
    Is there a fix or workaround for this?
    Thanks

    >
    Tim Simon wrote:
    > Which type of report is this? A Crystal Report (not sure what your question means)
    >
    There are some big differences if using say a webi report.
    I just tested on XIR2 SP4 and back forward worked fine with CR drilldown, using the sample reports.
    Could be a report design issue or something wrong with your deployment, maybe even a browser setting (not sure as I don't work reporting issues too often).
    You can wait to see if someone else has run into this or open a message with support to have an engineer take a look.
    Regards,
    Tim

  • Delete button in Web template

    Hi ,
         We have a requirement to delete the saved data in Web template, we want the saved data to be deleted. Can somebody help me to with the java script . The reset button or any other given functions are not helpful.
    Thanks in advance

    Hi Rakshita,
    Wat Deepti says is correct. But one more point is that you need to dynamically bind the web item selection to a filter so that Delete function can delete that row alone.
    Otherwise all your data in the web template will be deleted.
    Regards,
    Mint.

  • Can't navigate using back button from web gallery linked to iweb page

    I have a web gallery that I enabled as a hyperlink to my iweb site. When I go to the gallery from a web page, I don't have any problem navigating to the gallery to view photos, but I am unable to navigate back to the web page using the "back" button. Instead I have to relaunch my web page in Safari; otherwise I would be "stuck" on the gallery unable to navigate to other web pages.
    Does anyone know how to fix this problem?

    Load the gallery in your browser and copy the URL.
    Create a text or image link and in the "Link" inspector select it as an eternal link.
    Paste the gallery URL into the box and check "Open link in new window".
    This way, the gallery window can be opened and closed but your original webpage will remain.

  • How to work with Back Button of Web Browser for Flex Application

    Hi...........
    I am developing a Web Site for that I have created 10 MXML Components for 10 links I am using ViewStack in Home Page and I added the 10 components to this ViewStack and I am using 10 links for 10 Components
    My problem is that When I am going through links it's fine but in my Web Browser I am not getting Back Button enabled for previous page to go
    Please help me.............................. 

    Hi,
    Here a Flex3 example:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
         layout="absolute"
         creationComplete="initApp()">
         <mx:Script>
              <![CDATA[
                   import mx.events.BrowserChangeEvent;
                   import mx.managers.IBrowserManager;
                   import mx.managers.BrowserManager;
                   import mx.utils.URLUtil;
                   public var browserManager:IBrowserManager;
                   private function initApp():void {
                        browserManager = BrowserManager.getInstance();
                        browserManager.addEventListener(BrowserChangeEvent.BROWSER_URL_CHANGE, parseURL);
                        browserManager.init("", "Shipping");
                   private var parsing:Boolean = false;
                   private function parseURL(event:Event):void {
                        parsing = true;
                        var o:Object = URLUtil.stringToObject(browserManager.fragment);
                        if (o.view == undefined)
                             o.view = 0;
                        tn.selectedIndex = o.view;
                        browserManager.setTitle((tn.selectedIndex == 0) ? "Shipping" : "Receiving");
                        tn.validateNow();
                        var details:Boolean = o.details == true;
                        if (tn.selectedIndex == 0)
                             shipDetails.selected = details;
                        else
                             recvDetails.selected = details;
                        parsing = false;       
                   private function updateURL():void {
                        if (!parsing)
                             callLater(actuallyUpdateURL);
                   private function actuallyUpdateURL():void {
                        var o:Object = {};
                        var t:String = "";
                        if (tn.selectedIndex == 1) {
                             t = "Receiving";
                             o.view = tn.selectedIndex;
                             if (recvDetails.selected)
                                  o.details = true;
                        } else {
                             t = "Shipping";
                             o.view = tn.selectedIndex;
                             if (shipDetails.selected)
                                  o.details = true;
                        var s:String = URLUtil.objectToString(o);
                        browserManager.setFragment(s);
                        browserManager.setTitle(t);
              ]]>
         </mx:Script>
         <mx:TabNavigator id="tn" change="updateURL()" width="300">
              <mx:Panel label="Shipping">
                   <mx:CheckBox id="shipDetails" label="Show Details" change="updateURL()" />
              </mx:Panel>
              <mx:Panel label="Receiving">
                   <mx:CheckBox id="recvDetails" label="Show Details" change="updateURL()" />
              </mx:Panel>
         </mx:TabNavigator>
    </mx:Application>

  • Regarding "My Porfolio" option from Open-Button in Web Template

    Hello,
    I have added an OPEN-Button (using LOAD-Command) in the web-template, "Layout of the Open- Save Dialog" as "Display only Template Persistency Options". Currently, the user is able to see "Favourites/BeX Portfolio/My Portfolio".
    I want to remove the "My Portfolio" option after user clicks on "Open" button.
    Please advise.
    Thanks,
    SC

    Hi,
    At the moment it is not possible to disable or restrict access to these options. SAP hope to Develope this functionality in the future.
    Technical Reason:
    =================
    The dialog in which you can see tabs including 'InfoArea' is called as a
    Open/Save dialog.
    This Open/Save dialog framework is implemented in two different ways,
    one in ABAP(Rendered using .NET) and the other in JAVA.
    The authorization object you are referring S_RS_FOLD and the relevant
    setting(s) SUP_FOLDER to are evaluated in ABAP(Rendered using .NET) and
    its been applied. But the Open/Save dialog framework in JAVA is
    completely different.
    Here there is no support to evaluate authorization objects as the
    rendering is completely dealt with unified rendering framework. So, in
    java web this is not available but only in ABAP.
    I hope you have understood the fact that JAVA Open/Save dialog framework
    implementation doesn't support the feature of hiding the tabs in java
    web.
    If you want please raise the development request as per the SAP note: 11.
    Regards,
    Venkat

  • Notes Button on Web Template & Authorisation

    The standard web template has a 'notes' button where the user can create note documents.  This looks very useful but these notes can also be deleted. Do you know if this functionality can be restricted in authorisation eg: prevent deletion of an existing note??
    Thanks

    Hi,
    I don´t know if there is a way in HTML to return to the previous page. You can do this in Javascript this way
    !atras.gif!
    atras.gif is the name of the image you'll use as button.
    If you prefer HTML the only way I imagine is to make a link with the previous page.
    Hope it helps.

  • Creation of a "print all" button in web template

    Good afternoon!  I have two reports created in the WAD that use hierarchies.  You have the ability for run the report for whichever entity you select from a hierarchy and you can print that report.  End users are asking for the ability to click on a button that will print the report for each entity in the hierarchy in one click.  Has anyone had success with this "print all" button?
    Thanks
    Kim Plut

    Hi Kim,
    you can use command for expand/collapse hierarchy nodes "SET_DRILL_STATE" for your DataProvider together with the print command "EXPORT". For a button group webitem you can build a command sequence in WAD.
    SET_DRILL_STATE
    http://help.sap.com/saphelp_nw04s/helpdata/en/44/7b5f0a95ce12d0e10000000a422035/frameset.htm
    Export Web Application
    http://help.sap.com/saphelp_nw04s/helpdata/en/44/85de4943af5919e10000000a1553f7/frameset.htm
    Regards
    Andreas

  • Missing 'open view' functionality in 0ADHOC_TABLE (0ADHOC),  web template

    Hi - it appears that the 'open view' functionality is missing as button in web template 0ADHOC_TABLE (0ADHOC), despite there is 'safe view' functionality (button).
    Did someone add this button/functionality to 0ADHOC_TABLE?
    What is the correct Javascript coding as we already tried to incorporate the 'open view' Javascript from template 0ANALYZER what does not work in this matter!
    Thx for any hint!
    Rgrds,
    Markus
    Message was edited by: markus hoerr
    Message was edited by: markus hoerr

    Hi,
    as described in the documentation you have to add first HELP_SERVICE and HELP_SERVICE_CLASS to your Web Item
    http://help.sap.com/saphelp_nw04/helpdata/en/53/295640a2f78437e10000000a155106/frameset.htm
    This is done in Template 0ANALYZER with the TITLE Web Item. Just copy those 2 parameters from 0ANALYZER to 0ADHOC Template, then it should work.
    Heike

  • Safari back button

    Don't seem to have a back button on web pages. Any ideas?

    Click "View" menu in the Safari menu bar and choose "Customize Toolbar.
    Drag the "Back/Forward" button from the sheet that drops down  to the Toolbar and then click "Done".

  • JavaScript in a Web template to hide or show a button

    Hi all,
    i got this task:
    i created a web template (Button Panel) with many buttons, behind each button there is another web template with its query, this second web template has a button to get back to the panel button,now, the user asked me the task of, when a user start from the panel button to another reports, show the button to return to the panel button,
    if the user start the second report from a link of the portal for example (this time the user doesnt start from the panel button) , the button to return to the panel button must be hide.
    i was studing this case, and the form is trough Cookies,  for example:
    if i start from the panel button, it must create a cookie A for example, when i click in some button, this other report must be read the cookie , if this is A , show the button to return to the panel, if not, so hide the button,
    soem of you have create something like this? some advices? another way? please help

    X

  • How do you use forward and back button on mouse and use "zoom" in web browser.

    Ok so apparently this forum is ruled with an iron fist or something my very honest and truthful problems with these issues seem to have been instantly deleted in my last discussion?
    I'll try this once more.
    1) How do you use the forward and back button on a mouse without having to buy a product like Steer Mouse? There must be a way to do this without having to buy a program given it's such a useful feature that 99% of users need. I don't want to spend hours researching something that should already work. Any advice?
    2) How do you zoom in for web browsers like Chrome without it globally zooming in everything on the monitor (even background applications). I don't want to zoom in background applications. I want to be able to zoom in the web browser and still maintain all the features like the side bar, not just a little magnifying glass type thing.
    I'm currently zooming in with the CTRL-Middle Mouse button, but I can't find a way to use this feature so it's useful to browse the web it seems to not scale the browser correctly but rather is a global zoom. Any solution for this?

    Thanks so much!
    Like I said I am new to Apple products so it's still unclear to me which programs I do or don't need as I'm setting up and configuring all my software and devices.
    The Logitech Control Center appears to work perfectly for what I was trying to do!
    I accidently clicked "This helped me" instead of "This Solved My Question", sorry about that this was a solve!

Maybe you are looking for