Bug report - copy dynamic action to another page

Hello

In the wizard to copy a DA to another page, in my case, I have the type of selection "jQuery Selector", and the value of the attribute "jQuery Selector" does not get pre-remplis.

Is - is this expected or just something missing in the wizard?
I think I saw so, regardless of the type of selection.

See you soon,.

Scott

Hi Scott,.

I don't think that it is a bug by itself, even though I agree that this should be improved. We hope to improve the process of copying the dynamic Actions (as requested in the application Feature Requests) in a future version of the APEX, and we already have an enhancement request registered to do so, in which I've now also added a note and a link to this topic.

Thanks for putting in place.

Kind regards
Anthony.

Tags: Database

Similar Questions

  • Bug?, double dynamic action - resequencees actions

    Hello

    just noticed that the 'double' cool feature in the designer of the page copy dynamic actions but the sequence (order) of the actions for change.

    • Request Express 5.0.1.00.06
    • Database Oracle 12 c Enterprise Edition Release 12.1.0.1.0 - 64 bit Production

    Rgrds Paavo

    Hi Paavo,

    Please let us know. Indeed, it is a bug, and I've been able to reproduce. I deposited

    bug #21641330 - the page creator: double dynamic action retains the order of actions

    Concerning

    Patrick

  • 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

  • Dynamic action - fire on Page Load problem

    Greeeting,

    I created the report with dynamic action event = page loading and action = submit. Scope of the event = Bind,
    But he is permanently on the page, and I want to submit once...

    How I manage... created example, please click the link

    http://Apex.Oracle.com/pls/Apex/f?p=20294:3:1276651806269601:

    Hello
    >
    Earlier you said:
    Sales page 1

    Page 2 sales detail

    sales page items are rate and identity of product name.

    Name of the product on page 1 is related to retail sales page 2.
    >
    How? This relationship is not obvious to your query.
    >
    Now, you say:
    Parameters:
    1 - the date
    2 - date
    3 - choose the area

    >

    You logic is rather mixed up. That is what you want to achieve? What are the default values for the 3 parameters, if any? What value to Page 2 is used when browsing Page 1?

    Two wrongs don't make a right. Then first give up to the DA who Sumbit Page when loading the Page and focus on the fundamental question related to your logic.

    The amended motion proposed below is NOT WHAT YOU NEED for YOUR CONDITION, but I'm posting it so that you can at least get the running report and then work to correct your logic.

    SELECT SS.OUTLET_ID,
      SS.CAT_ID,
      SS.ITEM_CDE,
      SS.ITEM_NME,
      SUM(DECODE(RETURN_IND,'N',ITEM_QTY,'Y',ITEM_QTY*-1)) QTY,
      SUM(DECODE(RETURN_IND,'N',ITEM_QTY,'Y',ITEM_QTY*-1)*ITEM_RTE) AMT,
      O.OUTLET_NME
    FROM
      (SELECT OSM.OUTLET_ID,
        PI.CAT_ID,
        PI.ITEM_CDE,
        PI.ITEM_NME ITEM_NME,
        OSM.RETURN_IND,
        OSD.ITEM_QTY,
        OSD.ITEM_RTE
      FROM OUTLET_PRICE OP,
        OUTLET_SALES_MASTER OSM,
        OUTLET_SALES_DETAIL OSD,
        POS_ITEM PI
      WHERE OSM.OUTLET_SALES_MASTER_ID = OSD.OUTLET_SALES_MASTER_ID
      AND OSM.OUTLET_ID                = OSD.OUTLET_ID
      AND OSD.OUTLET_PRICE_ID          = OP.OUTLET_PRICE_ID
      AND PI.ITEM_ID                   = OP.ITEM_ID
      /* AND OSM.OUTLET_ID                = :P2_SELECT_OUTLET
      AND OSM.CONSIDERED_DTE BETWEEN :P2_FROM AND :P2_TO */
      AND OSM.OUTLET_ID                LIKE NVL( :P2_SELECT_OUTLET,'%')
      AND OSM.CONSIDERED_DTE BETWEEN NVL(:P2_FROM,TRUNC(SYSDATE)-1) AND NVL(:P2_TO,TRUNC(SYSDATE))
      UNION ALL
      SELECT OSM.OUTLET_ID,
        PI.CAT_ID,
        PI.ITEM_CDE,
        PI.ITEM_NME ITEM_NME,
        OSM.RETURN_IND,
        OSD.ITEM_QTY,
        OSD.ITEM_RTE
      FROM OUTLET_PRICE OP,
        OUTLET_SALES_MASTER OSM,
        OUTLET_SALES_DETAIL OSD,
        ITEM I,
        ITEM_CATEGORY IC,
        POS_ITEM PI
      WHERE OSM.OUTLET_SALES_MASTER_ID = OSD.OUTLET_SALES_MASTER_ID
      AND OSM.OUTLET_ID                = OSD.OUTLET_ID
      --AND OSM.OUTLET_ID                = :P2_SELECT_OUTLET
      AND OSM.OUTLET_ID                LIKE NVL(:P2_SELECT_OUTLET,'%')
      AND OSD.OUTLET_PRICE_ID          = OP.OUTLET_PRICE_ID
      AND OP.ITEM_ID                   = I.ITEM_ID
      AND I.CAT_ID                     = IC.CAT_ID
      AND IC.TEMP_ITEM_ID              = PI.ITEM_ID
      /* AND OSM.CONSIDERED_DTE BETWEEN :P2_FROM AND :P2_TO */
      AND OSM.CONSIDERED_DTE BETWEEN NVL(:P2_FROM,TRUNC(SYSDATE)-1) AND NVL(:P2_TO,TRUNC(SYSDATE))
      )SS ,
      OUTLET O
    WHERE SS.OUTLET_ID = O.OUTLET_ID
    GROUP BY SS.OUTLET_ID,
      SS.CAT_ID,
      SS.ITEM_CDE,
      SS.ITEM_NME,
      O.OUTLET_NME
    ORDER BY ITEM_NME
    

    See you soon,.

  • APEX 4.0.1: restriction on the maximum number of dynamic actions on a page?

    Hello

    I would like to know if there is a restriction on the number of dynamic actions on a page.
    I have a page with 29 dynamic actions. Everything works fine on the page.
    If I create another dynamic action that display only an alert or nothing else, I have the HTTP 404 error message when I try to view the page.
    If I delete the old dynamic action and create a new one so that the page works fine.
    After several tests, it seems that there is a maximum number of DA on a page, but if someone can confirm that?

    Environment:
    APEX 4.0.1
    Embedded PL/SQL gateway

    Kind regards
    SDDC

    Hi sddc.

    There is no limit on the number of dynamic action that you have on a page, but it is very likely that you hit a size limit of a variable we use during the generation of the JavaScript code for the dynamic actions. You can activate a log more detailed error further details on your 404 error - see http://www.inside-oracle-apex.com/oracle-apex-got-404-not-found-2/ EPG instructions are in the comments.

    BTW, you might be able to reduce the number of you dynamic actions by specifying page several items in the attribute 'Product (s)' from the 'when' the article if all run the same code. Just separate them with a comma (no spaces). Such as: P1_MGR, P1_DEPTNO

    Concerning
    Patrick
    -----------
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • A page actions affecting another page.

    Peep. Need your help here.

    With the help of the designer of LS, I put in place, requires quite a form developed for our company, IT access.

    Now only one hitch, I ran in that is related to dropdown lists with additional actions that display hidden fields.

    For example on exclu.1, I have a dropdown list for the choice of the Department. Based on the selection in this list then it displays a field of text hidden on the same page.

    Subsequently in Page 2 there is an another dropdown menu with a field of text hidden, based on another action distinct set.

    Now testing Acrobat X Pro and Adobe Reader 9 if I do the Department selection on Page 1 which translates the field hidden appearing then restores the 2nd drop-down list on page 2 as a non-operational where its action does not work.

    As a further test, I chose the fall down to Page 2, which worked well and the hidden text field first appeared, but the drop down menu on the Page 1 then stopped working and the hidden field on the action did not appear.

    I'm at a total lost as to why action on page sets the action on another page when their conditions have nothing to do with each other.

    Any ideas anyone? (hope I've explained this as clear as possible)

    Hey Joe,

    I found the problem. When you make the texts which are hidden as "Exclude from Layout", it won't work. I mean a drop-down list will not work. If you do these as hidden then both work simultaneously.

    Still one thing to get rid of the generator of the Action. It is easy, it is preferable to use the JavaScript of your choice where you can make the script according to your need.

    Thank you

    Sidonie.

  • refresh the report with dynamic action title

    Hi all

    I have a report that is updated with dynamic action. When the update is done, first the value of two hidden variables are defined (P2_ID and P2_NAME) and are subject (using a dynamic action type "pl/sql", with the code "null"; and items to submit page: P2_ID, P2_NAME).

    In the report query, I use: P2_ID in the where clause. Everything works like a charm! The only thing that doen't work, is the title of the region: which is defined as "properties of & P2_NAME.", but the title is not updated when the report is refreshed.

    Is there a solution for this? I hope I am clear enough.

    See Re: dynamic action - update

    If you are right; the native just Refresh action updates the content of the report, it does not perform & POINT. substitutions throughout the region.

    What you could do is use a RANGE named as the title as

    &P2_NAME.
    

    and add a REAL action to your dynamic Action to set the title using Javascript to run code

    $s('my_title',$v('P2_NAME'));
    

    I hope this helps.

  • Take action on another Page

    Hello

    How can I get the action to go to another Page to reference a PDF file attached to the form?

    My dialog box for an OK button is:

    Navigate to a page in another document

    -Folder: (location of desktop player file)

    -Page: 1

    -Zoom level: page fit

    I want to "Attachment PDF" file.  I know it's possible, as I saw it, but I can't seem to replicate in Acrobat.  How can I make reference to a pdf file attached to the pdf document?

    Thank you

    After you get the dialog box that has the button put in link, launch the attached PDF file and navigate to the desired location, and then click Connect.

  • Trigger a dynamic action of another dynamic action

    Hi - Maybe is there a better way to do it - but what I wonder how I can trigger something as part of the page to show or hide based on an event driven dynamic action...

    Let me explain:

    I have a page element which is a popup LOV. He selects a value (of course). It is ITEM1.
    I have a second element of the page. It is ITEM2.

    I have a dynamic action, based on the evolution of the value of ITEM1 - it searches of db (sql query/plsql function call) to extract a value related to this selected value of ITEM1 and dynamically sets the value of the ITEM2 with what is returned.

    So far so good.

    But I also have a third element of the page, ITEM3. What I want to do now is to show or hide ITEM3 based on the value of the ITEM2 (which has been defined by the dynamic action on changing ITEM1). So essentially, I need dynamic action on the evolution of the value of the ITEM2 so I can show/hide ITEM3.

    However, it seems that the dynamic action does not pull on the change of ITEM2, by the dynamic action of ITEM1.

    If you got this extreme grace, following! :-)
    Any thoughts on how to get there (even in completely other/better way)?

    Thank you
    David

    Hello David,.

    In the second dynamic action that's on fire when the value of the ITEM2 is changed, the scope "of the event ' to 'live '.

    Thank you
    Machaan

  • minor bug: status of dynamic Actions is not displayed correctly when DA disabled

    Hello

    It displays 'Parole' instead of 'Never' to the page of the Page definition.

    Hi Edward,.

    Thank you us report this, I agree, it should be compatible with other types of component and display "Never" in this situation. I submitted the bug #10149191 for this.

    Just to note (and I'm sure you're already aware of this), but it is not inconsistent in 'View of the component' on the definition page. In "Tree View", you see the name of the component in italics if it is conditional and then hovering over it you can see that the type of condition is 'never '.

    Kind regards
    Anthony.

  • Dynamic content to another page data

    Hi, congratulations for the forum, it is very didactic.

    I need to load a page into a specific region in Application Express 4.1.1.00.23

    It is possible to do with jQuery? As in the following example?

    $.ajax({)
    URL: "page apex."
    success: {function (data)}
    $('#region').html (data);
    }
    });

    I tried different options to load the pages into a region with ajax that works in classical html or jquery, but I can't use them in the APEX.

    Thank you

    George

    I had a requirement sometimes return to load a different page regions in area of my current page and I followed this example:

    http://Apex.Oracle.com/pls/OTN/f?p=11933:48

    Thank you
    Rohit

  • Navigation of the page with the dynamic action button.

    Hi all

    I use apex 4.2.6 on windows 8.1

    I create a button with the dynamic action.

    When the end user, click on the button, I want to access a page.

    How to do this?

    I created a branch of this button to access the page 10 on SUBMIT AFTER TREATMENT CALCULATION VALIDATION.

    but no navigation happens.

    they code plsql works well that is put into the dynamic action, but the page is not navigate.

    kindly guide me.

    Kind regards.

    Maahjoor wrote:

    I create a button with the dynamic action.

    When the end user, click on the button, I want to access a page.

    How to do this?

    I created a branch of this button to access the page 10 on SUBMIT AFTER TREATMENT CALCULATION VALIDATION.

    but no navigation happens.

    they code plsql works well that is put into the dynamic action, but the page is not navigate.

    If you want to run the PL/SQL code and creates a branch to another page, why do you use a dynamic action? The easiest way to do this is the button send page, the PL/SQL to run as a process after submit (potentially conditional, click on the button) and the page navigation to achieve using a plug (once again, perhaps conditional on the button that is clicked).

  • Dynamic action not updated report every time

    Hi guys,.

    I have a page which downloads statspack reports from different servers and stores them in the APEX. As well as this, it also displays a summary of the data (top 5 events of wait & load profile info) where flat an icon: http://oi40.tinypic.com/295uxxg.jpg

    The table will refresh and display the data according to the value of P10_SNAPVAL (storage of the PK value).

    It is not that I expect to do the report (it is not updating the table). I have the following:

    Area PL/SQL dynamic content making the report

    Dynamic action

    -Event: change

    -Item: P10_SNAPVAL

    -Action: update

    -Element affected: Region - load (dynamic PL/SQL content) profile

    -Field of application event: I tried as well bind & live

    The value of P10_SNAPVAL is changed whenever the user place an icon of Penguin (this works because the graphic works).

    Anyone know why my current setup does not work with the table/how fix?

    Edit: It's something to do with me changing using javascript?

    $('img[name=summary]').mouseover(function() {
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value, null,10);
    get.add('P10_SNAPVAL',$(this)[0].id.substring(3));
    var gReturn = get.get();
    document.getElementById('P10_SNAPVAL').value = gReturn;
    $("#c9485413559485976").show();
    $("#loadtab").show();
    });
    
    
    

    Edit 2: I tried:

    jQuery('#apexir_WORKSHEET_REGION').trigger('apexrefresh');
    

    and each apexir_WORKSHEET_REGION down id (apexir_REPORT, apexir_WORKSHEET, apexir_DATA_PANEL, 9587216508806437) but it is not updated the table of values for any of them. I thought that this call was made for normal day and reports of the IR, but I tried normal, he passed to IR and it is not refreshing. No errors in JS (according to firebug)

    On page 2, I changed:

    report area model was "no model", changed to "borderless region" - there must be a model.

    and changed the static ID of the area to "report_updrep" - because in javascript, we use this ID.

    Look, it works.

  • Run the report to PL/SQL with the branch to another page

    I have an application which, at various times, I run a PL/SQL procedure to perform an action, and then we must run a report while also navigating away from the current page. The actions are performed on a button click.

    I tried several methods, but for the life of me cannot get the system to do the two things (ie. run the report and the direction to another page). I tried to put in page 0 (to be executed after the treatment on the click of a button) a branch with a request line to print the report, followed by a branch to the other page (also to run after the treatment on the button click) - and only the branch page 0 runs in fact. Also tried a branch to the other page only, with the print in the request parameter request - but only runs the report, do not create a branch to the other page.

    I also tried to put the call to run the report in the PL/SQL code, using utl_http.start_request (url), but that came with a "Bad Request" error. Also tried to use the owa_util.redirect_url call, but also no chance.

    I'm pulling my hair out at this time, especially because I am under pressure to get the system in very short time.

    Any suggestion would be appreciated.

    You can run queries report of their URL (f? p = & APP_ID.: 0: & SESSION.: PRINT_REPORT =)

    So one approach would be to
    The button click, call a JS function which

  • 1 use the Ondemand/recall process in order to perform the processing workflow (file selection box)
  • 2 open the report in a popup (from your IR page)
  • 3 redirect leaves the IR page to another page?
    ------
    Another approach:
  • 1. IR report submits the page
  • 2. in the PLSQL block, you do the treatment
  • 3. the branch redirects to a URL that would point to the report URL.
    OR
  • 3. do you have a JS onload which runs only when demand is demand for BUTTON and opens a page that points to the report.
    ------

    Still another way is to use htp.p in PLSQL block which made the treatment of workflow
    So your code PLSQL

    BEGIN
      --Do the workflow processing here
      --End workflow processing
      htp.p('');
    END;
    
  • APEX: Dynamic Action with tabular column

    I'm trying to 'turn off' couple of tabular columns using Javascript and dynamic Action.

    Some fields are text, although some are LOVs type

    I have no boy of Java, so a lot of my scripts are copied and modified based on examples I see, Plse forgive me.

    If the field is a text type

    With the help of Dynamic Type of Action such as disable, use the JScript

    $('_input[name="f20"]').attr ('disable', true);

    I managed to get the disabled column...

    But I don't seem to be able to apply to the Type "select list".

    Please notify

    Hi JAS-Oracle,

    But I don't seem to be able to apply to the Type "select list".

    Step 1:

    Go to report attributes-> edit your selection list column

    under column attributes - > add class attributes of the element, i.e.

    Attributes of the element: class = "select_list.

    Step 2: Create a dynamic Action

    Event: Page load

    Action: disable

    Selection type: Jquery selector

    JQuery Selector: //dont .select_list forget to put the point before the name of the class

    Hope this helps you,

    Kind regards

    Jitendra

Maybe you are looking for