Call for a process of page by clicking a link

I have a report of the Apex with several lines and a column of link in. I would like to be able to call a page process to work on the line with the clicked link... I also need a couple of settings somehow to the process page that he calls a procedure that requires the parameters to operate correctly.

So-
When I click on a link on a line... maybe a couple of hidden objects page get ready.
The page is then submitted and my process calls the procedure by using the values of the elements defined above as its parameters.
Control is subject to the original page.

So, basically, I'm trying to allow a user to perform repetitive actions on each line.

My thought was to use a URL in the link and perhaps Javascript... or I am barking the wrong tree and is there a better way rather than a link?

Thoughts?
See you soon
Ken

You have the right idea. JavaScript is the way to go. Assuming that the values that are passed are part of this line of data, you can build the call to process JavaScript.

Create two hidden objects on your page, make sure that they are not protected.
say P1_CITY and P1_STATE

Say your city query included and the State, define a column in the report as a link of the URL target with the following url

JavaScript:MyFunction('#City#',_'#State#');

Then set a javascript function in the HTML header section page

function myFunc (City, pState) {}
$x_value ('P1_CITY', City);
$x_value ('P1_STATE', pState);
doSubmit ('RUNPROC');
}

Then a process on the page did you want and which is conditional on the APPLICATION = "RUNPROC."

Tags: Database

Similar Questions

  • Call for a process of page in another page process? Is this possible?

    Hello guys! Just a quick question. I had two processes of pl/sql on a page and would like to use a process within process2.

    Is it possible and how to reference process 1? Should I just call it a procedure?

    Thanks in advance!

    Bdrgs,

    SEB

    You can condition the second process and run it like this:

    1. your first process has a lower sequence and after a success, it will define a page hidden to a certain value element

    2. your second process will have a higher sequence and will only run if the previous one has been completed successfully

    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
    -------------------------------------------------------------------

  • Questions about the call for a process of a web site

    Question regarding the appeal process.  I'm new to this part of the technology and I don't know that many would know how it works.  We have a Workbench process that must be called from a remote web site.  The process could take a parameter... That is to say an ID.  The process will then query the database and return a Boolean value to the site and then this site might perform a specific operation.   My question is, are there examples out there that someone could provide which can show how this can be done?  What do I need in my site (I don't know how to configure the buttons create OnSubmit processes and very familiar with javascript, html)?  I think that, somehow, it can be done with SOAP or REST?  Thank you very much in advance for any help.

    You just need a form in HTML with elements (for example textbox - string, file - document etc.) with the same name as the name of the process input parameter and the action attribute of the form must be URL REST of process-oriented.

    For example: for a process(short-lived) having REST URL: Http://localhost: 8080/rest/services/WatchedFolder...  with a parameter in the XML and the document as an output variable, we will use the HTML code below:

    Call REST sample endpoint

    http://localhost: 8080/rest/services/WatchedFolder... method = "post" enctype = "multipart/form-data" >

    Chose a file to send to the process.

    file:

    When you click on submit, the output document would be opened in the browser automatically after submitting the form.

    -Wasil

  • The call for a process when you click the link export v4.1.1.00.23

    Version 4.1.1.00.23

    Hello

    I have 6 Classic reports on the page.

    Each report has link active Export.

    I need to insert the set of results that is questioned about the report in a table. Each report is independent of each other.

    Each report has its own table to insert the result set in.

    My thought was to call a process Page when a user has clicked on the link export, but the process is not known. I put: apex_application.g_print_success_message: = 'Insert '; in the process of the Page to tell if the process was called. I think that the process is not called because the page is not sent when the user clicks on the link to the export. It is purely a guess.

    What I tried:

    Working with just the first report, I created a page element hidden in the region of the report and created a calculation before heading for the region ID.

    SELECT region_id
    FROM   apex_application_page_regions
    WHERE  application_id = :APP_ID AND
           page_id = :APP_PAGE_ID AND
           region_name = 'My First Report Region'
    

    Then on the wording of the link for the link export in the attributes report I put:

    < a href = "f? "p = & APP_ID.:124: & SESSION.: FLOW_EXCEL_OUTPUT_R & P124_ESSCSD_REGION_ID._en - us" > Export CSV - my first data reports < /a >

    The Condition, that I used in the process of the Page is:

    Point process: submit now - after calculations and Validations

    PL/SQL -: REQUEST = FLOW_EXCEL_OUTPUT_R & P124_ESSCSD_REGION_ID._en - us

    of course, that didn't work so I tried it - "FLOW_EXCEL_OUTPUT_R" | & P124_ESSCSD_REGION_ID. | "_en - us

    and I tried it - "FLOW_EXCEL_OUTPUT_R" | : P124_ESSCSD_REGION_ID | "_en - us

    None of which worked.

    SO, can someone help me with a solution called a process to insert the data in the report, when the Export link is called?

    What information can I I provide/clarify?

    Thank you

    Joe

    Knew that I had seen cela somewhere... Try to watch this blog of Martin D: D'Souza Giffy Martin on Oracle APEX: APEX report download recorder

    Thank you

    Tony Miller
    Software LuvMuffin
    Ruckersville, WILL

  • The call for a process of application using JS by a button

    Hello

    I need to create a button that deletes the entire table All_References lines.

    I have created a new process of shared components "Delete_All_References" call, then set it to run on demand.

    PL/SQL block:

    Begin
    Delete from All_References;
    End;
    /

    In the HTML header of the page on which lies the button 'Remove all references' or P13_DeleteAllReferences, I entered in the following:

    < script language "JavaScript" type = "text/javascript" >
    function Delete_All_References()
    < /script >

    I have then entered the settings button, set the action to "defined by dinamic action", then added onchang = "javascript:Delete_All_References();" "in HTML table cell attributes.

    According to most of the tutorials when I click the button remove all the button of refereneces, my table should now get clear but it doesn't.

    Can you guys please help?

    Thank you and best regards,
    Diez

    The onchange event will work fine. Change the button back to a normal button instead of linking to a dynamic Action for now.

    The only other thing I see which can cause a problem is your call to the method itself.

    OnChange = "JavaScript:Delete_All_References();" »

    Need to replace...

    OnChange = "JavaScript:delete_all_references();" »

    The called javascript method is case-sensitive.

    Let me know if it suits it.

    Malay Keith
    www.blackhawkenterprise.com

  • the call for a process of apex after a javascript called the same key

    A url button calls a procedure of java script in the header,
    but then I need a process by their Summit to run after that.
    How can I do that.
    Thank you
    Doug

    Hi Doug,.

    A few questions for you...


    1. What features are you trying to reach?

    2. What APEX version do you use?

    3. When you say 'process', do you mean "process Page"?

    There are certainly ways to submit the page and trigger a process page to run via JavaScript, but it would be good to better understand your needs before offering has some solution first.

    Kind regards
    Anthony.

  • set the focus to the area on the page to click on link

    How to set the focus of page on a particular line on the page based on a user clicks on a link in the menu. Example: the user clicks on the link in the menu 'contact' and the update page jumps to a line on the current page that has contact information. My site is versa - dol.com if you want to see exactly what I mean. Thanks in advance for any help...

    .oO (rimfirelive)

    > How do I set the focus of page to a particular line on the page after a user clicks a
    > the menu link. Example: the user clicks on the 'contact' menu link and the focus of the page
    > skip a line on the current page that has contact information. My site
    > is versa - dol.com if you want to see exactly what I mean. Thank you to
    > advance for any help...

    You can use a named anchor, or simply another page of contact.

    Micha

  • I'm having a problem with Japanese, Chinese, and Korean text. for example, the home page of Wikipedia has links to home pages in other languages. Arab, cryllic, text etc. is displayed correctly. but the three I just mentioned is not.

    I'm going to Web sites that use a lot of Japanese characters (kanji) and some Korean (Hangul/Hanja). It's the same thing on other sites as well.

    Make sure that you have installed the language support East Asia:

  • Call the process page when clicking on a link to report

    Hi all
    I want to call a process of conditional page when clicking on a link to report;
    That is to say the process runs only if the user clicks on the report link.
    How can I do this?

    Thanks for your help.

    Concerning
    Ozzie

    Hello

    Yes, if you use the column change attributes report, in the section "links" column you can assign values to some articles.

    But if you only need to apply, you should probably use URLS like target and a javascript:doSubmit('REQUEST');.

    Kind regards
    Andrea

  • How can I get the default for the new tab page when there is no improved/classic/empty choises when I click on the gear icon.

    When I open a new tab, I used to get a page which had tiles for some of the sites I visit often. Now I get the Bing search page. The help of instructions say I can change the default new tab page by clicking on the gear on a new improved, classic, or blank page icon in a drop-down list. When I click on the train, I don't get this list of options. Instead, a settings page appears, allowing me to make various changes, but improved, classic or white new tab page choices aren't there. What should I do?

    To modify the new page tab, please follow these steps:

    1. Go to about:config in Firefox
    2. Locate the browser.newtab.url string
    3. Set the value of this string on the URL of your page to the desired tab

    This should change the new tab page.

    Notes:

    • Set the about:newtab to get the page of the new classic tab
    • Set the about:home to get the default home page
    • Set the about:blank to get the blank page
  • call a process based on the click of a javascript confirm pop-up

    I created a function to create a JavaScript confirm pop-up box called an update process, called Reactivate_save(), see below:

    function reactivate_save()
    {
    var r = confirm ("do you want to save the pending changes?")
    If (r is true)
    {
    document.getElementById('Reactivate_Save').call ();

    }
    }


    I want to make the update process by clicking on the button 'ok' within the popup box... Is this possible?

    I thought that I could reference using:

    value in the expression 1 = expression 2

    reactivate_save() = true or 1


    None of them worked and I was wondering if there is anything else I can use?

    Thank you

    Chris

    If the name of your button is 'OK', then you write doSubmit ('OK');

  • How to enable HTTPS for BPEL Process on soa suite 11 g and can we call HTTPS

    How to enable HTTPS for BPEL Process on soa suite 11 g and can we call URL HTTPS of BPEL

    Oh, sorry it's different it's sign / encrypt the web service.

    I talked about the activation of SSL for all of the following SOA. Although the process looks like him as OSB although I have not tried.

    This link can help.

    http://download.Oracle.com/docs/CD/E12839_01/Web.1111/b32511/configuring.htm

    It is all configured in the Manager of the company once it is installed. Its is so distinct form SOA Suite, so developers need not worry about this.

    see you soon
    James

  • Process of page does not work when column for APEX_ITEM. HIDDEN is not displayed

    I created a region of report based on an SQl query. In the query that I have three columns that should be in a table, but 2 of the 3 columns should not be visible on the report. Therefore, I don't have to Show checked for them in column of the report region attributes.

    In my tests, if I do not display the columns that are in the tables in the report and run the process of page to insert records into a table, I get the error "no data found". Conversely, if I show columns, my insert is successful.

    That's how work bays? Or is there something that I did not properly.

    Here is the query for the report:
    SELECT APEX_ITEM. ASSISTED BY CHECKBOX (1, ROWNUM, "CHECKED");
    APEX_ITEM. Hidden(2,C.PARTY_ID) ID-this is the column I want to hide.
    APEX_ITEM. Hidden(3,C.PARTY_TYPE_CODE) PTYP-this is the column I want to hide.
    C.PARTY_TYPE_CODE,
    S.PERSON_ID,
    S.PERSON_FIRST_NAME AS THE NAME,
    C.PARTY_CASE_ID

    OF THE CASE. C PARTY
    JOIN INTERNAL DN. PERSON S
    ON C.PARTY_ID = S.PERSON_ID

    WHERE C.PARTY_CASE_ID =: P18_CDBCASE_ID
    AND C.PARTY_SEQ_NO =: P18_SEQ


    Thank you
    Keisha

    Published by: user4579720 on 16 Sep, 2009 14:30

    Keisha,

    If you uncheck the "Show" option, then the HTML corresponding to this element is not rendered on the page. Thus, when you try to inspect this element through APEX_APPLICATION. G_F02, it does not exist.

    A trick I use when I want to have hidden items on the page, but does not make them take all space, is to concatenate them to the items that will be visible.

    Using your query for example, I would like to re - write like this:

    SELECT APEX_ITEM.CHECKBOX(1,ROWNUM,'CHECKED')ATTENDED,
    APEX_ITEM.HIDDEN(2,C.PARTY_ID)
      || APEX_ITEM.HIDDEN(3,C.PARTY_TYPE_CODE)
      || C.PARTY_TYPE_CODE PARTY_TYPE_CODE,
    S.PERSON_ID,
    S.PERSON_FIRST_NAME AS NAME,
    C.PARTY_CASE_ID
    
    FROM CASE.PARTY C
    INNER JOIN DN.PERSON S
    ON C.PARTY_ID = S.PERSON_ID
    
    WHERE C.PARTY_CASE_ID = :P18_CDBCASE_ID
    AND C.PARTY_SEQ_NO = :P18_SEQ
    

    Thus, the second report APEX column will contain the HTML code for the PARTY_ID & PARTY_TYPE_CODE hidden items, as well as the value of PARTY_TYPE_CODE. When you submit the page, you should not have problems.

    Thank you

    -Scott-

    http://sumnertechnologies.com/
    http://spendolini.blogspot.com/

  • Post adjustment Application items in the apex.server.process for a * process application *.

    We were spending the entirety of our method of apex.server.process htmldb_get request the favorite (and documented and supported!). It has worked well so far for the AJAX JavaScript process call, as long as the process of AJAX in question was one * Page * level process. However, when we try to eat a * application * process, it just doesn't seem to work.

    For the examples below, we have two elements of Application named PRS_PRODUCT_PROFILE_ID and PRS_PROFILE_OPERATION. We have a process to request on request (* not * a process page!) named MAINTAIN_PRODUCT_PROFILE_2.

    Here are the previous htmldb_get approach (which works fine):

    function resynchronizeProductProfile (productProfileID)

    {

    var profileOperation = 'EDIT_PROFILE ';

    var ajaxRequest = new htmldb_Get (null, $v ('pFlowId'), 'APPLICATION_PROCESS is MAINTAIN_PRODUCT_PROFILE_2', 0);

    ajaxRequest.add ("PRS_PRODUCT_PROFILE_ID", productProfileID);

    ajaxRequest.add ("PRS_PROFILE_OPERATION", profileOperation);

    var resynchronizeResult = ajaxRequest.get ();

    ajaxRequest = null;

    Return resynchronizeResult;

    }

    Here's the (what I think is the) same call using the new approach of apex.server.process:

    function resynchronizeProductProfile (productProfileID)

    {

    var resynchronizeResult;

    $s ("PRS_PRODUCT_PROFILE_ID", productProfileID);

    $s ('PRS_PROFILE_OPERATION', 'EDIT_PROFILE');

    Apex. Server.Process ("MAINTAIN_PRODUCT_PROFILE_2"

    , {pageItems: ' #PRS_PRODUCT_PROFILE_ID, #PRS_PROFILE_OPERATION '}

    , {dataType: "text"}

    Async: false,

    complete: function (ajaxResponse)

    {

    var resynchronizeResult = ajaxResponse.responseText;

    }

    });

    Return resynchronizeResult;

    }

    However, in the new version, arguments don't appear to be preparing when the MAINTAIN_PRODUCT_PROFILE_2 application process is called. PRS_PROFILE_OPERATION, for example, is on "even if above, you can see that it is, in fact, pre-programmed on 'EDIT_PROFILE '.

    As a general rule, the call to apex.server.process sets the item values in the page and in the session in a single step. This doesn't seem to be the case with elements of the Application (although it works very well for the items on the Page).

    What's up with that? Everyone see my mistake?

    Thank you

    -Joe

    Post edited by: Joe Upshaw

    Joe,

    Using the pictures I showed you can simply use your application objects in the process. This is exactly the same as what htmldb_Get: when you use. add(), you provide a key pair / value that will be added to the respective tables, it is just behind the scenes. By manually adding to the table with apex.server.process, you get the same exact behavior and apex define elements of page/application corresponding to the value in the table of p_arg_names with the value in the p_arg_values table.

    When test you it in your demo application by assigning the value of the page element, and then using the 4 button (point), you can see that the question of the application session state has changed by inspecting the session state of the elements of the application through "session" in the developer toolbar. (it's in the "apex of ajax samples - forum" app)

    Of course, you can use the scalar parameters x # to provide values for the process, but why would you do the extra arch? If the elements of the application would set the restrictions, you still get the same result as if they were not, and they are easily manipulated through the same ajax call. I added an extra button with an ajax call using x 01. I never had problems with the help of the scalar parameters.

  • Connection process 101 - Page question

    Version 3.2 of the APEX
    DB version 9.2
    Browser: Internet Explorer

    I use the authentication scheme application Express. Calls to process Login Page 101
    wwv_flow_custom_auth_std.login(
        P_UNAME       => :P101_USERNAME,
        P_PASSWORD    => :P101_PASSWORD,
        P_SESSION_ID  => v('APP_SESSION'),
        P_FLOW_PAGE   => :APP_ID||':3'
        );
    I put on Page 3, that page is when you are connected, but it's still displaying Page 1. Why is this?

    Thank you
    Violet

    Under the Application, your original linking, change security attributes check to make sure that there is: f? p = & APP_ID.: 3: & SESSION.

    Thank you

    Tony Miller
    Webster, TX

    A lady came up to me on the street, pointed at my suede jacket and said: "do you not know that a cow was murdered for that jacket?
    ' I didn't know there are witnesses ', I replied: "now, I'll have to kill you too. '

Maybe you are looking for

  • iPad mini 2

    It is better to buy a new iPad with IOS $7 199 2 or is there a better Tablet out there for the same price or less?

  • How to add radio buttons to the form

    Hello I want to add option buttons to the form. I wrote the following code: Rbg RadioButtonGroup = new RadioButtonGroup(); RadioButtonField r1 = new RadioButtonField ("first option button"); RadioButtonField r2 = new RadioButtonField ("second radio b

  • Slow Internet for blackBerry Smartphones

    Recently, the internet service on my blackberry curve works very slowly.  This happens with a complete wireless signal and their location (on a 20-mile radius in the Metropolitan new york area) where the service has been great before.  It started to

  • How to organize the staff of the 3rd program Autorun at startup of Windows 7

    I can't make my clocker excessive video card and utility control (temperature, frequency etc.) settings to auto-start at the startup of Windows 7. First, I installed the card video driver and this utility, all worked properly. The utility of automati

  • Latency for the calendar to blackBerry Smartphones

    I use the calendar app that came on the phone.  It takes SO much time opened the program, and then an another long wait until I can scroll to a date, or to add an appointment.  All other applications are very good. Does anyone else have this problem?