Integrating Dialog/App server into 4.7 system

We are on SAP R/3 4.7 using Oracle 9.2.0.6 and Solaris 8.
To test the performance of a Linux application server on our QA system, we installed Suse Linux 9 on a server and have performed the SAP installation as per the Installation Guide "SAP R/3 Enterprise on UNIX: Oracle - Using SAP R/3 Enterprise Core 4.70, SAP Enterprise Extension Set 2.00", following the Linux-specific instructions for Dialog servers.
The installation completed successfully, and 'startsap' brought the App server box up successfully.
However, the App server is not visible in SM51, and efforts to sign into it via the SAP GUI produce the error WSAECONNREFUSED - Error 10061.  We have previously experienced the same issue with another App server on which we installed SQL Server.
I am not aware of any steps that were missed in the installation guide, and would like to know if there is a procedure that needs to be followed after installation to integrate the server into the existing system.  During the SAPinst process, the server was identified as a Dialog Server, and the name of the Central/Database instance was specified, so I would have expected the system to recognize the new Dialog/Application server.
This is the first time I have installed an Application/Dialog server, and any information regarding what is missing would be very valuable.
Thanks,
Mervyn

hello Mervyn,
Please check in SAP MMC if the dialog instance(application server) is showing up or not. Further check if it is running. You should also try to restart the SAP server.
Regards.
Ruchit.

Similar Messages

  • Urgent: integrating windows file server into ep using KM.

    hi..
    can somebody give me detail steps of integrating windows file server into ep using KM.
    when i give password in the network path it is not accepting the password of the windows....
      Good answers will be rewarded points...
    bye....

    Hi,
       You can check:
    System Administration-System Configuration-KM-CM-Repository Managers-File System Repository-create a new item
    Root Directory can be:
    machine\sharedirectory
    and in CM-Global Services-Network Paths->create a new item
    in Network Path field:
    machine\sharedirectory
    enter your password
    user: domain\user
    Integrating Documents from a Windows System into KM
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ed/b334ea02a2704388d1d2fc3e4298ad/frameset.htm
    Patricio.

  • Query on integrating windows file server into SAP KM using WEBDAV

    hi
    I have sucessfully integrated windows file server into SAP KM using WEBDAV. I have query in it regarding the possible validation against the portal Database user. Can we configure such that the user comparison happens for LDAP as well as database user. Have anyone configured such a scenario?
    Regards,
    Ganesh N

    Hi Ganesh,
    this should work in principle.
    However you would need a user in Active Directory for each user in the portal database that should connect to the file server if you are using the SSO22KerbMap Module as I assume.
    In my whitepaper I have mentioned this for the internal user index_service that does only exist in the portal database.
    Best regards,
    André

  • How to update Dialog App Server kernel?

    Gurus,
    How do you update Dialog App Server kernel?  I did the same way I did to Central Instance, but in SM51 of the app server it still show the old version kernel.
    Thanks in advance,
    Allen

    Hi Allen,
    You didn`t mention your landscape details(OS,DB ver etc). Always start your query by giving the background of your landscape.
    If you are using R/3 4.*, Unix, Oracle then below is the procedure,
    After applying the kernal patch in CI, there is no need to apply in app servers. The reason is , there is a exe program( SAPCPE.exe) in app server which compares the kernal version of CI and copies the newly added kernel file when ever there is a mis match between the app server and CI.
    This is done automatically during the app server restart.
    You can check in /usr/sap/<SID>/sys/exe/run/SAPCPE.exe
    Award points if it helps your query.
    regards,
    Vinodh.

  • Integrating Sun App Server with WebSphere MQ

    Hi,
    I am using Sun App server V8.1 . I also have a websphere MQ v5.3 installed in my system. I want to integrate this MQ with the App server.
    I created a queueManager and a Queue in MQ and using the JMSAdmin console of the Mq, i created jndi lookup resources using INITIAL_CONTEXT_FACTORY=com.sun.jndi.fscontext.RefFSContextFactory
    In the application server side, i created a Resource adapter using the command:
    create-resource-adapter-config --property SupportsXA=true:ProviderIntegrationMode=jndi:RMPolicy=OnePerPhysicalConnection:JndiProperties=java.naming.factory.url.pkgs\\=com.ibm.mq.jms.naming,java.naming.factory.initial\\=com.sun.jndi.fscontext.RefFSContextFactory,java.naming.provider.url\\=file\\:D\\:\\MQ:LogLevel=finest mqra
    Then i deployed this resource adaptor using the command :
    deploy name mqra target server "D:\Sun\AppServer\lib\addons\resourceadapters\genericjmsra\genericra.rar"
    Using this resource adapter i created a connection pool, connector resource and an admin object using the commands
    create-connector-connection-pool raname mqra connectiondefinition javax.jms.QueueConnectionFactory transactionsupport  XATransaction property ConnectionFactoryJndiName=MQQCF mymqpool
    create-connector-resource --poolname mymqpool jms/MyMqQCF
    create-admin-object raname mqra restype javax.jms.Queue --property DestinationJndiName=RTQueue jms/MyMqQueue
    After that, i wrote a java code to lookup these resources and put a message into the queue.
    This is the snippet of my java code
    InitialContext ic = new InitialContext();
    QueueConnectionFactory cnxFact = (QueueConnectionFactory)ic.lookup("jms/MyMqQCF");
    Queue qu = (Queue)ic.lookup("jms/MyMqQueue");
    try {               
    QueueConnection qConn = cnxFact.createQueueConnection();
    QueueSession qSess = qConn.createQueueSession(false,Session.AUTO_ACKNOWLEDGE);
    QueueSender qSend = qSess.createSender(qu);
    TextMessage msg = qSess.createTextMessage();
    msg.setText("1");
    qSend.send(msg);
    qConn.close();
    I am getting an exception in the line, QueueConnection qConn = cnxFact.createQueueConnection();
    here is the stack trace
    java.lang.ClassCastException: com.ibm.mq.jms.MQQueueConnectionFactory
    at com.sun.genericra.outbound.ManagedQueueConnectionFactory.createXAConnection(ManagedQueueConnectionFactory.java:45)
    at com.sun.genericra.outbound.AbstractManagedConnectionFactory.createPhysicalConnection(AbstractManagedConnectionFactory.java:127)
    at com.sun.genericra.outbound.AbstractManagedConnectionFactory.createManagedConnection(AbstractManagedConnectionFactory.java:111)
    at com.sun.enterprise.resource.ConnectorAllocator.createResource(ConnectorAllocator.java:90)
    at com.sun.enterprise.resource.IASNonSharedResourcePool.getUnenlistedResource(IASNonSharedResourcePool.java:437)
    at com.sun.enterprise.resource.IASNonSharedResourcePool.internalGetResource(IASNonSharedResourcePool.java:355)
    at com.sun.enterprise.resource.IASNonSharedResourcePool.getResource(IASNonSharedResourcePool.java:250)
    at com.sun.enterprise.resource.PoolManagerImpl.getResourceFromPool(PoolManagerImpl.java:213)
    at com.sun.enterprise.resource.PoolManagerImpl.getResource(PoolManagerImpl.java:174)
    at com.sun.enterprise.connectors.ConnectionManagerImpl.internalGetConnection(ConnectionManagerImpl.java:286)
    at com.sun.enterprise.connectors.ConnectionManagerImpl.allocateConnection(ConnectionManagerImpl.java:145)
    at com.sun.enterprise.connectors.ConnectionManagerImpl.allocateConnection(ConnectionManagerImpl.java:121)
    at com.sun.genericra.outbound.ConnectionFactory.createConnection(ConnectionFactory.java:69)
    at com.sun.genericra.outbound.ConnectionFactory.createQueueConnection(ConnectionFactory.java:101)
    Can anybody help???

    bump
    update:
    So to avoid this problem I added spring.jar to the server classpath. that got rid of this message but then it started complaining that its missing struts2 core jar..i added that in server classpath as well...I did same for 4 other files and in the end it said 'bean for xwork has already been initialized' (because all these jars are in the application as well).
    So I am stuck. if I add all jars to server classpath..it says beans have already been initialized. If I take out the jars from server classpath then it says that stuff is missing (eg. contextLoader.properties missing - orig post)
    again, all this goes away when I restart the server..so i am just trying to avoid having to restart server every code change.

  • Error when Integrating Ms Exchange server into Enterprise Portal

    HI All,
    We are trying to integrate them MS Exchange server into Enterprise Portal and is facing the problem with WebDAV Repository manager.
    i've already created a HTTP System given the right url for the system and i used the system in the WebDAV Repository, when i try to monitor the component called repository manager it is in yellow color and is showing the server status as start up failed and error msg is,
    <b>errors   1
    requests   1
    bytes-per-second   0
    successes   0
    response-average   234
    last-error-0   2006-05-19T05:22:31Z: PROPFIND /exchange/: 401 Unauthorized
    failures   0</b>
    do anyone of u know the exact error?
    Your help will be appriciated.
    Thanks in advance,
    Sireesha.

    With a Live Office connection, you would typically use the URL iView and the opendocument URL to integrate the dashboard into the Enterprise Portal. There are existing posts on this forum about opendocument and Xcelsius dashboards.
    Obviously you need to make sure the dashboard refreshes fine outside of the portal, for instance from Infoview.
    Then, you need to look at the cross domain constraints : have both Infoview and Enterprise Portal in the same domain or use crossdomain.xml. They are lots of posts on this forum about that too.

  • How to run App server applications in Client systems

    Hi all,
    I m new to Oracle Devsuite 10g and App server. I configured the app server and i m able to run in my local machine (server) but i m not able to run in some others machines. even though i have given same path.
    its displaying page cannot be dispalyed
    My path is http://vagee/forms/frmservlet?config=TEST_APPS
    please tell me how to run in client systems?
    Regards,
    Kalyan

    hi
    thanks for your reply. i found the problem. In server machine Firewall was in On Mode. So that it was not allow to access. then i have switched off the firewall. now its running well in client systems also.
    thank you.

  • Problem while integrating windows file server into SAP KM using WEBDAV

    Hi
    I am trying to integrate windows file server into SAP KM using WEBDAV . I have downloaded the kerberos ini filter and included in the windows system. I am only trying to bring the files in the same system into KM but with no luck. When i check the log file in the kerberos folder i am getting
    <b>12:02:22 10828/10476 E OnPreprocHeaders: Found 0 UserPrincipalNames for ADSI Filter (&(objectCategory=person)(objectClass=user) (userPrincipalName=xxxx))</b>.
    In the log i am getting the following
    ERROR! Delegation Flag:Use any authentication protocol: NOT ACTIVE
                           Open 'Active directory Users and Computers'. Choose <domain> -> 'Computers'.
                           Right-click 'IDBSRV8' and choose 'Properties'.
                           Select 'Delegation' and 'Trust this computer for delegation to specified services only'.
                           Select 'Use any authentication protocol'.
                    ERROR! The Trusted-to-Authenticate-for-Delegation flag is not set for SPN 'HOST/idbsrv8.idbhq.org'.
                           Please check the SPN by calling 'setspn -l IDBSRV8'.
                           If the SPN is well known, configure the Trusted-to-Authenticate-for-Delegation flag:
                           Open 'Active directory Users and Computers'. Choose <domain> -> 'Computers'.
                           Right-click 'IDBSRV8' and choose 'Properties'.
                           Select 'Delegation' and 'Trust this computer for delegation to specified services only'.
                           Select 'Use any authentication protocol' and choose 'Add'.
                           Select 'Users or Computers' and enter IDBSRV8 as object name.
                           Add the ServicePrincipalName HOST/idbsrv8.idbhq.org.
    Can anybody please help me in this regard???
    Regards,
    Ganesh N
    Message was edited by:
            Ganesh Natarajan

    Hi Ganesh,
    this error message tells you that there is no user in your active directory that has the userPrincipalName xxxx.
    The SSO22KerbMapModule works as follows.
    1. It receives a SAP Logon Ticket from the WebDAV request.
    2. If valid the SAP username is extracted. In your case the SAP username is xxxx.
    3. It then searches for a user in AD. It does so using the attribute in the ini-file that has been specified to contain the SAP username. In your case the SAP username should be identical with the userPrincipalName.
    So you have to make sure that the portal user id (j_user) is mapped to the same AD user attribute  that is specified in the ini-file .
    Best regards,
    Andre

  • Integrating microsoft exchange server into portal

    Hi All,
    can any one suggest me detailed procedure for integrating micorsoft exchange server(MS Outlook)  into portal.
    I searched in the SDN , i got some idea, but it is not giving detailed  procedure.
    please explain in detail so that my Outlook will come into portal so that i can check  my mails from portal itself.
    Thank in Adncance
    Bala

    Hi bala,
    See the following doc:
    <a href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/08def089-0a01-0010-9c82-ee2040b4eced">HOW TO INTEGRATE MICROSOFT EXCHANGE SERVER INTO SAP ENTERPRISE PORTAL</a>
    Have a look at the following threads:
    <a href="https://www.sdn.sap.com/irj/sdn/thread?threadID=82871">https://www.sdn.sap.com/irj/sdn/thread?threadID=82871</a>
    <a href="https://www.sdn.sap.com/irj/sdn/thread?threadID=305487">https://www.sdn.sap.com/irj/sdn/thread?threadID=305487</a>
    Some more related threads are:
    <a href="https://www.sdn.sap.com/irj/sdn/thread?threadID=40895">https://www.sdn.sap.com/irj/sdn/thread?threadID=40895</a>
    <a href="https://www.sdn.sap.com/irj/sdn/thread?threadID=2976">https://www.sdn.sap.com/irj/sdn/thread?threadID=2976</a>
    <a href="https://www.sdn.sap.com/irj/sdn/thread?threadID=148434">https://www.sdn.sap.com/irj/sdn/thread?threadID=148434</a>
    <a href="https://www.sdn.sap.com/irj/sdn/thread?threadID=8179">https://www.sdn.sap.com/irj/sdn/thread?threadID=8179</a>
    Bye
    Ankur
    Do reward points if it helps!!

  • Integrating WebSphere Portal Server with Sun Java System Access Manager

    Hi All,
    Is it possible to Integrate WebSphere Portal Server with Sun java System Access Manager?. If so plz send me any doc or web site link for the same.
    Thanks in Advance
    Rgds,
    Lessly J

    Rushi-Reliance wrote:
    Kindly let us know how to proceed further as we are waiiting some reply from your team.As I already advised in your previous posting (http://forums.sun.com/thread.jspa?threadID=5359095), you are best off re-installing solaris from scratch and installing Communication Suite 6 update 1 if you cannot get Access Manager 7.1 configured.
    Regards
    Shane.

  • Adding a 64bit Dialog intance server into a 32bit envoirnment

    hi all,
    I'm trying to install a new Dialog Instance on a 64bit server, however the current environment is 32bit. Can we do that? My concern is when I've edited the central instance's profile and added the Dialog instance, it overwritten the Central Instance Kernel with the files from the new server, (bringing 64bit files to a 32bit system) and that obviously caused the system to go down.
    What do you guys think?
    Thanks,
    Samer

    Hi Moshe,
    Thanks for the reply, I feel like i'm missing something.
    I'm following these notes in my installation:
    http://www.sap-info.org/snotes/SN10.pdf
    And I think I'm misconfiguring things when I get to point 22 as I'm not understanding what they mean. I think that made the system go down.
    I've copied everything in the existing profile with QAS_dvebmgs00 to QAS_D01_sapqaappvs2. They also mention that I need to make the neccesary changes. Not sure what they are but I think it might be something from this, maybe only the sapsystem needs to change from 00 to 01
    SAPSYSTEMNAME = QAS
    INSTANCE_NAME = DVEBMGS00
    SAPSYSTEM = 00
    SAPGLOBALHOST = sapqaappvs
    CLUSTER specific keys
    SAPLOCALHOST = sapqaappvs
    SAPLOCALHOSTFULL = sapqaappvs
    Here's the whole QAS_dvebmgs00  profile:
    #.*       Instance profile QAS_DVEBMGS00_SAPQAAPPVS                                                                            *
    #.*       Version                 = 000001                                                                                *
    #.*       Generated by user = KAMASA                                                                                *
    #.*       Generated on = 08.18.2008 , 09:53:10                                                                                *
    #parameter created                          by: YDG          07/27/2006 07:57:31
    DIR_PUT = D:\usr\sap\put
    #parameter created                          by: DPB          02/20/2005 12:37:00
    em/reserve_mapping_window = on
    #parameter created                          by: DPB          03/21/2004 14:28:48
    #old_value: 920                                 changed: DPB 04/23/2005 11:05:44
    PHYS_MEMSIZE = 700
    #parameter created                          by: DPB          06/16/2003 10:49:05
    dbs/oledb/tsp_cache_size = 15000
    #parameter created                          by: DPB          06/16/2003 10:48:13
    dbs/oledb/stats_on = 1
    #parameter created                          by: DPB          06/16/2003 10:47:29
    dbs/oledb/pn_cache_size = 20000
    #parameter created                          by: DPB          06/16/2003 10:46:27
    dbs/oledb/add_procs = 8
    #parameter created                          by: DPB          06/16/2003 10:45:31
    ztta/parameter_area = 16000
    #parameter created                          by: DPB          09/04/2006 13:24:37
    gw/remsh = c:\winnt\system32\rsh.exe
    #parameter created                          by: DPB          06/16/2003 10:44:20
    gw/max_overflow_size = 25000000
    #parameter created                          by: DPB          06/16/2003 10:43:01
    rdisp/max_comm_entries = 2000
    #parameter created                          by: DPB          06/16/2003 10:41:54
    rdisp/tm_max_no = 2000
    #parameter created                          by: DPB          06/16/2003 10:40:26
    gw/max_conn = 2000
    #parameter created                          by: DCH          02/04/2003 09:30:53
    rsdb/obj/large_object_size = 8192
    #parameter created                          by: DCH          02/04/2003 09:30:27
    rsdb/obj/max_objects = 20000
    #parameter created                          by: DCH          02/04/2003 09:30:02
    #old_value: 20000
    #changed:  AMSTECH       10/16/2007  10:01:04
    #old_value: 24000
    #changed:  AMSTECH       11/08/2007  18:48:43
    rsdb/obj/buffersize = 28000
    #parameter created                          by: DCH          02/04/2003 09:28:35
    #old_value: 400000
    #changed:  AMSTECH       10/16/2007  10:01:04
    #old_value: 500000
    #changed:  AMSTECH       11/08/2007  18:48:43
    abap/buffersize = 600000
    #parameter created                          by: DCH          02/04/2003 09:28:13
    #old_value: 20000000                            changed: DPB 02/20/2005 12:40:41
    zcsa/presentation_buffer_area = 26000000
    #parameter created                          by: DCH          02/04/2003 09:27:50
    #old_value: 30000                               changed: DPB 02/20/2005 12:39:33
    #old_value: 39000
    #changed:  AMSTECH       10/16/2007  10:01:04
    #old_value: 47000
    #changed:  AMSTECH       11/08/2007  18:48:43
    rsdb/ntab/ftabsize = 54600
    #parameter created                          by: DCH          02/04/2003 09:27:24
    rtbb/max_tables = 500
    #parameter created                          by: DCH          02/04/2003 09:27:00
    rtbb/buffer_length = 30000
    #parameter created                          by: DCH          02/04/2003 09:26:30
    zcsa/db_max_buftab = 10000
    #parameter created                          by: DCH          02/04/2003 09:26:06
    #old_value: 50000000                            changed: DPB 02/20/2005 12:41:31
    zcsa/table_buffer_area = 65000000
    #parameter created                          by: DCH          02/04/2003 09:25:34
    sap/bufdir_entries = 10000
    #parameter created                          by: DCH          02/04/2003 09:25:06
    #old_value: 5000                                changed: DPB 02/20/2005 12:39:57
    #old_value: 6500
    #changed:  AMSTECH       10/16/2007  10:01:04
    #old_value: 8000
    #changed:  AMSTECH       11/08/2007  18:48:43
    rsdb/cua/buffersize = 9100
    #parameter created                          by: DCH          02/04/2003 09:24:40
    rsdb/ntab/sntabsize = 2500
    #parameter created                          by: DCH          02/04/2003 09:23:35
    #old_value: 4000
    #changed:  AMSTECH       10/16/2007  10:01:04
    #old_value: 5000
    #changed:  AMSTECH       11/08/2007  18:48:43
    rsdb/ntab/irbdsize = 6000
    #parameter created                          by: DCH          02/04/2003 09:23:05
    #old_value: 30000                               changed: DPB 02/20/2005 12:42:39
    #old_value: 21000
    #changed:  AMSTECH       10/16/2007  10:01:04
    #old_value: 25000
    #changed:  AMSTECH       11/08/2007  18:48:43
    rsdb/ntab/entrycount = 29400
    SAPSYSTEMNAME = QAS
    INSTANCE_NAME = DVEBMGS00
    SAPSYSTEM = 00
    SAPGLOBALHOST = sapqaappvs
    CLUSTER specific keys
    SAPLOCALHOST = sapqaappvs
    SAPLOCALHOSTFULL = sapqaappvs
    #old_value: 16                                  changed: DPB 03/21/2004 14:31:12
    rdisp/wp_no_dia = 8
    rdisp/wp_no_vb = 5
    rdisp/wp_no_vb2 = 2
    rdisp/wp_no_enq = 1
    #old_value: 6                                   changed: DPB 03/21/2004 14:31:12
    rdisp/wp_no_btc = 5
    rdisp/wp_no_spo = 1
    zcsa/system_language = E
    Thanks for your time,
    Samer

  • App Server for Interactive Voice system

    Hi everyone
    Can i use Oracle Application Server for Interactive Voice Respond System(using the phone not wireless)?
    Thanks in advance

    If you have different RPs for each IVS, nothing to do about load balancing, you would need to have the same RP and have the 2 SIP trunks in the same RG/RL
    For limiting the number of calls, you can use CAC.

  • How to Integrate the portal server with Third party system

    Hi Experts,
    I got a requirement to create a integration between portal server and thrid party system.
    If anybody have specific document for this kindly circulate the same to [email protected]
    For every inputs higher points will be rewarded.....
    Thanks in Advance,
    Jasmine

    Jasmine,
    You don't mention which third-party?
    There are many complient/supported third-party apps/ and APIs available.
    Check https://www.sdn.sap.com/irj/sdn/developerareas/was?rid=/webcontent/uuid/e081a4b6-0801-0010-7fa4-c3c7a0454815
    further.
    James

  • Unable to Register Sun App Server 9 in Netbeans 5.5

    Hi,
    I used to work on netbeans 5.5 and bundled sun app server 9. Everything was going fine. Today in the middle of a deployment in app server through netbeans, my system got hanged. So I killed the java.exe process.
    Now when I again attempted to open netbeans it showed me an error that some modules in sun app server could not be found and so sun app server could not be loaded. I tried registering sun app server again in netbeans but the server name was not even coming in the drop down list of app servers.
    Impatiently I uninstalled the bundled app server + netbeans through the uninstaller, and again installed the server and netbeans in a different directory. But again the same problem is coming and it is not showing the sun app server. Netbeans is opening and Sun App Server 9 is also working in isolated mode but I cant seem to find the sun app server still in the server list of netbeans.
    Kindly help. I am just too frustrated.

    Hi,
    I have installed J2EE 5 SDK on windows XP. When I installed NetBeans 5.5.1 and tried to register it with Application Server, it got registered automatically. I had to uninstall both due to some reasons, now when I installed both j2ee and netbeans again, i see D:/Sun/AppServer folder empty and not able to register NetBeans 5.5.1 with application server. I tried again and again by reintalling but AppServer folder remains empty and not able to register. Any help for this issue??????????

  • How to displays the standard open file dialog box in Oracle Apps Server

    Hi,
    I am having a form, where i am opening a file and putting that file content in a text box.
    This is my code written in WHEN-BUTTON-PRESSED trigger:
    declare
    in_file Text_IO.File_Type;
    linebuf VARCHAR2(8000);
    filename VARCHAR2(30);
    BEGIN
    filename:=GET_FILE_NAME('d:\Rajesh\Practice', File_Filter=>'Text Files (*.txt)|*.txt|',select_file=>false);
    in_file := Text_IO.Fopen(filename, 'r');
    LOOP
    Text_IO.Get_Line(in_file, linebuf);
    :text_item5:=substr(:text_item5||linebuf||chr(10),1,5000);
    END LOOP;
    EXCEPTION
    WHEN no_data_found THEN
    Text_IO.Put_Line('Closing the file...');
    Text_IO.Fclose(in_file);
    END;
    I have posted this in ORacle Apps Server.Where i was not able to get the Open Dialoq Box.It is giving an error as
    "FRM-40735:WHEN-BUTTON-PRESSED trigger raised unhandled exception ORA-302000.".
    I think the GET_FILE_NAME function is not supported in the Apps Server.
    Is there any alternative solution for getting the OPEN DIALOG WINDOW in Oracle Apps Server?
    Pls let me know.

    Hi!
    waldemar.hersacher wrote:
    "It seems that the VIs called by the clients are running in the user interface thread.
    A call to the file dialog box will call a modal system dialog. So LV can't go on executing VIs in the user interface thread."
    Are you sure? I think, that File Dialog, called by LabVIEW File Dialog from Advanced File Functions Palette doesn't blocking any cycles in subVI, which running in UI Thread. Look in my old example (that was prepared for other topic, but may be good for this topic too).
    2 linus:
    I think, you must a little bit reorganize you application for to do this. You must put your File Dialog into separated cycle. This cycle, of course, will be blocked when File Dialog appear on the screen. But other cy
    cle, which responsible for visualization will run continuosly at the same time...
    Attachments:
    no_block_with_file_open_dialog.zip ‏42 KB

Maybe you are looking for

  • I just downloaded OS X Lion and now every time I turn on my computer everything opens.

    Today I downloaded the OS X Lion, and now when my computer starts up, all my programs open.  I have to close them just to get back to the desktop. Help! Thank you, Gena.

  • Wrong links in webgui

    Hi forum, I am pretty new to SRM. I am working with a system where I am facing some problems with some links. Loging on the WebGUI doesn't make any problems... http://myhost.mydomain:8001/sap/bc/gui/sap/its/bbpstart?sap-client=800 ... but when I clic

  • Skipping an approver for particular requisition items - purchase requisitio

    In our purchase requisition approval heirarchy we want to skip one approver if it is a fixed asset , is it possible to conditionally forward documents, it has to happen automatically without user forwarding skipping the particular approver.

  • Dynamic filters print (pdf)

    Hi In our print web template we have an information field that shows us dynamic filters including key figures and structures. Is it possible NOT to show the key figures and structures, but everything else ? Kind Regards Steffen

  • Cannot Install OWB Repository objects.

    I use OWB Repository Assistant after finished Installing BO 10.1.0.2.0. I filled the User Name field as SYS and surely another fields are correct. But I got the result as INS0003: OWB Repository Installation cannot continue without DBA privileges. Co