Adding button functionality

I want to add a simple button to a really basic html page with nothing but that button.
When the button is clicked it should open up my form in a suitably sized popup window.
Heres the form:
<html>
<head><title>Please enter search criteria</title>
<script type="text/javascript">
<!--
// Form Validation
function validateForm(fObj)
     alert("validating");
     var err = "";
     if(fObj["title"].value == ""){
          err += "- title\n";
     if(fObj["description"].value == ""){
          err +="- description\n";
     if(fObj["location"].value == ""){
          err +="- location\n";
     if(fObj["weather"].value == ""){
          err +="- weather\n";
     if(fObj["mood"].value == ""){
          err +="- mood\n";
     if(fObj["date"].value == ""){
          err +="- Date\n";
     if(fObj["time"].value == ""){
          err +="- time\n";
     if(err != ""){
          alert("The following fields contain errors, or are incomplete:\n\n"+ err);
               return false;
     return true;
function getSelectValue(selObject){
    return selObject.options[selObject.selectedIndex].value;
function hasSelection(strField){
  return strField.selectedIndex > 0;
function isChecked(strField){
if (!strField.length) return strField.checked; // not a group
for(var i = 0; i < strField.length; i++){
      if(strField.checked) return true; // yes one was ticked
return false;
function compareFields(strValue,strValue2){
return strValue == strValue2;
// -->
</script>
<link rel="stylesheet" href="styles.css" type="text/css">
</head>
<body>
<FORM action=" AddMovieProfile.jsp" method="post" onsubmit="return validateForm(this)">
<table width="240" border="0" cellpadding="5" cellspacing="0" background="backdrop.jpg">
<tr>
<td>
<br>
<table width="94%" border="0" cellpadding="0" cellspacing="2" align="center">
<tr><td colspan="2" height="20" align="center"><font size="3" color="#0000aa"><b>Enter Search Criteria</b></font></td></tr>
<tr><td>
</td></tr></table>
<br>
<table width="100%" border="0" cellpadding="0" cellspacing="2" align="center">
<tr><td><b>Title:</b></td><td align="center"> <input TYPE="text" NAME="title" size="20" maxlength="50"></td></tr>
<tr><td><b>Description:</b></td><td align="center"> <input TYPE="text" NAME="description" size="20" maxlength="50"></td></tr>
<tr><td width="100"><b>Location: </b> </td><td align="center"><input TYPE="text" NAME="location" size="20" maxlength="50">
</td></tr>
<tr>
<td><b>Weather: </b> </td><td align="center"> <input TYPE="text" NAME="weather" size="20" maxlength="20" class="input"></td></tr>
<tr>
<td><b>Mood: </b> </td><td align="center"> <input TYPE =" text" NAME="mood" size="20" maxlength="20"></td></tr>
<tr>
<td><b>Date: </b> </td><td align="center"> <input TYPE =" text" NAME="date" size="20" maxlength="20"></td></tr>
<tr>
<td><b>Time: </b> </td><td align="center"> <input TYPE =" text" NAME="time" size="20" maxlength="10"></td></tr>
</td></tr>
<tr valign="middle"><td width="50%"><b>InOut:</b></td><td width="50%"><SELECT NAME="inout">
<OPTION SELECTED> Indoors
<OPTION> Outdoors
<OPTION> Both </SELECT></td></tr>
<tr><td colspan="2"> </td></tr>
</td></tr>
</table>
<tr><td colspan="2">
<table>
<tr><td colspan="2" align="center"><input type=submit value="Submit Details!"></td></tr>
<tr><td colspan="2" align="center"><input type=reset value=" Reset Form "></td></tr>
</table> </FORM><br><br>
</body>
</html>

The question is how do i do a plain html page with a
button on it that has the functionality i mentioned,
ie the button pressed event is that it opens a pop up
window with my form in it.Ahh, I see. In that case, do as pgeuens suggests.

Similar Messages

  • IH01 u0096 variant needs to be deleted to restore added button functionality

    Within the PM Structure Overview transaction IH01 output screen we have added a button “Create Notification”, clicking this button results in a PM Notification being created for the selected technical object (tx IW26).
    Many users have created default selection variant to speed up the selection process. My dilemma is that intermittently and for no identifiable reason this “Create Notification” is being disabled (this is not a security issue).  The only way to re-enable the “Create Notification” button is to delete the users selection variant and recreate it.
    Can anyone cast some light on why only the “Create Notification” button we have added to the output screen is being disabled intermittently?  Has anyone had a similar problem and found a solution ?
    Thanks Ashley

    OK.  Talked to Apple support.  Evidently this is a reported iTunes problem.  When I spoke to the tech, he said that the short-term solution was to make sure I always had more than 1 playlist "in use".  Yesterday, a new version of iTunes became available - so hopefully the problem is, or will be soon, fixed.

  • Adding a function to a button

    I'm trying to attach a javascript funtion to a button and I
    am having problems with it. Original the javascript function is
    attached to a dynamically created text string. Well when I want to
    attach the same function to the button it won't work, let me know
    what to do make this button work with the function.
    ~~~~~Script~~~~~
    function addRowClass(tableID, tableBody, instructionArray)
    // write add link to page
    var oTable = document.getElementById(tableID);
    if(oTable)
    // make the link
    oAddLink = document.createElement("a");
    oAddLink.setAttribute("href", "#");
    oAddLink.onclick = function() { addFormRow(tableBody,
    instructionArray); return false; }
    var oLinkText = document.createTextNode("Add Another Row");
    oAddLink.appendChild(oLinkText);
    document.body.insertBefore(oAddLink,
    document.body.firstChild);
    /* main function */ <--The Function I want to attach to
    button
    function addFormRow(tableBody, fieldArray)
    tableBody = document.getElementById(tableBody);
    newRow = document.createElement("tr");
    rowNum = tableBody.getElementsByTagName("tr").length - 1;
    <-- ****The Error****
    for (var i = 0; i <= fieldArray.length; i++)
    oCell = document.createElement("td");
    oInput = document.createElement("input");
    switch(fieldArray[0]
    case "text":
    createTextbox(fieldArray[2], rowNum, fieldArray[1]
    , fieldArray[3]);
    break;
    default:
    //an input error has occurred. Nothing will be written out
    to the cell.
    break;
    oCell.appendChild(oInput)
    newRow.appendChild(oCell)
    rowNum += 1;
    tableBody.appendChild(newRow)
    ~~~~ERROR~~~~
    Line 149 * <-- ****The Error**** Located in the script
    "Null" is null
    ~~~~My Button~~~~
    <input type="button" name="Button1" value="Create Row"
    class="NewRowButton" value="javascript=addFormRow()">
    ~~~~End~~~~~
    Thanks for the help

    Try <input type="button" name="Button1" value="Create Row"
    class="NewRowButton"
    onClick="addFormRow();">
    "TGuthrie" <[email protected]> wrote in
    message
    news:[email protected]...
    > I'm trying to attach a javascript funtion to a button
    and I am having
    > problems
    > with it. Original the javascript function is attached to
    a dynamically
    > created
    > text string. Well when I want to attach the same
    function to the button it
    > won't work, let me know what to do make this button work
    with the
    > function.
    >
    > ~~~~~Script~~~~~
    >
    > function addRowClass(tableID, tableBody,
    instructionArray)
    > {
    > // write add link to page
    > var oTable = document.getElementById(tableID);
    > if(oTable)
    > {
    > // make the link
    > oAddLink = document.createElement("a");
    > oAddLink.setAttribute("href", "#");
    > oAddLink.onclick = function() { addFormRow(tableBody,
    instructionArray);
    > return false; }
    > var oLinkText = document.createTextNode("Add Another
    Row");
    > oAddLink.appendChild(oLinkText);
    >
    > document.body.insertBefore(oAddLink,
    document.body.firstChild);
    > }
    > }
    >
    > /* main function */ <--The Function I want to attach
    to button
    > function addFormRow(tableBody, fieldArray)
    > {
    > tableBody = document.getElementById(tableBody);
    > newRow = document.createElement("tr");
    > rowNum = tableBody.getElementsByTagName("tr").length -
    1; <-- ****The
    > Error****
    >
    > for (var i = 0; i <= fieldArray.length; i++)
    > {
    > oCell = document.createElement("td");
    > oInput = document.createElement("input");
    >
    > switch(fieldArray[0]
    > {
    > case "text":
    > createTextbox(fieldArray[2], rowNum, fieldArray[1]
    > fieldArray[3]);
    >
    > break;
    >
    > default:
    > //an input error has occurred. Nothing will be written
    out to the cell.
    > break;
    > }
    > oCell.appendChild(oInput)
    > newRow.appendChild(oCell)
    > }
    > rowNum += 1;
    > tableBody.appendChild(newRow)
    > }
    >
    > ~~~~ERROR~~~~
    >
    > Line 149 * <-- ****The Error**** Located in the
    script
    > "Null" is null
    >
    > ~~~~My Button~~~~
    > <input type="button" name="Button1" value="Create
    Row"
    > class="NewRowButton"
    > value="javascript=addFormRow()">
    >
    > ~~~~End~~~~~
    >
    > Thanks for the help
    >

  • Adding subtitle functionality to my custom flv player

    Hey all,
    I have a custom flv player and i'm slowly adding more functionality to it as I go along but i've hit a wall.
    I want to add a subtitle button that toggles between show/hide. I've seen on the internet that the best way is to use an XML file (holding the script, times etc.), which I have no problem writing.
    I'm having problems trying to replicate the 'FLVPlaybackCaptioning' component (in Flash CS3) in to my custom flv player. I.E. Adding the right actionscript to my toggle button.
    Can anybody help me as I just can't find anything on the internet.
    Any advice is welcome!
    Thanks
    egr103

    Well the problem is that I can't find any tutorials or help about getting a subtitle toggle button into my custom flv player, an example of which can be found here: http://idl.newport.ac.uk/dev/customplayer.html
    I don't like using the FLVPlayback component built into flash as it is too clunky but at the moment that is the only way I can get subtitles to toggle on and off (using the FLVPlaybackCaption component).
    Ideally I would like to use an XML file to do the subtitles. Any ideas?

  • Query for create manual tabular form using apex collection add row button functionality

    Hello everyone
    My requirement is i created a tabular form manually using apex collection but if i click on add row button then previously selected data refreshed and added new row in this form it is fine.but i don't want to refreshed previously selected data and click on add row button then add new row .how it is possible? plz help
    Thanks & Regards,
    Ujwala

    Ujwala
    Instead of starting a new thread with the same question as Query for create manual tabular form using apex collection add row button functionality.
    Could you answer the question about what you see while debug the javascript code.
    If you don't understand the question or have trouble debug javascript let us know.
    Nicolette

  • Standard buttons not displaying ALV when added button by creating PF status

    Hi  All,
    I have added a button(using SE41) in application toolbar for ALV grid using Factory method.But the problem is I am unable to see the standard tool bar buttons(Layout,Download,Mail etc).
    Even I tried adding buttons(using standard FCODES) to the PFstatus.Now the buttons are visible but the functionality is not working for all buttons.Its working only for Graphic and Change layout buttons.
    Can any one suggest...??
    -Phaniram

    Disregard DKS's response...that's the older stuff and you're using NetWeaver ALV.
    In SALV you can cause those buttons to appear, but you may need to copy the SALV_STANDARD GUI from one of the SALV* named program using SE80...sounds like you have that part, but you may need to turn functions ON...
    Perhaps something like this would help:
    data:  gr_f_list  type ref to cl_salv_functions_list,
             gr_alv     type ref to cl_salv_table,
    SALV toolbar & GUI functions
      gr_f_list = gr_alv->get_functions( ).     "Get Toolbar functions
      gr_f_list->set_all( abap_true ).          "All On
      gr_f_list->set_view_lotus( abap_false ).  "Lotus 123 off
      gr_f_list->set_view_excel( abap_false ).  "Excel in Place Off
      gr_f_list->set_graphics( abap_false ).    "Graph tool off
    For undesired buttons, set each tool OFF after turning all ON.

  • Button Functionality Gone

    I sent a Captivate 7 file to a translation company and when they returned the file with their text updates all of the button functionality was gone. Does anyone know what could have stripped out all of the settings for those buttons because they are all set for Continue only.

    Actually, my last comment might have been premature.  I just re-read your original post and noted that you mentioned this was sent to the company for translation.  If so, then it's quite possible they may have found that exporting an MS Word doc out of the project for translation and importing it back did not change the button text.  So for some reason instead of just changing the text of the buttons they've deleted and added them.
    Either way, the only way to know would be to get in touch with the translation company again and ask them what they did.  This could be a major issue if you had created some really complex interactivity.

  • Re: [iPlanet-JATO] Back Button functionality

    Hi Mike,
    Our test environment does not include proxy server.
    regards,
    syam.
    Please respond to [email protected]
    cc:
    Subject: Re: [iPlanet-JATO] Back Button functionality
    Guys,
    Please clarify something for me, the JATO code is commented as follows
    protected void addResponseHeaders(RequestContext requestContext)
    // These values should make any proxy between the client and
    // server avoid caching, and ensure that pages from one user
    // can never be seen by another user (if they're cached anyway)
    requestContext.getResponse().addHeader("Pragma","no-cache");
    requestContext.getResponse().addHeader
    ("Cache-Control","private");Yet you make no mention of whether your test environment includes a Proxy
    Server, or does your browser
    go directly to the Application Server's web server?
    Can you clarify, please?
    ----- Original Message -----
    From: <syam_reddy@p...>
    Sent: Wednesday, April 25, 2001 2:59 PM
    Subject: [iPlanet-JATO] Back Button functionality
    >
    Hi,
    We observed the following difference in behaviour between JATO pages
    and NetD served pages.
    We have the following scenario. User will login to the
    site. After login he will get a frame set. This frame set has threeframes.
    Top and bottom frames are used for navigation (to switch between various
    sections on the site.) .The middle frame(main frame) shows the actual
    content. When the the frame set gets loaded main frame shows page1. User
    will click on a link on page1. Page 2 will be loaded in main frame. Atthis
    point if the user clicks on back button , with migrated application(JATO
    pages) the following message appears in the main frame.
    In Netscape Communicator 4.61 the following message appears in the main
    frame :
    Data Missing
    This document resulted from a POST operation and has expired fromcache.If
    you wish you can repost the form data to recreate the document by
    presenting the reload button.
    In IE 4.72/5.5 the following message appears in the main frame:
    Warning : Page has Expired
    The page you requested was created using information you submitted in a
    form.This page is no longer available.As a security precaution, Internet
    Explorer does not automatically resubmit your information for you. To
    resubmit your information and view the web page click teh refresh button.
    However, in the NetD site page1 will appear in main frame.
    How do we mimic the NetD behaviour with the migrated
    applications ?
    We think the above behaviour with migrated Apps, is due to the
    headers that are get set in Application ServletBase , see the following
    code snippet :
    protected void addResponseHeaders(RequestContext requestContext)
    // These values should make any proxy between the client and
    // server avoid caching, and ensure that pages from one user
    // can never be seen by another user (if they're cached anyway)
    requestContext.getResponse().addHeader("Pragma","no-cache");
    requestContext.getResponse().addHeader
    ("Cache-Control","private");
    If we comment the above code , we were able to mimic theNetD
    behaviour. Are there any alternatives/thoughts on how to mimic the NetD
    behaviour ?
    Thanks in Advance,
    syam&ravi.
    [email protected]
    [email protected]

    OK, here's what I'm trying to do: We have, like you said, a menu
    page. The pages that it goes to and the number of links are all
    variable and read from the database. In NetD we were able to create
    URLs in the form
    pgXYZ?SPIDERSESSION=abcd
    so this is what I'm trying to replicate here. So the URL that works
    is
    pgContactUs?GXHC_GX_jst=fc7b7e61662d6164&GXHC_gx_session_id_=cc9c6dfa5
    601afa7
    which I interpreted to be the equivalent of the old Netd way. Our
    javascript also loads other frames of the page in the same manner.
    And I believe the URL-rewritten frame sources of a frameset look like
    this too.
    This all worked except for the timeout problem. In theory we could
    rewrite all URLs to go to a handler, but that would be...
    inconvenient.

  • Button functionality

    Hello,
    I have an input form and defined two buttons like mentioned in this thread:
    Regarding Buttons Functionality in INPUT FORM
    I can call two different function modules.
    In my case I mant to call the same function module but with different parameters.
    I have a function module which delivers me sales orders. I want now a button with the text 'All sales orders' and a second button with 'Open sales orders'. The result is always a list of sales orders, and so I want the output in a <b>single</b> table view instead of two.
    How can I achive this?
    I use VC 6.0 Patch 6
    Regards Michael

    Hello Michael,
    I had exactly the same problem. My solution is:
    2 fields on the input-form
      ALL_ORDERS and OPEN_ORDERS.
    1. I defined for the Field ALL_ORDERS Initalization
      FILL ('X',1)
      and Formating: IF(UPPER(@OPEN_ORDERS)=='X',' ','X').
    2. OPEN_ORDERS  Formating  UPPER(@OPEN_ORDERS).
    So it works like Radio-buttons.
    Regards
    Gerd

  • Override "Email a Page link" in ribbon button functionality in SharePoint 2013

    Hi,
    I want to override "Email a Page link" ribbon button functionality on the ribbon control.
      <CustomAction Id="Ribbon.WikiPageTab.Share.EmailPageLink"
                    Location="CommandUI.Ribbon"                
                    Title="Custom Email this page">
        <CommandUIExtension>
          <CommandUIDefinitions>
            <CommandUIDefinition Location="Ribbon.WikiPageTab.Share.EmailPageLink">
              <Group
              Id="Ribbon.WikiPageTab.Share"
              Sequence="30"
              Command="ShareGroup"
              Description=""
              Title="$Resources:core,cui_GrpShare;"
              Image32by32Popup="/_layouts/15/$Resources:core,Language;/images/formatmap32x32.png?rev=23" Image32by32PopupTop="-137" Image32by32PopupLeft="-103"
              Template="Ribbon.Templates.Flexible2"
              >
                <Controls Id="Ribbon.WikiPageTab.Share.Controls">
                  <Button
                    Id="Ribbon.WikiPageTab.Share.EmailPageLink"
                    Sequence="10"
                    Command="CustomEmailPageUrl"
                    Image16by16="/_layouts/15/$Resources:core,Language;/images/formatmap16x16.png?rev=23" Image16by16Top="-115" Image16by16Left="-19"
                    Image32by32="/_layouts/15/$Resources:core,Language;/images/formatmap32x32.png?rev=23" Image32by32Top="-137" Image32by32Left="-511"
                    LabelText="$Resources:core,cui_ButEmailLink;"
                    ToolTipTitle="$Resources:core,cui_ButEmailLink;"
                    ToolTipDescription="$Resources:core,cui_STT_ButEmailLinkPage;"
                    TemplateAlias="o1"
                   />
                </Controls>
                  </Group>
            </CommandUIDefinition>
          </CommandUIDefinitions>
          <CommandUIHandlers>
            <CommandUIHandler Command="CustomEmailPageUrl" CommandAction="javascript:alert('Hello, world');" />
          </CommandUIHandlers>
        </CommandUIExtension>
      </CustomAction>
    Any help would be appreciated.
    Rajasekar A.C

    Hi,
    According to your post, my understanding is that you wanted to override the “E-mail a Link” button on the Ribbon.
    I had created a simple demo to override the “E-mail a Link” button on the Ribbon, you can have a look at it.
    <?xml version="1.0" encoding="utf-8"?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <CustomAction Id="Ribbon.Library.Actions.OverrideEmailLinkButton" Location="CommandUI.Ribbon" RegistrationId="101" RegistrationType="List" Title="Display the UniqueId for the list item.">
    <CommandUIExtension>
    <CommandUIDefinitions>
    <CommandUIDefinition Location="Ribbon.Library.Share.EmailLibraryLink">
    <Button Id="Ribbon.Library.Share.EmailLibraryLink.ReplacementButton" Command="ReplacementButtonCommand" Image16by16="http://s10.postimage.org/lhar0oijp/U16.png" Image32by32="http://s17.postimage.org/trf3y2ui3/U32.png" LabelText="Replaced Button" TemplateAlias="o2" />
    </CommandUIDefinition>
    </CommandUIDefinitions>
    <CommandUIHandlers>
    <CommandUIHandler Command="ReplacementButtonCommand" CommandAction="javascript:alert('This button has been replaced.');" />
    </CommandUIHandlers>
    </CommandUIExtension>
    </CustomAction>
    </Elements>
    More reference:http://msdn.microsoft.com/en-us/library/office/ff407619(v=office.14).aspx
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • Loss of "Edit in Photoshop" button functionality with Photoshop CC

    First, I must say I am highly dissapponted in Adobe's decision to stop developing Encore. I know that streaming and cloud access to video projects is the fture, but DVD and BluRay is still the standard for a majority. I film events, weddings, training sessions, etc. and am still asked to provide a hard copy of the product.
    I downloaded Photoshop CC and have now lost the "Edit in Photoshop" button functionality. This was an extremely convenient feature allowing editors to modify and enhance DVD and BluRay menus easily in Photoshop given the limited options for editing in Encore itself. Unforutnately, I deleted Photoshop CS6 before checking this. I just assumed that Adobe would have kept this function.
    How can I fix this? If I need to re-download Photoshop CS6, will you provide a link to do so?
    Finally, is Adobe really sticking to its guns with not continuing Encore? It is one of the best authoring tools I have worked with for its price and its a shame to see it go.

    >will you provide a link to do so?
    While there are a "few" Adobe employees who read/post (mostly in the Premiere Pro forum) this is primarily a user to user form... so the best I can offer is the IDEA to look on the Cloud to see if there is a link to download Photoshop CS6
    The only actual CS6 link I have is to purchase the standalone (not cloud) products http://www.adobe.com/products/catalog/cs6._sl_id-contentfilter_sl_catalog_sl_software_sl_c reativesuite6.html?promoid=KFPMZ but that would mean buying outside of the cloud
    You might want to contact Adobe to ask about this - http://helpx.adobe.com/contact.html
    Next link has a "Chat Now" button near the bottom
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html

  • Question on adding one function to a submenu

    hi,dear all.
    I added one function to a menu.
    my question is I can find it from the forms navigator page but why I can not find it from the initial navigation web page ??
    thanks in advance.

    What is the application release?
    I added one function to a menu.
    my question is I can find it from the forms navigator page but why I can not find it from the initial navigation web page ??Please mention the steps and the navigation path you follow to reproduce the issue.
    Thanks,
    Hussein

  • How to make next and previous button function

    Hello
    Can anybody help me with how to achieve next and previous button function such as the one at www.bestbuy.com?
    I would appreciate any help or suggestion.
    Thank you!

    if you're not familiar with flash it might be easiest to place your initial "page" in frame 1, the 2nd (or next) page in frame 2, the 3rd/next page in frame 3 etc.
    place your previous and next buttons in their own layer that spans the main timeline (which will have as many frames as you have "pages").  give them instance names (say prevBtn and nextBtn).
    you can then use the following code placed in frame 1:
    var tl:MovieClip=this
    prevBtn.onRelease=function(){
    tl.prevFrame();
    nextBtn.onRelease=function(){
    tl.nextFrame();

  • Button Function Failure on Adobe Content Viewer

    Why do the button functions work well the first time I view them on my iPad's Adobe Content Viewer but do not function properly in subsequent viewings?
    For example, the next page buttons work flawlessly during the first viewing on the iPad. But from the second time they functions awkwardly. The Next page button on Page 1 stops functioning. The one on Page 2 takes me back to Page 1.

    Same issue-- and it's been  a few weeks now.  As far as I can tell it is a waiting issue
    This is from Page 68 from USING DIGITAL PUBLISHING SUITE
    help.adobe.com/en_US/digitalpubsuite/.../digitalpubsuite_help.pdf
    Last updated 3/23/2012
    Use the iPad Viewer to preview content
    The Adobe Content Viewer for the iPad is a generic version of the viewer used for testing the digital content you create on the iPad. The iPad viewer is updated whenever the Folio Producer tools are updated.
    Note: However, when a new set of tools is released, folios you create with those tools may not work properly until Apple approves the new viewer version. If you try to open the folio, a “Please update your app” message appears. If you have a Professional or Enterprise account, you can create a custom version of the Adobe Content Viewer. See
    “Create a custom Adobe Content Viewer for iPad” on page
    98. Otherwise, hold off on updating the tools or use the Desktop Viewer until Apple approves the updated viewer.

  • The Problem is about Standard Back Button Function in Report Program

    The Problem is about Standard Back Button Function in the Report Program.
           In the Report,First call screen Then Using "write" output some information,That is ok. but In the GUI When I press back button that is standard button,it exit screen to program.
           My question is how can i do When i press back button,the screen can be back forward first screen instand of exit screen to program.  Thanks .

    This problem is solution.I call screen using T-code and submit report In PAI,at last return to PAI.That is OK.

Maybe you are looking for

  • Expanding Text Layer Size

    It has been a while since I have asked a question so bare with me as I have been taking a break from AE development for a while Below are two images that show the standard blur effect in After Effects Notice how the blur effect is going outside the b

  • Photographer $9.99 pricing? NO DEAL FOR VIDEO People?

    Your pricing for Creative Clouds is structured poorly. You single out Photographers with a deal for three apps for $9.99 when there are thousands of videographers/filmmakers who may only use three apps too. To have them pay $49.99/mo is just CRAZY!!!

  • Replace Label Text

    Hello, I have a label in my report called txtSortDescription and I would like to replace it with another Text when a field is equal to 1 So this is what I mean: If {field.status} =1 then txtSortDescription="Incoming Serial numbers" ElseIf {field.stat

  • When i export library,will it keep the play count?

    when i export library,will it keep the play count so it is the same when i add to another itunes? PS iTunes 7 Scuck thats why I want to keep play count so it stays the same when I unistall 7 to put 6 on.   Windows XP  

  • Platform Domain and  WorkShop JMS Control Problems

    I created a platform domain and created a workflow in WLI. I would like to expose the workflow from a web service. I successfully used the JMS control to send the XML request into WLI and receive the reply from WLI. My problem is whenever I try to ex