Precision Changes when running parallel queries in Oracle?

I am trying to speed up our SQL queries and database draws by running parallel queries. However, we are noticing a slight difference in one of our queries. We have identified two possible reasons. One of those reasons is parallel queries for some reason have either less or more precision than what we were doing.
Has this ever been reported before? Is it even possible? Thanks for any help.

One of those reasons is parallel queries for some reason have either less or more precision than what we were doing.What do you mean? Show us an example of that happening and exactly what you mean.

Similar Messages

  • Running Stacked Queries in Oracle SQL Developer

    Is it possible to run stacked queries in Oracle SQL Developer???
    Something like this...
    SELECT *
    FROM TABLE_1
    SELECT *
    FROM TABLE_2
    SELECT *
    FROM TABLE_3
    And give my 3 different result sets in my Query Result window
    I tried "BEGIN" and "END" and Oracle SQL Developer did not seem to like it.
    Can someone let me know if this is possible and what the syntax might be???
    Thanks in advance for your review and am hopeful for a reply.
    PSULionRP

    Wrong forum!
    Please post this in the sql developer forum.
    SQL Developer
    You can run multiple queries exactly the way you posted them but you need to use F5 - the run script toolbar button.

  • How to detect sessions that are currently running parallel queries?

    Hi everyone,
    How to detect session that are currently running parallel queries?
    - The only way i can think of is querying pdml_Status from gv$session?
    - Is there a better way to do this?
    Follow up question:
    After detecting sessions that are running parallel queries how do i identify which sessions are slaves of which session?
    thanks!

    Start with V$PX_SESSION, however also take a look at V$PQ_* and V$PX_* tables.

  • Opening Balances changes when running business rules

    Good morning,
    We are experiencing problems with the opening balance calculation (Flow: F100) when running the consolidation business rules in BPC 10.1.
    For example, in 2013.12, Entity 1111 and Account C_ENL_DIV, the ending balance (Flow: F900) is 180.000 euros. When we run the copy opening balance package, the opening balance (F100) for 12.2014 is 180.000 euros, what which is correct.
    The problem comes when some consolidation rules are executed, for example, AU_DIVCTA. For the previous case, we can see that the opening balance changes, previously it was 180.000 euros, coinciding with the final balance of 12.2013 and now the cell is empty, what which is incorrect. This occurs for more than one business rule.
    The definition for the AU_DIVCTA business rule, is the next one. You can see that this do not affect to the opening balance in any case.
    We attached an Excel where you can see this and much more similar cases the definition for the business rule AU_DIVCTA:

    Hi,
    Looks like the substitution variables its looking for are missing.
    Can you check that?
    Regards,
    Amol

  • Running Multiple queries in Oracle 10g Express Edition! Help Me!

    I am new to Oracle 10g Express Edition.
    I used my browser to navigated to http://127.0.0.1:8080/apex
    I saw the database page.. logged in.. went into the SQL section.. now am not able to run two or more queries at the same time.. i have given a screenshot too. Plz.. check it and reply me quickly..
    http://i71.photobucket.com/albums/i149/prasanna7287/546895215.jpg
    Help me plz..
    Prasanna.

    There are two possibilities:
    1) Run the SQL commands, one command at a time;
    2) Create a script of multiple commands, and run the script.
    These are discussed in some detail in the online documentation at http://www.oracle.com/pls/xe102/homepage
    In particular, look at
    http://download-east.oracle.com/docs/cd/B25329_01/doc/appdev.102/b25108/xedev_sql.htm#BJEIEIFJ
    Message was edited by:
    Hans Forbrich
    No ... wait ... please do not read the documentation! <g>

  • Raw settings being changed when running droplet

    When I process Canon Raw files using a droplet Photoshop appears to be opening the files through ACR and converting them.
    To process Raw files I open them from Bridge into ACR and adjust the settings for the files, then click done. I then take those files and drop them on a droplet. The resulting Psd files are beig processed by the droplet, but their settings are being changed.
    For example, I open 10 files in ACR and set them to 8bit, then click done. I then open another file in ACR and set it to 16 bit. If I then run the first ten files through a droplet they are all changed to 16bit (the dropket does not include a conversion to 16bit)
    I'm using a PC

    Clarity and Exposure are per-image metadata that should be distinct per image.
    Admittedly I have only rarely used droplets and only as an output export action to apply to files coming out of LR some years back so am not sure if what is happening is to be expected or not, but here are some questions to help clarify what is happening for others to verify if that’s how things should be working or not:
    Are you looking at a raw file in ACR before and after being processed by your droplet and you see different settings or are you just looking at the PSD and seeing it looks different than the raw file in ACR?
    Do settings change if there is only one raw file dragged onto the droplet at a time and are the settings the same for every image no matter which images or how many are dragged at a time (the settings are saved as part of the droplet)?
    Are the settings the same for every image in the group that have been dragged onto the droplet but change from one group to the next (the droplet is picking up the settings of one of the images in the group and applying that to all of them)?
    Are the settings different for different raws in the group but seem to be correlated with the previous or next image in the set dragged onto the droplet? (the settings are picked up from the wrong image in the group)?
    If you make a droplet with that does nothing other than open the raw file, not even save it to a PSD, do the raw file settings change?  In other words does it matter what you’re doing in your droplet for the settings to change?

  • Unable Submit Form Value to Action when running struts-portlet in OracleAS

    Hi,I have develop a portlet using struts & pdk, after that deploy it by OC4J and register the
    provider at Oracle Application Server 10g 10.1.2.2.
    However the formbean value is unable passing to action after clicking submit button,this problem
    doesn't comeout when i run my code as stand alone application.
    here is my application code:
    1. Action Class:
    public class ZoneAction
      extends DispatchAction
      public ActionForward display(ActionMapping mapping, ActionForm form,
                                   HttpServletRequest request,
                                   HttpServletResponse response)
        throws IOException, ServletException
        ZoneHibernate zh = new ZoneHibernate();
        List list = zh.retrieveAllZone();
        ZoneForms zf = new ZoneForms();
        ZoneForm blankForm = new ZoneForm();
        list.add(blankForm);
        zf.setZoneForms(list);
        request.setAttribute("zoneForms", zf);
        return mapping.findForward("success");
    2.Provider.xml:
    <provider class="oracle.portal.provider.v2.DefaultProviderDefinition">
       <session>true</session>
       <passAllUrlParams>true</passAllUrlParams>
       <portlet class="oracle.portal.provider.v2.DefaultPortletDefinition">
          <id>1</id>
          <name>irmsPortlet</name>
          <title>iRMS Portlet</title>
          <description></description>
          <timeout>40</timeout>
          <showEditToPublic>false</showEditToPublic>
          <hasAbout>false</hasAbout>
          <showEdit>false</showEdit>
          <hasHelp>false</hasHelp>
          <showEditDefault>false</showEditDefault>
          <showDetails>false</showDetails>
          <renderer class="oracle.portal.provider.v2.render.RenderManager">
             <renderContainer>true</renderContainer>
             <renderCustomize>true</renderCustomize>
             <autoRedirect>true</autoRedirect>
             <contentType>text/html</contentType>
             <showPage class="oracle.portal.provider.v2.render.http.StrutsRenderer">
             <defaultAction>/jsp/zone_maintenance.jsp</defaultAction>
             </showPage>
          </renderer>
       </portlet>
    </provider>
    3. Action Mapping in struts-cofig.xml:
      <action-mappings>
        <action path="/ZoneMaintenance"
                type="my.com.irms.action.ZoneAction"
                name="zoneForms"
                scope="request"
                parameter="action"
                input="/jsp/zone_maintenance.jsp">
          <forward name="success" path="/jsp/zone_maintenance.jsp"/>
        </action>
      </action-mappings>
    4.jsp:
    <pdk-html:form action="/ZoneMaintenance.do">
    -div id="action"-<pdk-html:hidden name="zoneForms" property="action"/>-/div-
    <logic:notEmpty name="zoneForms" property="zoneForms">
    <table border="1">
    <thead>
                <tr>
                    <th><bean:message key="zone.zone"/></th>
                    <th><bean:message key="zone.disc"/></th>
               </tr>
    </thead>
    <tbody>
    <logic:iterate id="zone" name="zoneForms" property="zoneForms" indexId="i">
                <tr id="tr${i}">   
                    <td>
                      <pdk-html:hidden name="zoneForms"
                                      property="zoneForms[${i}].rowStatus" value=""/>
                      <pdk-html:hidden name="zoneForms" property="zoneForms[${i}].id"/>
                      <input type="checkbox" onclick="update()">
                    </td>
                    <td><pdk-html:text name="zoneForms"
                                           property="zoneForms[${i}].zone" size="10"       
                                           onchange="rowDataChanged('tb1',${i})"/></td>
                    <td><pdk-html:text name="zoneForms"
                                           property="zoneForms[${i}].disc" size="30" 
                                           onchange="rowDataChanged('tb1',${i})"/></td>
                </tr>
    </logic:iterate>
    </tbody>
    </table>
    <input type="button" value="Submit" onclick="submitForm('save')"/>
    </logic:notEmpty>
    <input type="button" value="Display" onclick="submitForm('display')"/>
    </pdk-html:form>
    5.javascript for submitForm():
      function submitForm(param)
            document.getElementById("action")
           .getElementsByTagName("input")[0].value = param;
            document.forms[0].submit();
    6.web.xml
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <web-app>
      <description>Empty web.xml file for Web Application</description>
      <servlet>
        <servlet-name>action</servlet-name>
        <servlet-class>
              org.apache.struts.action.ActionServlet
        </servlet-class>
        <init-param>
          <param-name>config</param-name>
          <param-value>
               /WEB-INF/struts-config.xml
          </param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
      </servlet>
      <servlet>
        <description>Extended Portal
                     SOAP  Server</description>
        <servlet-name>SOAPServlet</servlet-name>
        <servlet-class>
               oracle.webdb.provider.v2.adapter.SOAPServlet
        </servlet-class>
        <init-param>
          <param-name>resourceServletMapping</param-name>
          <param-value>/pdkresource</param-value>
        </init-param>
      </servlet>
      <servlet>
        <description>Image resource server</description>
        <servlet-name>ResourceServlet</servlet-name>
        <servlet-class>
             oracle.webdb.provider.v2.adapter.ResourceServlet
        </servlet-class>
      </servlet>
      <servlet-mapping>
        <servlet-name>action</servlet-name>
        <url-pattern>*.do</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>SOAPServlet</servlet-name>
        <url-pattern>/providers</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>SOAPServlet</servlet-name>
        <url-pattern>/providers/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>ResourceServlet</servlet-name>
        <url-pattern>/pdkresource/*</url-pattern>
      </servlet-mapping>
      <session-config>
        <session-timeout>35</session-timeout>
      </session-config>
      <mime-mapping>
        <extension>html</extension>
        <mime-type>text/html</mime-type>
      </mime-mapping>
      <mime-mapping>
        <extension>txt</extension>
        <mime-type>text/plain</mime-type>
      </mime-mapping>
    </web-app>
    Can anyone help me? thanks.

    It is probably easier to do with with a standard tag than the <html:button> tag, as it means you can nest the
    <input type="button" name="more" value="more" onclick="setID(<bean:write name="bloodbankList" property="id"/>)"/>or maybe like this:
    <bean:define id="bbId" name="bloodbankList" property="id"/>
    <html:button property="More" value="More" style="color: #00007D; text-transform: uppercase; letter-spacing: 2pt; background-color: #6B719C; border: 2 solid #00007D"   onclick="<%= "setID(" + id + ");" %>" />Cheers,
    evnafets

  • Problem formatting memory cards when running Parallels Desktop... help?

    I've had the following scenario and can't figure out how to fix it. Emailed Parallels but waiting for a response. Any thoughts?
    I tried selecting a Sandisk Imagemate card reader as a USB device to connect with the guest OS of Windows XP Pro. I opened the DOS window and tried running a command (that I know FOR SURE is the correct command and works perfectly for others with stand-alone Windows XP Pro computer) that would reformat my SD memory card to FAT32 in 32k clusters. When the operation seems to be completing, Parallels shuts down the host OS and I'm left back at the screen where I can choose to restart or modify the virtual machine settings!!! The iMac will not recognize the card at this point because it doesn't recognize FAT32 formatted devices. When I restart Windows XP Pro, the OS says that the card is not formatted and won't read it UNLESS I FORMAT IT! But, I just did try to format it?!?!? This happened 4 times in a row before I realized there's a problem here. My colleagues at work have done this with their Windows XP Pro machines without incident. Can you tell me why it's not working in Windows that is running through Parallels?
    iMac Intel   Mac OS X (10.4.6)   2GHz, 2GB RAM, 500GB HD, 256MB Video

    Unlike BootCamp, Parallels does disk input/output
    through the OSX drivers because it it dealing with
    files on the Mac formatted disk. Because the card is
    treated as a disk this may be blocking the
    formatting. You should be able to format it with
    OSX's Disk Utility. OSX does handle FAT32.
    OSX does handle FAT32 disks, but Disk Utility formats them as FAT16.

  • PLEASE HELP! Anyone got this error when running Parallels and Win XP

    Hey ALL -I know I know why are you running windows on a MAC --well I still have some programs that I need to work with on Windows but anyway I am getting this weird error message when Windows starts under Parallels:
    [C] MAC Windows
    Timed out waiting for the file system to initialize. The Volume has been ejected. You can use the
    init_timeout mount option to wait longer.
    what is this error message -I cant figure it out
    thanks
    Matt

    Since Parallels is not an Apple product, you'll probably be better off posting your question in the Parallels forums:
    http://forums.parallels.com

  • Help, Does anyone know why my default color change when running a action?

    I have just bought and installed cs3 extended and when I run a action after a few steps it changes my default colors back to black and white and then at the end of the action it changes back to the colors I picked for the element I am making but the results are a black element. I have downloaded and ran the update to 10.0.1 and am not aware if there are others or if this is just a setting I can make inside the program. Please help! Thanks Jana

    well, I am talking about the default color buttons on the left hand side toward the botton but, the action says at the first to pick the color of your flower so I pick red and the action takes off... then a few steps in it would change to black and white and then back to red and white at the end but the flower came out all black. Okay I am tell you this because so if anyone else has this problem they will know.
    This morning I got up and uninstalled my later version of Photoshop PSE6 that was still on my computer( after moving all shared files needed for new PS to my external HD) and deleted the action (drag to trash can ) then loaded the action again and it worked fine pretty little red flower! Now I hope it will remember my styles! I have had to reload them twice.
    Thank you, Jana

  • Wrong URL when running Web queries

    Hello all,
    I'm running a query preview (Or any query which is added to my Favorites SAP menu) and I'm getting this error:
    Logon failed
    What has happened?
    Call of URL http://sap-bw.nw04.com:8000/sap/bw/BEx terminated due to error in logon data.
    Note
    Logon performed in system BWD .
    Logon performed for client 000, user tomer , and language EN.
    What can I do?
    Check that you have entered the client, user, and password correctly.
    If you do not yet have a user ID, contact your system administrator.
    Error Code: ICF-LE-http-c:000-l:E-T:1-C:6-U:5-P:5-L:3
    HTTP 401 - Unauthorized
    Your SAP Internet Communication Framework Team
    If I would add to the URL &SAP-client=800 (which is the right client, the query would work). How do I change the default client for those URL from the BW side?
    Thanks,
    Tomer.

    hi Tomer,
    try transaction SICF, expand default host,
    and right click 'sap', 'display service',
    in next screen click tab 'error pages'
    and 'edit' (pencil icon, beside V),
    you will see ... 
    /sap/public/bsp/sap/system/login.htm?sap-url=<%=PATHTRANS%>&BspLanguage=EN&BspLanguageVisible=X&BspChangePasswordVisible=X
    &BspClient=000&BspClientVisible=X&BSPAccessibilityVisible=X
    <b>change
    &BspClient=yourclient</b>
    oss note 498936-Logon/password change in Web with BW 3.0B or higher
    Symptom
    In the standard system, you log on to BW 3.0B in the Web using HTTP authentication, which does not allow you to enter the language or change your password.
    Other terms
    BW, Business Explorer, 30A, 30B
    Reason and Prerequisites
    You have installed BW 3.0A or higher and are using BW Web Analysis and Reporting.
    Refer also to Note 517860.
    Solution
    SAP BW 3.5 and higher (SAP Web Application Server 6.40, Support Package Stack 12 or higher)
    With SAP BW 3.5 and higher based on SAP Web Application Server 6.40 Support Package Stack 12 or higher, there is an additional option for executing a system logon.
    You will find detailed documentation at http://help.sap.com -> Documentation -> SAP NetWeaver -> SAP NetWeaver '04 -> English -> SAP NetWeaver -> Application Plattform -> ABAP-Technology -> UI-Technology -> Web-UI-Technology -> Business Server Pages -> User Concepts -> System Logon.
    SAP BW 3.x and SAP BW 3.5 (SAP Web Application Server 6.20 and 6.40 prior to Support Package Stack 12)
    The following solution describes the conversion in SAP BW 3.x and SAP BW 3.5 based on SAP Web Application Server 6.20 and 6.40 prior to Support Package Stack 12.
    Documentation
    For up-to-date documentation on the subject of logging on to the SAP Web Application Server, see the attachment to note 517860. The attachment is found under Note Administration, under the Attachments tab (which is beside Related notes and Attributes).
    For more information, go to http://help.sap.com -> SAP Web Application Server -> SAP Web Application Server 6.20 -> mySAP Technology Components -> SAP Web Application Server -> Web Applications -> Web Application Server -> Web Applications and Business Server Pages -> User Concepts -> Logging onto BSP Applications.
    You can find further information on the subject of security at http://service.sap.com/security.
    Activation
    You activate SAP logon via service maintenance for the Web Application Server (Transaction SICF). First select the default_host/sap/bw/bex entry and double-click to display and change it.
    On the Error Pages tab, change the setting from "Explicit reply page" to "Redirect to URL". You must make an entry in the following format as a redirect.
    /sap/public/bsp/sap/system/login.htm?sap-url=<%=PATHTRANS%>
    The URL (including the text between the parameters at the end) cannot contain any blank characters.
    The URL should be a relative URL, without a host name or a port. This is the only way you can use load balancing across several servers (if this  is set up, as described in Note 493475).
    Activate the "Form field (Base64)" option.
    Activate the "Standard" option on the register service data under Safety Requirements.
    The possible additional parameters are explained below.
    The setting is made on the Error Pages tab because the Web Browser should usually get a HTTP 401 error first (unauthorized) and should then execute HTTP authentication because of this error. If "Redirect to URL" is maintained, a HTTP 401 error is not sent to the browser but, in the above case, a BSP application is called, which performs a logon.
    Deactivation
    You can deactivate the SAP logon (for example, with BW 3.0B) by selecting the "Explicit reply page" option on the Error tab.
    Calling BW Web Applications with Domains
    If you install this logon option, note that the logon application requires you to enter the domain in the URL because the BSP runtime needs it for cookie management.
    Therefore, the URL you call must have the following form:
    http://<server>.<domain>.<extension>:<port>/sap/bw/bex
    for example:
    http://ls0028.sap-ag.de:1080/sap/bw/bex
    For more information, see Note 434918.
    Explanation of the redirect parameters
    bspchangepasswordvisible
    With =X, a switch for the password change is displayed.
    bsplanguagevisible
    With =X, a text field for entering the language is displayed.
    bspclient
    This parameter specifies the client. If 'auto' is specified, 'sy-clnt' is generated. If nothing is entered or bspclient is omitted, an InputField appears with sy-clnt as the default value.
    bsplanguage
    This parameter specifies the logon language. If 'auto' is specified, 'sy-langu' is generated. If nothing is entered or bsplanguage is omitted, an InputField appears with sy-langu as the default value.
    bsptermsofuse
    This parameter displays the 'terms of use' switch, if bsptermsofuse is specified. The value of bsptermsofuse then corresponds to the URL that should display the 'terms of use' (the URL must be programmed by the application).
    bspforgotpass
    This parameter displays the 'Forget password?' switch if bspforgotpass is specified. The value of bspforgotpass then corresponds to the URL which describes the follow-up actions (what must the user do now) (the URL must be programmed by the application).
    bspsysidvisible
    This parameter specifies the system ID. If nothing is entered or if bspsysidvisible is omitted, no SystemId is displayed. If bspsysidvisible is not initial, this is displayed.
    bspdontshowhttpswarning
    You can use the bspdontshowhttpswarning=X parameter to suppress the warning that HTTPS is not set up. However, for safety reasons, we recommend that you install HTTPS to transfer passwords securely (see below).
    Example with all parameters
    /sap/public/bsp/sap/system/login.htm?sap-url=<%=PATHTRANS%>
      &bspchangepasswordvisible=X
      &bsplanguagevisibe=X
      &bspclient=000
      &bsplanguage=de
      &bsptermsofuse=/sap/bc/bsp/sap/lib/termsofuse.htm
      &bspforgotpass=/sap/bc/bsp/sap/lib/forgotpass.htm
      &bspsysidvisible=x
    Profile parameters
    If you want to use the SAP logon, you must activate Single Sign On (SSO) with the following profile parameters:
    login/accept_sso2_ticket=1
    login/create_sso2_ticket=1 or 2
    icm/server_port_...=PROT=HTTPS ...
    To change these profile parameters, you need to reboot the server.
    It is absolutely imperative that you activate SSO (or SSO2). However, you can also change your password without HTTPS, although this is not recommended for security reasons.
    Note the remarks above on the BspDontShowHttpsWarning parameter under Explanation of the redirect parameters.
    To activate SSO/SSL, you need to do more than just set the above profile parameters. You must also install the corresponding security libraries on the application server. You can find a description of how to install it under http://service.sap.com/security -> Security in Detail -> Infrastructure Security -> SAP SAP Web Application Server Security (Release 6.20) -> Configuring the SAP Web Dispatcher to Support SSL.
    You do not need to install SSO software on the client PC.
    Message server settings
    If you are using a message server, the settings should already be implemented, as described in Note 493475. To use HTTPS, you also need to maintain the following profile parameter on the message server.
    ms/https_port
    The HTTP(S) port of the message server (for example, 1090) cannot be identical to the HTTP(S) port of the application server (for example, 1080) on which the message server is running.
    Consider the required SAP kernel patch, as described in Note 517860.
    Application server settings
    No additional settings are required for the application server Consider the required SAP kernel patch, as described in Note 517860.
    BW Web Intelligence settings
    No settings are required in BW Web Intelligence. Business Explorer tools such as the Web Application Designer, Query Designer or SAP Easy Access Menu automatically generate URLs with the message server and port if this is defined by the profile parameters above.
    Adjusting the layout
    Information on adjusting the layout is available at http://help.sap.com -> SAP Web Application Server -> SAP Web Application Server 6.20 -> mySAP Technology-Components -> SAP Web Application Server -> Web Applications -> Web Application Server -> Web Applications and Business Server Pages -> User Concepts -> Logging onto BSP Applications -> Enhancements, Layout changes section.
    Problems
    If problems occur despite of the above remarks and references to other notes, enter a message under the BC-BSP component.

  • Encounter problem when running test.fmx in Oracle form 11g

    I am new to Oracle form 11g and encounter a problem regarding testing the Form Services.
    I have Oracle form 11g (deployment mode) on my app server.  I opened 'Run a form on the web' and clicked 'Run form' to conduct a test with default values suggested by the screen.  Then I got the below screen showing 'An add-on for the website failed to run'.
    Is the problem in relation to IE setting? or is my set up of Oracle form 11g not OK?

    Hi ,
    This community is to discuss Weblogic Server specific issues, you can post this query Forms in for better response in the below link:-
    Oracle Forms (MOSC)
    Regards,
    Prakash.

  • Report font is changing when running it on OAS Server(Unix)

    Hi All,
    I have a problem with the font of the report that is generated on the server. The font is not the same as it is with the design time of the report. Can any one please let me know how to have the same font in the report on OAS as it had when it was designed.
    regards,
    Prasad.

    What is the original font that is used? What is the output font that you get in the PDF? Right click on the PDF and check for the Font Properties. You will have to do Font subsetting in uifont.ali file to bring the desired font.

  • How to avoid IE pop-ups when running BIP reports(w/ SSO) from Oracle Forms?

    Hi all,
    We have an OID/SSO integrated Oracle Forms and BI Publisher environment in place. We/users expect the same behavior when running Oracle Reports or BIP reports from Oracle Forms... which means receiving no intermediate pop-ups and simply getting the report output to appear in the relevant target application(PDF, EXCEL, etc). Currently we get multiple security warnings when running BIP reports from Oracle Forms.
    Here's a list of Pop-ups contents:
    1. "File Download - Security Warning" Do you want to open or save this file? -> OPEN
    2. "File Download" Do you want to save this file? Name = ma01r500.pdf -> YES
    3. "Save AS" -> pick desktop and save.
    4. "Download Complete" -> OPEN
    We have experimented with setting various IE security settings to LOW/enabled and still get these pop-ups.
    Any suggestions is much appreciated.
    Thanks,
    Yahya

    FYI... Metalink Note 282996.1 has resolved the bigger issue with the extra pop-ups with SSO enabled environment.
    Cause:
    Internet Explorer (IE) has to cache PDF files in a temporary directory prior to opening the file. Without this IE cannot process PDF files. With SSO protected pages, the header cache settings are set to no-cache which prevents IE from downloading PDF files.
    Solution:
    In mod_osso.conf use the entry "OssoSendCacheHeaders off" which tells mod_osso to turn off all no-cache related headers, which the enables Internet Explorer to be cache the file in a temporary directory.
    Now I am not sure if anybody has any thoughts/suggestions as how we might be able to resolve this issue where Oracle Reports WEB.SHOW_DOCUMENT calls have no pop-ups so ideally BIP reports WEB.SHOW_DOCUMENT calls should behave the same as both are calls from Oracle Forms.
    But at least now our SSO enabled environment and un-secure DEV/UAT behave the same with a single pop-up. Ideally the users shouldn't have to come across this intermediate pop-up to open(save/cancel being the other options) the document(just like Oracle Reports calls).
    Yahya

  • Other "NIDialog" Font when running CVI 2010 programm after 2012 runtime is installed

    I noticed a font changes when running a pre CVI 2012 programm with 2012 runtime.
    It appears to be the "NIDialog" Font unless it is "NIDialogMeta".
    The UI looks as it should when editing it in CVI 2010.
    Is this intended?
    It's making UI editing kind of a gamble...
    /* Nothing past this point should fail if the code is working as intended */
    Solved!
    Go to Solution.

    Yes, you're correct. It looks like the typeface that corresponds to NI Dialog has changed in CVI 2012. This is something that should have been explicitly called out in the readme, and I apologize for that oversight.
    NI Dialog is, by design, a "variable font". That mean that it's a font that can correspond to different typefaces in differect computers, since it's tied to an alias (DEFAULT_GUI_FONT) that can resolve to different actual fonts in different computers, different OSes, and potentialy (as in this case) different versions of the CVI runtime. What happened in this case is that a bug was fixed in CVI 2012 in that CVI was previously not taking into account the Microsoft font substitution table:
                HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes
    Going back many years now, the DEFAULT_GUI_FONT has corresponded to MS Shell Dlg. It seems to me that MS Shell Dlg is somewhat obsolete and so it turns up in the FontSubstitutes table above, so that applications to replace it with something else. In my PC, that becomes "Microsoft Sans Serif". Before CVI 2012, it was incorrectly not being replaced with Microsoft Sans Serif, whereas now it is.
    Sorry about this.
    Luis
    NI

Maybe you are looking for

  • How to convert PRs for non-stock items through ME57

    Any idea how a PR for a non-stock item (just text) charged to a cost center can be converted into a PO through ME57?

  • How to make input field as mandatory field in sub screen

    Hi All,        I need to display the input selection parameters in tab strip sub screen. The input screen is not giving an error while processing with blank values, but I made the input field as required in sub screen input filed settings. Can some o

  • I am attempting to defrag my Mac

    and keep receiving this error message:Starting fsck- Checking HFS Plus volume. Checking Extents Overflow file. Checking Catalog file. Invalid key length The volume Macintosh HD00 needs to be repaired. fsck exited with code I have attemted to run Disk

  • Is it possible to force PCI speed in the macpro?

    Hi all! Here is our little problem... We have the last generation of macpro's and in our machine, we have installed an Arecca card as long as a decklink card. Problem is that sometimes when we boot the machine, the pci will stick to 2x for the arecca

  • Can't turn my phone on after iOS 7.1.1 update please help

    I've updated my phone to iOS 7.1.1 and now it's telling me to connect to iTunes with a USB. I no longer have a computer... How can I work around this so my phone will turn back on?