URL - separated by commas contains a list of values to assign items to the page '& '.

I want to pass values to the page elements in a URL which includes this symbol '& '.

example: ...f?p=209:1:::p1_ind:aerospace%20%26%20defense
expects that AEROSPACE & DEFENSE would be passed to the element P1_IND to Page 1 of application 209
the page is a select and display in the selection list value is AEROSPACE & DEFENSE
This URL causes an error - mod_plsql: / pls/eds/f HTTP - 400 Missing '=' in query string or post the form (from firefox)... (IE returns a HTTP 400 .but you can find the mod_plsql error in the Apache error_log)

If I run the same URL as above, but this time modify the P1_IND page to display text element (special escape characters, does not save the State)
the URL successfully calls the page and displays the value in the element P1_IND - AEROSPACE & amp; DEFENCE (without the space between the & amp...) I could not determine how to get the word combined to make here)

Once more with the same URL, but this time the page P1_IND element set to display text (does not save the State)
the URL successfully calls the page and displays the value in the element P1_IND - AEROSPACE & DEFENSE

QUESTION: How to pass a value to a page element 'list of selection' in a URL when the page element includes an ampersand?
.. .and what is the relevance of the mod_plsql error... /f HTTP - 400 Missing '=' in query string or form post

The Solution is to use the spaces (%20) instead of 26%

Tags: Database

Similar Questions

  • Column value separated by commas to convert to another value separated by commas and happening as a component of output sys_refcursor

    Hello

    I have 3 tables with the following structure.

    create table a_os_lang_stls

    (ID NUMBER )

    SWB_NUMBER VARCHAR2 (30),

    Pc_NUMBER VARCHAR2 (30),

    PC_FLAG TANK (1),

    INSTALLATION_ord NUMBER ,

    SP_OR_LATER_VSN TANK (1),

    Platform VARCHAR2 (4000),

       OS VARCHAR2 (4000),

    LANG VARCHAR2 (4000),

    LOSS_OF_FUNC_REASON_TXT VARCHAR2 (4000),

    CREATION_DATE DATE ,

    MODIFIED_DATE DATE ,

    CREATED_BY VARCHAR2 (100 BYTE),

    MODIFIED_BY VARCHAR2 (100 BYTE)

    );



    Insert in a_os_lang_stls

    values (1 'SWB1' 'SWB0','P',1 of ','11118,14,16,234,124' '12,26,17,24,35''34,28,45,67,123,95',USER, NULL, NULL, NULL, SYSDATE);

    Insert in a_os_lang_stls

    values (2,'SWB1' 'SWB2','P',2 of ','111,20,14,16,124''11,26,18,24,35''35,27,42,67,123,95', SYSDATE, NULL, NULL, NULL, USER);

    insert into a_os_lang_stls

    values (3,'SWB1','SWB3','C', 1,'','11118,14,16,234,124','12,26,17,24,35',' 35,27,42,67,123,95', SYSDATE, NULL, NULL, NULL, USER);

    insert into a_os_lang_stls

    values (4,'SWB1','SWB4','C', 2,'','111,20,14,16,124','11,26,18,24,35'' 34,28,45,67,123,95, SYSDATE, NULL, NULL, NULL, USER)



    CREATE TABLE os_dtls

    (

      OSCODE                 VARCHAR2 (10 BYTE),

    ID NUMBER DEFAULT NULL,                                     

    AG_OSCODE VARCHAR2 (250 BYTE),

    );


    insert into os_dtls

    values ('HUX', 12, 'HP UNIX');

    insert into os_dtls

    values('SUX',26,'SOLARIS');

    insert into os_dtls

    values ('LUX', 17, 'LINUX');

    CREATE TABLE lang_dtls

    (

    LANGCD TANK (2 BYTE),

    LANGNAME VARCHAR2 (255 BYTE),

    ID NUMBER DEFAULT 1 NOT NULL                                                          

    );


    insert into lang_dtls

    values ('ENG', 'ENGLISH UK', 35);

    insert into lang_dtls

    values ('UEG', 'USA ENGLISH', 27);

    insert into lang_dtls

    values('FR','FRENCH',45);

    Information on the database:

    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64 bit Production

    PL/SQL version 11.1.0.7.0 - Production

    Production base 11.1.0.7.0

    AMT for Linux: Version 11.1.0.7.0 - Production

    NLSRTL Version 11.1.0.7.0 - Production

    I have to write a procedure like this

    procedure os_lang_info (P_SB_NO IN varchar2, p_pcur sys_refcursor, p_ccur, sys_refcursor );

    The requirement is to get the details for a given swb_no where pc_flag is P or C pass like 2 different sys_refcursor. But the value of column of bones and lang I need to map to the os_dtls and lang_dtls tables to get the ag_oscode and langname respectively for the corresponding id then through sys_refcursor.

    So sys_refcursor structure will be

    Open the p_pcur for

    Select * from a_os_lang_stls

    where swb_number = p_sb_no

    and PC_FLAG = 'P' ;


    so the output will resemble the following

    1 , « SWB1 » , « SWB0 » , 'P' , 1 , 'S' , '11118,14,16,234,124' , «HP UNIX,SOLARIS,LINUX,... « , "UK ENGLISH,US ENGLISH,FRENCH,...» ', NULL, NULL, NULL, USER, SYSDATE

    I must get the id separated by commas of column bone and lang and map to the corresponding table to get the names separated by commas of the bones and langs and pass it as a component of sys_refcursor.

    Open the p_ccur for

    Select * from a_os_lang_stls

    where swb_number = p_sb_no

    and PC_FLAG = 'C';



    Could someone please help me how to convert the value separated by commas in a comma separated value new map to another table and pass it as part of the sys_refcursor.



    Thanks in advance.


    Kind regards

    SB2011



    Hello. Here are the queries for the two sys_refcursors.

    (1) FOR THE FLAG = 'P '.

    SELECT T1.ID,

    T1. SWB_NUMBER,

    T1. PC_NUMBER,

    T1. PC_FLAG,

    T1. INSTALLATION_ORD,

    T1. SP_OR_LATER_VSN,

    T1. PLATFORM,

    T1. OS_CODE,

    T2. LANG_CODE

    DE)

    SELECT T1.ID,

    SWB_NUMBER,

    PC_NUMBER,

    PC_FLAG,

    INSTALLATION_ORD,

    SP_OR_LATER_VSN,

    PLATFORM,

    RTRIM (XMLAGG (XMLELEMENT(A,AG_OSCODE,',')). Extract ('//Text ()'), ',') OS_CODE

    FROM (SELECT ID,

    SWB_NUMBER,

    PC_NUMBER,

    PC_FLAG,

    INSTALLATION_ORD,

    SP_OR_LATER_VSN,

    PLATFORM,

    (COLUMN_VALUE). GETNUMBERVAL() os_id

    Of a_os_lang_stls t, xmltable (os) t1) T1.

    OS_dtls T2

    WHERE T2.ID = T1. OS_ID

    GROUP OF T1.ID,

    SWB_NUMBER,

    PC_NUMBER,

    PC_FLAG,

    INSTALLATION_ORD,

    SP_OR_LATER_VSN,

    T1 PLATFORM),

    (SELECT T1.ID,

    SWB_NUMBER,

    PC_NUMBER,

    PC_FLAG,

    INSTALLATION_ORD,

    SP_OR_LATER_VSN,

    PLATFORM,

    RTRIM (XMLAGG (XMLELEMENT(A,LANGNAME,',')). Extract ('//Text ()'), ',') LANG_CODE

    FROM (SELECT ID,

    SWB_NUMBER,

    PC_NUMBER,

    PC_FLAG,

    INSTALLATION_ORD,

    SP_OR_LATER_VSN,

    PLATFORM,

    (COLUMN_VALUE). GETNUMBERVAL() lang_id

    Of a_os_lang_stls t, xmltable (lang) t1) T1.

    lang_dtls T2

    WHERE T2.ID = T1.lang_id

    GROUP OF T1.ID,

    SWB_NUMBER,

    PC_NUMBER,

    PC_FLAG,

    INSTALLATION_ORD,

    SP_OR_LATER_VSN,

    T2 PLATFORM)

    WHERE T1.ID = T2.ID

    AND T1. SWB_NUMBER = T2. SWB_NUMBER

    AND T1. PC_NUMBER = T2. PC_NUMBER

    AND T1. INSTALLATION_ORD = T2. INSTALLATION_ORD

    AND T1. PLATFORM = T2. PLATFORM

    AND T1. PC_FLAG = "P";

    (2) PC_FLAG FOR = 'C '.

    SELECT T1.ID,

    T1. SWB_NUMBER,

    T1. PC_NUMBER,

    T1. PC_FLAG,

    T1. INSTALLATION_ORD,

    T1. SP_OR_LATER_VSN,

    T1. PLATFORM,

    T1. OS_CODE,

    T2. LANG_CODE

    DE)

    SELECT T1.ID,

    SWB_NUMBER,

    PC_NUMBER,

    PC_FLAG,

    INSTALLATION_ORD,

    SP_OR_LATER_VSN,

    PLATFORM,

    RTRIM (XMLAGG (XMLELEMENT(A,AG_OSCODE,',')). Extract ('//Text ()'), ',') OS_CODE

    FROM (SELECT ID,

    SWB_NUMBER,

    PC_NUMBER,

    PC_FLAG,

    INSTALLATION_ORD,

    SP_OR_LATER_VSN,

    PLATFORM,

    (COLUMN_VALUE). GETNUMBERVAL() os_id

    Of a_os_lang_stls t, xmltable (os) t1) T1.

    OS_dtls T2

    WHERE T2.ID = T1. OS_ID

    GROUP OF T1.ID,

    SWB_NUMBER,

    PC_NUMBER,

    PC_FLAG,

    INSTALLATION_ORD,

    SP_OR_LATER_VSN,

    T1 PLATFORM),

    (SELECT T1.ID,

    SWB_NUMBER,

    PC_NUMBER,

    PC_FLAG,

    INSTALLATION_ORD,

    SP_OR_LATER_VSN,

    PLATFORM,

    RTRIM (XMLAGG (XMLELEMENT(A,LANGNAME,',')). Extract ('//Text ()'), ',') LANG_CODE

    FROM (SELECT ID,

    SWB_NUMBER,

    PC_NUMBER,

    PC_FLAG,

    INSTALLATION_ORD,

    SP_OR_LATER_VSN,

    PLATFORM,

    (COLUMN_VALUE). GETNUMBERVAL() lang_id

    Of a_os_lang_stls t, xmltable (lang) t1) T1.

    lang_dtls T2

    WHERE T2.ID = T1.lang_id

    GROUP OF T1.ID,

    SWB_NUMBER,

    PC_NUMBER,

    PC_FLAG,

    INSTALLATION_ORD,

    SP_OR_LATER_VSN,

    T2 PLATFORM)

    WHERE T1.ID = T2.ID

    AND T1. SWB_NUMBER = T2. SWB_NUMBER

    AND T1. PC_NUMBER = T2. PC_NUMBER

    AND T1. INSTALLATION_ORD = T2. INSTALLATION_ORD

    AND T1. PLATFORM = T2. PLATFORM

    AND T1. PC_FLAG = 'C ';

  • When you click on the button / target Url, how say the program take URL as a value in a field on the page

    I have a page with a button and an entry (MIOCAMPO) field that contains a URL. Is possible, in the properties of the button, in the section "when button Clicked/Url target", ask directly the program, take the value stored in my field? For example, for the static value http://www.oracle.com I directly write this address in the "Url target", but, when this address is written in my MIOCAMPO area, ca how? I tried these bad manners:

    (1) MIOCAMPO

    (2): MIOCAMPO

    3) || MIOCAMPO

    (4) & MIOCAMPO

    I have the button send the page and you can specify MIOCAMPO, use a branch "branch of Page identified by post. This should work for you, that destinations are in the same application.  There is also a "branch to URL identified by the element.  You could even two handsets using conditions.

    Hope this helps

    Thank you

    -Jorge

  • The selection list value does not change when the page is sent

    Hi all

    I have a selection list that acts as an entry for the report. the page is submitted using a button.
    The button uses the branch option "redirecting to page in the application. I select the same page.

    The problem is when I change other values in the value list always takes the first value

    I want to know if the problem is with the key or select list. What should I do about it?

    Concerning
    REDA

    Renon wrote:

    I tried your suggestion. Now that I ask, is the report is expected to show only when the button request is passed. I read to present the action of page the name of the button acts as a request.
    so now my report status is request = Expression1 and value of expression1 takes GO tell button name.

    The report does not appear but. I checked the session. It has the value of the selection list and the page is submitted as but the report is not displayed.

    ASK is disabled before the exposure treatment page unless it is set in a branch or a URL, this is why it has no value when they are referenced in your State in the region.

    Set the attribute request in your branch for & request to make available at the course to see the page the current value of the demand for treatment.

  • Who are removed from the black list of Google, but still has 'Reported the Page attacks' in Firefox 18.0.1

    A site of mine was removed from the blacklist of Google, but he still has "Reported attack Page" even though I've updated for Firefox 18.0.1. (See the bug 820283 - https://bugzilla.mozilla.org/show_bug.cgi?id=820283)

    This looks like a problem with the sponsor.

    It occurs if the sponsor is disabled, so it seems that your server is still infected and redirects if it detects a godfather of Google.

    Forcing the godfather to Google and force a reload causes already forwarding.
    http://www.Google.com.my/URL?SA=t & RCT = j & q = % 22minda % 20jaya % 20language % 20center % 22 & source = Web & CD = 1 & CAD = AJLN & ved = 0CC0QFjAA & URL=http%3A%2F%2Fmj.edu.My

    You will need to contact the host to look into this.

    http://mj.edu.my/
    
    GET / HTTP/1.1
    Host: mj.edu.my
    User-Agent: Mozilla/5.0 (X11; Linux i686; rv:18.0) Gecko/20100101 Firefox/18.0
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language: en-US,en;q=0.5
    Accept-Encoding: gzip, deflate
    Referer: http://www.google.com.my/url?sa=t&rct=j&q=%22minda%20jaya%20language%20center%22&source=web&cd=1&cad=rja&ved=0CC0QFjAA&url=http%3A%2F%2Fmj.edu.my%2F&ei=zYkHUcn7BO-k0AXS1oCwBg&usg=AFQjCNFk9gMFEWhR1Sb6huleXTJlop0lOw
    Cookie: fff58b804557285b9ce67d60b784a3d9=fee645cf421d30ecdacd55bb0798e922; s5_qc=6346dc723395e1ee8ef57f4883be4cb4a4xn
    Connection: keep-alive
    
    HTTP/1.1 302 Moved Temporarily
    Server: Apache
    X-Powered-By: PHP/5.2.17
    P3p: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
    Location: http://0001.2waky.com
    Content-Length: 0
    Keep-Alive: timeout=3, max=10
    Connection: Keep-Alive
    Content-Type: text/html
    
    http://mj.edu.my/
    
    GET / HTTP/1.1
    Host: mj.edu.my
    User-Agent: Mozilla/5.0 (X11; Linux i686; rv:18.0) Gecko/20100101 Firefox/18.0
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language: en-US,en;q=0.5
    Accept-Encoding: gzip, deflate
    Cookie: fff58b804557285b9ce67d60b784a3d9=fee645cf421d30ecdacd55bb0798e922; s5_qc=6346dc723395e1ee8ef57f4883be4cb4a4xn
    Connection: keep-alive
    
    HTTP/1.1 200 OK
    Server: Apache
    X-Powered-By: PHP/5.2.17
    P3p: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"
    Expires: Mon, 1 Jan 2001 00:00:00 GMT
    Cache-Control: post-check=0, pre-check=0
    Pragma: no-cache
    Set-Cookie: s5_qc=3416a75f4cea9109507cacd8e2f2aefca4xn
    Last-Modified: Tue, 29 Jan 2013 08:37:43 GMT
    Keep-Alive: timeout=3, max=10
    Connection: Keep-Alive
    Transfer-Encoding: chunked
    Content-Type: text/html; charset=utf-8
    
  • Pass values of the item to the page with 'No URL Access'

    I have a request of "high security" where I try to limit the information passed around in the URL so I have several pages with branches of the 'branch to the page' where the target page access protection is set to "no access URL".

    However, I still need to set multiple values page element in the target page (the one I am connexiona step).

    Thinking about how to do what I thought of two ways to get this data to the target page.
    First way:
    (a) set up several calculations in the source page that calculates the values of the element in the target page and subordinate these calculations on a button application.
    (b) set up my 'on page' management on the source with the same request conditional button.

    Second way:
    (a) put in place target with a process of pl/sql page that defines the page elements
    APEX_UTIL. SET_SESSION_STATE('P31_SSN',:P40_SSN); -P31 is the target page
    do the same for all elements on the page. The process of subjecting to press the button.
    (b) implemented the same 'page' branch on the source with the same conditional key.

    Pro or con either of these approaches? Is there a different approach? I'm IMPOSSIBLE in any case implement a branch to URL with the item values in the URL as I don't want sensitive data columns in newspapers. I know that set_session_state can have interesting interactions with variable bind where they may not be, but I see no problem with my test pages...

    It doesn't matter what technique lets you define the session state - do what is easier. Call for apex_util.set_session_state is the same as make an assignment, for example,.

    APEX_UTIL. SET_SESSION_STATE('P31_SSN',:P40_SSN);

    .. .is equivalent to

    : P31_SSN: =: P40_SSN;

    Calculations are the same thing.

    Application parts are not broader than the elements on the page regarding the scope of application; any point in the session state can be referenced by any element of the request. Application parts are no rendering/display properties or association of specific page.

    Scott

  • Web pages will not download in html format, just a long list of items on the page. How can I fix it?

    Firefox functioned normally. I downloaded the application of password of Firefox and all my web pages stopped downloading correctly. I deleted the app, without change. I uninstalled and reinstalled Firefox. Nothing. This happened once before and I had to take it to a computer repair shop to get it fixed. That day, it was caused by a program that I had downloaded. I tried to restore my system, but that doesn't work anymore.

    Clear the cache and cookies from sites that cause problems.

    "Clear the Cache":

    • Tools > Options > advanced > network > storage (Cache) offline: 'clear now '.

    'Delete Cookies' sites causing problems:

    • Tools > Options > privacy > Cookies: "show the Cookies".

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

    One possible cause is security software (firewall) that blocks 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 in the list of permissions 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:

  • How to change the spacing between list items in the Pages?

    I've implemented some spacing after each paragraph to control the distance between the point and the next title.

    When using lists, this translates a lot of space between each element of the list (#2 Alpha). What I want is a list like #2 Bravo, but without having to change the spacing of each element. I could make a new style specifically for lists (with a spacing of '0'), but this will result in my next title hugging my list.

    Is it possible to Pages (and Keynote) to get this result? Or should I stay with placing a hard 'return' after my list?

    Hope it makes sense

    Thnx!

    I'm using Pages 5.6.1

    Give your title a larger spacing before the paragraph .

    Peter

  • List box and the choice list showing only 25 first items on the list

    Hi people,

    I implemented a component selectOneChoice for locations and a selectOneListbox for asset groups. Two display objects are based on relevant queries. When you try to choose a location, I see only the items in 25 list first in the drop-down list. It's the same thing with the Group of assets held as well. Queries provide a set of data that has more than 25 records of each of the db. Are there property that must be set for these components in JDeveloper? I use Jdev Studio ver 12.1.3.0.0. Please, share your ideas.

    Thank you

    25 is the size of the default range for the iterator.

    Components as selectOneChoice does not support paging so you must set this value-1 (select your iterator pageDef and replace the RangeSize property)

    Dario

  • Choose the value of the selection list and value come into text without the refres field

    Hi friends


    I want to like this link

    [http://htmldb.oracle.com/pls/otn/f?p=33867:1:3985649502490025:NO]

    When I select the emp name then use should come without updating to the text field.
    should what code I apply for this...



    How can I do this...


    Thank you

    Good JS code below

    
    

    Also change OnDemand as follows

    htp.p(ad_rs ||':'||t_in);
    -- exception handling added
    exception
      when others then htp.prn(sqlerrm);
    end;
    

    Concerning

    Published by: Dominique on August 17, 2010 18:01

  • Find the occurrence of the word in a list separated by commas

    Hello

    I need to find the first occurrence of a word in a list separated by commas.

    Example list:
    monster,daemon,shark,bambi,sky
    Now I'm looking for the word: bambi
    Result should be the first calculation of the event: 4

    Now I'm looking for the word: Monster
    Result should be the first calculation of the event: 1

    Hope you can help.

    Tobias

    Hi, Tobias,.

    This can be more efficient, because it does not use CONNECT BY or regular expressions. Instead of splitting the string to the level of every comma, just find the target string and count how many commas occur in front of her.

    WITH     got_found_pos          AS
    (
         SELECT     list_txt
         ,     INSTR ( ',' || list_txt || ','
                    , ',bambi,'
                    )          AS found_pos
         FROM    table_x
    )
    SELECT     list_txt
    ,     found_pos + 1
                - LENGTH ( REPLACE ( SUBSTR (list_txt, 1, found_pos)
                                      , ','
                             )
                      )          AS item_num
    ,     found_pos
    FROM    got_found_pos
    WHERE     found_pos     > 0
    ;
    

    Delimited lsits storage is usually a bad idea in a relational database. It is best to store each item in the list on a separate line.

  • a field that contains a list of sizes or a table?

    Iain was kind enough to advise on the use of a table instead of a field containing a list of 6 comma separated elements.

    I did, but if I can throw new slope on why I prefer to use a field?

    JEWELRY WEB PAGE

    Select * goods where merchandise.category = 'jewels '.

    THE PRODUCT DETAILS PAGE

    When a user clicks on items by top of the page, the hyperlink sends the unique merchandise_ID in the link, a page of details of the product using a query:

    Select * from goods where merchandise.merchandise_ID = URL.merch_ID'

    This gem is available in different sizes. These sizes are in a list separated by commas in a field called "sizes" in the table of the goods. I had been advised to move to a table instead. If I moved to a separate table sizes, I should add a LEFT JOIN to include the size chart or execute a separate query on the size chart (where sizes.merchandise_ID = URL.merch_ID) - which is a drop in performance.

    What should I do with the sizes is produced a menu drop down, the user can choose to - so isn't better I just put sizes into one field, separated by commas? Then use Coldfusions built-in functions to analyze the list in a drop-down list?

    A thought experiment that might convince you.

    To compare these two data patterns.

    CSV

    Agenda Size
    Shirt Small, medium, large
    Coat Medium, small, large
    Pants Small, large, medium
    Shoes Large, small, medium

    STANDARDIZED

    Size chart

    Key Size
    1 Small
    2 Medium
    3 Large

    Article - size join Table

    ItemKey SizeKey
    1 1
    1 2
    1 3
    2 1
    2 2
    2 3
    3 1
    3 2
    3 3
    4 1
    4 2
    4 3

    Roll of the order of the day

    Point of
    Key
    1 Shirt
    2 Coat
    3 Pants
    4 Shoes

    Imagine now these two systems extended to several thousands of items.

    Then imaging that some type of marketing has decided that 'Big' was an ugly description for this size, so they want to change to "Husky" and | or they want to change the size of the 'Small' to 'small '.

    In the standard version, you do one or two update table of sizes.  I don't even want to try to describe the ugly update that you try and create that involves looping and string manipulation to try to update all the records in the CSV version.

  • Columns separated by commas

    Oracle 10.2.0.1
    Windows XP

    I have a table that stores the data of our customers. When I said:

    Select city, city_code as CS, count (*) as the early group of customers by city, city_code:
    It returns:
    CITY                                     CS        TOT
    ---------------------------------------- -- ----------
    Delhi                                    01         23
    Bangalore                                02         36
    Mumbai                                   03         33
    Hyderabad                                04          8
    Jaipur                                   00          2
    Patna                                    00          1
    Chennai                                  05        114
    Power required:
    CITY                                     CS        TOT                        IDS
    ---------------------------------------- -- ----------     ----------------------
    Jaipur                                   01          2                    393,405
    Patna                                    02          1                        200
    Means that if Tot for a city is between 1,5; I want to get these IDS to customer (from the customer table itself)
    separated by commas as above, so that I can know who are the customers, because all the
    cities whose number is < = 5, there are errors in the name of the city.

    Thank you.

    NOT TESTED! not having do not have database access

    select city,city_code,tot,substr(sys_connect_by_path(to_char(customer_id),','),2) ids
      from (select c.customer_id,c.city,c.city_code,e.tot,
                   row_number() over (partition by c.city,c.city_code order by customer_id) the_row
              from customers c,
                   (select city,city_code,count(*) tot
                      from customers
                     group by city,city_code
                     having count(*) <= 5
                   ) e
             where e.city = c.city
               and e.city_code = c.city_code
           )
     where connect_by_isleaf = 1
     start with the_row = 1
     connect by prior the_row + 1 = the_row
            and prior city = city
            and prior city_code = city_code
            and prior tot = tot
    

    Concerning

    Etbin

  • Can not set a value by the executed dynamic action on the page element "selection list."

    I created an agenda of the page 'list of selection' and I want to when I change a value in another element of the page set only 'screen '.

    I created a dynamic action on the page element "selection list" for this.

    These are the dynamic action attribute:

    When:

    ======

    Event: change

    Selection type: point

    Article: P29_PURCHASE_ORDER

    Condition: No strings attached

    Advanced:

    ========

    Scope of the event: static

    Identification:

    ==========

    Action: Set

    The ' Action Page when the changed value "attribute of the element of 'list of selection' = 'None', and when I run form the dynamic action run and set the value for once and do not update the value according to the change in the article"list of selection. "

    Note: when I change the previous attribute of 'Redirect and set', dynamic action run and properly value, but the value was hidden soon

    I want to value when the value of change of select list according to this change successfully.

    Please, advice me,

    Best regards

    Mustafa Ezzat

    Hello

    you set the value of the 'Page elements to submit' to P29_PURCHASE_ORDER?

    Then, the SQL statement would use the current selected value.

    This is the help text says: "specify a list separated by commas of the elements of the page that will be submitted to the server and therefore available for use in your"SQL statement"," PL/SQL Expression"or"Body of the PL/SQL function".»

    Kind regards

    Erik-jan

  • Why "save under" create a folder separated for images when the page is saved.

    for example, when you save the ezpass document he used to save the page. now, it saves the page more creates a folder that contains images. I can't delete the folder without leaving the page. My mistake, it would be using Firefox.

    now in support of Firefox.

    But to answer your question, HTML is a markup language that displays images files etc. Unlike a document of treatment of all the elements of the document included in a single file. HTML stores the items of the page as individual items. If a folder is created to hold these items such as images, files audio video flash etc..

    Microsoft encouraged a MHTML file format they have invented and placed in Internet explorer, which is a single file of storage, but it is really only supported in Internet Explorer.

    It seem not to be modules on the site of the add-on to enable MHTML in firefox such as

    https://addons.Mozilla.org/firefox/addon/Mozilla-archive-format/?src=search

    https://addons.Mozilla.org/firefox/addon/UnMHT/?src=search

    If you have had this feature before, perhaps you have already installed an add-on?

Maybe you are looking for

  • Carbon X 1 base system device error

    I got this error for base system device in my device manager. I installed X 1 Ricoh multicard reader, but even when he can't solve. My machine is X 1-3444-BDU, Win 7 pro 64-bit. Could someone help me? Thank you!

  • oscilloscope...

    Hello I use the generate an example of digital pulses finished vi to the ttl to generate from my card NI PCI-6601 impulses. I want to see the pulse output on an oscilloscope, how can I do this? How can I connect a graphical indicator to show the puls

  • blocking server spooler print when give print from domain account

    When a domain gives impression then the print server spooler user hang from person able to print in order to restart the print server address

  • Intermittent error 1077 on update of the Boolean property node

    I have an intermittent error disabled 1077 on changing the value of a series of nodes of Boolean property in my program. I'm passing an array of references in a loop For, all the controls are in this VI and it can be classified for these purposes as

  • Emails disappearing after the closure of my Windows Mail (Vista)

    After that I opened an email in my Windows Mail (Vista) then close it, the next day, when I look for this email went. I looked in, "Delete","" box of ", etc. They simply disappeared!?    Even on the date and the same time if I see email is after the