Passing Boolean parameters to Oracle

Hello to everyone.
I just started working with Oracle stored procedures. I've written a procedure that takes a Boolean as one of its input parameters, but I can't find out how to get Coldfusion to pass the value to correctly. If I run the procedure within the customer Oracle itself it works OK but CF still gives the error "PLS-00306: wrong number or types of arguments in the call to 'PROC_TEST' ORA-06550: line 1, column 7: PL/SQL: statement ignored", no matter how I try to convey my Boolean value. I tried to use all combinations of CF_SQL_BIT and CF_SQL_INTEGER and '1' and 'true' and 'TRUE' in the < cfprocparam > tag, but none of them work. I suppose I could change the code to use an integer instead, but by using a Boolean value for this example makes the most sense.

If anyone has any ideas, that would be great.

Concerning
Barry.

Hi Phil, thanks for the answer!
I continued the Google search and came up with the same conclusion you mention. Here are some links:
http://www.Oracle.com/technology/tech/Java/sqlj_jdbc/htdocs/jdbc_faq.htm#34_05
http://www.utexas.edu/its/UNIX/reference/oracledocs/V92/B10501_01/Java.920/a96654/tips.htm #1005343

What a strange situation that she. On the one hand, they say that 'Boolean' cannot be used outside of PL/SQL, but what ARE stored procedures and if not in PL/SQL? Musing on this subject does not move us forward though I think.

I'll change my Boolean parameter to be something more easy to SQL (without the PL!).

Thanks for getting back to me.

Barry

Tags: ColdFusion

Similar Questions

  • Why is there a limit to the number of Boolean parameters in a custom function?

    We have a custom function which "flattens" four time values of the text in a single time value.

    We want to do the same thing with the Boolean time values.

    However, OPM throws an error when it reads the metadata for the function in extensions.xml.  It shows all the Boolean parameters must be the last.  We can not put all changed because there is more than one.

    This is error code W00001-OPM OPM.

    Any ideas on how I can work around this limitation?

    Excerpt from the OPA developer assistance:

    Only a Boolean parameter can be passed to a function, and it must be the last parameter.  This is due to a limitation in the compiler of the rule.  Any number of other parameters may however be present.

    If you want to pass multiple Boolean values, create a temporary text variable / document values "True" / "False" using the table of rules.

  • passing multiple parameters to a portlet

    Hi all

    I created a form of portlet a taskflow using the WSRP producer connection I add this portlet in the JSF page a new application.
    1. is it possible to create a portlet that accepts multiple parameters?
    2. is it possible to map a portlet from method to method in the new application.
    3. is there an implicit event that can be passed when all parameters are passed to the portlet.

    What is my requirement:-I send some 4-5 (String) parameters of the new application for the purposes of the portlet.
    What would be the sequence in which would be called the setters of this parameters in the Portlet application?

    can you please me if this is possible and how to do it. A tutorial would be useful.

    Kind regards
    ND

    Your question is associated with WebCenter and you must request this in the forum {forum: id = 354}.

    Anyway, you can pass several parameters to a portlet. Set the parameters as parameters to the corresponding defined TaskFlow. When the taskflow is wrapped as a portlet producer by the JSF Portlet Bridge all taskflow parameters to expose as a separate navigation portlet settings. If you consume the portlet to a page, then the portlet parameters will be bound to variables PageDef and you can use these variables to pass values of parameter to the portlet. If you need to re - send the new parameter values when running, just set the corresponding pageDef variables and update the tag by PPR. Don't forget to mark the binding region of the portlet in the PageDef as RefreshIfNeeded, otherwise it will not get the new values and is not refreshed.

    Read the next article in the documentation on the use of the navigation settings to link contextual portlets:
    http://download.Oracle.com/docs/CD/E14571_01/WebCenter.1111/e10148/jpsdg_pages.htm#CHDJABHD

    If you have additional questions, please ask them in the WebCenter forums.

    Dimitar

  • PASS URL parameters

    Hi all
    I checked the GO url with a filter feature - works great, if I try to add more number of parameters, it does not work. BI takes a single parameter value. I tried with 10 filter value in the URL GO. For this, I have passes the parameters to
    .. Saw.dll? GO & Path = < ReortPath > & Action = Browse & P0 = 10 & P1 = eq & P2 = Col1 & value = P3 & P4 = Col2 & P5 = value...

    is there a any restriction on the number of parameters to OBI?

    Hi, the syntax of URL go that you guys were talking about is old. I don't know when OBIEE has published this new syntax, but it is quite flexible in terms of number of parameters to pass HTML controls.

    New syntax is something like that

    http://saw.dll? «Go & Path = / shared //& Action = Navigate & Options = fdr & Col1 = "" & val1 ='' & op1 = eq...»
    You can replace %20 for spaces

    I found more information on this new syntax at this site:

    http://sureshotstrategies.WordPress.com/2008/12/13/integrating-Oracle-OBIEE-content-using-go-URL-syntax-2/

    Good luck
    SAI

    Published by: Sai Kumar Reddiboyina, on September 20, 2009 13:33

  • I have my old laptop work, admin access, and I need to pass the parameters of language from German to English, especially the menus. Can you please indicate.

    I have my old laptop work, admin access, and I need to pass the parameters of language from German to English, especially the menus. Can you please indicate.

    A.I have changed the time zone.

    But I can't understand how to move to the menus in ENGLISH and the keyboard settings. They are in German. Need urgent help

    The system is running on Windows XP Professional

    Thank you for your help in advance.

    (Yes the multi language pack is somewhere on the laptop... where I'm not sure)

    Hello

    1. - you want to say that you have an administrator access on this computer?

    2. What is the operating system default language when the laptop was purchased?

    If the default language is German so it is not possible to change it to English.

    Reference: to change the language used for menus and dialog boxes

  • How to pass the parameters in the http post method?

    Hello

    I want to download the mp3 file on server and I need to pass two parameters with the post method.

    Here is my code for this.

                          String userid="id_user=8379";
                  String filename="trackName=sample.mp3";
                  String params=userid+"&"+filename;            
    
                            httpcon=(HttpConnection)Connector.open("http://api.upload.com/gStorage/uploadSong?output=json",Connector.READ_WRITE);
                httpcon.setRequestMethod(HttpConnection.POST);
                httpcon.setRequestProperty("Content-type","application/x-www-form-urlencoded");
                httpcon.setRequestProperty("Content-type","audio/mpeg3");
                os=httpcon.openOutputStream();
                os.write(params.getBytes("UTF-8"));
                fc=(FileConnection)Connector.open("file:///E:/sample.mp3",Connector.READ_WRITE);
                fileis=fc.openInputStream();
                bos=new ByteArrayOutputStream();
                byte[] data=new byte[50000];
                int ch;
                while ((ch=fileis.read(data,0,data.length))!=-1) {
                    bos.write(data,0,ch);
                }
                os.write(bos.toByteArray());
                os.close();
                System.out.println("Response code From server"+httpcon.getResponseCode());
                if(httpcon.getResponseCode()!=HttpConnection.HTTP_OK)
                {
                    System.out.println("Failed to upload bytes");
                }
                else
                {
                    //is=httpcon.openInputStream();
                    DataInputStream dis=httpcon.openDataInputStream();
                    int ch1;
                    StringBuffer buffer1=new StringBuffer();
                    while ((ch1=dis.read())!=-1) {
                        buffer1.append((char)ch1);
                    }
                    System.out.println("Response From Server"+buffer1.toString());
                }
            } i am getting response code ok but fail to upload file.
    

    may I passing the parameter in the wrong way?

    thankx.

    Hello

    Nitin I currently do a midlet project.

    So I used multipart post method.

    I just read this article. http://MindTouch.firmstep.com/AchieveForms/Design_Guide/Integration_Actions/types/HTTP_POST#top

    package com.http.main;
    
    import java.io.ByteArrayOutputStream;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.Enumeration;
    import java.util.Hashtable;
    
    import javax.microedition.io.Connector;
    import javax.microedition.io.HttpConnection;
    
    import com.sun.midp.io.BufferedConnectionAdapter;
    
    public class HttpMultipartRequest
    {
        static final String BOUNDARY = "----------V2ymHFg03ehbqgZCaKO6jy";
    
        byte[] postBytes = null;
        String url = null;
    
        public HttpMultipartRequest(String url, Hashtable params, String fileField, String fileName, String fileType, byte[] fileBytes) throws Exception
        {
            this.url = url;
    
            String boundary = getBoundaryString();
    
            String boundaryMessage = getBoundaryMessage(boundary, params, fileField, fileName, fileType);
    
            String endBoundary = "\r\n--" + boundary + "--\r\n";
    
            ByteArrayOutputStream bos = new ByteArrayOutputStream();
    
            bos.write(boundaryMessage.getBytes());
    
            bos.write(fileBytes);
    
            bos.write(endBoundary.getBytes());
    
            this.postBytes = bos.toByteArray();
    
            bos.close();
        }
    
        String getBoundaryString()
        {
            return BOUNDARY;
        }
    
        String getBoundaryMessage(String boundary, Hashtable params, String fileField, String fileName, String fileType)
        {
            StringBuffer res = new StringBuffer("--").append(boundary).append("\r\n");
    
            Enumeration keys = params.keys();
    
            while(keys.hasMoreElements())
            {
                String key = (String)keys.nextElement();
                String value = (String)params.get(key);
    
                res.append("Content-Disposition: form-data; name=\"").append(key).append("\"\r\n")
                    .append("\r\n").append(value).append("\r\n")
                    .append("--").append(boundary).append("\r\n");
                System.out.println("****In while Loop:-****"+res);
            }
            res.append("Content-Disposition: form-data; name=\"").append(fileField).append("\"; filename=\"").append(fileName).append("\"\r\n")
                .append("Content-Type: ").append(fileType).append("\r\n\r\n");
            return res.toString();
        }
    
        public byte[] send() throws Exception
        {
            HttpConnection hc = null;
    
            InputStream is = null;
    
            ByteArrayOutputStream bos = new ByteArrayOutputStream();
    
            byte[] res = null;
    
            try
            {
                hc = (HttpConnection) Connector.open(url);
    
                hc.setRequestProperty("Content-Type", "multipart/form-data; boundary=" + getBoundaryString());
                hc.setRequestProperty("Content-Length",postBytes+"");
    
                hc.setRequestMethod(HttpConnection.POST);
    
                OutputStream dout = hc.openOutputStream();
    
                dout.write(postBytes);
                dout.close();
    
                int ch;
    
                is = hc.openInputStream();
                StringBuffer buffer=new StringBuffer();
    
                while ((ch = is.read()) != -1)
                {
                    bos.write(ch);
                    buffer.append((char)ch);
                }
                res = bos.toByteArray();
                System.out.println(buffer.toString());
            }
            catch(Exception e)
            {
                e.printStackTrace();
            }
            finally
            {
                try
                {
                    if(bos != null)
                        bos.close();
    
                    if(is != null)
                        is.close();
    
                    if(hc != null)
                        hc.close();
                }
                catch(Exception e2)
                {
                    e2.printStackTrace();
                }
            }
            return res;
        }
    }
    

    and use it in this way

    public void getBytes()
        {
            ByteArrayOutputStream bos=null;
            try
            {
                bos=new ByteArrayOutputStream();
                InputStream fis=getClass().getResourceAsStream("/super.mp3");
                int ch;
                byte[] data=new byte[120];
                while((ch=fis.read(data,0,data.length))!=-1)
                {
                    bos.write(data,0,data.length);
                }
                Hashtable params=new Hashtable();
                //params.put("id_user","8474");
                params.put("id_user","8379");
                params.put("file1","audio.mp3");
                HttpMultipartRequest httpreq=new HttpMultipartRequest("http://api.upload.com/gStorage/uploadSong?", params,"file1","xpressMusic.mp3","audio/mpeg",bos.toByteArray());
                httpreq.send();
                bos.close();
                fis.close();
            }
            catch (Exception e) {
                System.out.println("Exception"+e);
            }
    

    Here, the key is contenttype, contentLength.you can get the info on it from the link above.

    thankx.

  • Accessing content BI in OBIEE11g and him passing multiple parameters

    Hello

    I have just testted accessing OBIEE11.1.1.6 BI content and passing multiple parameters following the link:

    http://www.rittmanmead.com/2012/07/navigating-to-BI-content-in-obiee11g-and-passing-multiple-parameters/

    I added two js in UserScripts.js more


    USERSCRIPT.customPortalPageNav = {function (arg_array)}
    var str = "parent. PortalPageNav (1 ";
    for {(args in arg_array)
    var arg_name = args;
    var value = arg_array [arg_name];
    "" Str += "," ' + value + ' "';
    }
    (STR +=») ';
    eval (STR);
    };

    USERSCRIPT.customPortalNav.publish = {parameters: []}
    "new USERSCRIPT.parameter("1","Dashboard","/shared/FOLDERNAME/_portal/DASHBOARDNAME"),
    New USERSCRIPT.parameter ("2", "Page", "insert your Page"),
    new USERSCRIPT.parameter ("3", "Table", "insert a table"),
    new USERSCRIPT.parameter ("4", "Column", "insert a column"),
    new USERSCRIPT.parameter ("5", "Value", "Insert Value")]};

    and restart the presentation Service.

    but in the column properties > Interaction > value primary Interaction > links of Action > add > new > call browser Script

    I can not found customPortalPageNav in the menu.

    Anyone know what stage can cause?

    Thank you!

    Hi Leo,

    Correct function name. Change of customPortalNav to customPortalPageNav

    USERSCRIPT.customPortalNav.publish = {parameters: []}

    USERSCRIPT.customPortalPageNav.publish = {parameters: []}

    Kind regards
    DpKa

  • Passing two parameters to work

    Hello

    How to pass multiple parameters to a function? In the example below, the user selects a radio button, fills a TextInput, and clicks a button to submit the two parameters to a function. How to say function that the event contains two parameters, is to say the value of the option button and that of the TextInput?

    < mx:RadioButton id = "png" label = "png" / >
    < mx:RadioButton id = "png8" label = "png8" / >
    < mx:HBox >
    < mx:Text >
    < mx:text > enter the size of the image < / mx:text >
    < / mx:Text >
    < mx:TextInput width = "30" id = 'size' text = "1024" > < / mx:TextInput >
    < / mx:HBox >

    < mx:Button label = "Snapshot" click = "clickHandler (event)" / > "

    Thank you

    Manolo

    Hello

    So if I understand you, you have a function to do something when the button is clicked.  You will need to acquire the values on the radio and textinput, so the button click handler would look like;

    private void clickHandler(event:MouseEvent):void {}

    Then you would have to acquire the values of two controls

    var radio: RadioButton;

    decide option button is selected and then store a reference to it in the variable radio (cos I don't ' know what data you want her)

    If {(png.selected)

    Radio = png;

    } else {}

    Radio = png8;

    }

    Then pass two parameters to a function have you that accepts two parameters.

    myFunc (textField.text, radio);

    }

    Your function to accept these should look like

    function (text: String, radioSelected:RadioButton): void {}

    }

    There's a few ways to do that is one.  This help, or the I understood you?

    Andrew

  • Passing multiple parameters to a treelist using a link

    Hello

    I was wondering if I could pass several parameters via a list of tree binding.

    I have the following SQL query to my tree:

    Select 'TREE_ID_SK' id,
    "TREE_PARENT_ID" the nest,
    Name of "TREE_NAME."
    ? p = & APP_ID.:80: & SESSION. : NO::P80_TREE_ID_SK :'|| "" Link TREE_ID_SK "
    null a1,
    null A2
    of ' #OWNER # '. " TREE_LIST ".

    I want to spend the TREE_NAME in the link. Is this possible?

    Thanks in advance,
    ca84

    Hi ca84,

    Yes, it is possible to pass several parameters via your link tree. You must update your link to something similar to the following, to pass the TREE_NAME value to an existing page item, would simply say P80_TREE_NAME:

    Select 'TREE_ID_SK' id,
    "TREE_PARENT_ID" the nest,
    Name of "TREE_NAME."
    ? p = & APP_ID.: 80: & SESSION. : NO::P80_TREE_ID_SKP80_TREE_NAME:'|| "" TREE_ID_SK "| «, » || "" TREE_NAME " link,.
    null a1,
    null A2
    of ' #OWNER # '. " TREE_LIST ".

    I hope this helps.
    Kind regards
    Hilary

  • A url that refers to an application process pass several parameters?

    Hello

    I have a page in an application that uses pl/sql to generate a list of links.

    The purpose of each link is to call another pl/sql procedure which in turn opens / runs an external report on the application of the APEX (or a call to the server to Oralce apps generate direct or pull clob is stored in the database). If the URL call the pl/sql procedure directly, I lose session state and doesn't remember who the user is. To maintain session state made URL refers to an APPLICATION_PROCESS. I would like to pass a number of parameters, but may only move one, using javascript to pass the value to a hidden element that is accessible in the procedure called by the APPLICATION_PROCESS.

    Can I pass several parameters?
    My URL:
    https:// < Server > / pls/apex/f? p = V('APP_ID'):0:V('APP_SESSION'):APPLICATION_PROCESS = MY_PROCESS:NO:P1NAME:P1VALUE

    I was able to pass all parameters P1VALUE and using a special character delimiter he break up once again in the javascript code, but would rather not.

    Thanks for any help,
    Jock

    Did you mean something like this?

    https:///pls/apex/f? p = V('APP_ID'):0:V('APP_SESSION'):APPLICATION_PROCESS = MY_PROCESS:NO:P1NAME, P2NAME, P3NAME:P1VALUE, P2VALUE, P3VALUE

    Best regards, Kostya Proskudin

  • Problem AJAX (problems of passing two parameters to an application process)

    Hello

    I need to pass two parameters to a procedure of application via an AJAX request.

    All are my events show below, as you can see that the second p_arg_values does not contain any value. Its as if this get.add('TEMPORARY_ITEM_2',pThis2.value); line is ignored. What changes can I make to do this work?


    P2_QUERY_GROUP (the HTML Form element attributes)
    OnChange = "get_query_select_list_xml (This, 'P2_QUERY', 'P2_PRODUCT_GROUP')" "
    function get_query_select_list_xml(pThis,pSelect,pThis2){ 
        var l_Return = null;
        var l_Select = html_GetElement(pSelect);
        var get = new htmldb_Get(null,html_GetElement('pFlowId').value,
                  'APPLICATION_PROCESS=Query_Select_XML',0);
        get.add('TEMPORARY_ITEM',pThis.value);
        get.add('TEMPORARY_ITEM_2',pThis2.value);
        gReturn = get.get('XML');
        if(gReturn && l_Select){
            var l_Count = gReturn.getElementsByTagName("option").length;
            l_Select.length = 0;
            for(var i=0;i<l_Count;i++){
                var l_Opt_Xml = gReturn.getElementsByTagName("option");
    appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
    l_Opt_Xml.firstChild.nodeValue)
    }
    }
    get = null;
    }

    Query_Select_XML (Application Process)
    declare
    l_counter number;
    l_o_name varchar2(2000);
    begin
    owa_util.mime_header('text/xml', FALSE );
    htp.p('Cache-Control: no-cache');
    htp.p('Pragma: no-cache');
    owa_util.http_header_close;
    htp.prn('<select>');
    for rec in (select QUERY, ID
    from     TECH_DB_VIDEO_QUERY
    WHERE instr(QUERY_GROUPS,addzero(:TEMPORARY_ITEM))>0
    AND instr(PRODUCT_GROUPS,addzero(:TEMPORARY_ITEM_2))>0
    ORDER BY QUERY)
    loop
    htp.prn('<option value="' || rec.id || '">' || rec.query || '</option>');
    end loop;
    htp.prn('</select>');
    end;


    FIREBUG Output

    Post
    p_arg_names     TEMPORARY_ITEM
    p_arg_names     TEMPORARY_ITEM_2
    p_arg_values     16
    p_arg_values     
    p_flow_id     107
    p_flow_step_id     0
    p_instance     3349916470781784
    p_request     APPLICATION_PROCESS=Query_Select_XML

    Response
    <select></select>

    Regards
    Adam

    Adam:

    The second 'get.add' should be

    get.add('TEMPORARY_ITEM_2', $x(pThis2).value);
    

    CITY

  • Pass the parameters to the stubborn JSPX workflow

    Hi all

    1 created a page JSPX using UIShell model.  This page contains 4 UI components (InputComboBoxListOfValues) in SingleObjectContextArea.  Created a Bean managed to this page and capture the value selected in the ValueChangeListner and the value added to pageFlowScope.

    2. created Unbounded task Flow, dragged the JSPX page.

    3. have an existing defined task flow with fragments of the page, there a MethodCall activity who expects JSPX inputParameter values.

    4. to call the workflow defined Unbounded task Flow (a page JSPX) created 2nd JSPX page using the UIShell model.

    5. slide the existing delimited task Flow in 2nd page JSPX, context menu selected region.  This region is created in SingleObjectContextArea of UIShell.

    6. When you drag its questions about inputParameter mapping workflow related.

    7 configure the inputParameter value coming from pageFlowScope.

    8 moved the drawing of JSPX 1st to 2nd page JSPX for complete Navigation.

    9. in executing the Unbounded Flow task, show JSPX 1st with LOV.

    10. the values selected and clicked on submit Action.

    11. its now showing 2nd JSPX that contains the delimited task flow.

    12 but his empty poster records the table.  (Note: I pass parameters to the InputParameters MethodCall (InputParameters) as pageFlowScope, my display of records based on inputParameters when tested to OrcleSQLDeveloper DB)

    Could any body help me on this issue.

    My Code Snippets of data binding of the 2nd JSPX page which linked the task Flow as a regionModel. :

    < taskFlow id = "TaskFlow1".

    taskFlowId="/WEB-INF/oracle/apps/TaskFlow1.xml#TaskFlow1".

    Activation = "deferred."

                  xmlns=" http://xmlns.Oracle.com/ADF/controller/binding "> "

    < Parameters >

    < parameter id = "PartnerKeyType" value = "#{pageFlowScope.PartnerKeyType}" / >

    < parameter id = "PartnerKey1" value = "#{pageFlowScope.PartnerKey1}" / >

    < parameter id = "InteractionPartnerRole".

    value = "#{pageFlowScope.InteractionPartnerRole}" / >

    < parameter id = "BusinessProcessName".

    value = "#{pageFlowScope.BusinessProcessName}" / >

    < / Parameter >

    Hello

    first of all can you get the pageFlow range variable in taskflow? that you spend page jspx?

    If you are able to get the value of Lov Taskflow try refresh taskflow on change from the LOV.

    You must add the input as boolean parameter type, change false to true when the LOV value has changed.

    now use refreshifNeeded property in the file for pagedef links

  • problem in passing the parameters for dashboard invites you in the URL

    Hello

    We have created a dashboard on OBI has a few invited dashboard. We have a requirement that we open the dashboard of an external application. We do this by invoking a URL. We want the dashboard to turn guests already applied.

    I tried to open the dashboard with the following URL

    http:// < servername:port > /Analytics/Saw.dll? GB & PortalPath=/shared/Procurement%20and%20Spend/_portal/Supplier%20Performance & Page = overview

    But when I use the URL above to see the dashboard is not coming. It shows the following error

    No column
    The request cannot be performed because it contains no columns.

    When I use the following URL (which has the keyword "Dashboard" not "Go") the dashboard is coming fine

    http:// < servername:port > /Analytics/Saw.dll? Table edge & PortalPath=/shared/Procurement%20and%20Spend/_portal/Supplier%20Performance & Page = overview

    He invites dashboard in the dashboard. When I try to send the value of filter with URL (given below) it does not work. I just saw the upcoming dashboard.

    http:// < servername:port > /Analytics/Saw.dll? Dashboard & NQUser = Admin & NQPassword = SADMIN & PortalPath=/shared/Procurement%20and%20Spend/_portal/Supplier%20Performance & Page = Preview & P0 = 1 & P1 = eq & P2 = provider. "" Provider % 20Name ' & P3 = 1 + AccessMicron

    When we use the keyword of the dashboard in the URL, can pass us the parameter for the dashboard proimpt... ? If we can do that... How to make... ? Is this the same way we do to go the URL. ..?

    Please let me know if you need more information on this.

    Thanks in advance for your time,
    Regnier

    Published by: Raja Kumar on January 22, 2010 03:29

    Hello

    You must also have '& Action = Navigate' clause too.

    You can pass parameters to the dashboard reports too.

    For syntax, see these sites

    http://download.Oracle.com/docs/CD/E12096_01/books/AnyWebAdm/AnyWebAdm_APIWebIntegrate6.html#wp1005251

    http://oraclebizint.WordPress.com/2007/07/30/customizing-Obi-EE-%E2%80%93-go-URL-parameters/

    Kind regards
    Rambeau

  • How to pass optional parameters in discoverer 4i

    Hello
    How to pass optional in oracle discovere 4i parameters, please any body can help me.


    Kind regards
    Roxanne.

    Hello

    Sorry, I wasn't very clear.

    If you have a question to your EUL, for example, a fullname element and that you set a parameter based on the fullname element, for example, fullname_param and then your workbook contains a condition that uses the parameter, for example, fullname IN: fullname_param.

    If you change this condition by adding a supplement OR in the State, you can change the condition of:

    FullName IN: fullname_param or NVL (fullname, 'ALL') = DECODE (: fullname_param, 'ALL', fullname)

    Then when your user enters the value ALL the parameter fullname_param the condition that you have defined a filter on the fullname element displays all lines.

    Now if you also have a list of values defined for the fullname element then the item class used by the fullname also element will have to be changed so that it returns the value ALL in the list of values.

    Hope that is more clear now.
    Rod West

  • Passing of parameters to an Apex application

    Hello

    How to pass parameters to a page in an Apex application.

    I have an app 108 and 1 page, the link is ' f? p = 108:1.

    but to set a parameter, if its like this = > ' f? p = 108:1 & p1 = test"How do I get it back?


    thnx
    Nemo

    The link should not be like this:

    f? p = 108:1:2251557986239054:P1_ORGN:1530

    but like this:

    f? p = 108:1:2251557986239054:NO:P1_ORGN:1530

    I think that you should really start with the Developer Day + 2-Guide. You can also use my demo application:

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

    to see how different things nee to be put in place in order to work.

    Take a look at page 1. Here you have a link from the report with two, showing all employees belonging to a particular department.

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

Maybe you are looking for

  • How to import contacts to android

    After I reset my one touch heat e I re - import my contacts from my old nexus of Galaxy, which extends from cyanogen with local contacts. I can export the ther contacts in different formats - the last time I did, I does in vcf, csv and xml - but only

  • Updates to driver for Satellite L500

    Laptop: Satellite L500Part number: PSLS9A-025012Screen: LG Flatron E2350V, using an HDMI cable Operating system: a clean install of Windows 8.1 The screen shows a bunch of 1 cm black circle at the edge of the 'window '.After various web searches, it'

  • Adapter replacement for the W510 Iconia

    Where can I get a replacement for the W510 Iconia adapter?

  • Speakers or headphones not found

    My PC is Dell Dimension C521. Maintain theNOTE from the ADMINlabel: maintain the label removed by privacy policy > OS Win 10 Can someone please advise. My speakers and headphones are not. I tried different speakers and I get the message that they are

  • Front USB on HP 7610

    I own HP 7610 Wide Format Printer. Somehow, I can't use my USB port before you read my USB key. When I try to scan to memory device, the control panel advises me that the PORT has been disable by the network administrator, contact your administrator.