Bug during import of calculation and the point of application

Hello

I created a component export file which contains, among other things, a part of the application and a calculation of the claim on this point. Looking at the export file, this is the order of events:

+...+
Create calculations of the application
Create the application point
+...+

However, when I import this file in our test environment, the point of application is created but not calculated. In fact, if I create the calculation manually and re - import the file, the calculation is actually deleted! However, if I change the import file and to reverse the order of events:

+...+
Create the application point
Create calculations of the application
+...+

.. .it works very well. Is this a known bug?

I use Apex 3.0 on Oracle 10 g btw.

Thank you!
Luis

Luis - I filed a bug for the problem of calculation/pos. The problem is that a trgger on wwv_flow_items removes the corresponding calculations and the way in which the element is replaced is to remove it first and then re-create.

The last date of update for components is not very reliable on this report. I wouldn't want to ignore them.

Scott

Tags: Database

Similar Questions

  • Dynamic action to set the value of the point of Application

    Hello
    I want to display a form button that sets a value of the point of Application. Can someone please help and guide how to proceed?

    The requirement is, the user will receive a report, they can change a record and a button will allow him to SET the record for the session. When it accesses a different page within the application, they will see that the data relevant to the record that is DEFINED.

    Thanks in advance
    Aali

    Hi, Estelle,.

    You can use the dynamic action 'Code from PL/SQL Execute' to fix your application. For example, your code might look like

    begin
        :G_DISPLAY_MODE := :P1_DISPLAY_MODE;
    end;
    

    Page items to submit: P1_DISPLAY_MODE

    P1_DISPLAY_MODE would be the element on your current page where you select the desired value.

    Hope that you give something to play with.

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

  • using the value of the point of application in javascript

    Hi all

    Apex 3.1

    I have a javascript that calls an application process, please see below. In the application process, I have create/modify the value of an element of the application logic. Later in the javascript, I need to define a page element to the value of the application element that has been created in the application process. All of the alerts that I post for the javascript display this value as empty, even though a similar HTP.prn in the process of the application displays the value! Once the completed script the correct value of the issue of enforcement is in session state. Can someone explain this problem of sync for me? Why can't I get the value of an element of application in javascript code when the application process is called by the javascript code?

    Is there a simple solution for me to get this value?
    <script>
    function f_ValidateLinkLine(pThis) {
        
       // The row in the table
       var vRow = pThis.id.substr(pThis.id.indexOf('_')+1);
       
       // is Link Line really a number?  
       if ( isNaN(html_GetElement('f20_'+vRow).value)) {
            if (html_GetElement('f20_'+vRow).value.length > 0) {
            alert('Link Line is an invalid number - '+html_GetElement('f20_'+vRow).value);
            html_GetElement('f20_'+vRow).value = '';
            }
       } else {  
           if ( ! isNaN( parseFloat(html_GetElement('f20_'+vRow).value) ) ) {
    
       var link_line = parseInt(html_GetElement('f20_'+vRow).value);
    
       if (html_GetElement('f20_'+vRow).value.length > 0) {
    
          var get = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=ValidateLinkLine',0);
          get.add('F101_LINK_LINE',html_GetElement('f20_'+vRow).value);
          get.add('F101_INVENTORY_ITEM_ID',html_GetElement('inventory_item_id_'+Number(link_line)).value);
          get.add('F101_QUOTE_LINE_LINK_ID',html_GetElement('f01_'+spacer+link_line).value);
          get.add('F101_QUOTE_LINE_ID',html_GetElement('f01_'+vRow).value);
          get.add('F101_QUOTE_NUMBER',html_GetElement('f19_'+vRow).value);
    
          gReturn = get.get();
    
    
       // The application process can sometimes change the value of F101_QUOTE_LINE_ID
      //  and I need to set f37 to this value when this happens
    
        html_GetElement('f37_'+vRow).value =('&F101_QUOTE_LINE_ID.');  //< -- This does not work, the applicaiton item is blank!
     
          if (gReturn) { 
           alert(gReturn);
          }
     
          if(gReturn) { 
           html_GetElement('f20_'+vRow).value = '';
           html_GetElement('f37_'+vRow).value = '';
          }
    
       }  //End Check Length
    
      } else {
    
      html_GetElement('f37_'+vRow).value = '';
    
      } // is Link Line a number?    
     
     } // End If   
    
    } // End ValidateLinkLine
    
    </script>
    Published by: blue72TA on August 16, 2011 11:39

    Published by: blue72TA on August 16, 2011 11:41

    Published by: blue72TA on August 16, 2011 11:41

    Hello

    When you use the point of application in JavaScript, as you do, string &. F101_QUOTE_LINE_ID is replaced by the value of the session state.
    Changes to this value of the item when you call process On Demand do not affect the page.

    Lets take for example,
    You app element value of F101_QUOTE_LINE_ID is for example XX in session state.
    You run the page and view the source of the page that looks like this

    html_GetElement('f37_'+vRow).value =('XX');
    

    Like you have a value hard to JavaScript code.

    Nothing can change this, unless you refresh the page.

    You need return the value of the process On Demand.
    To set the value of code might look like so

    html_GetElement('f37_'+vRow).value = gReturn;
    

    Kind regards
    Jari

  • How to set the value of the point of application using pl/sql in the application process

    Hi guys,.

    I want a global variable (application point) whose value will be set to start when a user logs on to the application. The value will be retrieved from the database by using a sql query. I don't exactly know the syntax to set the value of the point of application in the application process. Also, I want to know what type of enforcement process should I use to set the value of the point of application, when a user starts a session. The value of the point of application varies from one user to the user.

    Help, please.

    I use apex 4.2

    Kind regards

    Waqas

    You can use the application element as a link with his name. That is to say. your point of application is named G_MY_APPLICATION_ITEM, then you can / set of access using: G_MY_APPLICATION_ITEM.

    For example

    BEGIN

    -assign as a variable

    : G_MY_APPLICATION_ITEM: = 'LARRY ';

    --

    -use in a SQL statement

    SELECT WHATEVER_COLUMN

    IN: G_MY_APPLICATION_ITEM

    FROM MY_TABLE

    WHERE USERNAME =: APP_USER

    ;

    END;

    Peter

  • How to access the value of the point of application in javascript

    How to access the value of the point of application in javascript?

    Hello

    A way

    var myVariable = '&MY_APP_ITEM.';
    

    BR, Jari

  • Calculation of the point of intersection of the circles giving NaN first "tour".

    See attachment.

    When I give the correct parameters as input, the output is always NaN.

    However, when I run the VI once again, the correct x, coordinated return.

    Obviously, this is not good behavior I want in my VI. What is wrong here?

    Thank you

    Marvin

    It's your use of local variables.  Even if a sequence structure is designed to make you think everything will be in order, it's just an illusion.  All local variables are read, from the VI is executed, but they are all zero until the calculations take place.  Connect your results and discharge the two people in the country and the structure of sequence and you will get what you expect.

    Oh and, in race conditions.  Something to keep in mind that you will learn to program in LabVIEW is that you rarely need a local variable.

  • The window does not load and the points on a single screen.

    Recently, I was playing a game on my computer and all of a sudden it crashed. I thought that it was weird and turned off the coast of my computer and back on and joined the same game and same server and he did it again. I tried a different game and it does the same thing, but after that, I would get points on my screen to load as such http://oi56.tinypic.com/6s57d2.jpg . And after that, it would get stuck on the Windows splash screen, however there was no points on that or any other screen just as charging one with Asus. System Restore and Startup Repair do not fix something or the other.

    Windows would load correctly at the beginning of fashion and from time to time without danger when safe mode restarts. I have updated the drivers once for my card (geforce 8500) and even if it has been updated and the screen flickered, and instead of going back to normal, the screen turned red and other colors. A little later, I restarted my computer again and it worked to load up and I updated the driver again and this time he did nothing like that and seemed fine, I loaded a game again and it froze and crashed after about a minute.

    I decided to try to reformat my computer since I backed up my files that I wanted and needed. However, when it restarted to complete the installation I always the screen with dots and it does boot to windows and will not complete the installation because windows cannot finish it in safe mode. I wonder what could be the main cause of this.

    You do not give the make and model of your computer.

    It looks like a hardware problem, not Windows.  You have to find a store near you and to have the problem diagnosed.  I suspect that it is the failure of hard drive and if you continue to exercise hard disk that may fail completely and you would not be able to recover your valuable data.

    Colin Barnhorst Windows 7 Ulimate x 64 on DIY with 6 GB of ram.

  • Protect a document while allowing the insertion of data in a table and the points on a graph.

    I created a Word document that contains a table and a chart.  Can I protect document but allow data entry in the table and allow points appear in the table using Adobe?

    Hi brianh89327665,

    While you can apply a permissions password to a PDF file to prevent things such as printing and editing the document, you can not apply it selectively to parts of the PDF file.

    Best,

    Sara

  • I have download important problems, extraction and the implementation of the evaluation version of Acrobat 11.  I am very frustrated and annoyed about this, because I need this immediately.

    Someone help me please get this done.  I desperately need to get there.  Had a single file to come in error and the installation was blocked in the 'extraction' for more than two hours.  I realize the note said essentially Meanwhile please be patient, it will take some time.  I was working on this and my Mac Book Pro fully occupied with this total without the slightest trace of success more than 3 hours.  This is ridiculous.   Someone, somewhere please help.

    Send me an email to [email protected]

    You can try an alternative that does not involve the Download Manager.  You can download the demo version of the software through the page linked below and then use your current serial number to activate it.

    Don't forget to follow the steps described in the Note: very important Instructions in the section on the pages of this site download and have cookies turned on in your browser, otherwise the download will not work correctly.

    XI Pro/Standard of Adobe Acrobat and Reader: direct download links | ProDesignTools

  • Drawing a triangle shape through a script, reading a limits of the selection and the pointer of the mouse?

    Hello...

    It's a little more complicated, I guess...

    dialog sample.jpg

    I am looking for a way to automate the work I do for a manga magazine - cartoon or whatever they are called... I have a dialog box in an oval shape that is already formatted with a style of object to look like the oval in the left part of my image. I would like the script to read the position of the mouse pointer - I ran the script after selecting the oval and the place where the oval must point hover with the mouse... (In the picture so you can imagine my cursor somewhere in the lower left of the image, in the second part of the image corresponding to the angle of the triangle) I imagined this operation in at least two steps, the triangle (arrow) of the oval is a separate object (I would join the two forms later). The triangle can be with streight lines or maybe a little bent, for a most desirable look. I have no idea where to start, for now I create ovals and duplicate the triangle an old and position (+ turn) until I'm happy, after that I could join them. I hope the picture can better explain what I'm looking for.

    I know it is hard work - I think it may be useful for others, as it would be a good challenge for the very smart Scripting Guys of this forum...

    Thank you..

    Maybe you can use a single line to indicate the direction and the location where to that you must point.

    I did Speeech.js to illustrate this approach:

    http://www.Indiscripts.com/post/2012/01/speeech

    @+

    Marc

  • Import background image and the ability to zoom and pan

    I need to write an application that takes an image file (jpeg, bitmap, etc.) and the applied inside a window of labview.  I need to be able to zoom in on a selected area and panoramic in all directions.  The zoom and pan feature can use external controls.  If someone has done something similar?  I think using an image control but the zoom and pan is the problem.  I have to re - draw a smaller section of the original image.  Is there a better way to do it?  Thanks, any help would be appreciated.

    Not exactly what you are looking for, but should give you an idea.  Click and drag to pan, use the scale to zoom.  At the moment it loads a PNG file, you can change at any shape you want.

  • The value of the point of Application via Javascript

    How do you define the value of an element of application using javascript?

    Hello

    I have not tested, but I think $s not work for point of application. He finds only the page elements.
    You can test

    $s(pNd, pValue)
    
    Given a DOM node or string ID (pNd), this function sets the Application Express item value taking into account what type of item it is. The pDisplayValue is optional. If used for a page item of type "Popup LOV" where the attribute "Input Field" = "Not Enterable, Show Display Value and Store Return Value". It will be used to set the "Input Field". The value of pValue will be stored in the hidden return field.
    
    Parameters
    
    pNd (DOM Node | string ID)
    pValue  (String | Array)
    pDisplayValue(String)
    

    BR, Jari

  • correct the page id and the page id application id and the id of the sensitivity of the other developer then

    Hi all

    I use apex 4.2 on windows World Bank on internet explore

    I followed the following link

    Oracle - button apex to call a page in another application - Stack Overflow

    at the end of the page, solution provider says

    It seems that your application id and the page id resemble developer links for your pages. You can't share a session as well. It could even be your problem: If you want to bind the user to the page of an application, use the ID correct and not the developer.

    what it means?

    How do I Unlike id and the real id of the developer?

    Please guide me because I think I'm also give the URL of developer which I just copy the URL of the web browser.

    Kind regards.

    Maahjoor wrote:

    I use apex 4.2 on windows World Bank on internet explore

    I followed the following link

    Oracle - button apex to call a page in another application - Stack Overflow

    at the end of the page, solution provider says

    It seems that your application id and the page id resemble developer links for your pages. You can't share a session as well. It could even be your problem: If you want to bind the user to the page of an application, use the ID correct and not the developer.

    what it means?

    This means that, following the structure of the URL of the APEX, in the example

    f?p=4000:4150:&APP_SESSION.

    the application ID is 4000, and the page ID is 4150. 4000 is actually the ID of the application that provides the APEX Builder Application development environment, and page 4150 is the definition of the pages it contains. Application between 3000 and 8999 ID are reserved for internal use of the APEX, so any application ID share you will be outside this range.

    How do I Unlike id and the real id of the developer?

    Please guide me because I think I'm also give the URL of developer which I just copy the URL of the web browser.

    There is no such thing as 'developer id' and 'real id '. Developers and end users run applications using the same ID.

    Note that published URL of permanent demand within applications should use alphanumeric calls and page aliases, ID not digital. This allows a fixed URL to provide to end users while allowing developers and administrators flexibility in how applications are deployed and maintained over time.

    If you have any remaining doubts, provide all the details of what you are doing, including the URL that you create.

  • Assign the value at the point of application of the classic report

    I have a classic report in 4.2 Apex in which a column is bound to a different page. Now, I want to store the value on which the user clicked in a part of the application. How can I do? Help, please

    Element and the value light on the element fields and the value for the column link.

    Learn more about this error. Is that when you click on the link? The destination item is protected? That would explain the error.

  • can not find size_t during import a dll and calling a labview crash function

    Hello, experts

    I need to use FingerLakeInstrument DLL (see attachment) within Labview for talking to a CCD camera. It is built from microsoft visual studio C++

    I unzip FLI dll in my D:\proj\...\linfli-32 and import the dll from there. created a c:\FLIDBG.txt FLI dll must write the debug message on it if are called the FLISetDebugLevel() or others.

    During the import of the dll, the first thing I got is (IE size_t) could not be found. I installed the free version of microsoft visual studio C++

    but can not find 'typedef unsigned int size_t;

    in the end, I just added

    typedef unsigned int size_t;

    in the libfli.h. Having done this, I am able to import all the functions in Labview and have a library of user called libfli.

    However, as soon as I start to call a simple function in a test.vi, as FLIGetLibVersion (char * worm, size_t len), which consists of nothing else the library, the labview crash.

    I created a simple C test.exe who calls a lot of functions with no problems

    any suggstion?

    concerning

    Xiaofeng

    You don't have not shown us how the LabVIEW code looks like. The size_t setting refers to the length of the buffer, in that you spend. In this case you pass a string. So, presumably, you created a buffer zone in LabVIEW to a string of sufficient size, and set the parameter "len" to the length of this string. You also have to make sure you use the correct calling convention?

Maybe you are looking for

  • Distance and rounds of training swimming errors

    Hello... I have the new Apple Watch series 2. I make the swim in our pool inner community twice a week, and I used the new watch swimming twice now. Both times the watch Gets the distance of towers and evil. Here are some details: Our community pool

  • Firefox crash when starting open only in safe mode?

    I have windows 7 64 bit, I try to install firefox and he the accident after installationI can't open it any helpplant Id and details on this link, https://crash-stats.Mozilla.com/report/index/5ebfdd5f-9B5F-4906-8959-07ccf2130910 thank you

  • Cannot install Vista Business on Portege M400 - IDE issues

    Hi guys... I am looking for your help. I downloaded all the new Vista drivers avaiable from Toshiba in support of the new installation of Vista business on my old Portege M400, that came preloaded with a version of XP Tablet and kept their loan on a

  • Two questions with Satellite A210-1ap

    Hi, I'm from Turkey. My English isn't good. I think I can explain my problem. I have Windows XP Home edition system. I have implemented all the drivers of Windows XP Home edition for my laptop. But I can t set up Power Saver' and ' Modules common "(e

  • Malfunctions Y570 pads (volume, thermal management, onekey theater)

    Hello My pads Ideapad Y570 (the one on the top right of the Commission) is defective. the 5 light controls are flashing and acting on its own. This is quite annoying as the volume control, thermal management and onekey Theater suddenly jumping - come