Button Request issue

Hello ,
On a report page, I've created a button item SEARCH, which has "Button Request" set to value : 'SEARCH'.
However, after hiting this button, v('REQUEST') returns null, not 'SEARCH' (as I expected)
Anybody knows why ?
Thank you,

Hello,
>>
Javascript problem in ApEx 3.0 [Solved]
>>
Woooo there lets not get ahead of ourselves, the Pocket PC issue is very specific, if something like this was consistently not setting the REQUEST as designed we would have noticed very quickly as everybodies applications quietly explode.
Try putting this &REQUEST. in your REQUEST attribute of your branch otherwise your REQUEST gets cleared.
See it works like a charm http://apex.oracle.com/pls/otn/f?p=11933:128
If anything this might be a valid request for enhancement to make the default to carry the REQUEST value along, is a tough call because it could adversely effect older applications.
Carl
Message was edited by:
Carl Backstrom

Similar Messages

  • Requests issue

    Any idea why system administrator not able to view requests submitted by others in R12?

    This is normal and expected - pl see MOS Doc 166345.1 (User With System Administrator Responsibility Unable to View Concurrent Request Output of Other Users) and your duplicate post here - Requests issue in R12
    HTH
    Srini

  • Javascript and button requests

    hi,
    my first question here, hope i can get an answer :)
    my problem is, that i have some javascript in the html header. now i have 1 optional part which depends on a button request (the button is redirecting to the same page). the problem is, that this part (function) has to be executed right in the middle of the main code.
    all i want is something like this:
    if ( - button request is given - )
    do_something();
    is there any feature for that?
    thanks in advance,
    jR
    (sorry i'll register right away) ^^
    Edited by: user8657310 on Aug 3, 2009 6:03 AM

    I'm not quite sure I understand the question, so let me restate it and see if I get it right.
    Let's assume you have a JavaScript function on your page called myFunction().
    Let's also assume that you have a button on your page who's request value is "REQ1". The button is set up so that when it is pressed it submits the page and is redirected back to the same page.
    I believe what you are saying is, you want to have a PROCESS that does something like this.
    BEGIN
      ... DO some PL/SQL...
      IF REQUEST = "REQ1" THEN
        execute myRequest() JavaScript function;
      END IF;
      ... Maybe do some more PL/SQL ...
    END;Correct? Or have I misunderstood...
    As far as I am aware, it's not possible to execute JavaScript from within PL/SQL. They are two different engines; PL/SQL residing in the Database and JavaScript residing in the browser. It's not really possible for a PL/SQL routine to temporarily pass control to the calling browser as it really has no idea that it was called from a browser in the first place.
    Perhaps if you describe what you're trying to achieve, we could help you decide the best way to implement it.
    Hope That Helps,
    - Doug -
    http://sumnertech.com/

  • Firefox back button visual issue...

    Hey there,
    Overall, Firefox is just amazing. I registered this forum just report a bug about the Back-Button visual issue. The Back-Button in Firefox looks broken visually on start. When I open Firefox and enter any website, Back-Button looks visually broken. But later it look okay. I've taken some screen shots about that, but don't know how to attach them here. I am running windows 8 on my computers. Don't know about other OS users, if they are experiencing the same issue or not.

    Adapter Description Intel(R) Q45/Q43 Express Chipset (Microsoft Corporation - WDDM 1.1)
    Adapter Drivers igdumd32 igd10umd32
    Adapter RAM Unknown
    Device ID 0x2e12
    DirectWrite Enabled false (6.3.9600.17111)
    Driver Date 3-11-2013
    Driver Version 8.15.10.2702
    GPU #2 Active false
    GPU Accelerated Windows 0/1 Basic (OMTC)
    Vendor ID 0x8086
    WebGL Renderer Google Inc. -- ANGLE (Intel(R) Q45/Q43 Express Chipset (Microsoft Corporation - WDDM 1.1) Direct3D9Ex vs_3_0 ps_3_0)
    windowLayerManagerRemote true
    AzureCanvasBackend skia
    AzureContentBackend cairo
    AzureFallbackCanvasBackend cairo
    AzureSkiaAccelerated 0

  • ESS/MSS Leave Request Issue

    Hello All Experts
    We have implemented ESS/MSS. Everything is working fine except the Leave Request approval. The approval request comes to the approver's inbox.When we try to open the approval request, the webdynpro application is getting but there is no data in the same. I mean the webdynpro application which is launched is blank.
    Could anyone please try to help me how to make this webdynpro application up and running ?
    We are using EP 7.0 with ECC 5.0
    TIA,
    Vivek

    Hi Chuckie/Ton Groot,
    As mentioned in post by Ton Groot,
    I navigated to System Administration --> System Configuration --> Detailed Navigation --> Universal Worklist Workflow’ à ‘Universal Worklist - Administration’
    I get a list of
    Universal Worklist Systems
    System Alias       Connector Type                       Action            Activate 
    AdHocSystem |   AdHocWorkflowConnector  |                        | Deactivate 
    SAP_ITS_XSS |   WebFlowConnector           |   Re-Register    | Deactivate 
    ActionInbox     |   ActionInboxConnector        |                        | Deactivate
    When I click on Re-Register button under Action, I get the following message
    Item type registration was successful for the following systems:
    - SAP_ITS_XSS (WebFlowConnector)
    I have also cleared the cache by navigating to Cache Administration Page
    Still the issue remains.
    TIA,
    Vivek

  • Flash / Actionscript URL Request Issue

    Morning Smart Peoples.
    So I have a dangerously rudimentry knowledge of Flash and Actionscript and the website I tend to is giving me issues.
    We have a small Flash Movie on the site that cycles through 3 pictures and each picture links to the corresponding website when you click on it. (To view : http://www.bostonleather.com : Top Right Corner) I updated the links in the Actionscript, and changed the pictures (not my first time doing either), but this time it didn't work so well.
    First time it cycles through, everything works as planned. After it loops however, all additional Mouse Event's link to the last URL in the movie.
    Frame 1 Actions
    play();
    btn_inv.addEventListener(MouseEvent.CLICK, mouseClick);
    function mouseClick (event:MouseEvent):void
    var request = new URLRequest("http://www.kanoycommunications.com/");
    navigateToURL(request,"_blank");
    Other Frame Actions are identical to this minus the "play();" function naming and URL
    Final Frame is simply
    gotoAndPlay(1);
    Thanks.
    Marc

    If you are assigning different event listeners to the same button then that could be your problem.  You should only need to assign that listener once in frame 1.  Similarly, you should only need to define the function in frame 1, but pull the request declaration out of the function and then assign it a new URLRequest value at the different point along the timeline...
    Frame 1 Actions
    play();
    var request = new URLRequest("http://www.kanoycommunications.com/");
    btn_inv.addEventListener(MouseEvent.CLICK, mouseClick);
    function mouseClick (event:MouseEvent):void
         navigateToURL(request,"_blank");
    Frame elsewhere Actions
    request = new URLRequest("http://www.someotherurl.com/");

  • FIBLAPOP and payment request issue in F111

    Hello Guys:
    Posting on SAP Financials forum after a long time , expecting to receive quality feedback on the issue i am running into. I am trying to generate only Payment request in FIBLAPOP but system generates posting document as well for it.  I do not want this to happen, i need system to generate payment request and then it is to be approved or released by some supervisor in F8REL. I have settings in IMG as dual control as well but still issue persists and system is generating payment request and its posting document simultaneously. What can be the  issue?
    Another issue regarding payment request is in F-59 . I know the functionality for F-59 for making partial payments in F110 . I wonder why is SAP not able to process payment request generated by F-59 in F111 . However this payment request is getting processed in F110 but i want to process it in F1111 but getting error Company Code does not appear in proposal. I have checked every settings in customizing. Now i am wondering if it is really possible to process payment requests created in F-59 through F111.
    Thanks

    Any comments ?
    Thanks

  • Cache server getcert http request issue

    Hi,
    We are using third party repository for documents archiving and storage. And we have separate application for connecting third party repository to the SAP.
    We have installed content server and cache server on the system where SAP was installed.
    Now we want to run getcert HTTP request from our application so that we will get the certificate from SAP cache server. What we need to do in order to achieve the same? Or in other words how we can make the connectivity between cache server and the third party repository?
    We have verified the following URLs
    http://10.224.1.37:1090/ContentServer/ContentServer.dll?serverInfo
    http://10.224.1.37:1095/Cache/CSProxyCache.dll?serverInfo
    (Where 10.224.1.37 is the IP address of the system where SAP is installed)
    for content server and cache server respectively.
    The URL for cache server was giving the correct server information but URL for content server is not at all showing any server information even after running for long time.
    Could you please tell me step by step by procedure and configuration steps for running get cert request to cache server? We want to know how to send the getcert request to third party content management system from cache server.
    We have given the following URL in http get functional module but we are getting a 400 bad request response
    http://10.224.1.37:1095/Cache/CSProxyCache.dll?getcert&pversion=0046&conrep=RH
    Where RH is pointing to the third party content server (through transaction oac0).
    Thanks,
    Ravi

    Hi All,
    I am also facing the same problem, Please help us out to solve this issue.
    Thanks in advance
    Regards
    Harshavardhan.G

  • Program at print button in 'Issue output to'

    Hello Experts,
    There is an existing output X which triggers only when output BA00 is printed from the print button in the pop up of sales order when you go to 'Isssue output to'
    When trying to process the sales order output BA00 throu standard program SD70AV1A, the output X is not triggered.
    Now, we have a requirement to process BA00 from another interface where we are using SD70AV1A, but output X is not triggering in this case.
    So, please suggest a way through which we can use the program at print button in this requirement.
    Thanks in advance.
    Paritosh

    Hello Max,
    Thanks for your reply
    BA00 is printed by program, no issues there. But, there is a requirement on other output X(medium 5) , that it should process immediately along with BA00, which is not happening with this program SD70AV1A.
    Paritosh

  • Button image issues

    Im having issues with button images in captivate 4, after designing buttons in photoshop then saving them as PNG's and putting them in the buttons folder. When i apply these buttons to a slide the button images are missing parts and look bad.. any suggestions?, please help.

    Hi there
    I believe Captivate uses the color value of the pixel in position 0, 0 to determine the transparent color for the button image. You need to ensure you are using a unique color for that location. What you posted seems to infer that you have a color being rendered as transparent and the color is used in other places in the image.
    Cheers... Rick
    Click here for Adobe Certified Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • Search request issue in GRC AC10.0

    Hello Experts,
    When we want to check the status of the request logged by others by using the below option we are not getting any results
    GRC 10.0 with SP14.
    My Home ->My Profile -> Request Status then click on the Change Query. In the Change query screen enter the request number created by others and click on Preview.
    This is not authorization issue. We tested with user having SAP_ALL authorization.
    Does anyone has any idea?
    Thanks in advance
    Hari

    Hi Hari,
    When we talk about page My Home  / My Profile, this shows the information which is related to me/us only. If end user logon using this page/link, he/she can see his/her own data.
    Change Query is to filter the existing data which comes at the time of loading/refreshing the window. This should not show data out of scope.
    So request status using my home page would not be able to show data for other users.
    Search Request link is the only way to check others request data.
    Thanks & Regards
    Neeraj

  • Trouble w/ items button, request not being passed

    I'm having trouble w/ a button created as a region's item.
    I have a search box, and a P100_GO button.
    The GO button generates a GO request.
    I then have an branching that is conditional
    on Request=Expression 1
    and in Expression 1 I put GO.
    but this request never gets picked up.
    Any suggestions as to what I may be doing wrong?
    Thanks,
    Erik

    Jeff,
    Your situation does not even remotely resemble the original problem posted in this thread. But that's okay.
    I recommend that you take a look at some of the how-tos at: http://otn.oracle.com/products/database/htmldb/howtos/index.html, download and go through the HTML DB User Guide (http://download-west.oracle.com/docs/cd/B13789_01/appdev.101/b10992/toc.htm) , and most importantly, request a workspace on our hosted site (htmldb.oracle.com). Then if you have a particular problem with your application, we can look at it directly and offer help. It's much more efficient than using the forum to communicate all the details of how your application is built, what's not working, etc.
    Scott

  • How can I resolve the push button dot issue in oracle forms 10g..?

    Hi All,
    We have migrated to forms6i to forms10g, in 6i all the push button labels are displaying properly, but in 10g forms its giving dots like this … after displaying some characters. I guess its width problem but how come its changing in 10g alone.
    Kindly give me any workaround to resolve this issue
    Thanks in Advance
    Thangaraj.

    Hi All,
    We have migrated the forms 6i to forms 10g R2.We are facing push button issue like,the lable is displayed in the button is reduced.Assume the button's label name is Cancel.Actully it is displaying like Can.....Due to Java used in forming the buttons.We have forms count nearly 300.We have diffent size buttons.
    We have solution like
    1.Manually
    2.PC Creation
    3.Java Class and Jar Files
    4.JDAPI
    5.basejini.htm
    The method five,we have tried.But there is no changes after this changes also.
    Can you guys please let us know the correct menthod(with steps 1 by 1) to do this in quickly.
    2.There are look and feel 2 types oracle and generic,rather than this do we have any other type.We are looking for any cusrtomized settings in config files.
    Thanks in Advance.
    Regards,
    GR

  • Button Alignment Issue

    I have some custom buttons added to the sales order screen.  When the font in B1 is set to "10", the buttons show up and are aligned just fine.  When the user changes the font to anything other than "10", the buttons become mis-aligned and moved on the form even though I am setting the "Left" property to be the same for all three of them.
    Also, on some computers, when the user minimizes the sales order form and then restores the form, all items  (even system items) don't resize correctly and the sales order matrix shrinks to about 1/2 the size it was before, leaving a huge empty space on the form.  When the add-on is closed, the issue goes away.  I am not changing any properties on the system items or the form (width, height etc).  I'm just adding three custom buttons and filtering for certain events on the form.
    Any ideas?
    Thanks!
    Message was edited by: Curtis Fry

    Curtis,
    Did you follow the Standards and Guidelines UI documentation when creating your controls and forms?  I am assuming that you did, but there are specifics with respect to the creation of buttons on forms?  With other add-ons that you have created, have you experienced this issue?
    This is a note from the PartnerEdge Portal that you may want to check out to see if this helps ...
    https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/smb_searchnotes/display.htm?note_langu=E&note_numm=0000655552
    Let me know,
    Eddy

  • Facebook like button widget issue!

    I'm working on the website right now. The person wants the Like button on the website, I have yet to deal with it. But I worked on putting it in through the Adobe Widget browser. I like the application because it's click and drag. Yet the issue i'm having is that i want to put the like button in on area where it doesn't over flow in that area. I'm attacthing a screen shot to show the issue.
    I'm trying to put the like button on the side bar and I wanted to put it above the events so it's at the top of the page. I'm working it in the sense where it's just the like button and it shows how many people like it. As you can see it makes this big space in the area where it should just be at a space that is smaller then a one enter button push. I tried to fix it through the code but i cant find anything to remove that ammount of the box.

    This is exactly what is happening for me right now.  Have you figured this issue out yet?  Any help would be appriciated.  Thanks!

Maybe you are looking for