Integration with contact database

Hi,
We have built a custom contact database. Contacts (including email addresses etc) are stored in an Oracle 8 database. We are looking for a product integrating email/documents and our contact database. Now I have read about Collaboration Suite. Is it possible to interface our contacts with the address book of Outlook/Collaboration Suite (without buying CRM)?
Ina Meulman

OK just tried out http://www.emoze.com/ and it works pretty much perfectly. Integrates fully with all aspects of the Phone OS.
In fact as it stands I'd say it's a better solution than Nokia Email as it even populates the email folder under messaging on the phone with a Push email app.
All Send email functionality works; both from the homescreen and the Contacts app.
Please Nokia look at this app and you'll see where the nokia email app is lacking.
Oh...and It's free BTW for single mailbox use.....
E71
FW: 30 somefing

Similar Messages

  • ATG database integration with other databases

    Hi,
    i am new to atg.
    i am using oracle database for atg.i want to integrate that oracle database(especially profile reository) with my sqL database.i need those databses to be synchronized.
    can any one help me out how to do that?
    thanks in advance...

    John (guest) wrote:
    : I want to try out Reports6i with a non-Oracle database, until
    : such time we migrate to 8i. As I was told, Reports 6i can be
    used
    : with other databases.
    : My problem is with Oracle WebDB, which requires an Oracle
    : database. So how do I get Reports6i to work with a non-Oracle
    : database?
    : Thanks,
    : John
    Hi John,
    When we say that Reports 6i can be used with other databases, we
    mean that you can access data in the other databases. As you
    rightly point out, though, WebDB must be installed into an Oracle
    database. So, if you want to run reports through WebDB, you could
    install an Oracle database just for WebDB (i.e., don't store any
    of your data in it). The reports you are running could get the
    data from the non-Oracle databases. Probably worth noting here
    that WebDB 2.2 can be installed into earlier versions of Oracle,
    like 8.0.5 and 7.3.4. WebDB 2.2 does not require 8i.
    If, however, you don't want to install an Oracle database just
    for WebDB, you could run the reports without WebDB. It is
    possible to send reports directly to our Reports Server without
    going through WebDB. The Publsihing Reports manual explains how
    to do this.
    Regards
    The Oracle Reports Team
    null

  • App integration with Contacts and Calendars ending?

    I've been following the discussions in the Bento and the Omni Group (re: OmniFocus) forums about developer decisions to drop certain features that involve integration into the Apple databases like Contacts due to changes in how Apple identifies records as a result of iCloud.  Also,  it seems that the application programming interface that Apple provides for Address Book, iCal, and iPhoto are no longer being supported and are scheduled to be removed (info provided by Bento tech support).
    Does anyone here have more detailed or definitive info about this?

    It seems that these apps are using the CalendarStore framework, which has been deprecated. And maybe other frameworks, too. There is a replacement for CalendarStore which is called EventKit. App developers now need to update their apps to use this new framework (it was only introduced with Mountain Lion). This is work, and apparently  will take some time.
    In Mountain Lion, the old CalendarStore framework is still present, so any existing apps should still work (fingers crossed). Chances are however, that it might disappear in 10.9, or a later release. Any apps using it need to be updated before that.

  • Way of External Database Integration with UCCX

    Hi
    I want to know what are the way of UCCX integration with External Database(Mobile Operator, Banking, Insurance).I only know about DBwrite and DBGet. is there any way out(http, https,SOAP)? They dont want to give me direct access to there Databases.
    Sultan Al Arif

    One way to do this would be to use the Get URL Document step to request an XML file from a web server.
    Upon receiving this request the web server would then retrieve the required data via SQL (fairly easy to do using ASP.NET and  IIS), format it in an XML page and return it to your script.
    The script would then use Get XML Document Data steps to parse the XML file for the required data.
    The organisations that operate the databases with which you want to integrate may have some concerns about the security of this though as the data will not be encrypted in transit.

  • Cisco Secure ACS 4.1 with Windows Database

    I have ACS 4.1 integrated with Windows Database (check mark in allow Remote DialIn).
    When we terminate a employee do I have to also delete their ACS User Profile?
    If I delete the user in AD will they automatically delete the user in ACS?
    Where can I read more about this?

    Hi,
    If you delete the user in AD, then it would not authenticate the user even if the dynamic mapped user exists in the ACS database, as the password would not be verified from the AD for the user.
    The dynamically mapped user entry would still exist in ACS and would not get deleted if the user is deleted from AD.
    tnx
    somishra

  • DBUM Integration With Database Vault Realms

    The dbum connector documentation mentions
    "...In Oracle Database installations on which Oracle Database Vault is installed, the connector can be used to grant and manage authorization to Oracle Database Vault realms. The connector treats access to Oracle Database Vault realms as an entitlement. You can use the connector to provision database users with access to multiple realms with different levels of access.."
    http://docs.oracle.com/cd/E22999_01/doc.111/e28315/intro.htm#CHDICGJF
    but after setup database vault and run successfully direct provisioning using dbum connector, I could not grant access to database vault realms. As far as I understood the connector should present database vault realms as entitlements, but i did not find any schedule task or lookup to enable this feature.
    Any help is more than appreciated

    Hi.
    Note 428503.1 is applicable to Database Version 10.2.0.4 with EBS 11i. That is not what you're trying to achieve, you want 10.2.0.4 with EBS 12. (I was able to find note 428503.1 by the way)
    There are two notes :
    Integrating Oracle E-Business Suite Release 12 with Oracle Database Vault 10.2.0.3 : 744363.1
    Integrating Oracle E-Business Suite Release 12 with Oracle Database Vault 10.2.0.5 : 11397981.1
    So, I am not sure if you can integrate EBS 12 with 10.2.0.4. I would at least patch the database up to 10.2.0.5 or upgrade to 11.2 as Helios stated.
    Either way you are better off contacting Oracle Support directly with your question.
    Paul

  • Database connection encryption and integrity with ColdFusion and Oracle thin client

    As ColdFusion datasource we are using the Oracle thin client to  connect with the database. So, basically we are using a JDBC URL such as  jdbc:oracle:thin:@... and as Driver Class oracle.jdbc.OracleDriver. This works successfully however we would like to set encryption and  integrity parameters as well. In Java this is done similarly by setting a  Properties object prior to getting a connection as follows:
    Properties prop = new Properties();
    prop.put("oracle.net.encryption_client", "REQUIRED");
    prop.put("oracle.net.encryption_types_client", "( DES40 )");
    prop.put("oracle.net.crypto_checksum_client", "REQUESTED");
    prop.put("oracle.net.crypto_checksum_types_client", "( MD5 )");
    OracleDataSource ods = new OracleDataSource();
    ods.setProperties(prop);
    ods.setURL("jdbc:oracle:thin:@localhost:1521:main");
    Connection conn = ods.getConnection();
    Is there a way that I can pass these parameters to the ColdFusion  datasource. Ideally, I would love to do this centrally in such way that a  change to all the cfquery or cfstoredproc is not needed.
    I also know that in application servers such as Oracle AS there is an  option when creating a datasource which says "Add Properties". In there  you can add such properties. So, I was thinking of maybe creating a  JNDI DS in the app. server and then magically connecting to it but this  may have some impacts on the app.
    Besides this I was also thinking of communicating with the CF  datasource through the CF admin API (cfide.adminapi.administrator) and  also the option of extending the Oracle driver so that when CF connects  with it these params are already set.
    I would love to have your professional opinion and suggestions on this.

    I believe the thin driver actually needs the IP address (not the DNS name). Also, is "java" the name of the Oracle instance to which you are trying to connect?
    Try the following:String driver = "jdbc:oracle:thin";
    String dbIP = "W2RZ1NXG01's IP address";
    String dbPort = "1530";
    String dbSid = "java";
    String dbUser = "Admin";
    String dbPswd = "apassword";
    String cnctStr = driver + ":@" + dbIP + ":" + port + ":" + dbSid;
    try
        Class.forName("oracle.jdbc.driver.OracleDriver");
        con = DriverManager.getConnection( cnctStr, dbUser, dbPswd );
        stmt = con.createStatement();
        stmt.executeUpdate(createString);
        stmt.close();
        con.close();
    catch(SQLException ex)
        System.err.println( "The following SQLException occurred: " + ex );
        System.err.println( "Message: " + ex.getMessage() );

  • CCX7.0 Database Integration with Oracle 10g through ODBC

    Good Day…
    We are up to integrate CCX7.0 with Oracle 10g, CCX7.0 documents show the way to integrate the CCX7.0 with SQL server, but mention nothing about Oracle 10g, anyway...
    I tried to check the ODBC options, there were many options, I tried to select any Oracle related choice, just to find out Oracle should supply the driver for it. In the forums, people say it’s an Oracle Client, but what will this client do? Am I going to connect though it to the oracle database server or is it going to query the database to my CCX server? What am I going to use in this case, user DSN or system DSN?
    If there any tips or recommendations I will be grateful, as it is my first database integration.
    Thanks
    AT

    Hi Aaron
    Thanks Aaron for the information, and yes you are right, I am not a database person.
    I have here some questions, sorry if some of them sounds silly
    1)       Is there a certain Oracle Client version? or and Oracle Client will work for me?
    2)       Do you recommend system DSN on user DSN?
    3)       “…. available to any device on the system” as you said in your reply, what do you mean by "device" and "system"? Sorry, but this will help to clear the picture to me
    4)       What will this Oracle Client exactly do? Is it going to build an SQL table on my CCX server that query the information from the Oracle Server?
    5)       My customer has already implemented database integration with IPCC3.5, how can I check the current configuration of the Oracle Client, and what things else should I check before proceeding with the integration?
    The reason I want to understand this because there is a lot of database integration is requested from us, the CCX scripts can be used to query data from SQL tables, I read a lot about this –waiting for the implementation phase- the lucky me, the first integration I faces is with Oracle.
    Anyway, who said learning is easy.
    Thanks Aaron for your time, waiting your answers.
    AT

  • Weblogic SOA 12.1.3: Integration with Oracle 9i Database

    All,
    We have a client who currently adopt BPEL 10g (10.1.3.4). Currently we are looking to updrade the client to SOA Suite 12.1.3. As part of their existing architecture, there are a number of Oracle 9i databases that the BPEL components integrate with via DB Adapters. The clients current road map is to upgrade / migrate to the 12c SOA platform but not upgrade any of their legacy applications running on top of a Oracle 9i Database.
    Please note I have observed and reviewed the Certification Matrix for supported platforms at http://www.oracle.com/technetwork/middleware/fusion-middleware/documentation/fmw-1213certmatrix-2226694.xls
    As part of initial investigations, we have identified that the JDBC drivers that are integrated with 12.1.3. Weblogic are not compatable with Oracle 9i. You are able to create and test data source conections with success. However at runtime when querying the database a number of issues manifest. These incude:
    VARCHAR2 columns are not returned via a select. Date columns and number columns are returned
    Errors when executing adapters which implement the Pure SQL feature.The error returned involves the "ora-01460: unimplemented or unreasonable conversion requested" error.
    Similair design time issues are also envountered in JDeveloper (as per JDeveloper 12.1.3 (SOA / BPM) Integration with Oracle 9i Database)
    Looking at the default configuration in 12c, it is to utilise OJDBC7 drivers supplied which support JDBC 4.1specification.
    Has anyone had experience of using an Oracle 9i Database with Weblogic 12.1.3.? or have any viable options / views for how this could be achieved?
    Regards Dave

    I wrongly mentioned to change to change the font format. In that document they mention to add the lines.
    Thanks
    Guna

  • CCME integration with Microsoft Business Contact Manager

    Hi,
    Can anyone tell me, if a CCME can be integrated with Microsoft BCM such that when a call comes in details of the client pop up, should they exist in the Business Contact Manager.
    Finding exact information is like find a needle in a hay stack.
    Regards
    LN

    Hi Swinster,
    Apologize for the late reply.
    What is your current situation? As JS2010 stated, also in this KB article:
    http://support.microsoft.com/kb/2101557
    During the 'Specialize phase' of Sysprep, Sysprep.exe looks at the Last Modified Date of the ntuser.dat file for each user profile to determine which user profile to copy to the default user profile. However, the earlier cleanup functions of sysprep.exe
    loads each Ntuser.dat file to make security ID (SID)generalizations. You cannot predetermine which user profile will be copied if more than one user profile exists.
    How about we skip the copyprofile option?
    Further, see if the following article would help to customise the user profiles settings:
    Configuring Default User Settings – Full Update for Windows 7 and Windows Server 2008 R2
    http://blogs.technet.com/b/deploymentguys/archive/2009/10/29/configuring-default-user-settings-full-update-for-windows-7-and-windows-server-2008-r2.aspx
    Or we may consider seek help at the office outlook forum for the BCM deployment.
    Best regards
    Michael Shao
    TechNet Community Support

  • "in-network" email  with integrated search-able database for printer room.

    Hi,
    I would like the following procedure to replace the current method of hand writing notes which are associated with files that are put in a drop box by employees to be printed in the printer room.
    They're are about 30 employees that I want to be able to send an “in-network” email with as much as a 2 MB file attachment along with a template describing the file attachment to the printer room were there are 4 computers. The file attachment should go directly to the print server and the template explaining the file attachment along with who and when it was sent to go to a different computer (a PC - could be a MAC) containing one tracking data base. The data base would be integrated with the in network email. The data base would keep track of all the emails and attachments. The data base would be search-able and easy to back up. Their also should also be a pop up notification when new emails/print jobs arrive.
    Computers: Two Print servers controlling two printers each. One Xserve. 30 Mac's running OS X.
    Any thoughts?
    Thanks,
    Jason
    Dual 1GHz G4   Mac OS X (10.4.3)  

    No easy way of doing this with existing server tools.
    Your best bet is to get a professional on site and you will need extra software to be written for you.

  • Outlook integration with Multiple Companies/Databases

    We have 3 separate companies each in their own database.  I know that outlook can sync with each of them individually, but does anyone have a solution to allow outlook to sync with every database without logging on to each database individually?
    Thanks in advance for your suggestions,
    Tom Sylak

    Tom Sylak,
    I don't think your desired target would be feasible.  You know, each database has different set of data.  How could OI differentiate them if you got concurrent access?
    Thanks,
    Gordon

  • Anyone successfully integrated Nortel Contact Centre 6 with ICM 7.2.7 PG?

    We have an ICM system currently running ICM 7.2.7 at the CICM, with an ICM 7.2.7 symposium PG which we are trying to integrate with a Nortel CC6 call centre system.
    The CC6 system has successfully acquired the agent handsets from the meridian 1 ACD connected to it.
    I have downloaded and installed the CC6 SDK files for HDX, RSM and RTD from Nortel and installed these on the PG (using ANSI option for HDX and RTD SDK installers) and have edited the registry to update the NINameServer entries in the SDK as per the cisco documentation. I have also run the Nicomsetup executable in the SDK and this has successfully completed.
    However when I start up the PG processes, the PIM initially goes Active (HDX registers OK along with RTD) but then shows messages that the RTD DLL lost connection to the RTD server on the CC6 machine (background network pings show no lost packets). This RTD DLL then reestablishes connection by itself for a while before OPC decides to shutdown and restart the PIM , the whole cycle then repeats.
    I have rebooted both the PG and the symposium server but doesn't make any difference.
    New to symposiums so probably something I have missed on the CC6 system.
    Anyone managed to get these successfully integrated, if so what things resolved the issue?

    Hi,
    I'm wondering if you ever got this working.  I am currently experiencing a similar issue integrating with ICM 7.5.6.

  • RE: Legacy Integration with PI/Open

    Greg -
    We are currently working on wrappering the APIs for UniVerse (aka Pick on
    UNIX).
    We received some help from the guys at RTD in Denver.
    We tested out a C program that uses the Universe APIs and it works fine.
    We will be building the Forte piece and compiling it this week.
    Our first application is to inquire the UniVerse data, after that is
    successful, we will move to inserting & updating.
    Let us know how we can help.
    Larry McCartney
    [email protected]
    (203)459-7959 - Trumbull
    From:
    [email protected][SMTP:[email protected]
    om]
    Sent: Monday, October 12, 1998 11:00 AM
    To: [email protected]
    Subject: forte-users-digest V1 #1111
    forte-users-digest Monday, 12 October 1998 Volume 01 : Number
    1111
    In this issue:
    Legacy Integration with PI/Open
    is OBB32.dll available
    Java Integration
    Java Integration
    Re: Legacy Integration with PI/Open
    RE: Forms That Will Not Close
    RE: Forms That Will Not Close
    RE: Forms That Will Not Close
    Re: AfterValueChange event trigged when it shouldn't be...
    math library
    From: [email protected]
    Date: Mon, 12 Oct 1998 09:49:56 +1000
    Subject: Legacy Integration with PI/Open
    This is a bit of a long shot, but has anyone experience with integrating
    Forte with PI/Open. PI/Open is a variant of PICK. We have a requirement
    to read and update a PI/Open database from within our Forte application,
    and we would be most interested to hear from anyone who has experience in
    doing this.
    We are aware of a set of APIs provided with PI/Open that are written in
    "C". We could wrapper these from within Forte, however the issue is that
    the APIs provided are non-shared, and Forte requires shared libraries.
    Thanks in advance for any help.
    Greg Barber.
    The information transmitted is intended only for the person or entity to
    which it is addressed and may contain confidential and/or privileged
    material. Any review, retransmission, dissemination or other use of, or
    taking of any action in reliance upon, this information by persons or
    entities other than the intended recipient is prohibited. If you
    received
    this in error, please contact the sender and delete the material from any
    computer.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    From: "sridhar t" <[email protected]>
    Date: Sun, 11 Oct 1998 22:01:36 PDT
    Subject: is OBB32.dll available
    hi,
    am working on forte3.0.G.2. when i tried to use objectbroker library i
    am unable to find the runtime objectbroker library (OBB32.dll). is this
    dll available with this version. if not is there any alternative.
    thanks,
    sridhar,
    Goldstone Softech USA
    Get Your Private, Free Email at http://www.hotmail.com
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    From: srinivasa gopi <[email protected]>
    Date: Sun, 11 Oct 1998 23:12:22 -0700 (PDT)
    Subject: Java Integration
    Hello,
    I'm trying to integrate Forti with Java in Java mode using IIOP.I
    followed the steps as explained in the Forti Web enterprise manual.I
    compiled the Java files that are generated by Forti along with the
    client Java file.The Java applet is getting downloaded on the client
    browser(IE 4.0), but the problem is browser is giving an exception
    ** Java.lang.RuntimeException can't connect to service object with
    the ior file name **.
    My question is on every client is it necessary for ORB(Visigenic for
    Java 3.2) and also the Forti Java interoperability package that is
    provided by the Forti for compatability with Java or it is not
    required on the clients ?
    Is there any other alternative to achieve the goal as this will give
    wide access to the Forti service objects through Web Browser clients.
    Please mail me the solution to this problem as early as possible it is
    very urgent.
    Thanks in advance,
    Srinivasa Gopi,
    Goldstone Softech USA
    DO YOU YAHOO!?
    Get your free @yahoo.com address at http://mail.yahoo.com
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    From: srinivasa gopi <[email protected]>
    Date: Sun, 11 Oct 1998 23:26:26 -0700 (PDT)
    Subject: Java Integration
    Hello,
    I'm trying to integrate Forti with Java in Java mode using IIOP.I
    followed the steps as explained in the Forti Web enterprise manual.I
    compiled the Java files that are generated by Forti along with the
    client Java file.The Java applet is getting downloaded on the client
    browser(IE 4.0), but the problem is browser is giving an exception
    ** Java.lang.RuntimeException can't connect to service object with
    the ior file name **.
    My question is on every client is it necessary for ORB(Visigenic for
    Java 3.2) and also the Forti Java interoperability package that is
    provided by the Forti for compatability with Java or it is not
    required on the clients ?
    Is there any other alternative to achieve the goal as this will give
    wide access to the Forti service objects through Web Browser clients.
    Please mail me the solution to this problem as early as possible it is
    very urgent.
    Thanks in advance,
    Srinivasa Gopi,
    Goldstone Softech USA
    DO YOU YAHOO!?
    Get your free @yahoo.com address at http://mail.yahoo.com
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    From: Tim Hagemann <[email protected]>
    Date: Mon, 12 Oct 1998 09:21:06 +0200
    Subject: Re: Legacy Integration with PI/Open
    Greg,
    This is a bit of a long shot, but has anyone experience with integrating
    Forte with PI/Open. PI/Open is a variant of PICK. We have arequirement
    to read and update a PI/Open database from within our Forte application,
    and we would be most interested to hear from anyone who has experiencein
    doing this.
    We are aware of a set of APIs provided with PI/Open that are written in
    "C". We could wrapper these from within Forte, however the issue isthat
    the APIs provided are non-shared, and Forte requires shared libraries.Would be interersting, which operating system you're using.
    You could write a dll (on windows) or shared library (on unix) wrappering
    the
    original,statically linked "C"-Libs. This lib could be used by Forte.
    Tim Hagemann
    Tim Hagemann
    Ascom GmbH Email: [email protected]
    Charlottenburger Allee 61 Phone: +49 241 96806 273
    D-52068 Aachen Fax: +49 241 96806 225
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    From: "Rottier, Pascal" <[email protected]>
    Date: Mon, 12 Oct 1998 09:38:25 +0200
    Subject: RE: Forms That Will Not Close
    Exiting the event loop will not close the window! Invoking
    'Close' method on the window will. Check if this method
    is executed. It appears, the AfterFinalize event exits the
    event loop and nothing more. Then, your applications
    waits for some event from your main window, like 'Mouse-
    Enter', before invoking Window.Close().
    Pascal
    Hi,
    We seem to be having some type of deadlock problem when trying to
    close
    forms and am wondering if anyone else has experienced this problem.
    The
    phenomenon does not always occur and is not specific to any one client
    machine.
    I will explain the phenomenon:
    1. We have an object that contains our main application startup
    method.
    This method then instantiates our main application window (Control)
    and
    invokes the Display() method using start task.
    2. All other forms created by the application are created using a form
    manager service object which exists on the client partition. The form
    manager has a CreateForm() method which instantiates a form class of
    the
    specified type and invoked the form's Display() method using start
    task.
    3. Each form has a Close push button which when clicked invokes
    Window.RequestFinalize().
    Now, the problem we have is this:
    The user starts the application and the main application window is
    displayed. The user then selects an option from the main window and a
    child form is created using the form manager service object and is
    displayed. The user can continue to create more child forms by
    selecting
    options from the main window and all child forms are instantiated and
    displayed correctly.
    However, when the user attempts to close one of the forms the form
    does
    not close. The finalize event is triggered and the event loop is
    exited,
    but the form continues to be displayed and does not close. If the user
    then moves the mouse pointer over the main application window, the
    child
    form immediately closes. Moving the mouse cursor over other child
    windows (or even the desktop) does NOT do this - only when the mouse
    cursor is moved over the main window does the child form close.
    Does anyone have any ideas on this?
    Regards,
    Jace.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>- -
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    From: Jason de Cean <[email protected]>
    Date: Mon, 12 Oct 1998 17:47:20 +1000
    Subject: RE: Forms That Will Not Close
    Hi Pascal,
    The Display() method is as follows:
    self.Open();
    event loop
    when Window.AfterFinalize do
    exit;
    when task.Shutdown do
    exit;
    end event;
    self.Close();
    <end>
    Are you saying we should do a Window.Close() in there somewhere as well
    Regards,
    Jace.
    On Monday, 12 October 1998 17:36, Rottier, Pascal
    [SMTP:[email protected]] wrote:
    Exiting the event loop will not close the window!
    Invoking
    'Close' method on the window will. Check if this method
    is executed. It appears, the AfterFinalize event exits
    the
    event loop and nothing more. Then, your applications
    waits for some event from your main window, like 'Mouse-
    Enter', before invoking Window.Close().
    Pascal
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    From: "Rottier, Pascal" <[email protected]>
    Date: Mon, 12 Oct 1998 11:04:24 +0200
    Subject: RE: Forms That Will Not Close
    Jason,
    No, self.Close() should close the window. This is the
    method I referred to. You could place a traceline
    behind self.Close() to see if it is executed. It is not
    inconcievable some exception may exit the Display()
    method before self.Close() is executed.
    After that, maybe, some events from your main
    window trigger something that causes a call like 'My-
    Window.Close()', where 'MyWindow' is a subclass of
    'UserWindow', so 'MyWindow' gets closed after all.
    Maybe you've overridden 'Close()', so now it doesn't
    work properly anymore.
    Are you sure you exit the event loop after you press
    the close button?? The display method is not regis-
    terred for any <PushButton>.Click event, though maybe
    you just didn't include the full Display method in your
    mail.
    Remember that an event loop will only respond to an
    event if it is not currently handling an event. So, the
    method behind <PushButton>.Click may call a self.
    Window.RequestFinalize(), which will cause an After-
    Finalize event to be posted, which will be placed in
    the event queue. If this method however keeps waiting
    for something, the event loop will not respond to the
    AfterFinalize event, until this method is done waiting.
    Pascal.
    Hi Pascal,
    The Display() method is as follows:
    self.Open();
    event loop
    when Window.AfterFinalize do
    exit;
    when task.Shutdown do
    exit;
    end event;
    self.Close();
    <end>
    Are you saying we should do a Window.Close() in there somewhere as
    well
    Regards,
    Jace.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    From: Thomas Kunst <[email protected]>
    Date: Mon, 12 Oct 1998 14:28:55 +0200
    Subject: Re: AfterValueChange event trigged when it shouldn't be...
    Which version of Fort=E9 are you using? We had some strage problems with
    GUI events in Fort=E9 3.0.F.2, which disappeared now that we use 3.0.J.1!=
    Fouche, Jaco wrote:
    =
    Hi there,
    =
    I'm hoping that someone out there has experienced the following (and
    knows why it is happening. ) :-)
    =
    I have a couple of windows on which the AfterValueChange event is
    triggered on a field upon hitting the delete key.
    We all know that this should only happen upon leaving the field, ie. th=e
    field loosing focus. The problem is that I'm trying to recreate this in=
    a simple test class, but now it won't happen. I still have the original=
    windows on which it is happening, but I would like to construct
    something small and simple to send to Forte.
    =
    Any ideas as to why this could be happening?
    =- -- =
    Dr. Thomas Kunst mailto:[email protected]
    sd&m GmbH & Co. KG http://www.sdm.de
    software design & management
    Thomas-Dehler-Str. 27, 81737 Muenchen, Germany
    Tel +49 89 63812-221 Fax -444
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    From: Greg Gorham <[email protected]>
    Date: Mon, 12 Oct 1998 09:51:07 -0400
    Subject: math library
    I need direction to the source of Forte libs that handle more scientific
    math. Also included is the need for more scientific print formating. I
    understand, second hand, that such material is available from third
    party vendors/sources.
    Thanks
    Greg Gorham
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    End of forte-users-digest V1 #1111
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Greg,
    This is a bit of a long shot, but has anyone experience with integrating
    Forte with PI/Open. PI/Open is a variant of PICK. We have a requirement
    to read and update a PI/Open database from within our Forte application,
    and we would be most interested to hear from anyone who has experience in
    doing this.
    We are aware of a set of APIs provided with PI/Open that are written in
    "C". We could wrapper these from within Forte, however the issue is that
    the APIs provided are non-shared, and Forte requires shared libraries.Would be interersting, which operating system you're using.
    You could write a dll (on windows) or shared library (on unix) wrappering the
    original,statically linked "C"-Libs. This lib could be used by Forte.
    Tim Hagemann
    Tim Hagemann
    Ascom GmbH Email: [email protected]
    Charlottenburger Allee 61 Phone: +49 241 96806 273
    D-52068 Aachen Fax: +49 241 96806 225
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • [Fwd: Re: Integration with CM Systems ...]

    -------- Original Message --------
    Subject: Re: Integration with CM Systems ...
    Date: Thu, 10 Aug 2000 15:47:21 -0600
    From: Cindy Eldenburg <[email protected]>
    Organization: BEA Systems, Inc.
    Newsgroups: weblogic.developer.interest.personalization
    References: <398f3c55$[email protected]>
    Prashanth,
    The are a lot of differences in what the Documentum does as compared to
    Interwoven Teamsite. Comparing these items is like comparing apples and
    oranges.
    Normally in Teamsite, during the document capture process, a Teamsite
    user
    categorizes documents by specifying the documents' metadata attributes
    using
    Teamsite templates. Once the documents are captured, the Interwoven
    OpenDeploy
    workflow mechanism is used to publish the content to the WLCS database.
    Unlike Interwoven Teamsite, Documentum products manage the metadata and
    documents in their own repositories. Thus, with this integration, WLCS
    queries
    the Documentum system at runtime via a specialized JDBC driver supplied
    by
    Documentum. Once the Documentum user captures a document and tags it
    with
    metadata attributes, the document may be immediately available to WLCS
    (depending on administrative options in Documentum, such as whether
    staging is
    involved).
    Please contact your sales person for a more detailed overview of what
    these two
    products do and how they interface to WLPS.
    Cindy Eldenburg
    Prashanth A wrote:
    Can anyone explain to me clearly what does Weblogic mean when it says it
    integrated with Interwoven and Documentum. Is there any difference in the
    way it interacts with Interwoven as compared to Documentum. As in a run-time
    interaction with Documentum whereas a static integration with Interwoven

    Prashanth,
    The are a lot of differences in what the Documentum does as compared to
    Interwoven Teamsite. Comparing these items is like comparing apples and
    oranges.
    Normally in Teamsite, during the document capture process, a Teamsite
    user
    categorizes documents by specifying the documents' metadata attributes
    using
    Teamsite templates. Once the documents are captured, the Interwoven
    OpenDeploy
    workflow mechanism is used to publish the content to the WLCS database.
    Unlike Interwoven Teamsite, Documentum products manage the metadata and
    documents in their own repositories. Thus, with this integration, WLCS
    queries
    the Documentum system at runtime via a specialized JDBC driver supplied
    by
    Documentum. Once the Documentum user captures a document and tags it
    with
    metadata attributes, the document may be immediately available to WLCS
    (depending on administrative options in Documentum, such as whether
    staging is
    involved).
    Please contact your sales person for a more detailed overview of what
    these two
    products do and how they interface to WLPS.
    Cindy Eldenburg
    Prashanth A wrote:
    Can anyone explain to me clearly what does Weblogic mean when it says it
    integrated with Interwoven and Documentum. Is there any difference in the
    way it interacts with Interwoven as compared to Documentum. As in a run-time
    interaction with Documentum whereas a static integration with Interwoven

Maybe you are looking for

  • HT4527 Itunes music transfer on one computer

    hello on my home computer I have two separate log in's, one for myself and one for another person,  is there any way to put the iTunes music from one log in to the other through the computer?

  • Import of variables from XML fails, diff shows no difference from Illustrator export

    Hi, all, I've got an AppleScript that I wrote to massage CSV output from Excel into a variable library that I can import into Illustrator. Because I have to maintain black and white and left and right specific image files and output files, I've tried

  • IPad home button issue. Nothing is working.

    So I have had my iPad2 since December, and have had no issues until recently. A few days ago, the home button became slow to respond, and within minutes stopped worked altogether. I looked online for an answer, and one solution was to restore the dev

  • Which Table stores Credit card Amount Information

    Hi, I need to read Credit card amount (that's RV45A-ENDBK) value from the sales order to the custom development. In which table i can get this Value by linking order number ? Please help me Thanks

  • Can't create a pop3 mail account

    i tried search for this topic but there seemed to be no answers.  Hard to believe no one has had this issue.  Just got rid of iPhone and bought a Curve 8310 to last me 3 months when I can tell AT&D to shove their service where the sun don't shine!  A