change the field type selection list of text based on the data in the other domain.

Hello

We have a requirement where we are looking to display the page as element select list or a free text field based on the value of the item to another page.

Say, we have two fields

Day:

Products:

If day = 'Monday' produced a drop in low field of another product would be a free text field.   Is this possible in APEX?

This is the configuration I did.

I used the field produced twice (as a text and list field select) as an element of a page., dependent on the value of the day I used the dynamic properties of actions to show/hide these fields.

However, when I click on submit, it throws an error:

ORA-06550: line 1, column 108: PL/SQL: ORA-00957: name of column in double ORA-06550: line 1, column 13: PL/SQL: statement ignored


Kind regards

Satya

You can have both share the same database column, the process of the APEX DML does not know how to consolidate.

You will need to add a calculation and determine the real value based on two fields, up to an only one mapped to db.

Tags: Database

Similar Questions

  • How do I disable a text field or select list when I change record.

    Dear Sir.

    I created the form with the report when I insert the new record, then all ground are able to insert the value in the table.

    Here I want to when I change any folder, then a field as a TEXTFIELD or select list, which I should be disabled in the case of a CHANGE.



    How do I disable a text field or select list when I change record.



    Thank you

    CORINE

    Hello

    Edit the element... There is a Readonly tab... Enter the condition for readonly... for example... Suppose you have a hidden field P1_X for the primary key. To add the new record, this field will be null and for editting p1_x will have the primary key value...

    So you can make the condition as P1_X readonly IS not null...

    Kind regards
    Shijesh

  • Can I change the properties of an individual link on an HTML page without changing the other links?

    Hello

    I have a contact page created in Dreamweaver and have created an e-mail link to start Outlook if clicked. However, all the links in my design have been updated a way, i.e. the stunned white text background more dark. My email link is however, on a white background so that you can't see against white. I want to come in and simply change the color property of the binding of e-mail without changing the other colors of link on the page. I tried but without success. Is this possible to do?

    Thanks in advance for any help!

    Try this-

    [email protected]"class ="special">[email protected] "

    and -.

    {a.Special}

    color: Red;

    text-decoration: none;

    }

    {a.Special:hover}

    color: Blue;

    }

    Murray

  • How can I change base without changing the others?

    Is it possible to define a color in a theme as the basis without changing the others?

    THX
    Andrew

    Hi André,.
    Currently, you cannot reset the base color without affecting the others. The base color causes all other colors.
    Saami

  • How to use artifacts from MDS repository from one domain to the other domain

    Hello

    I'm working on the Oracle SOA MDS repository. I created the Databased MDS repository to the local server's domain. Now, I want to use artifacts from local area MDS repository same in the other domain server (domain of Dev).
    I created the composite soa for it and tried to use artifacts from local area MDS repository and deploy soa composite in the field of the Dev. But I am not able to use repository artifacts MDS from one domain to the other domain.

    Please help me

    SOA 11 g: 11.1.1.5

    Published by: 850198 on July 4, 2012 02:26

    Hello

    You can specify where to look for MDS in adf - config.xml present in *\.adf\META-INF*.

    Change the section in the file above to your Local MDS Server.

              
                
                  
                  
                  
                  
                
              
    

    Kind regards
    Neeraj Sehgal

  • Select list THAT LOV based on the selection of the Parent list


    Hello

    I'm pretty new to APEX and which seems to be a pretty basic question, but I don't know how to do it.

    So, I have two items in the selection list on my page and I need to dynamically change LOV in the second list based on the value of one of the parents.

    I think this question been here before, so could someone just tell me the answer?

    Thank you very much

    Leo.

    Leo_Y wrote:

    I'm pretty new to APEX and which seems to be a pretty basic question, but I don't know how to do it.

    So, I have two items in the selection list on my page and I need to dynamically change LOV in the second list based on the value of one of the parents.

    I think this question been here before, so could someone just tell me the answer?

    To get the right answer, you must ask the right question.

    Integrated support in cascade LOV is addressed in the documentation.

  • Repointing of the reports to changed the subject domain names

    Hi all

    Is there an easy way to repoint already created reports to use the new areas?

    Thank you.

    Hello..

    First you not told us why you want to change the name of HIS (field)?
    I think you might have changed the name of HIS (the presentation layer) in SPR... Am I wrong?
    If so, you better create an alias name as the old name for the name of presentation layer... before renaming the name of the layer...

    To create aliases for name of presentation layer,

    1. double-click on the file of presentation in the presentation layer layer, go to the alias tab. Click the new (Insert) option and type the name of the old and click OK and now in the general tab, type the new name in the name field

    2 OR, right-click of presentation layer, click Rename and type the new name. This process automatically creates the alias of presentation Layer (SA) you can watch only on the alias tab.

    By doing this, of course, already developed reports will not be affected, but... If you want to change reports existed, as if you want to add another column... then the SA is not available in the selection pane.

  • How could put editable report column as read only based on the other domain

    Hello world

    I'm new to APEX. I have a modifiable tabular report (SQL query). When I choose the column (which is a selection list) of a certain value, I want column B to be read-only (depending on the result of an another SQL described below). It doesn't seem to be a READ ONLY section in the type of tabular report where I could put my SQL condition.

    In other words, "column B" must be read only based on SQL returning following true or Exists:
    Thus, to determine if column B is ready only, I need the following logic:

    SELECT 'x '.
    of tab1
    where key = (value of column A)
    and the flag = "Y".

    Any help would be greatly appreciated!
    Thank you
    François

    You can only do so if your tabular presentation is a manually created. In this example, it shows how to set this property:

    http://Apex.Oracle.com/pls/OTN/f?p=31517:170

    You can use a case statement to set this property for specific lines.

    SELECT empno,
           CASE
              WHEN ename LIKE 'A%'
                 THEN apex_item.text
                                  (34,
                                   job,
                                   80,
                                   100,
                                   'style="width:170px" readonly="readonly"',
                                   'f34_' || '#ROWNUM#'
                                  )
              ELSE apex_item.text (34,
                                   job,
                                   80,
                                   100,
                                   'style="width:170px"',
                                   'f34_' || '#ROWNUM#'
                                  )
           END job
      FROM emp
    

    Denes Kubicek
    -------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Opal-consulting.de/training
    http://Apex.Oracle.com/pls/OTN/f?p=31517:1
    http://www.Amazon.de/Oracle-Apex-XE-Praxis/DP/3826655494
    -------------------------------------------------------------------

  • Authenticate users in the other domain Windows

    Hello

    I'm trying to authenticate users in a different Windows domain. The correct version of the Remote Agent is installed on the domain controller. Director of company "runs" the service.

    I discovered that the group nesting is not working in version 3.3.3. Is this correct?

    I also have a universal and domain local group. In this group, I put some users in the domain, the trust.

    Authentication will not work: error on ACS: external DB account restriction.

    Also, I tried to do a group directly mapping in the trusted domain. When I click on 'Add Group Mapping', this is the error: "unable to enumerate windows... groups."

    How can I fix these problems?

    Thank you

    Remco

    Hi Remco

    Looking at the release notes under known issues in Cisco Secure ACS for Windows Server 3.3

    CSCei01730

    The EAP - TLS authentication to the trusted domain controller failed

    Authentication succeeded only when the customer the EAP - TLS to authenticate to the domain controller which connected directly to GBA, but when the user is in the ms trust (only in the ms trust) that linked to the first domain controller, the authentication has failed and has been the message of attempts fail: 'External account DB Restriction'.

    Same message is produced if the activation of the field stripping in database settings outside of Windows or not.

    CSCee13658

    Report of failed attempts for statement is not clear enough

    When the user validation fails for some reason any (external server is down, the right SSL certificate or key shift with NAS), attempts to csv report failed indicates that the failure of the authentication code is "restriction of account external db" or "CS password invalid.

    Workaround: this issue is cosmetic. No work around.

    Cordially MJ

  • Post Flex, catch in the other domain and redirect

    Hello world

    I am new to Flex, altought I work already done in AS3.

    I have been intrigued by a simple application that asked me to do. I wanted to learn Flex, yhis was an opportunity to start, but as always, when it comes the irt for new applications or programming skills disorders, spring of all stains.

    So the question I have, I think is a simple, but requires knowledge of ASP (because it is the language of script used here), but if you know more about PHP, this isn't a problem.

    So here it is:

    I do a simple form that must be distributed by other servers, in other words, other Web pages can put this form, as long as I give them the swf file. In this form user put the login and the password. Other variables are established and have their fixed value. I want to be able to present the data to another page that can process this information, and it redirects accordingly. Since it is in another area, I think I should use a 'proxy' file to transmit this information (unless you know another way to do it).

    The problem is that the news of the form are displayed in this proxy, and I want to repost it to the checkout page. But since this proxy will be a communication from server to server, this does not work, the information is passed, but I can't do any redirect with POST and I won't use querystrings, because this certificate will be stored in the browser history.

    Anyone has the idea how to do it? Any example?... thoughts?

    Thank you

    Hi, try this


    http://www.Adobe.com/2006/mxml"layout ="absolute"backgroundColor ="#FFFFFF"width ="1050"height ="700"borderColor ="#FCFDFD"backgroundGradientAlphas ="[0.0, 0.0]">

    private function send_data (): void {}

    var req_var:URLRequest = new URLRequest ("http://localhost/testPost/testPost-debug/script/catch.php");
    req_var. Method = URLRequestMethod.POST;

    var postData: URLVariables = new URLVariables();
    postData.testField = testField.text;

    req_var. Data = postData;
    navigateToURL (req_var, "_self");

    }



    
    
    //catch.php code
    
    i hope this helpfull 
    
  • Windows Server 2012R2 - network location awareness continues to change the public domain after rebooting

    I also have this problem but I have domain controllers that are NOT part of this Hyper-V host.  If I restart the network location awareness (which also restarts the network list Service) it goes back to the field as it should.  Now when I reboot this server it will be once more put the interface / network to the public even if this Hyper-V server has been successfully joined to the domain with a static IP address.

    Now for clarification.  This Hyper-V server is NOT yet configured virtual.  The only thing that has been set up is a NIC team with two cards on Board (LAN 3 & 4 ports) and two additional network cards four port card (ports 3 & 4).  Local network connection is dedicated to LAN Port No. 1.  We also have a dedicated of the IMM port for access to the Strip.

    The ONLY time I can get this server to restart and STAY in the 'Domain' location is now if I have the PORTFAST enabled on the switch port to which it is connected.  Yes, we use STP here in our company.  This is not the first time that I had to do this, but it seems not just as a colleague claims that he didn't need to do and its technology Hyper-V server restarts fine.  I him have had check it out and he sees no difference between its servers and mine.  Still mine restarts always in the "public" unless I have active portfast.  Any thoughts?

    Hello

    Post your question in the TechNet Server Forums, as your question kindly is beyond the scope of these Forums.

    http://social.technet.Microsoft.com/forums/WindowsServer/en-us/home?category=WindowsServer

    See you soon.

  • My email and Forum Microsoft have the same password and change the other!

    I recently spent the e-mail providers. I use a Hotmail e-mail based under its name and nothing else than problems, had nearly three times a week that something happens again. Three days ago, I tried to connect to the Microsoft Forums. It does not accept my password, so I created a new. Later, I tried to download my e-mail, the password was not accepted. An hour or later with the help of Technical Support of my email provider, I have returned my original password which was accepted.  Later or the next day I wanted access to the Forum of MSFT, but yet again, the password was rejected. I entered the email password and voila, it opened. I now have my e-mail, Forums of MSFT and Windows Live all with the same password. I use Office 2007 and Windows XP Pro. I'm afraid that this many programs with my word of one happening is very dangerous and fear the worst. I use Outlook as my e-mail program

    Can someone help me please here: will I pass to my previous email provider?   E-mail providers out there among the greatest how use a Hotmail based email service or Internet? are they the same? Thank you very much for your help! HDScala

    There are services out there e-mail providers that do not rely on Hotmail?

    A lot.  The Yahoo and Google offer free e-mail services.  Others exist as well. Brian Tillman [MVP-Outlook]
    --------------------------------
    https://MVP.support.Microsoft.com/profile/Brian.Tillman
    If a response may help, please vote it as useful. If a response to the problem, please mark it as an answer.

  • vxlan lan through the other domain controller

    I can create a vxlan on different data centers, or must be the same data center and different groups?

    I have 3 data centers with all the different VLAN on each. I wonder if I can migrate a virtual machine, even from dc1 to dc2 and keep the same IP address using vxlan

    Thank you

    VXLAN brought network are the breast of a data center (while you perform preparation VXLAN at the data center level), so it is not possible to expand on a virtual wire across domain controllers. vWires can extend it on different groups within a domain however controller.

  • change the color in the text box in the required field

    I would like to change the color in the white box (don't know a better name for this space on the form) next to a field title. And only for the mandatory elements on a page. This could be a selection list, a text box or a text field.

    I looked at several positions. I understand how to change the background color of the label of the element on the page. But not what I need.

    I gave a quick glance at the last post titled "the color of text field" led me to the site

    [http://apex-notes.blogspot.com/2007/12/colorful-web-forms.html]

    provided by Paulo Vale. Moreover, very well done Paulo.

    However, when I followed the instructions for all 3 formats ' display as ' for a field, the content of my form has disappeared and all that showed has my original banner at the top of the page.

    So does anyone have an idea to share on how to change color whitebox of a page element?

    Thank you
    Maggie

    Published by: mjhamilton on December 11, 2008 09:23

    Hello Maggie,

    The 'problem' with APEX, is that the deposit contains no information whether a field is required or not. Only the label has an attribute that you can set to "Required". Of course, you can create a query to retrieve items with a "Mandatory" label by:

    select WORKSPACE, APPLICATION_NAME, PAGE_ID, PAGE_NAME, REGION, ITEM_NAME, ITEM_LABEL_TEMPLATE
    from APEX_APPLICATION_PAGE_ITEMS
    where ITEM_LABEL_TEMPLATE LIKE 'Required%' 
    

    As Paulo wrote: you must manually set the attributes of elements of HTML form to a class (like class = 'RequiredField') and create an entry in your CSS for this class (I like. RequiredField {(background-color: #FFFFCC;}).}
    Or you can write clever code automagically defines this class for all the elements that are returned by the above application. I don't have that, but you should do something like:
    1. create a javascript function that onload is triggered. This js function must call an application process.
    2. this AP retrieves the 'required' of repository items and returns to the js function.
    3. the js function adds the class needed to these elements.

    Good luck ;-)

    Greetings,
    Roel

    http://roelhartman.blogspot.com/
    http://www.bloggingaboutoracle.org/
    http://www.Logica.com/

  • Select the value of the text element based on the selection list

    Hello

    I have a selection list that displays a number of codes of a table, and I want to display the description of the code (from the same table) in a field of text next to it.

    The selection list works good based on an LOV, but I can't seem to find how to get the return value, so I can identify the correct description of the table to be displayed.

    Thank you

    See this link: http://htmldb.oracle.com/pls/otn/f?p=31517:80:6340934958598741:NO

    It will have a lov that calls an application process that fills a text box...

    Thank you

    Tony Miller
    Webster, TX

Maybe you are looking for