Link of the column... 4 parameter passing?

Maybe this is a stupid question.

I create a link to a column in a tabular presentation in another form and I am passing parameters using attributes of column > link to the column. It's that there is a limit of 3 parameters. How can I add one more?

Thank you

You can either make the URL, or on the 3rd parameter box, you can simply add a comma and put in the other elements as follows:

P2_ITEM_1,P2_ITEM_2   |   P1_ITEM_TEXT,P1_ITEM_HIDDEN

To my knowledge, this is a feature that is undocumented, but I picked up in a thread somewhere on this forum that you can do.

Tags: Database

Similar Questions

  • By using the link in the column to pass column values

    Hello

    I have a link to the column in my report which opens a modal page, now I want to use the value of the column clicked in the page that opens.

    I don't want to put any article on the opening page of the column value of click rather I want to use the value of the column of the click in my sql query.

    for example:

    1 P1 has the report < column link by clicking on it opens P2 >

    2. on page 2, I want to use the value of the clicked column.

    So far, I did

    1 link to page 2

    2. ask - #column_value_clicked #.

    3. in the sql query, I use the same above in the where clause.

    Any help...

    Thank you

    Rakesh

    fac586 wrote:

    Sunil Bhatia wrote:

    Hi Rakesh,

    Make use of x 01 parameter included in apex 5.0

    You can create a URL to page 1 as:

    f? p = 103:1:3241341234123: & x 01: #column_value_clicked #.

    Make use on request P2 in the form:

    Select * from test_table where id = APEX_APPLICATION. G_X01;

    You have not tested who, did you?

    I tested it buddy.

    Link https://apex.oracle.com/pls/apex/f?p=56971

    Click any bar chart and then wait that he freshen up.

    Click on report of ENAME and see that he went through the parameter.

    Report URL: f? p = 56971:2: & APP_SESSION. : No.: & x 01 = #ENAME #.

    -Sunil Bhatia

  • Issue by passing the value of the link in the column

    Hello.
    Starting with a simple question, I hope. !!
    I finished the examples supplied by oracle 2 day tutorial, but I can't make it work values between pages.

    Here's what I did.

    I created a page of report interactive (2). In the region of origin, I have the following SQL statement

    Select PUPIL_NAME, class
    of T_PUPILS
    where CLASS = 'P '.
    order of PUPIL_NAME

    In the State of the page attribute section, I created a link in the column on the PUPIL_NAME column.
    In the section "links" column, I put the following

    Target = this Application Page
    Page = 7 (this is the page I want to)
    Clear Cache = 7, CIR
    Name = IR_PUPIL_NAME
    Value = #PUPIL_NAME #.

    I created page 7 in a report. In the source page 7 region, I have the following SQL code

    Select PUPIL_NAME,
    JOIN_DATE,
    HOME_ROOM,
    HOME_FLOOR,
    HOME_TEACHER
    RESULT
    of T_PUPIL_INFO
    where PUPIL_NAME =: IR_PUPIL_NAME;

    When I run the application and go to page 2, I get a list of students and their class. When I select one of the names of the student, the application moves on page 7, but instead to list information for that student, he simply says no data found.

    In the URL of page 7, I can see that the: IR_PUPIL_NAME has the value of the student, I chose, but it doesn't seem to use it in the SQL statement.

    Any help would be appreciated.

    Hello

    You can try this.
    Go to page 7, then on the right, click the report area and select Create page element. Type the name P7_PUPIL_NAME and deposited item text.
    Change your report query page 7 as
    Select PUPIL_NAME,
    JOIN_DATE,
    HOME_ROOM,
    HOME_FLOOR,
    HOME_TEACHER
    RESULT
    of T_PUPIL_INFO
    where PUPIL_NAME = NVL (: P7_PUPIL_NAME, PUPIL_NAME);

    On Page 2 changing the link set the P7_PUPIL_NAME element with the value #PUPIL_NAME #.
    Clear Cache 7.

    Run the 2 page now and click the link

    Thank you
    Mehabub

  • Calling a process from a link to the column in a report

    Apex 4.2

    I have a classic report which has links to the column. I can't call a process when you click on these links. I want to insert a record into the table when you click on this link. So I have a process for updating the database

    {code}

    DECLARE

    l

    _vc_arr2 APEX_COLLECTION_GLOBAL. VC_ARR2;

    BEGIN

    -apex_application.g_print_success_message: = ' sector selection: ' | : P122_SECTOR_SELECTION;

    l_vc_arr2: = APEX_UTIL. STRING_TO_TABLE(:P122_SECTOR_SELECTION);

    FOR z IN 1.l_vc_arr2.count LOOP

    -apex_application.g_print_success_message: = 'TEST2 ';

    -htp.p (l_vc_arr2 (z);

    insert into ISECTOR_PHASE1_ACTIVATION

    (PHASE_1_ACTIVATION_DATE, INSPECTION_SECTOR_ID, HIGH_WATER_EVENT_ID)

    values (: P122_ACTIVATION_DATE.l_vc_arr2 (z),: P0_HIGH_WATER_EVENT_ID);

    END LOOP;

    END;

    {code}

    The report query is:

    {code}

    Select...

    ......

    .......

    -case when current_activation_status = 'Not active' then

    "< a href =" f? p = & APP_ID.:122: & SESSION. Phase 1: "> click here < /a > '"

    Another null

    go to link,

    ....

    {code}

    Phase 1 is the name of the process. I think there may be an error in how I build the link. I build the query link, because there will be other cases that determine what process will run. That is when current_activation_status = 'active' and then '< a different link and process > '.

    So I figure that if I can do it in a "if - then" clause of an instruction box, so I can change it to accommodate several "if-then" clauses in the case statement.

    Also, should ASK = phase 1 in the status of the process?


    Thanks in advance. Let me know if you need more information.

    Just to clarify, by using a link + a request and do not put the page is a perfectly legitimate solution to this problem.

    If the above code is in the region of report source query you need not use the notation #COLUMN #. You can concatenate the string together. also, I made sure to escape from your simple tics. the clause is only to create a dummy sample put to test against

    with TEST_DATA as(
      select 'NOT ACTIVATED' CURRENT_ACTIVATION_STATUS , 1 INSPECTION_SECTOR_ID from DUAL union all
      select 'ACTIVATED', 2  from DUAL union all
      select 'ACTIVATED', 3  from DUAL union all
      select 'NOT ACTIVATED', 4  from DUAL
    )
    select case when current_activation_status = 'NOT ACTIVATED' then
    'Activate'
    else NULL
    end as link
    from test_data
    

    Good luck

    Tyson

  • Insert the loop by a report or insertion using a link of the column

    Hello!

    I think I have an easy one.

    I created a site that lists 'problems' with the curriculum of the University. If a curriculum developer sees something that needs to be updated, they use this site to connect to the 'question' so we have a drop-down list of how the program has changed for the particular course or courses. Some 'problems' cover several courses, if a table has been created to allow the issue to join courses as needed.

    The 'Courses' table contains a list of all courses at University
    The 'Issue_Courses' table combines the primary key of the 'question' and the 'course' and creates the association between the questions and the courts.

    The users use of page to create the associations has a report called 'add_courses' which can be consulted and filterable so that the user can refine the list of courses they want to see (the list is well into the thousands), and this report contains a column with checkboxes. This page also contains a hidden field containing the primary key of the issue, "p13_Issue_ID."

    I would like to create an insert query that takes hold of the primary key of the issue of "p13_issue_ID", she travels around the report, by inserting a new record for each box checked in the report. Any help would be great! Certainly, my sql is pretty week.

    Another option that I think would work, if possible, to have a "link in the column" that simply runs the insertion process by entering the primary key for the problem of "p13_issue_ID" and the id of the course of the report. Then, the user could just click on a link 'Add' or something similar on the report, which would go to the insert statement and essentially create this association. Is this possible?

    Thanks in advance!

    Published by: 846852 on March 23, 2011 15:12

    Published by: 846852 on March 23, 2011 15:14

    that should have been this line

    1 IN 1.APEX_APPLICATION. G_f01. COUNTY

    I typed 1 instead of I

    To take

    BECAUSE me IN 1.APEX_APPLICATION. G_f01. COUNTY

  • Trying to do a pop up of a link to the column

    I have an interactive report (page 1) that I set a link to the column.

    The column link is targeted to a different interactive (page 2) in the same application.

    Everything works except when I click on the link in the column on page 1 it does not jump high page 2, but instead of this substitute page 1 in the current window.

    I tried all sorts of popup window features java code, but nothing helped.

    This is another simple syntax error, I do I'm sure.

    Any ideas?

    Thanks in advance for your time.

    Anon

    put target = "_blank" in link attributes

  • Infrared column binding parameter passing does not!

    4.2.1

    Hello

    I have an IR in a single page. On a product Id column, I have a link to a custom URL

    Page of this application - 2

    Item1 - P2_Product_id (there is an item on page 2) and I'm creating with #Prod_Id # page 1

    Basically, page 1 when the user clicks on the column prod_id IR it will open Page 2 based on the product being passed id.

    For some reason, the product id is null on page 2.

    I see the URL and it's good ending with: P2_PRODUCT_ID:12345

    Any idea on what could happen or if I'm missing something. . 2 URL with the correct settings, but when I try to display the P2_product_id parameter or use it in a sql is page 2, the null value.

    Thank you

    Ryan

    ryansun wrote:

    4.2.1

    I have an IR in a single page. On a product Id column, I have a link to a custom URL

    Page of this application - 2

    Item1 - P2_Product_id (there is an item on page 2) and I'm creating with #Prod_Id # page 1

    Basically, page 1 when the user clicks on the column prod_id IR it will open Page 2 based on the product being passed id.

    For some reason, the product id is null on page 2.

    I see the URL and it's good ending with: P2_PRODUCT_ID:12345

    The custom URL could end like this, but it has good syntax APEX so that these values can be found in the positions required for the ref and itemValues settings?

    Any idea on what could happen or if I'm missing something. . 2 URL with the correct settings, but when I try to display the P2_product_id parameter or use it in a sql is page 2, the null value.

    If the syntax of the URL is correct, check what happens during treatment page see page 2 to see if the value of P2_PRODUCT_ID session state is changed. Use utilities > events Page in the definition of the page to see the event order page and in debug mode for page trace rendering and processing, including session state changes.

  • link in the column on IR

    Hello

    I'm working on apex 4,
    on an html page, I have an IR and a P1_GENRE lov
    I want to change the value of P1_GENRE to a second IR as a filter
    so I use the link on the first IR column, fill in the name of item1 with IR_GENRE but I can't find the correct syntax to pass P1_GENRE as the value.

    concerning

    Jean-Marc

    Hello

    If the source is a page element, and then use & the P1_GENRE. (include the & and the.)

    Take a look on: http://st-curriculum.oracle.com/obe/db/apex/r40/apexirr/apexirradv/apexirradv_ll.htm for a guide to interactive report links

    Andy

    Published by: ATD on Dec 15, 2010 11:34

  • Interactive report conditional forwarding using the link in the column?

    Hi all

    I use APEX 4.2. We have an interactive report as an overview, we are the column standard link (with the pencil symbol) to go to a form of details.

    Currently, we introduce the user permissions to our application. In accordance with these permissions, not all objects contained in the report can be changed by a user. I made a copy of the form that is set to read-only and eliminated all the buttons.

    My question is: is it possible to redirect conditionally to the form (page 301) or reading one page (10301) according to the permissions of the user? And if I can change the symbol in the column link depending on the permissions this way? Any help would be appreciated. Thank you!

    Birgitt

    I got it! With 2 hidden columns and a column containing the link and icon. First, I created a table where I store my frm pages - and unalterable (afp and arp) according to the dev_class. PERM is the colum where I get 1 (authorized) or null. This column contains the link and the icon later in my report. Then I built columns hidden in my opinion like this:

      CASES WHERE the afp IS NOT NULL THEN
         -CASE perm WHEN = 1 THEN ' f? p ='|| v ('APP_ID') | ': 301 :'|| v ('SESSION'): ':YES:301:P301_DT_ID, P301_DT_ID_4_HIST, P301_DEV_CLASS, P301_DEV_SUBCLASS :'|| v.dt_id | ',' | v.dt_id | ',' | v.DC_ID | ',' | v.DSC_ID
         -ELSE ' f? p ='|| v ('APP_ID') | ': 10301 :'|| v ('SESSION'): ':YES:10301:P10301_DT_ID, P10301_DT_ID_4_HIST, P10301_DEV_CLASS, P10301_DEV_SUBCLASS :'|| v.dt_id | ',' | v.dt_id | ',' | v.DC_ID | ',' | v.DSC_ID
         CASE perm WHEN = 1 THEN ' f? p ='|| v ('APP_ID') |': ' | AFP: ': ' | v ('SESSION') |': YES :'|| AFP |': P' | AFP | "_DT_ID, P' | AFP | "_DT_ID_4_HIST, P' | AFP | "_DEV_CLASS, P' | AFP | ' _DEV_SUBCLASS :'|| v.dt_id | ',' | v.dt_id | ',' | v.DC_ID | ',' | v.DSC_ID
           ELSE ' f? p ='|| v ('APP_ID') |': ' | ARP: ': ' | v ('SESSION') |': YES :'|| ARP |': P' | ARP | "_DT_ID, P' | ARP | "_DT_ID_4_HIST, P' | ARP | "_DEV_CLASS, P' | ARP | ' _DEV_SUBCLASS :'|| v.dt_id | ',' | v.dt_id | ',' | v.DC_ID | ',' | v.DSC_ID
         END
       ANOTHER NULL
      END show_link
      CASES WHERE the afp IS NOT NULL THEN
         CASE perm WHEN = 1 THEN ' menu/pencil2_16x16.gif.
            ELSE 'calmag.gif '.
         END
       "1px_trans.gif" - NOTHING ELSE
      END show_icon

    To the link column, I added the following HTML Expression:

    Thanks for your help!

    Birgitt

  • Adding values over the link to the column in the Apex

    Hello

    Is it possible to add extra or more values in the column link in the Apex. I have already 3 name of the column and the values associated with another report.
    .........
    For example: -.

    The column link:

    Text link: #COUNT #.

    Value name
    DATE #DATE #.
    PRICE #PRICE #.
    COST #COST #.
    .....

    I would like to add a name like 'ID' and correspondent and value #ID #.

    Help, please...

    Thanks in advance...

    Published by: user13561710 on January 10, 2011 09:20

    Published by: user13561710 on January 10, 2011 12:34

    Change the target in "URL".
    and set the URL as

    f? p = & APP_ID.:: &: NO::DATE, PRICE, COST, ID of SESSION.: #DATE #, #PRICE #, #COST #, #ID #.

    Replace properly

    CITY

  • Issues of comma in a link to the column

    I have a column that has a link to another page in the application.

    When the user clicks on the link it defines 3 level page items. However, the value of the client's name can have commas in it, and when it produced everything after the comma is lost. Fortunately, I have this as the last parameter, but I'd like to find a solution for this.

    I tried to do a replace on the name of the customer to replace the "," with "& #44;" but it still does not work.
    Thank you
    Johnnie

    Place the item with the backslash

    \item_name\

    Section 3 User Guide

    [User guide | http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/concept.htm#CIHCFHBD]

    ItemValues search.

    Kind regards
    Shijesh

  • Conditional display for the links in the column?

    Hi all

    For a report, if you configure a column under the 'attributes of column' binding so that the report has a link to turn an edit form, is it possible to set a condition on this somewhere so that only certain LINES has an icon link (or text)?

    NT

    You can use a case statement?

    select case
              when column1 = 'x' then '' || column2 || ''
              else column2
           end
    from table
    

    Minh

  • Open the form and parameter passing

    I create parameter with the name (user_stud_id) and the data type is the number in the form that calls

    Then I put the code OPEN_FORM button ('SUPLY_CASH_RECIVE', NO_SHARE_LIBRARY_DATA, ACTIVATE, SESSION: USER_STUD_ID);

    but the form will not open?

    I use the database 11g

    and application server 10g

    Thank you very IAM

    I updated the format:

    OPEN_FORM ('C:\Hieet\SUPLY_CASH_RECIVE.) FMX');

    and its working well

    Thank you very IAM

    ÷

  • Call to the stored procedure parameter passing script

    Hello

    I have a database on linux server. On the same server, there is a shell script which takes 3 parameters.

    Now I want to do a procedure (stored procedure) that will have 3 parameters pass and run this script with these settings.

    I had created object directory pointing to the correct directory granted all privileges on it (I hope).

    Now, I wondered how the code of procedure?

    I also did a program within the database which takes 3 parameters, but I don't know how to operate it. I don't know if I can use work to run the program, because

    It is a multi user thing and I think that this will not work as expected if 2 or more users run it.

    In any case, I was hoping that I can solve this problem by creating the procedure that will run the script that is provided with 3 parameters, that I need.

    I hope I'm clear on what I want to do.

    Please if you have an idea how to Edifier post your ideas.

    Thank you!

    Hello

    first I want to thank you for the reply.

    option 1... I don't want not to use java or c because I have no skills in programming languages.

    option 2 you mentioned dbms_scheduler.

    If I understand the procedure should go like that.

    I create whitin database program. Then I create a job which runs this program. And whenever I want to run my shell script, I'll do the work.

    WHA happen if 2 different users will want to run the script at the same time?

    Thank you for your response.

  • Where did the "orientation Lock" parameter passed on my iPad?

    My "Lock Orientation" button disappeared in my quick settings and is now a button "Mute".  Where can I configure the direction to lock now?

    Thank you

    PMC

    Version of the IOS is 9.2.1 (13D 15)

    By "quick settings" do you say Control Center (slide up from the bottom edge of the iPad)?

    According to the model of the iPad you have a settings > General > use side adjustment switch? If you do then who controls what does the switch on the side of the iPad over the volume control (rotation lock or mute notification), with the other option being at the Control Center: on the iPad side switch - Apple Support

    If it's an iPad 2 Air, Pro or Mini 4 two functions should show in the control center

Maybe you are looking for