Calling OninputProcessing of other page

HI,
How to call oninputprocessing of other page ?
I have a 2 BSP pages . A and B. When i click a button in page A, page B is appread as popup. And when i click button from page B, some content is transfred from B to A's Intilization and Layout. Thats fine.
But i want the field value in OninputProcessing.How to do ?
I want something like this ...
if the fieldA = 'Yes'  go to oninputprocessing ( not by triggering any button) and
       fieldB = 'No' no need to proceed..
Thanks,
Kanal
Edited by: SAP user on Jun 18, 2008 4:54 AM

Hi SAP User,
After coming back to page A, you can put following javascript code in your layout to trigger OnInputProcessing without clicking any button.
htmlbSubmitLib('htmlb',this,'htmlb:button:click:null','<form_name>','<button_id>','myClickHandler',0)
Regards,
Salil

Similar Messages

  • (Solved) Calling a different page using HTML Region as a part of other page

    Hi All,
    I want to open a page as a part of other page as it is done using frames in HTML.
    For example :
    <html>
    <head>
    </head>
    <frameset cols="30%,*">
    <frame src="menu.html">
    <frame src="content.html">
    </frameset>
    </html>
    Now I want to use the HTML Region and try calling different page developed in the same application. How can I acheive this task.
    Hoping for a quick and easy solution for this.
    Thanks in advance.
    Regards
    Arif

    Once Agian Thanks Andrews
    http://www.dynamicdrive.com/dynamicindex17/iframessi2.
    htmThis web page i suppose is presently not available, atleast i'm not able to open it.
    Hope there are some more sites.
    I'm trying to search on Google but as I do not have much information about Java Script so cant identify the exact solution.
    Hoping to get some predeveloped JavScript that works with Internet Explorer and Mozilla Firefox atleast.
    Thanks once again.
    Regards
    Arif

  • SGV chart series call an other page

    Dear all,
    I would like to call an other page when I click on the graph.
    When I use this select :
    select 'http://oracle.com', stk.move_dt dt, sum(stk.for_stock_qty) Qty
    from atestjr_stocks stk
    where stk.move_dt between to_date(:P7_max_dt,'dd/mm/yyyy') - :p7_x_max_val and to_date(:p7_max_dt,'dd/mm/yyyy')
    --and (INSTR( :p7_move_txt, stk.stock_move_typ)!= 0)
    group by move_dt
    Everything work fine
    In my class serie I see my select in black and in my graph i see a dot and when i click on It I call the oracle page.
    But when I replace the oracle page by my page in the application. In my class series I see my select in gray and I see the graph but I have no link on it.
    Here my select.
    select '.', stk.move_dt dt, sum(stk.for_stock_qty) Qty
    from atestjr_stocks stk
    where stk.move_dt between to_date(:P7_max_dt,'dd/mm/yyyy') - :p7_x_max_val and to_date(:p7_max_dt,'dd/mm/yyyy')
    --and (INSTR( :p7_move_txt, stk.stock_move_typ)!= 0)
    group by move_dt
    Can someone help me please.
    Thanks in advance

    We found the problem.
    The select must be
    select
    'f?p=26010:101:'||:app_session link,
    decode(:P7_PERIOD_SW,'D',to_char(stk.move_dt,'dd/mm/yyyy'),'W',to_char(stk.move_dt,'ww/yyyy'),'M',to_char(move_dt,'mm/yyyy'), stk.move_dt) dt,
    sum(stk.for_stock_qty) Qty
    from atestjr_stocks stk
    where stk.move_dt between to_date(:P7_max_dt,'dd/mm/yyyy') - :p7_x_max_val and to_date(:p7_max_dt,'dd/mm/yyyy')

  • Click on a textbox, display alert and link to other page.

    hi, here i wanna do is when i click on a textbox, onFocus on it, then call a function to perform checking, and then if the textbox data have breakdown record then display an alert to the user and link to breakdown page.
    [Display out in a table]
    <%for(int c=0; c<progPect.size(); c++){%>
    <td id=progPect><input type="text" size=5 id="progPect" value='<%=progPect.elementAt(c)%>' onFocus="chkBreakdown(pass in 3 parameter);"></td>
    <td id=progQty><input type="text" size=5 id="progQty" value='<%=progQty.elementAt(c)%>' onFocus="chkBreakdown(pass in 3 parameter);></td>
    <td id=progLump><input type="text" size=5 id="progLump" value='<%=progLump.elementAt(c)%>' onFocus="chkBreakdown(pass in 3 parameter);></td>
    after calling the chkBreakdown function and found out that it has record, then pop up an alert that tell the user this record have breakdown, and then link to the other page with the same window.
    so the problem is how to identify user click on which row in the table.

    Vuze installs ask.com's tool bar also. Check for a Vuze plug in. Thanks for the fix.

  • Apex 4.2  passing value from one item to other page

    I have a page where i accept a starting date and ending date as a parameter
    its source i set it as preference or application item
    Now in the other page I calls a jasper report..
    so it refers the first page.. I am not able to access the start_date which is in other page
    start_date and end_date
    Start_date shows as null
    Am confused over what is preference and application item
    Where will we use preference as a source type.
    Again example
    page 103
    p103_start_issue - preferenec
    p103_end_issue -- preference
    A buttons calls other page
    The other page
    when i call jasper report I Pass the parameter value as :p103_start_issue and :p103_end_issue
    But the actual value is null for those fields..
    How can i acess the actual value..
    Do i need to use application item. ? I tried application item as source type but still the same issue.
    Thanks

    Am confused over what is preference and application item
    Where will we use preference as a source type.A Page item is the most short-lived way to store variables in session state. Page items are routinely (although not always) cleared when entering or leaving a page. They are generally used to store a value that changes most times that you enter a page. Page items are also generally intended for use primarily by code on that page. This is not to say that other pages can not or will not use them, but access from other pages has to be controlled so that they are not trying to reference a page item from a different pages after the cache for that page has been cleared.
    Application items are for data that is longer-lived and/or is intended to be accessed by multiple pages. Application Items are not cleared unless a session end or a specific call to clear them is made.
    Preferences are for data that is intended to be stored and retrieved for specific users across multiple sessions. Log out of an app and back in and the data is still available.
    That said, from your description of the problem, I would guess that the cache on page 103 was cleared and the page item values erased. I suspect that you should be using an application item from what you have posted.

  • How to call parameter of 101 page on page 1

    Greetings,
    i wanted to call parameter on login page "P101_USERNAME" on page 1 .
    Cust_user is a table from where i m authticating my username and password, Authtication is doing fine but i want the customer id of the specific customer in the cust_user table to display after login on page 1. for that i wrote query on page 1 "SELECT cust_id FROM cust_user WHERE UPPER (USERNAME) =UPPER(:P101_USERNAME), but it is displaying nothing , if i harcore the specific username instead of :p101_username it is working fine e.g "SELECT cust_id FROM cust_user WHERE UPPER (USERNAME) =UPPER('test'),
    Please gudie me how to get value of text field (p101_username login page ) on page 1, that is first page after login.

    Hi,
    i wanted to call parameter on login page "P101_USERNAME" on page 1 .Cust_user is a table from where i m authticating my username and password, Authtication is doing fine but i want the customer id of the specific customer in the cust_user table to display after login on page 1. for that i wrote query on page 1 "SELECT cust_id FROM cust_user WHERE UPPER (USERNAME) =UPPER(:P101_USERNAME), but it is displaying nothing , if i harcore the specific username instead of :p101_username it is working fine e.g "SELECT cust_id FROM cust_user WHERE UPPER (USERNAME) =UPPER('test'),
    Please gudie me how to get value of text field (p101_username login page ) on page 1, that is first page after login.>
    Use :APP_USER. If your authentication scheme is working right then the username should be in :APP_USER.
    Cheers,

  • Renamed Home page to "index," now my other pages' links to home won't work

    I made a website on Iweb, bought a domain name from Hosting4less, and got an ftp client (cyberduck) to upload it. The Hosting4less support guy told me to rename my "home" page to "index" so that everything would actually show up once I'd uploaded it. This worked, and now, starting from home, I can go to any page. However, from the other pages, when I click back to the home link, I get this:
    The requested URL /Home.html was not found on this server.
    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
    I guess the renaming mixed up the other pages' links to the home page. How do I fix this? I don't know code, so I can't really go in and fix it that way. It seems like Iweb won't allow it either... help???

    Hi and welcome,
    with iWeb you don't need to rename any page to "index" as publishing already creates a page called "index".
    I guess you're publishing to a folder, the result of publishing is an index.html file and a folder named with the name you gave to the site in iWeb. You have to upload the folder and the index.html file.
    Pages should never be renamed after you publish as that breaks the whole structure of the website (all the links that refer to this page).
    Republish from iWeb and reupload (also don't name a page index in iWeb as that may conflict with iWeb already generating such files).
    Regards,
    Cédric

  • Getting a 404 message for pages that the menus that have a french accent in the menu name, other pages display fine.

    Hello, Using muse June 2014 release. After uploading all files to Godaddy web hosting, all menu that have a french accent in the menu name are giving a 404 message page not found, whereas all my other pages that do not have french accents are displaying normally. For the time being, I have removed accents in 3 of the menus, but would prefer to show them. In earlier version of muse everything was working fine. I've also been getting this message: "MuseJSAssert: Error calling selector function:TypeError: $(...).toBrowserWidth is not a function" ; the header of the page shifts to the left of the screen whereas the body items stay centered.
    I've deleted everything on the web hosting ftp site and re uploaded everything but does not fix the problem.
    Thank you Dorene.

    I uploaded it within Muse "Upload to FTP hose".
    However, this morning when I was getting the error message "MuseJSAssert: Error calling selector function:TypeError: $(...).toBrowserWidth is not a function" ; my header was shifting left on some pages and not all and at this time I was not getting the 404 error yet. So I deleted everything from the root of the Godaddy web host and re uploaded and thats when it started giving me the error messages of page not found only on the pages with french accents in the menus. Could I have deleted something in the root that should stay there, but I'm thinking if it should not be deleted it would be locked. Thank you Zak for keeping with and and helping me find this problem. I'm helping out some friends with the new campground they purchased and I look pretty bad with these pages not showing up.

  • How can i reset another page when call it from a page

    I use JDeveloper 10.3 to develop my application. And I want to reset value of UI component (inputtex, selectInputDate . . .) of a page when i call it from another page.
    Thanks!

    You can execute a method in "backing bean/Application module" on page load which can set the value of the UI components. Following link can help you to
    [http://kohlivikram.blogspot.com/2008/10/call-method-on-page-load-in-adf.html|http://kohlivikram.blogspot.com/2008/10/call-method-on-page-load-in-adf.html] .
    ~Vikram

  • Calling Web PL/SQL page from Employee Search Page

    Hello,
    I have a requirement where in I have to call a custom Web PL/SQL self service page from the Employee Search page (this is a page where managers search employees giving criteria as First Name, Last Name, Assignment number etc. which is a OA Framework page supplied by Oracle)
    Now situation is after search when I will click on Details button on the search results table the custom Web PL/SQL page should be called.
    But I am not able to figure out how to do it. Could anybody be able to help me on this ?

    You have to set the destination property of the button to call your WebPL/SQL page.

  • Frame targeting in other pages

    I have a page where the initial start page is all flash. All
    the following pages are html with flash menus in a default template
    that stays as you navigate. The pages all have one main inline
    frame called "main" that all content is loaded in. The rest of the
    page does not change. What I need help with is on the initial page,
    I need to be able to click one of the buttons and have it open the
    home page with the content related to the button clicked to be
    loaded in the frame window. So essentially they will all be opening
    the "home.html" file, but with different content in the frame
    within that page.
    Thanks for your help
    -Shane Hollon

    quote:
    Originally posted by:
    kglad
    use getURL("yourPage.html","yourFrameName");
    I do use that, but in the other page. The frame that I am
    referencing does not exist in the page where the button is. I need
    to be able to open the new page using getURL("home.html","_self");
    but then I need it to open, for example, "main.html" in the frame
    named main within the home.html file. the "main" frame doesn't
    exist in the "index.html" where the button is. I need to send the
    information to the page I'm opening to tell it what to load in the
    frame after it is done loading. Any help?

  • Replicating a gorgeous Spry menu in other pages not working

    Hi,
    I've created a gorgeous spry menu in one of my pages:
    http://agapemedia-international.com/test.html
    Works perfectly.
    Would like to copy this same menu over to the other pages of the site, so:
    1.  Copied the css <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />  into new html file
    2.  Copied the <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>  to the new html file
    3.  Surrounded all the spry menu - essentially nested <ul>'s - with a div for easy copying
    4.  Copied the div to the proper location in the new html file.
    Here is that new file:
    http://agapemedia-international.com/about2.html
    Everything looks fine, but when I hover over, no drop downs happen.  Oh, and the lovely Spry Menu Bar widget nor the blue tab that calls it up doesn't show up in Dreamweaver editor either.  Is there invisible data that doesn't appear in the html code that wasn't copied?
    Any brilliant ideas?
    Thanks a million!
    Peace,
    Ben
    PS:  I'm using Dreamweaver CS3 on a Powerbook G4

    I am having a similar problem, but pretty sure it is a newbie issue. I made a menu bar and then wanted to copy it to a second htm page.
    I first put the cursor in the div region of the code where I wanted it to go and added a stock spry menu. Then I deleted the div-ul-/div code and pasted the custom menu code in its place. it appears, but does not drop down and lost some of the color attributes. When I place the cursor over it  in split mode, I do NOT see the Spry menu bar: assts in the upper left corner of the menu like I see on the index.html page. I'd like to copy the menu from the index.html to multiple subsequent pages. What am I doing wrong? Everything looks identical to me...
    <link rel="stylesheet" href="coolstyle.css" type="text/css">
    <script language="JavaScript" type="text/javascript" src="javascripts.js"></script>
    <script language="JavaScript" type="text/javascript" src="pop-closeup.js"></script>
    <script src="../../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="../../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
    </head>
    <body bgcolor="#000000" text="#FFFFFF" class="pagebackground">
    <!-- PAGE TABLE -->
    <table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="left" valign="top">
    <div id="banner"><img src="gallery/banner.gif" width="100%" height="50" alt="DogfishBay Studios" />
      <ul id="asts" class="MenuBarHorizontal">
      <li><a href="index.html" title="home page">Home</a>    </li>
      <li><a href="bio-studio.htm" title="About DogFishBay Studios" class="MenuBarHorizontal">Studio</a></li>
      <li><a class="MenuBarItemSubmenu" href="#">Musicians</a>
        <ul>
          <li><a href="bio-jules.htm" title="Juliane Poirier biographical information">Juliane Poirier</a>        </li>
          <li><a href="bio-ray.htm" title="Biographical information for Ray Burns">Ray Burns</a></li>
          <li><a href="bio-jeff.htm" title="Biographical Information for Jeff Powel">Jeff Powel</a></li>
          <li><a href="bio-chris.htm" title="Biographical information on Chris Rin">Chris Rin</a></li>
          <li><a href="#">Rod Lewis</a></li>
        </ul>
      </li>
      <li><a href="#" class="MenuBarItemSubmenu">Music</a>
        <ul>
          <li><a href="#" class="MenuBarItemSubmenu">Music by Style</a>
            <ul>
              <li><a href="samples1.htm" title="Rock and Roll!">Rock</a></li>
              <li><a href="samples2.htm" title="Folk">Folk</a></li>
              <li><a href="samples3.htm" title="Country">Country</a></li>
              <li><a href="samples4.htm" title="Latin">Latin</a></li>
            </ul>
          </li>
          <li><a href="#" class="MenuBarItemSubmenu">Music by Artist</a>
            <ul>
              <li><a href="samples_jules.htm">Juliane Poirier</a></li>
              <li><a href="samples_ray.htm">Ray Burns</a></li>
              <li><a href="#">Steve Thomas</a></li>
              <li><a href="samples_chris.htm">Chris Rin</a></li>
              <li><a href="samples_rod.htm">Rod Lewis</a></li>
              <li><a href="#">Jeff Powel</a></li>
            </ul>
          </li>
          <li><a href="podcast.htm" title="Podcasts">Podcasts</a></li>
        </ul>
      </li>
      <li><a href="gallery-1.htm" class="MenuBarItemSubmenu">Xtras</a>
        <ul>
          <li><a href="gallery-1.htm" title="Band Photos">Photos</a></li>
          <li><a href="video.htm" title="Band Videos">Videos</a></li>
          <li><a href="scene.htm" title="Music Scene">Music Scene</a></li>
          <li><a href="reviews.htm">Reviews</a></li>
        </ul>
      </li>
      <li><a href="links.htm" title="Links" class="MenuBarItemSubmenu">Information</a>
        <ul>
          <li><a href="links.htm" title="Links">Links</a></li>
          <li><a href="site_map.htm" title="Site Map">Site Map</a></li>
          <li><a href="contact.htm" title="Contact information">Contact</a></li>
        </ul>
      </li>
    </ul>
    </div>
    <!-- STRIPE -->
    <table style="clear: both;"table cellpadding="0" cellspacing="0" border="0" width="100%" class="home-stripe"><tr><td align="left">
    <img src="picts/spacer.gif" width="10" height="2" alt="image"><br>
    </td></tr></table>
    <script language="JavaScript" type="text/javascript" src="header.js"></script>
    <!-- PICTURE TABLE -->
    <table cellpadding="0" cellspacing="0" border="0" width="100%" class="ban-area"><tr><td>
    <img src="picts/bio.jpg" border="0" width="750" height="50" alt="image"><br>
    </td></tr></table>
    <!-- PICTURE TABLE -->
    <!-- SPLIT TABLE -->
    <table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td class="whitespaceL printhide">
    <img src="picts/spacer.gif" width="1" height="10" class="whitespaceL" alt="image"><br>
    </td><td align="center" valign="top">
    <br><br>
    <!-- CONTENT TABLE -->
    <table cellpadding="0" cellspacing="15" border="0" width="400" class="textwidth"><tr><td align="left" valign="top">
    <!-- PARAGRAPH 1 -->
    <span class="title">
    History: Dogfish Bay Studios<br>
    <center>
    <img src="picts/biostudio.jpg" alt="add keywords here"><br>
    </center>
    </span>
    Dogfishbay Studios were started in December of 2008 following a gift of ProTools M-Powered 8 to me from my son, Greg.
    Presentient being that he is, he warned his mother that this  gift would probably be a very small part of the cost needed to set up the studio.
    The studio was set up to provide me and my friends a way to record the songs we’d written, sometimes decades earlier, and to share them with
    family and friends.  After three  years of recording we finally came to a point where we wanted to share the work with a broader audience
    and that desire precipitated the need to create a studio name, a website, and a whole new set of skills.
    <br><br>
    This work reflects the generous collaboration of friends and family. The sale of the music is to support the musicians, the songwriters and
    the continued survival of the studio. None of the contributors has been able to forgo the “day job” and all play for the love of it.
    We feel blessed by all those who have taken the time to listen to our music and hope, whether you purchase it or not, that it brings to
    the listener the kind of pleasure that it has brought to us in the making of it.
    <br>
    <span class="title">
    <br>
    </span>
    <br><br>
    <img src="picts/spacer.gif" width="10" height="10" class="textwidth" alt="image">
    <br><br>
    </td></tr></table>
    <!-- CONTENT TABLE -->
    </td><td class="whitespaceR printhide">
    <img src="picts/spacer.gif" width="1" height="10" class="whitespaceR" alt="image"><br>
    </td><td align="center" valign="top" class="sidebar">
    <!-- RIGHT SIDEBAR AREA -->
    <script language="JavaScript" type="text/javascript" src="sidebar.js"></script>
    <script language="JavaScript" type="text/javascript" src="sidebar-2.js"></script>
    <img src="picts/spacer.gif" width="150" height="10" alt="image"><br>
    </td></tr></table>
    <!-- SPLIT TABLE -->
    <!-- PAGE TABLE -->
    </td></tr><tr><td valign="bottom">
    <!-- FOOTER -->
    <table cellpadding="0" cellspacing="10" border="0" width="100%" class="footer">
    <tr><td align="left" valign="middle">
    <script language="JavaScript" type="text/javascript" src="copyright.js"></script>
    </td><td align="right" valign="middle">
    <script language="JavaScript" type="text/javascript" src="copyright-allwebco.js"></script>
    </td></tr></table>
    <!-- FOOTER -->
    </td></tr></table>
    <!-- END PAGE TABLE -->
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>

  • How to call webservices from ADF page

    Hi,
    I am using ADFBC.
    I want to call webservices from ADF page.please give examples of sample program on how to call a web service from the ADF pages.please give examples.
    please help me.
    Thanks,

    http://marianne-horsch-adf.blogspot.com/2011/03/how-to-create-web-service-based-adf.html
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/70-dependent-listboxes-using-ws-286107.pdf
    http://www.oracleimg.com/technetwork/developer-tools/jdev/adfcomplexwstypes-101013.html
    http://technology.amis.nl/blog/9726/quickly-creating-reploying-and-testing-a-webservice-interface-for-adf-business-components
    http://oracamp.com/passing-parameters-between-web-services-and-jsf-pages

  • Cisco call manager user web page guide

    Hi all
    Has anyone got a really quick and easy call manager user web page guide? I need one for my users
    cheers
    Carl

    Thanks but I've tried all that. It happens in Chrome also. I've tried Opera and it works on that. I've read other forums and it looks like a Java script issue that Chrome and now Firefox Mobile cannot seem to resolve. My preference is Firefox and I'm sure as more tablets get out then this will be solved at some point. I just don't know how it is prioritized. I do know that in order for Androids to be viable in the business sector they need to address issues like these with a higher priority.

  • Calling onInputProcessing javascript error

    Hi,
    My query is as follows: I want to call onInputProcessing on pressing of a link.
    as follows.
    <a href="mailto:<%  loop at i_mail into wa_mail.    %>      <%= wa_mail%>,"
          <%  endloop.      %>
           onClick="onInputProcessing()">Send Email to selected </a>
    But It give me a javascript error on clicking of the link.
    Please help me on this.
    Thanks
    shilpa

    Hi,
    The exact same question has been answerered here:
    Mailing in HTMLB using HTML a href syntax
    Best regards,
    Guillaume

Maybe you are looking for

  • Error while generating Web report for UML Modeling

    I am using Sun java studio enterprise 8, i design uml diagrams for that diagrams i am trying to generate a webreport while generating i am getting the error as follows "Cannot execute /usr/bin/firefox Check that a valid external browser properly is s

  • Is there a way of getting a list of your i tunes

    Anyone know how to get a list of all the albums / tracks you have in your i tunes collection ? Which you can save as a document and print off etc. This would be an invaluable inventory , any way this can be done ?

  • No "PDF Portfolio task pane" on Intel Mac!!!

    Acrobat 9 Pro has different behaviors between Intel Mac and PowerPC Mac !!! On Intel Mac, I cannot change the default layout of any PDF Portfolios, because the "PDF Portfolio task pane" doesn't show, so there's no way to touch the "CHOOSE A LAYOUT" b

  • How to Import Member Aliases during Dimension build.

    HI All , I have to build dimensions in Essbase using load rule files. I can create dimensions and its respected members. But problem is that i also want to assign aliases with member names in Essbase hierarchy. so How i can assign aliases (In source

  • Iphone 5 draft sms stuck.

    Everytime I tried to send new message from my Iphone 5 there is this draft that just won't go away.I ve delete it many time but everytime I want to send a new message it will be there.so everytime I need to send a new mesage I just gotta select all a