Bugreport: Apex 4.2.1 Button 'Return to application' doesn't return to app

Hi there,
I think there is a bug, when searching for a page number that doesn't exist in the application (e.g. typing error).
When you edit a page and enter a page number where the page doesn't exist (that means in Field "go_to_page"), the error "Error processing condition. ORA-01403: no data found" appears correctly, but with button 'Return to application' you don't come back to the application.
The same behavior is when you enter a non-existing page number in "Search Application" (P0_SEARCH) on the overview page of an application
e.g. http://apex.oracle.com/pls/otn/
WS: uBrennerDemo
demo/demo
Application: 61765 (Demo01)
go to page: 5
Regards Uli

I get this a lot - it's frustrating!

Similar Messages

  • Applescript buttons returned from display dialog

    Hi!
    I have been learning Applescript for about a month and found the following issue which I thought was an easy implementation.
    On the "text returned" I get the error condition described. Do not understand!
    Any help would be appreciated.
    display dialog ("ENTER COMPANY NAME") with title ("TOTAL SHARE SPECIFICATION")
    buttons {"Cancel", "Company"} default button "Company" default answer ""
      set BUTTON_Returned to button returned of the result
      set CompanyName to text returned of the result
    error "Can’t get text returned of \"Company\"." number -1728 from text returned of "Company"
    MacBook 6.1     OS X Yosemite     Vn 10.10.1
    Script Editor  Vn. 2.7 (176)
    Applescript 2.4
    Regards

    No question that Applescript can be frustrating to learn. Many things about it have to be figured out by trial and error and when dealing with scripting applications all bets are off. The application designer can pretty much do as they want so what works in one app might not work in another even though you are using the same and correct applescript
    I find Introduction to AppleScript Language Guide by Apple to be a good source of answers and usually always have it open when I'm scripting  for quick reference.
    Spend some time getting familiar with the script editor. It is intelligent and can usually steer you in the right  direction when it comes to debugging.  Especially get use to and pay attention to the colors it assigns to items in your script.
    For example in your original script notice the colors of Button_Returned and CompanyName (your variables) and compare those to result and button returned. Also notice how text returned is a different color from button returned even though both are essentially the same thing. This is an indication that something is not right and it is where the error message occurred. (for a list of the default colors used open the Script Editors preferences and look at the Formatting tab).
    Notice  also how the editor formats your scripts, again the way the script gets formatted can tell you a lot if there is an error.
    Finally the error messages while cryptic can offer some clues. In your case the error message was
    error "Can’t get text returned of \"Company\"." number -1728 from text returned of "Company"
    generated by the line
    set CompanyName to text returned of the result
    The last part of the error message is essentially the line that caused the error after evaluation. So here result evaluated to “Company” which doesn't seem right, display dialog returns a record.
    Finally there is the log statement which will print its value to the log window
    Hope this helps
    regards

  • Applescript button returned of list

    Hi
    Here is my script:
    set firstList to {"Sincronizza proprietà avanzate", "Escludi proprietà avanzate"}
    set listchoice1 to choose from list firstList with prompt "Le proprietà avanzate di una cartella sono l'icona della cartella, la posizione degli elementii al suo interno e l'icona delle cartelle al suo interno." with title "Fai una selezione" without multiple selections allowed
    At the end of the list there are two buttons, "Ok" and "Cancel", if I select "Ok" it goes ahed, if I select "Cancel" it still goes ahed.
    Instead I want that if the button "Cancel" is selected, regardless of the choice made, the application must close.
    How can I do that?

    Returend result from choose from list
    Result
    If the user clicks the OK button, returns a list of the chosen number and/or text items; if empty selection is allowed and nothing is selected, returns an empty list ({}). If the user clicks the Cancel button, returns false
    So check to see if the result returned is false and if it is exit.
    Something like (there are other ways to do this)
    if listchoice1 is false then
         tell me to quit
    end

  • Somehow the back button on my Safari browser got replaced with an autofill button; how do I get the back button returned to the toolbar?

    Somehow the back/forward button on my Safari browser got replaced with an autofill button; how do I get the back button returned to the toolbar and get rid of the autofill button

    Good to hear, Tom. Did you use "Customize" from the View Menu?

  • Hide button return delivery

    Hi all,
    Can anyone guide me how to hide the button return delivery. We don't want to use the function.
    Thank you for the help
    Gregor

    Hi Gregor,
    You can use the BBP_UI_CONTROL_BADI to hide this buttons.
    In this BADI, you have to create an implementation using the method BBP_CONF_UI_CTRL.
    Here is some sample code.
    IF sy-dynnr = '2310'.
    CASE iv_fieldname.
    WHEN ' the field name for the delivery return button'.
    cv_invisible = 'X'.
    ENDCASE.
    ENDIF.
    The parameter cv_invisible when has the value 'X' hides the button.
    Hope this helps.
    Thanks
    Pradeep

  • 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

  • Display dialog, getting both text returned and button returned

    I am most of the way through my first major project in applescript. I want to get both the text returned of and the button returned of a dialog box. Is this possible?
    So basically i want to do the below without having the dialog box run twice.
    set thebutton to the button returned of (display dialog "Already Assigned!" & return & "Please assign a new letter" default answer "…" buttons {"Cancel", "Delete Previous Location for this Letter", "OK"} default button "OK")
    set theLetter to the text returned of (display dialog "Already Assigned!" & return & "Please assign a new letter" default answer "…" buttons {"Cancel", "Delete Previous Location for this Letter", "OK"} default button "OK")
    Rich

    Well thanks for the fast response, both work fine, cheers. That problem is now sorted.
    However while i was waiting for the responses i came across another problem, i would like to delete a specified item from a list. This is not the actual script but i was using it to test the syntax. So basically how would i go about deleting the the letter P from a list PQ
    set letterlist to {}
    display dialog letterlist as string
    set namep to "P"
    copy (namep) to end of letterlist
    set nameq to "Q"
    copy (nameq) to end of letterlist
    display dialog letterlist as string
    set theKeyPressed to "P"
    repeat with each_item in letterlist
    if each_item contains theKeyPressed then
    delete each_item
    end if
    end repeat
    display dialog letterlist as string
    Rich

  • How can i disable a button in the application tool bar of a standard trans?

    Hi Experts,
       I want to disable the create button in the application tool bar of the standard transaction cv03n. Is there any method?

    Hi,
    In the include 'LCV110F19', the GUI is being called for the screen.
    This is the actual code being called.
    WHEN c_dms_create.
          SET PF-STATUS 'D100CREATE'.
          SET TITLEBAR  'D100CREATE'.
    You can try to code something like below.
    DATA: itab TYPE TABLE OF sy-ucomm.
    APPEND 'CREATE' TO itab.
    SET PF-STATUS 'D100CREATE' EXCLUDING itab.
    Kindly reward points by clikcing the star on the left of reply,if it helps.

  • How can I turn-off the apps which I have opened once in ISO 7.0.2. In previous version of ISO it was easy to turn- the opened apps by double clicking on home button and then click and hold on respective apps then click on cross sign.

    How can I turn-off the apps which I have opened once in ISO 7.0.2. In previous version of ISO it was easy to turn-off the opened apps by double clicking on home button and then click and hold on respective apps then click on cross sign but in this version I could not do so and my iPad appears slower.

    Close inactive apps
    1. Double tap the home button to bring up the multi-tasking view
    2. Swipe the app's windows upwards to close
    3. The app will fly off the screen

  • Before I upgraded my iPad mini, you could turn off apps to save battery power by double clicking the control button and then holding your finger on the app button until the minus sign appeared.  That doesn't work anymore.  How do you turn off the apps wit

    Before I upgraded my iPad mini, you could turn off apps to save battery power by double clicking the control button and then holding your finger on the app button until the minus sign appeared.  That doesn't work anymore.  How do you turn off the apps with ios7

    Now you swipe downward, the app will appear and you delete, keep scolling to the right as in the past.  With the new operating system you also swipe downward to get the search bar to find an app

  • Free/purchase button doesn't appear in app store

    there is no free or purchase button in the app store. also cannot purchase anything in itunes (no button). signed in with apple/itunes. also the apps can't be moved or deleted. when you hold the app down, it doesn't shake.

    OK but I was trying to bypass the app store and use Software Download,  did it redirect you to the app store?
    Try this  which sorts out recent issues:
    delete keynote from applications folder
    delete the file:  .com.apple.iwork.Keynote.plist      from:    users > home > library  > preferences
    shut down the mac
    restart and press shift key imediatly after the chime sound
    keep shift pressed until the apple logo appears
    let the mac run while on the gray screen it is repairing the software and will take 10 mins or so
    when the desktop appears  go to applications > utilities > disc utility > first aid and repair permissions
    reboot normally

  • My Ipod Touch doesn't have an App Store button on it and I can't get any apps on it. Please help me!

    My Ipod Touch doesn't have a App Store button on it and I can't get any apps on it. I use to have one so I know how to work it but I never had this problem. My Ipod Touch is a 16 gig 1st generation. Please help me!

    Sybar13 wrote:
    My Ipod Touch doesn't have a App Store button on it and I can't get any apps on it. I use to have one so I know how to work it but I never had this problem. My Ipod Touch is a 16 gig 1st generation. Please help me!
    What software version do you have on the ipod?
    Apps requires at least 2.0

  • Can you return an app and get your money back

    I was told you can return an app that you purchased and get your money back if that is true how do I do it?

    A refund may not be possible since the terms of sale for the iTunes Store, as Joey said, state that all sales are final. You can contact the iTunes Store, explain the reason for your request, and ask, though:
    http://www.apple.com/support/itunes/contact.html
    It's possible they'll make an exception for you. An exception is more likely if the app is defective in some way or doesn't do what the developer advertised and the developer has been unable or unwilling to help you.
    Good luck.

  • Clicking "Open a New Tab" button or "Ctrl+T" doesn't open a new tab any more. How do I get that functionality back?

    Clicking "Open a New Tab" button or "Ctrl+T" doesn't open a new tab any more. How do I get that functionality back?
    When I click, type or use the File menu or try right-clicking mouse to open a new tab, nothing happens. However I am able to open links in a new tab.

    The Ask Toolbar is causing that in the Firefox 3.6.13+ versions. Evidently something in that extension isn't compatible with a Firefox security fix. Disable that extension or un-install it.
    How do I "disable" or "un-install it"?

  • My power button is stuck and doesn't turn the phone off or on anymore. Can anyone help?

    My power button is stuck and doesn't turn the phone off or on anymore. Can anyone help?

    What would you like us to do?  We can't unstick it for you.
    Bring your phone into Apple for replacement.

Maybe you are looking for

  • IWeb gallery - I can't see it!

    Hello, Just finished putting together a website for my brother but having issues with the gallery. I have a portfolio page for his photos. When I'm in iweb the photo album covers scroll nicely between images and link straight to the photo gallery pag

  • Adding Vendors in 7.4

    When I add a vendor to the vendors page, it adds them twice. Is this a bug or working as designed? This topic first appeared in the Spiceworks Community

  • Booking outbound goods via IDoc

    Hi, is there any possibility to book the outbound goods via IDoc? Is there a standard? Thanks in advance.

  • ICloud password request at startup or restart

    When starting or restarting Mac OS X 10.9.4, I get a dialogue requesting the iCloud password. Whether I answer the question or not, it does not matter. I must click on a response, Cancel or Login, to make the dialogue go away. What new "feature" caus

  • Finder's "Open With" Broken...?

    The Mavericks Finder isn't honoring the "Open With" change on my system for some reason. - I select a JPG - Open the Get Info window - Change Open With from Photoshop CS6 to Photoshop CC - Hit the Change All... button - The dialog box appears asking