Work without popup  when calling webhelp?

Is there a way to start robohelp on a certain topic, with the
navigation pane(pointing to this topic) without using the
javascript API (RH_ShowHelp) only by using an URL ? (with params).
Also generating no popus whatsoever.
The reason we need this, is that we host the webpage in a
WebBrowser control on our own form. (No popups allowed)
If using the js api is the only way to show context sensitive
help, how to control that the help is NOT shown in a popup but just
in the originating HTML page?

Welcome to the forum.
Sure is. Take a look at my site under Calling Webhelp.

Similar Messages

  • Program terminates without error when called thru transaction

    Hi experts,
    I have to simple program extracting FI information for an external program.
    The program itself works perfectly, but when my users call the program through a transaction code, in the production environment it just terminates. No errors, no dump. There's nothing in SU53 and if the same user starts the program using SE80 it runs straight thru.
    What am I missing? where can I go to see any kind of logs of why my program terminates?
    Any pointers would be wonderful.
    we're running 4.6C with support packages up to 51
    /Michael

    Hi Judith,
    Thank you very much. It's always the simple things you miss.
    I had accidently created it as a dialog transaction.
    Thanks for the help
    /Michael

  • UpdateDisplayList doesn't work for skin when called from hostcomponent

    I have skin class where I have overrided updateDisplayList like this:
    override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void {
         switch (hostComponent.index) {
                case 0:
                  part.right = 100;
                  part.top = 100;
                  break;
                case 1:
                  part.right = 50;
                  part.top = 50;
                  break;
    every time I update index in hostcomponent, I want to call the updateDisplayList in skin so I have done this:
    public function set index(value:int):void {
            _index = value;
            invalidateDisplayList(); // doesn't work
            //updateDisplayList(); // doesn't work either      
    ... but this does not work. Can you please help me figure out what the problem is? Thanks.

    Is index in the host component?  Maybe you need
        skin.invalidateDisplayList()

  • JDialog: Repaint does not work as wanted when called a second time

    Hi,
    I have created a JDialog with a More/Less Details button which, when invoked, shows or not shows a JScrollPane with a JEditorPane and resizes the dialog window to make space for that extra component or to take away that space.
    It works fine the first time I invoke the JDialog (see main method). But if I invoke it a second time and want to see the details the details JScrollPane is not fully shown.
    I have experimented with repaint and revalidate on different panels but to no avail.
    I am quite new to Swing, what am I misunderstanding? Is my Close-button not tidying up properly?
    import javax.swing.*;
    import javax.swing.border.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    import java.awt.*;
    class Tester extends JDialog {
        private static int totalWidth = 200;
        private static int totalHeight = 100;
        private static int detailsPanelHeight = 200;
        public Tester() {
         super();
        public static int createAndShowGUI() {
         Tester td = new Tester();
         return td.doGUI();
        public int doGUI() {
            //Create and set up the window.
         setPreferredSize(new Dimension(totalWidth, totalHeight+detailsPanelHeight));
         setModal(true);
         setResizable(false);
         setTitle("Tester");
         setAlwaysOnTop(true);
         final Container mainPane = getContentPane();
         mainPane.setLayout(new FlowLayout());
         // *** Panel for details
         final JEditorPane detailsText = new JEditorPane("text/html", "<HTML>Some <i>html</i>.</HTML>");
         final JScrollPane detailsPanel = new JScrollPane(detailsText);
         detailsPanel.setBorder(new TitledBorder("Details"));
         detailsText.setEditable(false);
         detailsPanel.setPreferredSize(new Dimension(totalWidth-100, detailsPanelHeight));
         detailsPanel.setVisible(false);
         // *** Panel for Info
         final JToggleButton detailsBtn = new JToggleButton("More Details");
         detailsBtn.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent e) {
                  if (detailsBtn.isSelected()) {
                   detailsBtn.setText("Less Details");
                   detailsBtn.repaint();
                   detailsPanel.setVisible(true);
                   setBounds(getX(), getY(),
                          getWidth(), getHeight()+detailsPanelHeight);
                   // Also tried detailsPanel.revalidate(), mainPane.revalidate/repaint()
                   // to no avail
                   detailsPanel.repaint();
                  else {
                   detailsBtn.setText("More Details");
                   detailsBtn.repaint();
                   detailsPanel.setVisible(false);
                   setBounds(getX(), getY(),
                          getWidth(), getHeight()-detailsPanelHeight);
                   detailsPanel.repaint();
         // *** Panel for buttons
         JPanel btnPanel = new JPanel();
         mainPane.add(btnPanel);
         mainPane.add(detailsPanel);
         // Allow Button
         JButton allowBtn = new JButton("Close");
         allowBtn.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent e) {
                  setVisible(false);
                  dispose();
         btnPanel.add(allowBtn);
         btnPanel.add(detailsBtn);
            //Display the window.
            pack();
         setBounds(getX(), getY(), totalWidth, totalHeight);
            setVisible(true);
         return 1;
        public static void main(String[] args) {
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
              public void run() {
                  // Run once and you can see details in nice window
                  System.err.println(Tester.createAndShowGUI());
                  // Run twice and switching on details shows an empty space
                  System.err.println(Tester.createAndShowGUI());
    }

    Replace your action preformed with this:
    public void actionPerformed(ActionEvent e) {
        if (detailsBtn.isSelected()) {
         detailsBtn.setText("Less Details");
         setSize(new Dimension(
                getWidth(), getHeight()+detailsPanelHeight));
         detailsPanel.setVisible(true);
        else {
         detailsBtn.setText("More Details");
         detailsPanel.setVisible(false);
         setSize(new Dimension(
                     getWidth(), getHeight()-detailsPanelHeight));
        validate();
    }

  • FILE.IO.PERMISSION and SOCKET.PERMISSION when calling jdev proxy from DB

    Hello everybody,
    i deployed a webservide proxy (made in jdev 10.1.3.2) to an oracle 10gR2 database. Invoking this proxy works very well when calling it (as a procedure in the database) on the same machine as the DB is running.
    But when trying to invoke the procedure remote on the DB-server from another pc i get 2 error messages (randomly):
    java.security.AccessControlException: the Permission (java.net.SocketPermission 192.168.20.1:1521 connect,resolve) has not been granted to VECOZO. The PL/SQL to grant this is dbms_java.grant_permission( 'VECOZO', 'SYS:java.net.SocketPermission', '192.168.20.1:1521', 'connect,resolve' )
    java.security.AccessControlException: the Permission (java.io.FilePermission \\WEBFS01\WEBFS01_Vecozo\Temp\Acc\MAY07 read) has not been granted to VECOZO. The PL/SQL to grant this is dbms_java.grant_permission( 'VECOZO', 'SYS:java.io.FilePermission', '\\WEBFS01\WEBFS01_Vecozo\Temp\Acc\MAY07', 'read' )
    I gave this permissions in the sys schema to the vecozo schema following the example the error produces for me, but it doesnt work! When i grant socketpermissions on the port secified by the error and i run the proxy again the db comes up with the same error, only with a different port number. I'm getting crazy here. Also the granting of the file.io permission seems to have no result.
    What is strange is that it all works when invoking the proxy locally (from the pc as where the db is running). I think this is because locally you dont need socketpermissions (as sockets are primarily for communication with other pc's). Furthermore i did not even grant the file permission when working locally in my testenvironmentand it all worked just fine. so i dont know why i suddenly need this permission when invoking the procedure on the productionserver from an external pc.
    Can somebody plz help me with this????
    greetz,
    Kim

    Anybody :)

  • ABAP process hangs when calling a jCO Server J2EE-available RFC

    Hi there
    Here's the scenario:
    We have deployed a jCO server under the SAP WAS. This jCO server implements two functions. They are both called from ABAP process through RFC. We are using the same RFC destination for both
    First function is defined with import/export parameters and the second one only operates with a TABLE parameter.
    Incidentally, these functions are captured by the jCO server, which calls an IBM MQ server
    First function works fine. Second function hangs and there is not even a timeout so the ABAP process (run on foreground) can stay forever.
    The interesting part is that the same application works really fine when called from a Tomcat using a standalon instance of the jCO.
    Additional info:
    We have noticed that some time after the second function gets called, there are five dumps on the system (the same amount of servers we make available). These are CALL_FUNCTION_SIGNON_REJECTED.
    The fun part of the dumps is that the user making the RFC call is a different user that the one we use for the jCO connection, and the client number is '000', instead of the '728' we are using for the connection. Somehow they seem related but we do not know how yet:
    Short text
        You are not authorized to logon to the target system (error code 1).
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "SAPMSSY1" had to be terminated because it has
        come across a statement that unfortunately cannot be executed.
    Error analysis
        RFC (Remote Function Call) sent with invalid
        user ID "%_LOG01% " or client 000.
        User "ARINSO " under client 001 from system "SMD " has tried to carry out an
         RFC
        call under the user ID "%_LOG01% " and client 000 (Note: For releases < 4.0,
         the
         information on caller and caller system do not exist.).
    Call Program........."SAPLSMSY_ACTUALIZE_DATA"
    Function Module..... "SCSM_SYSTEM_LIST"
    Call Destination.... "SM_ET7CLNT000_READ"
    Source Server....... "sapwasmd_SMD_10"
    Source IP Address... "172.17.82.80"
    Termination occurred in the ABAP program "SAPMSSY1" - in
         "REMOTE_FUNCTION_CALL".
        The main program was "SAPMSSY1 ".
        In the source code you have the termination point in line 67
        of the (Include) program "SAPMSSY1".
    Any tip or suggestion on where to look at is more than welcome
    Thanks in advance,
    Miguel

    And this is the content of the defaultTrace.0.trc log from the WAS
    1.#005056AB04C500440000000200002B0000046B495CA1AF67#1243862737727#com.sap.caf.um.relgrou
    ps.imp.principals.RelGroupFactory##com.sap.caf.um.relgroups.imp.principals.RelGroupFactor
    y.RelGroupFactory()#######SAPEngine_System_Thread[impl:5]_13##0#0#Info#1#/System/Server#P
    lain###sap.com caf/um/relgroups/imp MAIN_NW701P03_C 2846629#
    #1.#005056AB04C500240000000100002B0000046B495CCDAAFB#1243862740608#com.sap.engine.library
    .monitor.mapping.ccms.Trace##com.sap.engine.library.monitor.mapping.ccms.Trace####n/a##b3
    89a8004eaf11dec9b7005056ab04c5#SAPEngine_System_Thread[impl:5]_39##0#0#Error##Plain###Reg
    isterNode</Kernel/System Threads Pool/WaitingTasksCount>: com.sap.engine.library.monitor.
    mapping.ccms.CcmsConnectorException: 2100850: Invalid configuration group for node'/Kerne
    l/System Threads Pool/WaitingTasksCount' (MANAGERS.SThreadPool.WaitingInRequestQueueCount
    , max. 40 characters)#
    #1.#005056AB04C500240000000200002B0000046B495CCDB4CC#1243862740612#com.sap.engine.library
    .monitor.mapping.ccms.Trace##com.sap.engine.library.monitor.mapping.ccms.Trace####n/a##b3
    89a8004eaf11dec9b7005056ab04c5#SAPEngine_System_Thread[impl:5]_39##0#0#Error##Plain###Reg
    isterNode</Kernel/System Threads Pool/WaitingTasksQueueOverflow>: com.sap.engine.library.
    monitor.mapping.ccms.CcmsConnectorException: 2100850: Invalid configuration group for nod
    e'/Kernel/System Threads Pool/WaitingTasksQueueOverflow' (MANAGERS.SThreadPool.Waiting4Fr
    eeReqQueueSlotCount, max. 40 characters)#
    #1.#005056AB04C500240000000300002B0000046B495CCDCDA1#1243862740618#com.sap.engine.library
    .monitor.mapping.ccms.Trace##com.sap.engine.library.monitor.mapping.ccms.Trace####n/a##b3
    89a8004eaf11dec9b7005056ab04c5#SAPEngine_System_Thread[impl:5]_39##0#0#Error##Plain###Reg
    isterNode</Kernel/Application Threads Pool/WaitingTasksCount>: com.sap.engine.library.mon
    itor.mapping.ccms.CcmsConnectorException: 2100850: Invalid configuration group for node'/
    Kernel/Application Threads Pool/WaitingTasksCount' (MANAGERS.AThreadPool.WaitingInRequest
    QueueCount, max. 40 characters)#
    #1.#005056AB04C500240000000400002B0000046B495CCDD69B#1243862740620#com.sap.engine.library
    .monitor.mapping.ccms.Trace##com.sap.engine.library.monitor.mapping.ccms.Trace####n/a##b3
    89a8004eaf11dec9b7005056ab04c5#SAPEngine_System_Thread[impl:5]_39##0#0#Error##Plain###Reg
    isterNode</Kernel/Application Threads Pool/WaitingTasksQueueOverflow>: com.sap.engine.lib
    rary.monitor.mapping.ccms.CcmsConnectorException: 2100850: Invalid configuration group fo
    r node'/Kernel/Application Threads Pool/WaitingTasksQueueOverflow' (MANAGERS.AThreadPool.
    Waiting4FreeReqQueueSlotCount, max. 40 characters)#
    #1.#005056AB04C500600000001600002B0000046B4960688301#1243862801089#com.sap.slm.exec.messa
    ge.SLMApplication#sap.com/tcslmslmapp#com.sap.slm.exec.message.SLMApplication#Guest#0##
    n/a##c59827604eaf11de9fb3005056ab04c5#SAPEngine_Application_Thread[impl:3]_0##0#0#Error##
    Java###null##
    #1.#005056AB04C500730000000000002B0000046B4CF0593ABD#1243878100908#System.err#arinso.com/
    valtran_validator#System.err#Guest#0##ET7#MIGUELGU                        #4A240FF606CD5E
    5AE10000000A38418C#Thread[JCO.ServerThread-11,5,SAPEngine_Application_Thread[impl:3]_Grou
    p]##0#0#Error##Plain###com.sap.mw.jco.JCO$AbapException: (126) 1: Array index out of rang
    e: 48#
    #1.#005056AB04C500730000000100002B0000046B4CF0594028#1243878100909#System.err#arinso.com/
    valtran_validator#System.err#Guest#0##ET7#MIGUELGU                        #4A240FF606CD5E
    5AE10000000A38418C#Thread[JCO.ServerThread-11,5,SAPEngine_Application_Thread[impl:3]_Grou
    p]##0#0#Error##Plain### at com.efh.jco.valtran.sap.ValtranRequestHandler.serverExceptionO
    ccurred(ValtranRequestHandler.java:164)#
    #1.#005056AB04C500730000000200002B0000046B4CF059406B#1243878100910#System.err#arinso.com/
    valtran_validator#System.err#Guest#0##ET7#MIGUELGU                        #4A240FF606CD5E
    5AE10000000A38418C#Thread[JCO.ServerThread-11,5,SAPEngine_Application_Thread[impl:3]_Grou
    p]##0#0#Error##Plain### at com.sap.mw.jco.JCO.fireServerExceptionOccurred(JCO.java:880)#
    #1.#005056AB04C500730000000300002B0000046B4CF05940A3#1243878100910#System.err#arinso.com/
    valtran_validator#System.err#Guest#0##ET7#MIGUELGU                        #4A240FF606CD5E
    5AE10000000A38418C#Thread[JCO.ServerThread-11,5,SAPEngine_Application_Thread[impl:3]_Grou
    p]##0#0#Error##Plain### at com.sap.mw.jco.JCO$Server.listen(JCO.java:8187)#
    #1.#005056AB04C500730000000400002B0000046B4CF05940DB#1243878100910#System.err#arinso.com/
    valtran_validator#System.err#Guest#0##ET7#MIGUELGU                        #4A240FF606CD5E
    5AE10000000A38418C#Thread[JCO.ServerThread-11,5,SAPEngine_Application_Thread[impl:3]_Grou
    p]##0#0#Error##Plain### at com.sap.mw.jco.JCO$Server.work(JCO.java:8303)#
    #1.#005056AB04C500730000000500002B0000046B4CF0594111#1243878100910#System.err#arinso.com/
    valtran_validator#System.err#Guest#0##ET7#MIGUELGU                        #4A240FF606CD5E
    5AE10000000A38418C#Thread[JCO.ServerThread-11,5,SAPEngine_Application_Thread[impl:3]_Grou
    p]##0#0#Error##Plain### at com.sap.mw.jco.JCO$Server.loop(JCO.java:8250)#
    #1.#005056AB04C500730000000600002B0000046B4CF0594143#1243878100910#System.err#arinso.com/
    valtran_validator#System.err#Guest#0##ET7#MIGUELGU                        #4A240FF606CD5E
    5AE10000000A38418C#Thread[JCO.ServerThread-11,5,SAPEngine_Application_Thread[impl:3]_Grou
    p]##0#0#Error##Plain### at com.sap.mw.jco.JCO$Server.run(JCO.java:8166)#
    #1.#005056AB04C500730000000700002B0000046B4CF05941F0#1243878100910#System.err#arinso.com/
    valtran_validator#System.err#Guest#0##ET7#MIGUELGU                        #4A240FF606CD5E
    5AE10000000A38418C#Thread[JCO.ServerThread-11,5,SAPEngine_Application_Thread[impl:3]_Grou
    p]##0#0#Error##Plain### at java.lang.Thread.run(Thread.java:770)#

  • Definition of SRM Backend URL when calling a shop

    Hi,
    we installed the SRM portal and SRM 7.0 Backend on a server with full qualified host name "internal.server.int". The portal and the backend are accessed by the customer (internal network) with URLs "srmportal.company.com" and "srmbackend.company.com". Most stuff works fine, but when calling an external shop, the application /sap/sapsrm/outbound_hdlr is being called with the hostname "internal.server.int" and not with srmbackend.company.com as it should be. Therefore SSO is not working and the user is being asked to logon with password and username. When accessing the portal with the original server ID, everything works fine.
    We changed the parameters
    gw/alternative_hostnames
    icm/host_name_full
    to "srmbackend.company.com" but still the application /sap/sapsrm/outbound_hdlr is being called wit the wrong URL.
    Now my question is where the information of hostname and port is being taken from to call the application /sap/sapsrm/outbound_hdlr. Is it a profile parameter or customizing or...?
    Thanks a lot for your help,
    Fabian

    Hi,
    we changed the two parameters in the Catalog Call Structure:
    BYPASS_INB_HANDLER       X    (Fixed Value)
    BYPASS_OUTB_HANDLER   X    (Fixed Value)
    Now it seems to work.
    Thanks to all,
    Fabian

  • ShowPrintablePageBehavior is not working inside popup. Is it an ADF Bug?

    Hi,
    I am facing some issues with showPrintablePageBehavior component.
    1. I have placed a command button with showPrintablePageBehavior inside a popup. But I am getting a blank page in print mode. But the showPrintablePageBehavior is working fine without popup.
    2. I have a pivot table with a button having showPrintablePageBehavior and these components are surrounded with panelSplitter. But pivot table is not rendering in print mode.
    Using JDeveloper 11.1.1.5.0 / 11.1.1.6 - adfbc
    code:
    <af:form id="f1">
    <af:panelSplitter id="ps1">
    <f:facet name="first">
    <af:panelGroupLayout layout="scroll"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    id="pgl1">
    <af:commandButton text="Popup" id="cb1">
    <af:showPopupBehavior triggerType="action" popupId="p1"/>
    </af:commandButton>
    <af:commandButton text="Print" id="cb3">
    <af:showPrintablePageBehavior/>
    </af:commandButton>
    <af:outputText value="Hai Output Text" id="outputText1"/>
    <af:popup id="p1">
    <af:dialog id="d2">
    <af:panelSplitter id="ps2">
    <f:facet name="first">
    <af:panelGroupLayout layout="scroll"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    id="pgl2" clientComponent="true">
    <af:commandButton text="Print" id="cb2">
    <af:showPrintablePageBehavior/>
    </af:commandButton>
    <af:outputText value="Hai Popup Output Text" id="it9"/>
    <af:clientAttribute name="print" value="true"/>
    </af:panelGroupLayout>
    </f:facet>
    </af:panelSplitter>
    </af:dialog>
    </af:popup>
    </af:panelGroupLayout>
    </f:facet>
    </af:panelSplitter>
    </af:form>
    Thanks,
    Dinil Mithra V S

    Thank you Srinivas,
    Point 1.
    I wanted to print the content of popup. So I have placed an af:outputText text inside af:panelSplitter component. But this layout is not rendering in print mode while printing from a popup ant it works without popup.
    Point 2.
    I have downloaded and deployed oracle dvt-demo war into my local wls.I can see the same issue (pivot table is not rendering in print mode) in my local deployed version.
    Thanks,
    Dinil Mithra V S

  • Application breaks when called as Component

    So, I have this UI5 Application which works perfectly fine when called thru index.html, however it breaks (resources not found, failed to load,404 error etc) when I try to call it as Component. Both the applications (Caller & Callee) are on Gateway
    Here is the application folder structure.
    all the views are under zui5_trip_confirmation -> views folder..The images and models are in the respective folders.
    The component.js is under the folder Component and is defined as
    // define a new UIComponent
    jQuery.sap.declare("components.Component");
    jQuery.sap.require("sap.ui.core.UIComponent");
    jQuery.sap.require("sap.ui.commons.Button");
    jQuery.sap.require("sap.ui.table.Table");
    //new Component
    sap.ui.core.UIComponent.extend("components.Component", {
        metadata : {
            properties : {
                text: "string"
    components.Component.prototype.createContent = function(){
    /* trying to register the path zui5_trip_confirmation where all the views are stored */
    sap.ui.localResources("zui5_trip_confirmation");
    // jQuery.sap.registerModulePath('zui5_trip_confirmation','/sap/bc/ui5_ui5/sap/zui5_trip_conf/zui5_trip_confirmation');
        this.oView = sap.ui.jsview("idHome", "zui5_trip_confirmation.views.Home");
         return this.oView;
    The caller application calls it as
    jQuery.sap.registerModulePath('components','/sap/bc/ui5_ui5/sap/zui5_trip_conf/components');
    var oComp1 = sap.ui.getCore().createComponent({
            name: "components",
            id: "Comp1",
            settings: {text: "Hello World"}
        var oCompCont1 = new sap.ui.core.ComponentContainer("CompCont1", {
            component: oComp1
        oCompCont1.placeAt("content");
    When I run the caller application, I get resource not found errors on the console. Basically the Component is not able to resolve the path to the views/models/images.
    What could be wrong here?
    Regards
    Sandip

    Hi Sandip,
    I had the same issue when I tried to create the Component based applications. From the index file I had the call to the component but was not able to call any of the Views from the Component.js directly even though I register the module path and define local resources for the view and controllers.
    Eventually, I solved the issue by having an app.js file which is called from the index and then the app.js would call the Component.js similar to the approach followed in the UI5 Boilerplate applications written by HP Seitz
    UI5 Boilerplate explained (Part 1)
    I would like to see / confirm if this is an issue in the framework when application are built out of eclipse.
    BR,
    Nagarajan.

  • EXEcutable only starting DLL when calling a popup before.

    Hello,
    1. I have created a DLL in Labview 8.2 with one VI/function.
    2. Then i call this DLL/function in a new VI
    3. Then i created an EXE-file of this VI (which calls a DLL)
    Attached a screenshot of the code.
    As you can see it contains a sequence-structure where in the first part i open a message-popup and in the second-part i call the DLL.
    When i run it like this then it works without problems.
    The funny thing is:
    When i remove the message-popup and create a new EXE-file and run it then nothing happens!
    Only the Run-arrow changes to running-mode (and stays there until i close it with taskmanager) but the outputs dont-change (they stay "0").
    (The VI in the DLL that i call is very simple. The Inputvalue "11" is added and multiplied. This two results are returned. So nothing special.)
    Whats wrong here? Seems like Labview can´t make the DLL-call starting in the second exe-file (without an popup before).
    Is this a kind of a bug?
    Thanks for your help and ideas
    Attachments:
    screen.jpg ‏26 KB

    Hmm, i´m getting a red error-message after cklicking on "install LabVIEW 8.2.1 now." in your link.
    Whats going wrong here?
    --> See attached screenshot
    Attachments:
    error.jpg ‏54 KB

  • Timeout not working when calling stored procedure

    Hi,
    We have a Win32 application connected to ORACLE using ODBC API.
    A stored procedure (doing INSERT into 3 tables) is called via
    SQLPrepare and SQLExecute("{CALL SP(IN param...) ...}"), but
    Oracle never time out the statement.
    There are 2 types of modified timeouts:
    SQL_ATTR_QUERY_TIMEOUT = 20
    SQL_ATTR_CONNECTION_TIMEOUT = 60
    Even if I set LockTimeOut parameter in ORAODBC.ini file, it
    still doesn't work.
    I tried with SQLExecDirect("INSERT...") and it works fine.
    - Does time out works with oracle Stored Procedure ?
    - If not, how can I avoid application hangs when calling
    SQLExecute ?
    - I use "lock table MY_TABLE in exclusive mode" to simulate
    query timing out. Is the better way to do this ?
    Please, any help would be GREATLY appreciated :-)
    Thanks.
    -Dario Efine
    [email protected]
    Infos:
    - Application running on WinNT4 SP6a,
    - Oracle ODBC for Oracle 8.01.76.00,
    - Stored procedure has 10 IN parameters, it also uses 2 inner
    small functions.

    HiTopp wrote:
    I get a "Login Failed for user _____" error if I attempt to use incorrect credentials.
    That message is very likely coming from the database. To be sure, turn debugging on in the ColdFusion Administrator. Also check out the logs. We have to narrow this down, otherwise we could end up running circles.
    If the attribute pairs [username="valid_name", password="valid_password"] and [username="", password=""] work, but [username="valid_name", password="invalid_password"] fails, then the cause of the problem is most probably your code, and how it connects to the database(s). Could you show us all (or at least more) of the code?
    My first suggestion to you was to omit the line variables.storedProcService.clear();. Invoking clear() only makes sense when it occurs after addProcResults() or addParam(). Did you omit the line? What was the effect, with and without credentials?
    Could you please describe your infrastructure a bit more. From what I understand, there are at least 2 servers, S1 and S2. Let's say, ColdFusion is installed on S1. I am assuming from what has gone before that SQL Server, which runs the stored procedure, is on the second server S2.
    Go to the 'Client Variables' page in the ColdFusion Administrator. Verify that ColdFusion is indeed configured to use a database for client storage. What is the name of the datasource used as client store? Now, proceed to the datasource page and check out the settings for the client datasource. To which machine/database server does this datasource point?
    Jot down the server settings and credentials of the other datasources configured in the Administrator. To which machine/database server do these datasources point?

  • Dropdown getting deleted , when called in popup

    Hi All,
    When i press a button on my main view i call a popup view.
    In the popup view i need to add dropdowns on "Add dropdown Button"
    When i press the button once the  dropdown is created.
    When i press the button for second time the second dropdown doesnt gets created.
    In debugging i can just see that the navigation goes to onaction of the add button and then modify view.
    and then nothing happens.
    Can some one please help me with this?
    Edited by: Bhanu  Malik on Mar 21, 2011 4:02 AM
    Edited by: Bhanu  Malik on Mar 21, 2011 5:55 AM

    On Add dropdown
    lo_nd_cn_rulehead_edit2->bind_table( new_items = lt_cn_rulehead_edit2 set_initial_elements = abap_true ).
       cl_wd_dropdown_by_idx=>new_dropdown_by_idx(
      EXPORTING
         bind_texts   = 'CN_RULEHEAD_EDIT2.CA_RULEHEAD_EDIT2'
          id          = 'EDIT_DROP2'
           RECEIVING
          control    = lr_input1 ).
    when i press the button again (this dropdown doesnt gets created)
       cl_wd_dropdown_by_idx=>new_dropdown_by_idx(
      EXPORTING
         bind_texts  = 'CN_RULEHEAD_EDIT3.CA_RULEHEAD_EDIT3'
          id          = 'EDIT_DROP3'
           RECEIVING
          control    = lr_input2 ).
        lr_matrix = cl_wd_matrix_head_data=>new_matrix_head_data( lr_input2 ).
       lr_input2->set_layout_data( lr_matrix ).
        wd_comp_controller->lr_container->add_child(
            the_child = lr_input2
    I think there is some other problem of modify view because when first dropdown is created it works fine
    and when second dropdown is created it gives problem

  • Safari browser issue when calling Merged Webhelp

    Hi All,
    I am using Robohelp 8.0. I am creating a merged Webhelp project and calling the help as context sensitive from the web application using the Topic ID.
    What Happens:
    Calling webhelp with parent_csh.htm#<productID> work fine in Firefox, IE browsers.
    When I try to call the topic in Safari browser on Mac OS, it opens the topic section correctly as shown below:
    when I click the Show link on the top of the page to view the TOC, it gives me a page cannot be displayed error as shown in screenshot below:
    NOTE: It still works well in Firefox on the same Mac computer.
    What is not working:
    * Error occurs when the show link is clicked in help page in Safari 5.0 browser.
    * Same error reported even when I include "withnavpane=true" in the parent_csh.htm#<topic id> to show the TOC.
    Questions:
    * Is Robohelp 8.0 is compatible with Safari browsers in Mac?
    * Is there a way to show the TOC of the webhelp in Safari?
    * Why Safari interprets the '#' to %23 and why the link does not work in Safari alone even it works in Firefox on the same machine?
    Let me know your thoughts and awaiting a resolution from sharp heads of Robohelp.
    Thanks & Regards,
    Pan_Sel

    From the Safari menu bar, select
    Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data
    and confirm. Test.

  • I can record voice memos fine using the built-in iPhone 4 mic.  And my Bluetooth headset (Jawbone Era) works fine when I leave messages on voice mail systems etc. when calling on the iPhone 4.  However, I cannot record voice memos with my Bluetooth mic.

    I can record voice memos fine using the built-in iPhone 4 mic.  And my Bluetooth headset (Jawbone Era) works fine when I leave messages on voice mail systems etc. when calling on the iPhone 4, so it appears my headset mic is fine.  I can also use voice activated dialing, although it fails miserably interpreting numbers.  However, I cannot record voice memos with my Bluetooth mic.   I just get barely audible static.  Any suggestions?   Thanks.

    Hello, did you ever get an answer to your question? I just picked up a Jawbone Era and using on an iPhone 4s running 5.0.1. Seems to work fine on regular calls, but not on the built in Voice memos application. It worked fine on my older Jawbone Icon, but haven't tested on the 4s or iOS 5.
    Thanks!

  • Subvi does not work properly when called inside a vi

    Hello Every body
    thanks for your help. i am using a sub vi for sine signal generation. as a vi it works fine. but when i called this subvi inside another VI it gives some problems. for example timer indicator works properly.it reinitializes as well in the sub vi, but in the main VI it does not work properly. means does not count the time.in the sub vi on the fly i can change the values of frequency and amplitude in real time, but when i use as sub vi, it does not reponse as i change the values in the control arrays.similarly pause and continue works properly in the sub vi, but once again in the main VI, it does not work properly.graph indicator also work properly in the sub vi. but here once again it does not work properly in the main VI.the pause resume indicator also does not blink, when it is continue. in the subvi it blinks very well.generally why the sub vi does not work properly inside the VI?i am sending my VI and sub vis.
    any tips would be highly appreciated.
    thanks
    Regards
    Attachments:
    vi.zip ‏87 KB

    I just want to add some more details to Dan's answer. The subVI is acting exactly like you've coded it. The mistake is in understanding how subVIs work. When you call a subVI (or a function in any other language), you pass some parameters to it, the subVI does it's thing and returns values. the subVI does not accept new parameters from the calling VI until it returns to the caller and the caller runs the subVI again. In your case, you have a subVI with a while loop. You have some front panel control wired to the subVI's stop terminal. When first called, the value is false. So the subVI will keep running until the subVI's stop button becomes true but you cannot change it from main until the subVI finishes and returns so the subVI will never stop. As Dan says, the solution is pass references of front panel controls to the subVI and have the subVI monitor those references for changes and to update references to indicators on Main. You subVI does not need any front panel controls or indicators of it's own.

Maybe you are looking for

  • Windows 7 x64 Professional does not boot after install

    Hello. I created a Windows 7 VM in Windows Server 2012 R2 Standard Hyper-V, all the installation process done successfully, but after installation, it failed to boot and shows a black screen, and didn't boot after it. Following is the event log occur

  • Does spline-interpolation work? (what's it supposed to do?)

    Hello!       I was told (by a co-worker) that Spline_Interpolation[Xi] should exactly match a "tabulated" Y (input) if Xi was one of the "tabulated" X input values.  I don't know if this is correct - if it is, then the function isn't working as expec

  • Centrally Controling JRE Installations/Updates Company Wide

    We are currently using a java based CRM system with a huge number of different peices. We would like to look into doing some upgrades and it has come to our attention that if a user has an older version of the JRE one of the applications works fine b

  • IPod will not charge...?

    So, I just bought a reconditioned 20G 2nd Gen iPod. I installed the software and plugged in the iPod to the power adapter.... and all I get on the iPod is the sad iPod icon. It makes sounds while it's hooked up to the power cord, but the little sad i

  • OPatch Exception: Patch "13643211" has min OPatch V "11.1.0.8.3 " @ 10.1.2

    I am upgrading EBS 11i to 12.1.1 using note E16342-03. We were using Discoverer Version 4.1.48.00 an I am uprading using Note ID 1074326.1 (Discoverer 11.1.1). I have successfully installed RCU, Discoverer (ofm_pfrd_linux_11.1.1.2.0_32*.zip ) and Pat