Submit the page without the help of a button

Hello

I use APEX 5.0.

I have a regon that contains several elements, and one of them is defined as a selection list: P10_NAME.

When I have a button that when pressed triggers a code Page PL/SQL process recovering above entered data and treats it in the same page, in a different region.

I want to start sending without going through a button, but when the value of the P10_NAME field.

In the process of the above page, I tried by changing:

Conditions-> when clicks the button: no Condition of button

Conditions-> Condition Type: SQL Expression

Conditions-> Expression1: ASK = "P10_NAME."

But it does not work.

It seems that the variable REQUEST contains only the button names. Is this correct?

How can I achieve this?

Kind regards

Hi Patrick,

Laury wrote:

I use APEX 5.0.

I have a regon that contains several elements, and one of them is defined as a selection list: P10_NAME.

When I have a button that when pressed triggers a code Page PL/SQL process recovering above entered data and treats it in the same page, in a different region.

I want to start sending without going through a button, but when the value of the P10_NAME field.

Change your selection P10_NAME list. The settings-> Page Action on selection-> to submit the Page.

The following parameters of the Condition won't work for your PL/SQL Page process:

In the process of the above page, I tried by changing:

Conditions-> when the button Presses: no Condition of button

Conditions-> Condition Type: SQL Expression

Conditions-> Expression1: ASK = "P10_NAME."

Instead of "SQL Expression", you use "PL/SQL Expression. More would be better 'Request = Expression1' to the 'Type of Condition' and P10_NAME like 'Expression1 '.

Kind regards

Kiran

Tags: Database

Similar Questions

  • Make the help links - Extended button

    Well, I had a great help earlier with the creation of a button linked to an external page using Flash Builder.

    I have no problem with that... my new number is with 5 buttons.

    Here is the code I'm looking forward to deal with in Flash Builder-

    <? XML version = "1.0" encoding = "utf-8"? >
    " < xmlns:s ="library://ns.adobe.com/flex/spark"xmlns:fx = s:Skin" http://ns.Adobe.com/MXML/2009 "xmlns:d =" " http://ns.Adobe.com/FXG/2008/DT ">
    < s:transitions >
    < s:Transition fromState = "low" toState = "rise" autoReverse = "true" >
    < s:Parallel >
    < s:Parallel target = "{bitmapimage1}" >
    < s:Move autoCenterTransform = "true" duration = "250" / >
    < / s:Parallel >
    < s:Parallel target = "{bitmapimage2}" >
    < s:Move autoCenterTransform = "true" duration = "250" / >
    < / s:Parallel >
    < / s:Parallel >
    < / s:Transition >
    < s:Transition fromState = "rise" toState = "over" autoReverse = "true" >
    < s:Parallel >
    < s:Parallel target = "{bitmapimage2}" >
    < s: Fade duration = "250" / >
    < / s:Parallel >
    < s:Parallel target = "{bitmapimage1}" >
    < s: Fade duration = "250" / >
    < / s:Parallel >
    < / s:Parallel >
    < / s:Transition >
    < s:Transition fromState = "rise" toState = "low" autoReverse = "true" >
    < s:Parallel >
    < s:Parallel target = "{bitmapimage1}" >
    < s:Move autoCenterTransform = "true" duration = "0" / >
    < / s:Parallel >
    < s:Parallel target = "{bitmapimage2}" >
    < s:Move autoCenterTransform = "true" duration = "0" / >
    < / s:Parallel >
    < / s:Parallel >
    < / s:Transition >
    < s:Transition fromState = "over" toState = "mounted" autoReverse = "true" >
    < s:Parallel >
    < s:Parallel target = "{bitmapimage1}" >
    < s: Fade duration = "250" / >

    < / s:Parallel >
    < s:Parallel target = "{bitmapimage2}" >
    < s: Fade duration = "250" / >
    < / s:Parallel >
    < / s:Parallel >
    < / s:Transition >
    < s:Transition fromState = "over" toState = "low" autoReverse = "true" >
    < s:Parallel >
    < s:Parallel target = "{bitmapimage1}" >
    < s: Fade duration = "250" / >
    < s:Move autoCenterTransform = "true" duration = "250" / >
    < / s:Parallel >
    < s:Parallel target = "{bitmapimage2}" >
    < s:Move autoCenterTransform = "true" duration = "0" / >
    < s: Fade duration = "0" / >
    < / s:Parallel >
    < / s:Parallel >
    < / s:Transition >
    < s:Transition fromState = "low" toState = "over" autoReverse = "true" >
    < s:Parallel >
    < s:Parallel target = "{bitmapimage1}" >
    < s:Move autoCenterTransform = "true" duration = "250" / >
    < s: Fade duration = "250" / >
    < / s:Parallel >
    < s:Parallel target = "{bitmapimage2}" >
    < s:Move autoCenterTransform = "true" duration = "250" / >
    < s: Fade duration = "250" / >
    < / s:Parallel >
    < / s:Parallel >
    < / s:Transition >
    < / s:transitions >
    < s: states >
    < name s: State = "mounted" / >
    < name s: State = "over" / >
    < name s: State = "low" / >
    < name s: State = "disabled" / >
    < / s: states >
    < fx:Metadata > [HostComponent ("spark.components.Button")] < / fx:Metadata >
    (< s:BitmapImage source="@Embed('/assets/WolfMotive/Welcome_Mouse_Over.png')" resizeMode = "Scale" d: userLabel = "Welcome Mouse Over" includeIn = "down, more ' id = 'bitmapimage1' y.down =" 2"visible.down ="false"/ >"
    (< s:BitmapImage source="@Embed('/assets/WolfMotive/Welcome_Mouse_Up.png')" resizeMode = "scale" d: userLabel = 'Welcome Mouse Up' visible.over = "false" id = "bitmapimage2" x = '4' y = '9' y.down ="11" / > "
    < / s:Skin >

    I need to know where this (if possible) will make the button link - that's what someone told me

    So, you could do the following:

    < s:Button click = "handleClick ()" / >

    Then, add a script block to your application, after < / fx:DesignLayer > and < / s:Application >, which looks like this:

    < fx:Script >

    <! [CDATA]

    protected function handleClick():void

    {

    navigateToURL ( new URLRequest ("" "http://www.adobe.com"), '_self');

    }

    ]]>

    < / fx:Script >


    So I lost as to where this should go in this section.

    Cause unless I am much more that a noob (that I might have), I'm not sure if she can go here at all.

    The original code has been implemented to go in this code-


    <? XML version = "1.0" encoding = "utf-8"? >
    < s:Application
    ' xmlns:fx = ' http://ns.Adobe.com/MXML/2009 "
    ' xmlns:d = ' http://ns.Adobe.com/FXG/2008/DT "
    xmlns:s = "library://ns.adobe.com/flex/spark".
    width = "720" height = "50" backgroundColor = "#000000" >
    (< s:BitmapImage source="@Embed('/assets/WolfMotive/Top_Menu_Bar.png')" resizeMode = "scale" d: userLabel = "From the top Menu bar" x = "-1" y = "-12" / > ".
    < fx:DesignLayer d: userLabel = 'Text Top mouse Ove' >
    < / fx:DesignLayer >
    < fx:DesignLayer d: userLabel = ' text Top Up Mouse ">
    < s:Button "583" = x y = "12" skinClass = "components. Button5"d: userLabel = 'Button Contacts' / >
    < s:Button '433' = x y = "12" skinClass = "components. Button4"d: userLabel ="Portfolio button"/ >
    < s:Button '303' = x y = "12" skinClass = "components. Button3"d: userLabel ="Projects button"/ >
    < s:Button = "154" x = "12" skinClass = "components. Button2"d: userLabel ="Button Bios"/ >
    < s:Button = "27" x = "12" skinClass = "components. Button1"d: userLabel ="Button welcome"/ >
    < / fx:DesignLayer >
    < / s:Application >

    Please help... once again.

    Perfect, ensuring of the OK.

    If you really want to continue working in the file of the application, with all the buttons.

    On each button, you want to add the 'click = handleClick ('http://www.adobe.com') '. (Make sure that the url is in single quotes)

    Where you replace: www.adobe.com with what URL you wish to navigate.

    For example, you can have the second button: "one click = handleClick ('http://forums.adobe.com')".

    Then, you change your function handleClick, in the block of script as follows:


      protected function handleClick (myURL:String): void
    {
    navigateToURL (new URLRequest (myURL), '_self');
    }

    ]]>

    Gives it a try and let me know how it works for you!

    Thank you

    Tara

  • With the help of a button to change the color of a chart while remaining in the same frame.

    Is this possible?

    I'm trying to simulate the contrast of the LCD using two buttons.

    The LCD screen is a graph on a keyframe that runs along the timeline.

    Not sure how to start with action script for this... I would use %valeurs hexa% if possible, but had no luck so far with my AS2.

    The hard part is that I have a text box on top of the LCD screen on several different keyframes and the color / brightness of this will have to change accordingly with the LCD.

    Thank you!

    Pat

    You can use:

    MC. = [0xabcdef, 0xaabbcc, etc...];

    MC.c = new Color (mc);

    MC.index = 0;

    {btn1.onRelease = Function ()}

    mc.c.setRGB (MK. A [MC.index]);

    MC.index = (mc.index + 1) % mc. . Length;

    }

  • With the help of a button in a ListView

    I have a button in one of my ListItemComponents.

    This button "consumes" the click event and emits clicked, but:

    of the ListItemComponent I can not access the external qml page (or classes registered c ++).

    When I click on another part of the component is called the ListView onTriggered, but not when I click on the button.

    Is there a way of

    -disable the "use-click" behavior of the button or

    -access the class qml or c ++ from the ListItemComponent

    ?

    Now I could have totally misunderstood the question, but that's what I thought you were asking... The same would go for if you used a custom component qml as the content of the listitemcomponent. You would access listview, like inside this category, or a gesturehandler defined inline in the definition of listitemcomponent.

    Container {
        id: page1 //or whatever component with a context property set for your c++ class
        ListView {
            id: mylistview
            ListItemComponents: [
                ListItemComponent {
                    id: mycomp
                    Container {
                        id: containerContents
                        Label { text: "my list item" + ListItemData.title; }
                        gestureHandlers: [
                            TapHandler {
                                onTapped: containerContents.ListItem.view.doSomethingWithItem(ListItemData);
                            }
                        ]
                    }
                }
            ]
            function doSomethingWithItem(data) {
                contextProp.callCPPMethod(data); //or do something else with it
            }
        }
    }
    
  • With the help of a button on * click here to initialize the computation

    What I'm trying to do is take my button named CALC and when I click CALC I want it Add Field1, Field2, and Field3 and output the sum of FieldTotal. I know that I should have this done with click to the button, but I do not know how to write javascript for this code. Any help is appreciated!

    I thought about it.

    Everything in CALC under the option CLICK in FORMCALC:

    this.resolveNode("FieldTotal").rawValue = sum (Field1, Field2, Field3);

    Worked like a charm.

  • With the help of a button to open another file

    I created a file with a button above. Button action has been implemented to open a new pdf file. The problem is the opening of this new file is not open in a new window. I need to set it up so that the new file may be closed, but the original pdf is always available. How can I do this?

    If you use a link of type "Go to a page view" to open a different PDF file, you can change the link after you created and select "open in > new window:

    The trick is the edition after establishing the link.

  • With the help of a button to a form of visible and hidden void

    Good day to all;

    I'm trying to figure out how to use a button instead of a check box to make a visible sub-shape and when you click on it again the subshape is hidden.

    I tried to use an 'if' statement, but I don't seem to be able to get the logic of the right.

    Any help would be appreciated.

    The Chomp

    Got, it works...

    That's what I did. If there is a better way to do this, please let me know.

    If (approval_note_subform.presence == 'hidden') {}

    approval_note_subform. Presence = "visible";

    }

    Else if (approval_note_subform.presence == 'visible') {}

    approval_note_subform. Presence = "hidden";

    }

  • With the help of a button to make another visible button

    Hi all

    I am trying to find something here, and I simply don't know the syntax. I've already posted to aid once, and it helped me to know exactly what I'm trying to do.

    I'm trying to do something similar to a Board of peril for a Christmas party at work. I have a grid of buttons that correspond to the different questions. The function would be as follows:

    1. Click on the button "eng_1" (as in "English for 100 points).
    2. This makes the button "eng_1_q" (as in: question of 100 English) visible, if the matter can now be read.
    3. A click on the button "eng_1_q", and the button is then rendered invisible. The question cannot be seen, now we are back to the Board of Directors.
    4. The original 'eng_1' is now a different color (or left in his State "low") to show that the question has already been asked (not sure if this will be part of the function of "eng_1" or "eng_1_q")

    My idea would be something like that.

    eng_1.addEventListener (MouseEvent.MOUSE_DOWN, eng_1_start);

    function eng_1_start(event:MouseEvent):void {}

    [something that puts in "eng_1_q"]

    [something that makes "eng_1" remains in his State "low"]

    }

    eng_1_q.addEventListener (MouseEvent.MOUSE_DOWN, eng_1_end);

    function eng_1_end(event:MouseEvent):void {}

    [something that makes invisible "eng_1_q"]

    }

    Still, I am just not sure of the syntax. Any help would be greatly appreciated.

    Thank you

    Colin

    To make something visible/invisible you assign an instance name and use it to target and set its visible property.  You would replace your instance utton b = names where btnName is shown below...

    btnName.visible = true;

    btnName.visible = false;

    For a button to stay in its low state you'll be best to create this button as a MovieClip symbol.  In this way, you can tell him to go to a particular frame which displays its State to the bottom and have it stay there.

    btnName.gotoAndStop ("down"); "down" is a label that you assign to the low state framework

  • With the help of a button to open an image in Captivate 4

    I would use a button to call an image - similar to a legend of reversal, but with a button.  Any ideas?

    Hi again

    See if the post I linked below will help you sort out them.

    Click here to see the post

    See you soon... Rick

  • With the help of a button to load and unload the external SWF in AS3?

    How can I use a button to load and unload a sequence of external SWF files, as a Next button and previous?

    I don't know if it will work because apparently you are trying to load a swf AS1/2, but try

    change the line to be...

    _swfTempClip = MovieClip (event.target.content);

    If this does not work, then you will need to create _swfTempClip as a new MovieClip and add the event.target.content to this MovieClip using addChild().

  • With the help of several buttons on a slide

    I am a new user of Captivate 4 and I have questions with several buttons on a single slide.

    I want a button each to send to users in three different places depending on the button pressed. The locations are all in the current movie that I am developing.

    My problem is that using a button or click box is an action "pass" and "fail". When you use the two buttons in a slide I was creating a dummy "button and get the users click on this 'button' where there are only two choices. This procedure meets the success of failure on the button or click box.

    Of course, I can't do this job when I need more of two buttons.

    I must be missing something simple here any advice would be appreciated.

    See you soon

    thedarf

    Hello

    I'm a bit confused. You say you want to provide only two choices? (Or are you want to create a slide where it acts much like a table of contents when the user clicks the button or click box) 1 and moves might slide 5, button 2 moves to maybe slide 10 and 3 button move maybe slide 15.

    If this is the case, you are overthinking things. All you need to worry is the action of onSuccess.

    See you soon... Rick

    Useful and practical links

  • all the site went "not found HTTP 404 error. The requested resource is not found. "and the"Firefox cannot load Web sites but other programs can"page is not helping

    all the site went "not found HTTP 404 error. The requested resource is not found. "and the"Firefox cannot load Web sites but other programs can"page is not help somehow

    One possible cause is security software (firewall, antivirus) that prevents or limits Firefox or plugin-container process without informing you, possibly after the detection of changes (update) for the Firefox program.

    Delete all rules for Firefox and the plugin-container in the permissions list in the firewall and leave your firewall again ask permission to get full unlimited access to the internet for Firefox and the plugin-container and the update process.

    See:

    You can try to reset (power off / on) of the router.

  • Submit the form - not a page

    Hi all

    How can I submit the form below (external APEX) without submitting the page.

    The Action in this form has method POST RESTful. Its PL/SQL Source is:

    Insert into emp (empno, ename)

    values

    (DEMO_USERS_SEQ.nextval,: ENAME)

    for example using this API:

    http://S22.postimg.org/79wp8rbv5/capture.PNG

    ----------------------------------------------------------------

    So I have this static page. I need to submit the form to Oracle DB without the page gets submitted. Any idea about it?

    < html >

    < head >

    < / head >

    < body >

    < form action = " " https://Apex.Oracle.com/pls/Apex/somefeto/HR/EMP/ "method ="POST"> "

    Used: < input type = "text" name = "ENAME" >

    < input class = "button" type = "submit" value = "Submit" / >

    < / make >

    < / body >

    < / html >

    
    
    
    
    
    
    
    
    
        
    Employee: SUBMIT
  • How do you replace pages without ruining the document tags.

    I was wondering if someone could help me with the replacement of pages in a pdf file combined without removing the tags. Thanks in advance

    Hey stephanief62147876,

    There is a wire double and has already responded.

    Check here: how it replaces pages without ruining the tags?

    Kind regards

    Ana Maria

  • Want to only two elements of the page without a space between them.

    I give a broader and more generic framework to an earlier application seeking a broader response.

    I want two elements on the page without horizontal between space. (Don't ask why!) One is a contant, say ' * ' so I made a single display element. The other is the label of a numeric field that is referenced in the error messages generated by the ARF.

    Call the label LABEL to make this easy. So, I want to see {noformat} * {noformat} LABEL. I don't want to change the label of "* LABEL" because ARF refers to "* LABEL" in error messages. I want to just fix the two elements on the form. This must be something easily done in the APEX, right?

    (For the initial application, see asterisk desire by a label point of page without space between. .)

    Thank you and God bless you,
    Howard

    Hello

    Just change your article networking sessions (if you use apex 4.2)

    Start the new grid: No.
    Start the new row: No.
    New section: No.

    FYI, you may need to use

    & nbsp

    in your point label to get a space

    If you use apex 4.1, I remember: new field should be no.

    Best of luck,

    Best regards
    Fateh
    -------------------
    If you think that my answer was correct or helpful to you, then please check the response as helpful or appropriate.

Maybe you are looking for

  • Skype Lite

    Skype Lite, which was stopped please run that we have a problem to enter the account, I hope the Skype Manager to run the program, because users worried by his suspension and the inability to access the account Vodtro to change before communicate wit

  • connect laptop to TV with HDMI

    I have a laptop HP Pavilion g7Windows 7 Home Premium 64-bit Service Pack 1Intel (R) Core (TM) i5 - 2450 M CPU @ 2.50 GHzGraphics unit 1:AMD Radeon HD series 7400MGraphics unit 2:Intel(r) HD Graphics 3000All the pilot has been updated weekenden -.My p

  • file sharing to an external hard drive as in w

    I have and external hard drive and I want to know how the two can talk to each othere like talking about windows on the external hard drive as a music file and the external hard drive intended for each othere and the update and the hard drive if it a

  • How to print on an envelope

    Wondering how to print on an envelope with my Deskjet 6940?        Thank you!

  • How to access a rv180w in mode "access point."

    Is there a way to manage the device when is in mode "access point"? Or at least access?