Sustaining the values of point unchanged after a "set-point and redirect.

I use the instance online on apex.oracle.com

I have a form that looks like this:

Name: < text field >
Type: < select list >
Property1: < select list >

When Type is changed, a "set-point and redirect" are performed.

The source of Property1 is determined by the value of Type. This means that whenever the Type is changed, the Property1 value could change.

'Name' is not affected. The problem is when I change the 'name' and then change 'Type', the action "Set the value and redirect" returns 'Name' to the value it had when the first load of the page.

The question is: is it possible to ensure that the 'name' retains some value it had just before "the set value and redirect" was carried out?

Thank you.

popovitsj wrote:
I use the instance online on apex.oracle.com

I have a form that looks like this:

Name:
Type:

When Type is changed, a "set-point and redirect" are performed.

The source of Property1 is determined by the value of Type. This means that whenever the Type is changed, the Property1 value could change.

'Name' is not affected. The problem is when I change the 'name' and then change 'Type', the action "Set the value and redirect" returns 'Name' to the value it had when the first load of the page.

The question is: is it possible to ensure that the 'name' retains some value it had just before "the set value and redirect" was carried out?

Create it Type and Property1 by using the ability of LOV cascade integrated rather than try to to re-create yourself.

Tags: Database

Similar Questions

  • I can't connect to the internet via my host after uninstalled antivirus software and restart

    I can't connect to the internet via my host after uninstalled antivirus software and restart it.

    I use windows xp on my host computer and all computers in my client. After that I uninstalled the free trial NIS version and restart my host, I lost the internet connection. Tried to restore with the restoration of the system, but when I restarted it, it said the system restore could not be made. I changed it then with my laptop and I can connect to the internet as the host.

    Hello

    This can happen if the uninstall process fails and leaves behind a Symantec registry value. See the following Symantec article.

    Unable to connect to the Internet after uninstalling Norton AntiVirus.

    http://Service1.Symantec.com/support/NAV.nsf/8d071816eedd7cac88256c0e005a96e5/751c3298ab99cf7188256d34006702e2?OpenDocument

    Important: This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base:

    How to back up and restore the registry in Windows?

    322756 (http://support.microsoft.com/kb/322756/ )

  • Change the value of Point of Question Quiz in Captivate 9 sensitive?

    Maybe I'm missing the option, but I don't see the option to change the value of the point of a quiz question more. It used to be in the Quiz properties but I no longer see it. He moved elsewhere?

    Hmmm, I do not see the score, it is a responsive project:

    Have you installed the hotfix: Hot fix. Adobe Captivate 9 questions

  • Get the value of point of contact OFA

    Hi guys,.

    I am new to oaf, so this may seem like a very novice question. I tried several things, but could not solve it.

    There is an advancedtable region in my page. The first column of the advanced table has been put to contain elements of binding while the rest of the columns are messagestyledtext. The advancedtable would be filled with a few details of the item with the first column is the item number. The requirement is to fill in the details of article on click in the item number which essentially appear as hyperlinks.

    I try to get the number of the first column.

    pageContext.getParameter ("itemnumber");    ['itemnumber' is the ID of the binding inside the column inside the advancedtable element]

    This returns null, so I can't get the item number. Can someone please help me solve this?

    Thank you

    Sasmas

    You can see the bottom of thread for "the line being returned as null Reference".

    https://community.Oracle.com/thread/581600

    As an alternative, you can add parameters, p_item_num to the PPR method with value in the form ${oa.current.ItemNumber} (if the number represents the VO attribute name)

    In the processFormRequest, get the value using "pageContext.getParameter ("p_item_num")"

    Therefore, the code will be

     public void processFormRequest(OAPageContext pageContext,
                                       OAWebBean webBean) {
            super.processFormRequest(pageContext, webBean);
            OAApplicationModule am = pageContext.getApplicationModule(webBean);
            String event = pageContext.getParameter("event");
            if ("itemLinkClicked").equals(event)) {
            {
                   String itemNumber = pageContext.getParameter("p_item_num");
    
                    Serializable[] parameters = { itemNumber };
                    am.invokeMethod("fetchItemDetails", parameters);  
    
            }
        }
    

    Thank you

  • Not able to get the values of distict even after the definition of the FUNCTION of MEMBERSHIP card

    Hello

    I'm trying to get distinct values of a query to an array type. Please see the code below
    CREATE OR REPLACE TYPE T_COPY_EVNT_DTL
    IS
      OBJECT
      (
        eventId               VARCHAR2(100),
        eventDescription      VARCHAR2(100),
        promoMonthDescription VARCHAR2(100),
        promoStartDate        VARCHAR2(100),
        promoEndDate          VARCHAR2(100),
        PROMOCOSTSTARTDATE    VARCHAR2(100) ,
        ,
        MAP MEMBER FUNCTION sort_key
        RETURN VARCHAR2 );
    CREATE OR REPLACE TYPE BODY T_COPY_EVNT_DTL
    AS
      MAP MEMBER FUNCTION sort_key
      RETURN VARCHAR2
    IS
    BEGIN
      RETURN eventId ;
    END;
    END;
    /
    CREATE OR REPLACE TYPE T_EVENT_TABLE
    IS
      TABLE OF T_COPY_EVNT_DTL; 
    
              with event_data as (
    select '1' event,'event1' event_desc,'monthdesc1' promo_month_desc ,'01/01/2001' promo_start_date     ,'01/01/2002' promo_end_date,'01/02/2001' promo_cost_start_date from dual union all      
    select '1' event,'event1' event_desc ,'monthdesc1'promo_month_desc ,'01/01/2001' promo_start_date     ,'01/01/2002' promo_end_date,'01/02/2001' promo_cost_start_date from dual union all
    select '3' event,'desc3' event_desc ,'monthdesc3' promo_month_desc,'01/01/2001' promo_start_date     ,'01/01/2002' promo_end_date,'01/02/2001' promo_cost_start_date from dual union all
    select '2' event ,'desc2' event_desc ,'monthdesc2' promo_month_desc ,'01/01/2001' promo_start_date     ,'01/01/2002' promo_end_date ,'01/02/2001' promo_cost_start_date from dual ) 
    SELECT  cast(collect(distinct t_copy_evnt_dtl(event,
                                                                                                                        event_desc,
                                                                                                                        promo_month_desc,
                                                                                                                        promo_start_date,
                                                                                                                       promo_end_date,
                                                                                                                  promo_cost_start_date) ORDER BY
                                                                event_desc,
                                                                promo_month_desc,
                                                                promo_start_date,                                                    
                                                                promo_end_date,                                            
                                                                promo_cost_start_date) as t_event_table)  from event_data;
    
    result :
    
    T_EVENT_TABLE('T_COPY_EVNT_DTL('2','desc2','monthdesc2','01/01/2001','01/01/2002','01/02/2001')',
              'T_COPY_EVNT_DTL('3','desc3','monthdesc3','01/01/2001','01/01/2002','01/02/2001')',
              'T_COPY_EVNT_DTL('1','event1','monthdesc1','01/01/2001','01/01/2002','01/02/2001')',
              'T_COPY_EVNT_DTL('1','event1','monthdesc1','01/01/2001','01/01/2002','01/02/2001')')
    Please help me find the reason why it does not work...

    Manjusha Muraleedas wrote:
    Please see the link: http://www.oracle-developer.net/display.php?id=514
    Title: using complex types

    And as the article says, combining DISTINCT and ORDER BY does not work so well:

    The diagram of the syntax in the documentation suggests that the two extensions can be combined to build ordered and distinct collections for each group.
    However, in the version 11.2.0.1, this does not work.

    I can confirm that this does work on 11.2.0.2 either.

    As a solution, I would probably use a subquery or MULTISET:

    select cast(
             multiset(
               select distinct
                      event
                    , event_desc
                    , promo_month_desc
                    , promo_start_date
                    , promo_end_date
                    , promo_cost_start_date
               from event_data
               order by event_desc
                      ,     promo_month_desc
                      ,     promo_start_date
                      ,     promo_end_date
                      ,     promo_cost_start_date
             )
             as t_event_table
           )
    from dual;
    
  • Add the value of point two apex and display the result in another part of the apex

    Hello

    I need to make the addition of the two item values using apex.item.text and find the result in another apex.item.text.

    For example:
    SELECT
    apex_item. Text(1,null) ONE
    apex_item. Text(2,null) TWO
    apex_item. Text(3,null) RESULT
    FROM EMP
    please suggest me

    Thank you
    Sudhir

    >
    No it does not add the two values in the column, user key to enter the value, it must add the value of the item and displays the result in a dynamic way. Need a suggestion for using javascript
    >
    This requirement was not not clear in the op.

    See the demo of Denes Kubicek.

    This topic is discussed far too often. Have you tried to Oracle Application Express (APEX) and adapting one of the many examples of LoV cascading to your situation?

    See you soon,.

    PS: Tip:
    Look for the p_item_id and p_attributes of the APEX_ITEM API parameters.
    You can call JS functions for example using p_attribute

    APEX_ITEM.TEXT(...
    p_attributes => 'onchange="doTotal(this);"', /* doTotal being your JS Function */
    ...
    

    Published by: Dominic August 16, 2012 11:52

  • Please advise on how to get the value of param output after the call to a procedure

    Hey,.

    a bean of support, the following code

    OperationBinding operationBinding = bindings.getOperationBinding ("func1");
    operationBinding.getParamsMap () .put ("pCustomerId", customerKey);
    operationBinding.execute ();

    What do I need to read the value of param?
    something like...
    String res = operationBinding.getParamsMap () .get ("myoutparam");

    Assuming that your operation binding is a method of AM service called func1, make the method returns the value and call getResult() on the operationBinding class.

    John

  • my privacy setting is stuck on do not forget history, won't stay on using the custom settings for history, after I've selected and click ok

    When I go to tools, Options, privacy and "Use the custom settings for history" of the value and then click on OK it won't save. It remains on "Remember history", even if she never will save "remember history" as I tested it. It seems if be produced after these recent last Firefox update. Anyone know why I can not choose "Use the custom settings for history", as is the parameter I want to use?

    Why aren't satisfied with the history settings by default that you currently have?

    Any changes (for example, to disable the cookies third party or form not given memory or keep cookies until you close Firefox and make an exception for the cookies you want to keep) that you will cause "use... custom parameters. "to be selected if you really want to see.

  • What does the red exclamation point and which would prompt me to now have more free disk space?

    It was getting my full disk space. Up to 1.2 GB to 73 GB. I removed some unnecessary files and programs up to 4.6 GB. Last night my internet was running very slow and I got a message that says that my disk space is full. I went to the Explorer, who intends to seek more to remove offline. To my surprise, it showed that I have 38 GB of free space. At the same time however, some (not all) of my desktop icons now have a red exclamation mark on them. There are some that are shortcuts, jpg files and doc files. That means the red exclamation that tempt me to now have more free disk space?

    I would just be guessing really. He could have files, online backup was queued up. It may be something to do with the shadow copy of Volume. If I use cleaning disc with the option all users and delete restore Points and shadow copies on the tab "More options", I'll be back about 15 GB on a disc of similar size. The effect is only temporary, until they accumulate again.

    http://Windows.Microsoft.com/en-us/Windows-Vista/delete-files-using-disk-cleanup

  • Understand the values fixed point of a NOR-9203

    I have a cRIO-9073 with a NI 9203 module. In LabVIEW FPGA, the card values are returned as a fixed point. LabVIEW chosen fixed point properties are (+/-, 21-4) that apparently offers a range of (- 3.125E - 2, 3.125E - 2, 2.98E - 8), and the current card in the range 4-20 MA with a resolution of only 16 - bit. My understanding of fixed point values is only slightly, then someone can explain to me why a 21-bit value is required for the 16 - bit acquisition data?

    Hi Thoric,

    Sorry, it took a while to get a response to you.   The necessary extra bits with fixed point representation are for the overflow feature.  There is more information in the link below.

    http://zone.NI.com/reference/en-XX/help/371361E-01/lvconcepts/numeric_data/#FXP_overflow

    I hope that this answer to your question, but if you need more help please let me know.

    Kind regards

    Thomas Clark

  • How to set the limit function, means I want defined logic that when the value is between 0 to 0.3 loop and then stops.

    Hello

    I'm looking for the logic as the way to define the logic of upper limit and lower limit.

    Means that there is only one indicator of entry in which a user can enter any value, I want that when the user gives value between 0 and 0.3 for example while then loop will stop other wise, it will work on an ongoing basis.

    Please guide me.

    Thank you very much.

    Please consider the VI below.

  • I change the ip address on the Exchange, share point and lync server other than the old serise

    How can I change the new series of IP on share point server lync, exchange server

    Hello

    Your question is addressed in the community forums.

    Try TechNet:

    TechNet Forums Home (view all) http://social.technet.microsoft.com/Forums/en-us/home

    Exchange Server http://social.technet.microsoft.com/Forums/exchange/en-US/home?category=exchangeserver

    SharePoint http://social.technet.microsoft.com/Forums/sharepoint/en-US/home?category=sharepoint

    Lync http://social.technet.microsoft.com/Forums/lync/en-US/home?category=ocs

    Lync Server http://social.technet.microsoft.com/Forums/lync/en-US/home?category=lync

    Don

  • Changing the language of Smartphones blackBerry after reboot setting

    Hello

    I work with few languages, after a reboot the settings to ' type and languages ' always

    change.

    How can I solve it?

    Thank you.

    Hello

    If your changes preferred language every time u restart your BB, then go to options-> typing and entry-> language... on the language tab, you will find the language selector, by checking every 2 it...

    This should solve your problem...

  • Identify the Type of Point and area Type, not just type

    AI tells you what you have selected in the control panel and in the appearance Panel.

    But when you select text, it just says: 'Type '.

    It would be nice if on the contrary, he says 'Point Type' or 'area '.

    I often play with the guy I want to see what kind it is because I forgot or whatever.

    I can want to intensify the type but there are 2 different approaches, and it depends on what kind of guy you have.

    It would really be hand to get There just tell you when you select a type.

    You can see if there is in

    ports and ports in the selected text, if there is, then this is the type of area, otherwise it is an object of type point.  In port-output port is the small rectangle along the bounding box in the upper left and lower right of the selected text object.

  • The folder in Inbox disappered after "compact folders" applied (and installed Lightning). MSF file seems to stay at the disk again. How to restore the folder?

    I have several folders in the Inbox.
    The last time (for months) Thunderbird asked to compact files. Last week, I deleted unnecessary messages in folders and applied "compact" on the Inbox (root) folder.
    Today, that I discovered that one of the folders inside the Inbox disappeared. However when I look at the e-mail on local disk storage I still see msf file with the name of the record lost in the Inbox.sbd folder.
    I also have installed lightning and Thunderbird update week last next to compression of files.
    Can I restore folder in the Inbox?

    is there another file of the same name, other than the MSF?

Maybe you are looking for