Client making a choose...(Linking Problem)

I have made a scanner in which it will ask a client to make a selection.
I'm having troubles on choose 2 thou. I can not figure out how to make it work. Choose 2 is called public void findPerson()
Any help would be great..
class PersonClass {
    private String empid;
    private String lname;
    private String fname;
    private String street;
    private String city;
    private String state;
    private String zip;
    private double payrate;
    private int yearsworked;
    public PersonClass(String id) {
          empid = id;
    public PersonClass(String id, String ln, String fn, String st, String ct, String se, String zp, double pr, int yw) {
         empid = id;
         lname = ln;
        fname = fn;
        street = st;
        city = ct;
        state = se;
        zip = zp;
        payrate = pr;
        yearsworked = yw;
    // accessors
    public String getID() {return empid;}
    public String getFname() {return fname;}
    public String getLname() {return lname;}
    public String getStree() {return street;}
    public String getCity() {return city;}
    public String getState() {return state;}
    public String getZip() {return zip;}
    public double getPayrate() {return payrate;}
    public int getYearsworked() {return yearsworked;}
public class EmployeeData {
    static ArrayList<PersonClass> arlist;
    static Scanner kbd;
    public static PersonClass makePerson() {
    public void  findPerson() {
    String id_flag = "";
     Scanner input_flag = new Scanner(System.in);
     System.out.println("Enter your info please ie: AB1234: ");
     id_flag = input_flag.next();
     boolean notfound = true;
     for (PersonClass e : arlist) {
          String emp = e.getID();
          if (emp.equals(id_flag)) {
               System.out.println("Hello" + ("e.lname"));
               notfound = false;
     if (notfound == true) {
          System.out.println("Error - Employee not found");
          // back to menu?
    }//close findperson
    public static void main(String[] args) {
        // make array list object
        arlist = new ArrayList<PersonClass>();
        // make a scanner
        kbd = new Scanner(System.in);
        int choice;
          System.out.println("Make a Section: ");
          System.out.println("1. Enter Employees ");
          System.out.println("2. Find Employees ");
          System.out.println("3. Exit this Program ");
          System.out.print("\nPlease press Enter afer each response");
          System.out.println("Enter your chose please: ");
          choice = kbd.nextInt();
          kbd.nextLine();
          if (choice == 1) { // if 1 is select go to makePerson
        }//close while loop
        if (choice == 2) { // if 2 is select go to find
             EmployeeData.findPerson();
          }//close while loop
        }// close the choice==2
          if (choice == 3) {
          }// close the choice == 3
        // print out all elements of array list
        for (PersonClass idx : arlist) {
             System.out.printf("Employee Id is %n", idx.getID());
                System.out.printf("Name is %s - %s%n", idx.getFname(),idx.getLname());
                System.out.printf("Street is %s%n", idx.getStree());
                System.out.printf("City is %s%n", idx.getCity());
                System.out.printf("State is %s%n", idx.getState());
                System.out.printf("Zip Code is %s%n", idx.getZip());
                System.out.printf("Payrate is %8.2f%n", idx.getPayrate());
                System.out.printf("Years worked are %d\n", idx.getYearsworked());
                System.out.println("--------------------");
}Thanks
sandr

OK I made the correction that you gave me but it will invoke the findPerson method. It should work because I have done this in the past.
I did a debug and got this error.
<terminated>EmployeeData (1) [Java Application]     
     <disconnected>arrayproject.EmployeeData at localhost:1253     
     <terminated, exit value: 0>C:\Program Files\EasyEclipse Desktop Java 1.2.1\jre\bin\javaw.exe (May 9, 2007 2:04:22 PM)     I have attached my whole project and if someone can help me that would be great..
class PersonClass {
    private String empid;
    private String lname;
    private String fname;
    private String street;
    private String city;
    private String state;
    private String zip;
    private double payrate;
    private int yearsworked;
    public PersonClass(String id) {
          empid = id;
    public PersonClass(String id, String ln, String fn, String st, String ct, String se, String zp, double pr, int yw) {
         empid = id;
         lname = ln;
        fname = fn;
        street = st;
        city = ct;
        state = se;
        zip = zp;
        payrate = pr;
        yearsworked = yw;
    // accessors
    public String getID() {return empid;}
    public String getFname() {return fname;}
    public String getLname() {return lname;}
    public String getStree() {return street;}
    public String getCity() {return city;}
    public String getState() {return state;}
    public String getZip() {return zip;}
    public double getPayrate() {return payrate;}
    public int getYearsworked() {return yearsworked;}
public class EmployeeData {
    static ArrayList<PersonClass> arlist;
    static Scanner kbd;
    public static PersonClass makePerson() {
        PersonClass temp = null;
        // prompt for data
        String id;
        String ln;
        String fn;
        String st;
        String se;
        String ct;
        String zp;
        double pr;
        int years;
        System.out.print("Enter ID Number ==>");
        id = kbd.next();
        System.out.print("Enter Last Name ==>");
        ln = kbd.next();
        System.out.print("Enter First Name ==>");
        fn = kbd.next();
        System.out.print("Enter the address==>");
        st = kbd.next();
        System.out.print("Enter City ==>");
        ct = kbd.next();
        System.out.print("Enter State ==>");
        se = kbd.next();
        System.out.print("Enter Zip ==>");
        zp = kbd.next();
        System.out.print("Enter payrate as double ==>");
        pr = kbd.nextDouble();
        System.out.print("Enter years worked ==>");
        years = kbd.nextInt();
        // make an object
        temp = new PersonClass(id, ln,fn,st,ct,se, zp, pr,years);
        return temp;
    public void displayMatch() {
    String id_flag = "";
     Scanner kbd = new Scanner(System.in);
     System.out.println("Enter your info please ie: AB1234: ");
     id_flag = kbd.next();
     boolean notfound = true;
     for (PersonClass e : arlist) {
          String emp = e.getID();
          if (emp.equals(id_flag)) {
               System.out.println("Hello" + ("e.lname"));
               notfound = false;
     if (notfound == true) {
          System.out.println("Error - Employee not found");
          // back to menu?
    }//close findperson
    public static void main(String[] args) {
         EmployeeData emp = new EmployeeData();
        // make array list object
        arlist = new ArrayList<PersonClass>();
        // make a scanner
        kbd = new Scanner(System.in);
        int choice;
          System.out.println("Make a Section: ");
          System.out.println("1. Enter Employees ");
          System.out.println("2. Find Employees ");
          System.out.println("3. Exit this Program ");
          System.out.print("\nPlease press Enter afer each response");
          System.out.println("Enter your chose please: ");
          choice = kbd.nextInt();
          kbd.nextLine();
          if (choice == 1) { // if 1 is select go to makePerson
        // create people until select stop
        boolean endData = false;
        while (!endData) {
            PersonClass temp = makePerson();
            arlist.add(temp);
            System.out.println("Add More employees (Y/N)-->");
            String ans = kbd.next();
            if (ans.equalsIgnoreCase("N")) {
                endData = true;
        }//close while loop
        if (choice == 2) { // if 2 is select go to find
             emp.displayMatch();
        }// close the choice==2
          if (choice == 3) {
               System.out.printf("Good bye");
          }// close the choice == 3
        // print out all elements of array list
        for (PersonClass idx : arlist) {
             System.out.printf("Employee Id is %n", idx.getID());
                System.out.printf("Name is %s - %s%n", idx.getFname(),idx.getLname());
                System.out.printf("Street is %s%n", idx.getStree());
                System.out.printf("City is %s%n", idx.getCity());
                System.out.printf("State is %s%n", idx.getState());
                System.out.printf("Zip Code is %s%n", idx.getZip());
                System.out.printf("Payrate is %8.2f%n", idx.getPayrate());
                System.out.printf("Years worked are %d\n", idx.getYearsworked());
                System.out.println("--------------------");
}Thanks a bunch
sandyR

Similar Messages

  • Problem with making a database link.

    Hello All
    I got a problem with making a database link.
    When I execute this query
    CREATE PUBLIC DATABASE LINK DBNAME
    CONNECT TO database IDENTIFIED BY name
    USING 'DBNAME.europe.company.com';
    I am using other names because its private information
    But when I look at the table dba_db_links I see this
    OWNER | DB_LINK | USERNAME |HOST
    PUBLIC| DBNAME.europe.company.com| name| DBNAME.europe.company.com
    So the DB_Link name is changed. And this causes a problem with my asp website. I get the fault message
    ORA-02085: database link DBNAME.europe.company.com connects to DBNAME
    Cause: a database link connected to a database with a different name. The connection is rejected.
    The global_names = true and I prefer to keep it that way.
    So does anyone knows what is wrong about my Query or how I can change the DB_Link name.
    Thanks for the support,
    Remco

    Thanks for the help Mohit
    But thats whats I was doing.
    The query in the first post is the same as what you are posting.
    But by an (for me) unknown reason the database converts DBNAME to DBNAME.europe.company.com

  • Help to find out clients making heavy queries?

    Hello friends,
    I have given a task to identify clients making heavy queries on directory server, but I don't understand where to start. Could you help me that how can I identify or list out such clients that connect to my directory server (SunOne DS 5.2)? Is it possible to list them out using access logs and etime (elapsed time) values? Please suggest some way. Many thanks!
    Edited by: KPJangid on Nov 23, 2012 3:02 AM

    If you look through the access log you will see entries for a connection, followed shortly (usually) by a BIND.
    The CONNECT line contains the IP address of the incoming connection, and the BIND the DN used to bind.
    There are several potential problems you will have to face:
    * If the connections are long-lived (days/weeks) the logs will have rolled, and unless you keep your logs for a long time, finding the original connection and bind might not be possible. Even if it is possible, you may have to look through several GB of data to find it.
    * If you have a load balancer/proxy, you may see the address of the load balancer/proxy rather than that of the client system.
    * There is often a tendency to re-use BIND credentials, so multiple applications may use the same bind DN making it impossible to identify the application by its bind DN.
    * Application servers often use a common connection pool for multiple applications, so even knowing the IP address of the system may not pinpoint the application.
    If you can do it - no proxy/load balancer hiding the source IP, it may be easier to snoop the network and look at the addresses on the packets.
    Also look at what sorts of requests are being made, that can help to identify the application.
    There is no easy way to do this unless some thought went into the original configuration: choosing load balancer which pass the source IP, using unique bind credentials for each application, logfile preservation etc.
    All that said, with perseverence it is usually possible to track down the culprit.
    Whether it is possible to fix the culprit is usually a political question and often the end result is having to work on the LDAP systems to have them support the heavy clients (using load balance rules to send these requests/applications to dedicated servers etc).

  • Several clients in CRM PCUI.  Problems reusing the same iView for ValueHelp

    Hi, all:
      We are implementing a new scenario with PCUI (based on Case Management) and using the client number 400.
      The problem is that this is the second scenario because there is an already customized scenario using client 200 of the CRM server and the same EP.
      These are the symptoms:
    a) Launching the application from the SAP_GUI (like a CRM BSP Application) the main screen and the value helps (pop-up windows) are working correctly.
    b) Launching the application from a newly create BSP iView, the main screen appears correctly; but the pop-up windows are not working.  These are the issues i have seen:
    1.- The system object with the system alias SAP_CRM points to client 200.
    2.- The iView that is called when the value help is clicked has the value SAP_CRM as the system alias.  And it is accessing client 200 even thought the URL parameter sap-client=400 is passed to it.
    I tried a workaround copying standard iView located in:
    pcd:portal_content/com.sap.pct/specialist/com.sap.pct.crm/com.sap.pct.crm.roles/com.sap.pct.crm.core.defaultservices/com.sap.pct.crm.core.valuehelp
    to another location in Portal Content and changing the parameter system alias to SAP_CRM_400 (which is a correct system object pointing to client 400).  But i don't know how to configure the search to use this iview instead of the standard one.
      Can anyone help me with this workaround or with other solution to this problem?
    Thank you,
    Fran
    Edited by: Francisco Javier Rodríguez Nieto on Apr 15, 2009 9:13 AM

    Saurabh,
    If you have added your field through the EEW you can follow my weblog to add them to the PC-UI application: https://www.sdn.sap.com/sdn/weblogs.sdn?blog=/pub/wlg/2040. [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] If you are missing something and/or something is unclear let me know and I will update this BLOG and help you solve your issue. Tiest.

  • Using sharepoint designer 2013 - connected to sharepoint online - but getting " data source file cannot be saved" after making a new linked datasource

    using sharepoint designer 2013 - connected to sharepoint online - but getting " data source file cannot be saved" after making a new linked datasource

    Hi,
    Based on your description, I have done a test and I can’t reproduce your issue.
    I have used SharePoint Designer 2013 to open a SharePoint Online site and there are no issues.
    I’d like to clarify whether you encounter any issues when accessing SharePoint Online sites. If there are no issues during the accessing procedure, SharePoint Online service should be working fine at your side. The issue may be caused by specific SharePoint
    Designer client or network. I suggest you refer to the following steps to troubleshoot the issue.
    1. Use SharePoint Designer to open another site and check whether it is successful.
    2. When you are prompted to enter Office 365 account and password, try other users’ accounts and select the remembering the credential.
    3. Perform the connection procedure under another environment and verify whether the issue is resolved.
    If the issue persists, can you provide related screenshots for further troubleshooting?
    Best Regards,
    Lisa Chen
    Lisa Chen
    TechNet Community Support

  • "Link Problem" in Incident Form does not seem to work right? How do I do it correctly?

    1. The Link Problem tool in the task pane on our Incidents, do not seem to actually link the Incident to the Problem.
    2. I can link the two by going to the Problem and adding it on the related items tab, but this is very time consuming in a call center environment, especially during an outage where we are relying a lot more on Problem and root cause analysis.
    3. I have tried creating the incident and applying, then doing the Link Problem tool and selecting the problem, then applying again and selecting OK to close the incident. Again it doesn't work for me.
    What am I doing wrong, number one?
    Can we do this without manually opening the problem for every incident and attaching from there?
    3. Can I build an incident template that will automate the Attachment to the problem at creation? (Tried this today to and it wouldn't work, but then again, the Link Problem might again be the culprit) This would be great for real time  saving during
    an outage. Once outage is found, I could create the template with all the necessary items filled out, and would like to have it automatically attach to the specific problem I choose at template creation, and that way analysts can simply apply template, and
    click OK when they get a call related to the outage.

    Thanks  for the response Thomas!
    The functionality seems to work just fine. I use the LINK PROBLEM and it pops up the problem search box, I search for and select a Problem, I then select it and click ok, and I get no error saying the relationship was not created.
    The problem is, when I open the problem after that, there is never any relationship showing in related items there, as it says there should be.
    Also, to point out, I am talking about newly created Incidents. I tried even using APPLY prior to doing the LINK PROBLEM but it still did not work. I suspect it may be a workflow problem, where the workflow to create the incident has not completed, there
    for the relationship is not completed.... and I get no error.
    In my work environment, we have analysts during outages taking a call every 30 seconds, and I need a more efficient way for this system to work. As of now, they spend 1-2 minutes doing the ticket, and that is too long.
    I have decided to try a newb way, where I created an Incident (GENERIC OUTAGE) that folks can use, and every 15-30 minutes during an outage, I can open the problem and search for open incidents with that title, and attach all that I find from the problem
    side. This is assuming that once attached they will not show up in the search to attach the next time lol. Also this assumes that if attached from the problem, they will auto resolve when the problem is resolved.
    I am rusty on my programming, and am currently trying to get refreshed. I am sure that would come in handy for this :)
    Oh and lastly, one additional tidbit that will make this clearer, with regard to work flow, we re also running our Service Manager in our help desk, virtualized, as they have not upgraded to Win 7 yet :(. So that compiles my time to add ticket issue :(.

  • My Client is having a serious problem with the Contact Form Widget

    My Client is having a serious problem with the Contact Form Widget that I can not figure out how to correct.
    I created a website for a client and inserted a Contact Form widget on their 'Contact Us' page. Whenever anyone uses the form, the e-mail my client receive shows my e-mail address as the sender. So, when they 'reply' to the e-mail, the reply is sent to me and not the person who sent the original message. This creates a major problem in that I get barraged with e-mail replies while my client's potential customers go without a response.
    When I look at  'Site Manager > System E-Mails > Workflow Information > E-mail From Address' on the site's Admin Console, it shows my e-mail information. Is this is what needs to be changed?  If it is, what needs to be placed in that field so that the e-mail my client receives shows the senders e-mail information in the 'From' field.  My client wants to be able to click reply and have the message sent to the right party. They would be very upset if they have to cut and past the senders e-mail address from the body text on every contact they receive.
    Their feeling is that if I can't find a way to make the contact form work the way it should, then it's useless to them.
    Can anyone help me figure this out? I really don't want to disappoint my first client.

    Are you on a plan that has the CRM feature that stores your customers' data? If so, the idea of the contact form is that you'll receive a notification that there's been an inquiry filled out on your contact form and there should be a link in that email notification that leads to the "Case" that was created when that customer filled out a contact form.  You can click that link and visit the case for that customer in your BC site and reply to them from there so that all of the correspondence is logged in the CRM for safe-keeping and for your records.
    If your client finds this is too much work to login to BC to reply every time, then you should check to see if you have the "Customer Service Ticketing" feature on your hosting plan.  This is a feature where you create a dedicated email account (like [email protected]) and the BC system will automatically login to that email account and pull any emails in that inbox and convert them to a customer case for the sender of the email and then it will send out a notification via email to any of the BC Admin users you delegate as "Customer Service Agents".  Since the CST integrates with the BC CRM it lets you reply directly within the email-- but when you reply it will be going to that same email address dedicated to the CST but once the CST service checks your email again and sees that you replied to this inquiry it will log your reply against the customer's case and sends your reply via email back to them so that all the correspondance gets logged on BC's CRM but you can still reply via email.
    There's no way to use the default web forms to update the "From" or "Reply-To" address.. it must come from an approved email address to avoid spam issues.  On most web services you cannot change the "from" address anyway but usually you can at least specify the "Reply-To" address so that when someone hits "reply" in their email client it will reply to whoever you setup as the "Reply-To" address.
    Here's some more information about CST: http://kb.worldsecuresystems.com/kb/customer-service-ticketing.html?bc-partner
    I don't think the CST feature is in the webMarketing BC plan-- I think it's only in the webCommerce plan so if you have less than an webCommerce plan you have to tell your client to reply through BC by clicking the link in the notification they get.  You can justify it by saying its one or two more steps but it keeps the entire convo on record in their CRM for easy referral later.

  • Re: Fwd: Link Problems With Borland C++ 4.52

    I have seen this problem before in another context, and I'll offer the
    cause and solution in the hope that they will apply to the Crystal problem.
    Many Windows based applications rely on PASCAL calling conventions, which
    change the way parameters are handled in function/method calls. They
    indicate this by placing one of the following immediately before the
    function name in the prototype declarations:
    - pascal_far (or something like that)
    - WINAPI
    - some other typedef of either of the above
    For example:
    int WINAPI AddTotal(int valueA, int valueB);
    Unfortunately, v2.0 of Forte does not provide any mechanisms for changing
    the calling conventions of the prototypes in the generated C++ wrapper
    library, so when you compile that code, the linker fails. I think that the
    compiler may generate different symbols depending on calling conventions,
    so that's why it fails.
    To fix this, don't autocompile your code, but generate the distribution, go
    into the generated C++ files and look for the function prototypes (I think
    you can search for FORTE_NO_PROTOTYPES), add WINAPI to the appropriate
    places in the prototype definitions (see above) and use fcompile to build
    the library. Instructions for fcompile are in the Interfacing With
    External Systems manual.
    Hope this helps,
    James
    At 11:05 AM 5/29/97 PDT, you wrote:
    >
    We are trying to wrapper Crystal Reports from Forte. I know that there
    are a number of other people in this same boat, as I've seen messages
    posted here at various points during the past few weeks. We are having
    a particular problem with getting the compile to go through, which we
    have sent in to Forte Tech Support. I'm forwarding the message I sent
    Tech Support to this group in the hopes that someone here may have
    already seen and resolved a similar problem.
    Thanks in advance for any help you can offer!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    >
    Date: Wed, 28 May 97 13:47:20 PDT
    From: dg7077a
    To: Forte Technical Support
    Cc: Gardner, Steve
    Subject: Link Problems With Borland C++ 4.52
    Name of requestor: [Dale V. Georg / Alaiah Chandrashekar]
    Company: [Indus Consultancy Services]
    Phone for callback: [(610) 709-3956]
    Customer Site: [Mack Trucks, Inc.]
    Product: [Forte]
    Version of Forte: [2.0.H.1]
    Server OS: [SunOS 5.5.1]
    Client OS: [Windows 3.1]
    DBMS: [Oracle 7.2.3]
    Reproducible?: [Yes]
    Brief description: [Link Problems With Borland C++ 4.52]
    Complete description of problem or question:
    We are attempting to write a C-wrapper interface from Forte to Crystal
    Reports' Report Engine. We are using Borland C++ version 4.52.
    Unfortunately, we have been unable to get a clean compile after a day
    and half of effort. We get as far as the link stage of the
    compilation, and
    the compiler aborts with an "Unknown symbol" error message for each
    of the functions we are trying to wrapper. We have tried a number of
    ideas to fix this problem, and are continuing to try to solve it on
    our own,
    but any help would be greatly appreciated. Please have someone call
    Alaiah Chandrashekar at the number above as soon as possible.
    Thanks!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    James Urquhart [email protected]
    Product Manager phone: (510) 986-3513
    Forte Software, Inc. fax: (510) 869-2092

    James,
    Thanks for your quick response. Yesterday we had been running down
    the path of examining the calling conventions and trying to change them
    to PASCAL, but without much success. After receiving your note, we
    went back over it again, and this time we were able to finally to piece it
    together. In addition to editing the Forte-generated .cc file to declare
    the functions as PASCAL, we also had to turn off the compiler's case
    sensitivity. (The Crystal .lib file had the function names in mixed case,
    but the Borland compiler was generating all uppercase for the names.)
    Now I had actually tried this yesterday and it didn't work (in fact it
    generated a whole bunch of new errors) - because until we took a
    second look at it today, I didn't realize that Borland's linker actually has
    TWO flags that control case sensitivity. If you only turn one or the
    other off, things can get pretty ugly looking. As soon as we turned
    both of them off, the compile and link went beautifully. Again, thanks
    for your help; hopefully we are over the worst of it now!
    Dale
    I have seen this problem before in another context, and I'll offer the
    cause and solution in the hope that they will apply to the Crystalproblem.
    >
    Many Windows based applications rely on PASCAL callingconventions, which
    change the way parameters are handled in function/method calls.They
    indicate this by placing one of the following immediately before the
    function name in the prototype declarations:
    - pascal_far (or something like that)
    - WINAPI
    - some other typedef of either of the above
    For example:
    int WINAPI AddTotal(int valueA, int valueB);
    Unfortunately, v2.0 of Forte does not provide any mechanisms forchanging
    the calling conventions of the prototypes in the generated C++wrapper
    library, so when you compile that code, the linker fails. I think thatthe
    compiler may generate different symbols depending on callingconventions,
    so that's why it fails.
    To fix this, don't autocompile your code, but generate thedistribution, go
    into the generated C++ files and look for the function prototypes (I think
    you can search for FORTE_NO_PROTOTYPES), add WINAPI tothe appropriate
    places in the prototype definitions (see above) and use fcompile tobuild
    the library. Instructions for fcompile are in the Interfacing With
    External Systems manual.
    Hope this helps,
    James
    At 11:05 AM 5/29/97 PDT, you wrote:
    We are trying to wrapper Crystal Reports from Forte. I know that
    there
    are a number of other people in this same boat, as I've seenmessages
    posted here at various points during the past few weeks. We arehaving
    a particular problem with getting the compile to go through, whichwe
    have sent in to Forte Tech Support. I'm forwarding the message Isent
    Tech Support to this group in the hopes that someone here mayhave
    already seen and resolved a similar problem.
    Thanks in advance for any help you can offer!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc.
    [email protected]
    >
    >>
    Date: Wed, 28 May 97 13:47:20 PDT
    From: dg7077a
    To: Forte Technical Support
    Cc: Gardner, Steve
    Subject: Link Problems With Borland C++ 4.52
    Name of requestor: [Dale V. Georg / AlaiahChandrashekar
    Company: [Indus Consultancy Services]
    Phone for callback: [(610) 709-3956]
    Customer Site: [Mack Trucks, Inc.]
    Product: [Forte]
    Version of Forte: [2.0.H.1]
    Server OS: [SunOS 5.5.1]
    Client OS: [Windows 3.1]
    DBMS: [Oracle 7.2.3]
    Reproducible?: [Yes]
    Brief description: [Link Problems With Borland C++ 4.52]
    Complete description of problem or question:
    We are attempting to write a C-wrapper interface from Forte to
    Crystal
    >>
    Reports' Report Engine. We are using Borland C++ version 4.52.
    Unfortunately, we have been unable to get a clean compile after aday
    and half of effort. We get as far as the link stage of the
    compilation, and
    the compiler aborts with an "Unknown symbol" error message foreach
    of the functions we are trying to wrapper. We have tried a numberof
    ideas to fix this problem, and are continuing to try to solve it on
    our own,
    but any help would be greatly appreciated. Please have someonecall
    Alaiah Chandrashekar at the number above as soon as possible.
    Thanks!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, [email protected]
    James Urquhart [email protected]
    Product Manager phone: (510) 986-3513
    Forte Software, Inc. fax: (510) 869-2092-----------------------------------------------------------------------------------
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    [email protected]------------------

  • Lookout opc or link problems

    I am using Lookout 6.0.2 on a new Win XP desktop.  The Lookout OPC client object is used for communications via Rockwell Software RSLinx's (Professional Rev 2.43.01.23) OPC server to ControlLogix PLC's over ethernet.  In other words, the Lookout communicates with RSLinx by OPC, and the RSLinx communicates with PLC's by ControlNet.
    We have 3 Lookout processes, one which is the "server" process, and contains the OPC Client object. The other 2 process files are "client" processes, and reference the OPC Client object  by symbolic link.
    We have many Lookout switches in the "client" processes, that are remoted to a tag in the ControlLogix PLC using symbolic link. A typical link for a remoted switch is:
    ..\..\[Link_to_Drivers]\OPCclient1.PLC_12.Online.SWITCH_TAGNAME
    OR   IF USING ABSOLUTE REFERENCE:   \\ComputerName\ProcessName\[Link_to_Drivers]\OPCclient1.PLC_12.Online.SWITCH_TAGNAME
    In this  way, the Lookout switch object has a read/write link.
    The problem is this:  Periodically the write link will stop working.  When this happens, all the Lookout switches and even the Lookout pots will lose ability to write to PLC, but the read links are still working. We can read the data and the switch positions, but the changing setpoints with the pots and operating equipment with the switches is then impossible.  This "lock up" can be fixed by closing down all the Lookout processes (but not Lookout), and then restarting the Lookout processes.
    This problem is intermittant and not repeatable.  Does anyone have idea how to troubleshoot this problem, or have an way to isolate and fix this problem? Thanks!

    This problem is fixed by lookout 6.0.2 updates. It can be downloaded from http://joule.ni.com/nidu/cds/view/p/id/506/lang/en
    You need first to login MyNI, and then download lo602_updates.zip. Unzip it and copy all files to lookout folder.
    This update is applied to Lookout 6.0.2 server system. You don't need to copy these files to client system.
    Ryan Shi
    National Instruments

  • Button Link Problems .swf

    Hello. I am using Adobe Flash CS6. I am having trouble making 2 separate links for 2 buttons. I have been unsuccessful. I made 2 different buttons and thought i made 2 separate links. But, When both buttons are clicked, they link to the same page. I want them to go to separate pages.... Any suggestions? Here is a link to the file... Maybe someone could pin point the problem?

    I know this is probably terrible but...
    addEventListener(MouseEvent.CLICK,
    fl_ClickToGoToWebPage_4);
    function fl_ClickToGoToWebPage_4(event:MouseEvent):void
         navigateToURL(new
    URLRequest("http://www.k1llsquad.com"), "_blank");
    addEventListener(MouseEvent.CLICK,
    fl_ClickToGoToWebPage_5);
    function fl_ClickToGoToWebPage_5(event:MouseEvent):void
         navigateToURL(new
    URLRequest("http://www.k1llsquadmoh.enjin.com"), "_blank");

  • OCI linking problems

    I have encountered linking errors when I tried to include <fstream.h> with my oci program.
    There seems to be conflicts with the 'text' symbol defined both in oratypes.h and fstream.h.
    I would like to get your your advice for ways to solve this problem? I am using msvc6.0 and oracle client 8.1.6

    The linker output:
    ld: 0711-317 ERROR: Undefined symbol: .oerhms(cda_def*,short,unsigned char*,int)
    ld: 0711-317 ERROR: Undefined symbol: .odescr(cda_def*,int,int*,short*,signed char*,int*,int*,short*,short*,short*)
    ld: 0711-317 ERROR: Undefined symbol: .olog(cda_def*,unsigned char*,unsigned char*,int,unsigned char*,int,unsigned char*,int,unsigned int)
    ld: 0711-317 ERROR: Undefined symbol: .oopen(cda_def*,cda_def*,unsigned char*,int,int,unsigned char*,int)
    ld: 0711-317 ERROR: Undefined symbol: .oparse(cda_def*,unsigned char*,int,int,unsigned int)
    ld: 0711-317 ERROR: Undefined symbol: .obndra(cda_def*,unsigned char*,int,unsigned char*,int,int,int,short*,unsigned short*,unsigned short*,unsigned int,unsigned int*,unsigned char*,int,int)
    ld: 0711-317 ERROR: Undefined symbol: .oexec(cda_def*)
    ld: 0711-317 ERROR: Undefined symbol: .odefin(cda_def*,int,unsigned char*,int,int,int,short*,unsigned char*,int,int,unsigned short*,unsigned short*)
    ld: 0711-317 ERROR: Undefined symbol: .ofetch(cda_def*)
    ld: 0711-317 ERROR: Undefined symbol: .oclose(cda_def*)
    ld: 0711-317 ERROR: Undefined symbol: .ologof(cda_def*)
    ld: 0711-317 ERROR: Undefined symbol: .ocom(cda_def*)
    ld: 0711-317 ERROR: Undefined symbol: .orol(cda_def*)
    ld: 0711-345 Use th[i]Long postings are being truncated to ~1 kB at this time.

  • Fwd: Link Problems With Borland C++ 4.52

    We are trying to wrapper Crystal Reports from Forte. I know that there
    are a number of other people in this same boat, as I've seen messages
    posted here at various points during the past few weeks. We are having
    a particular problem with getting the compile to go through, which we
    have sent in to Forte Tech Support. I'm forwarding the message I sent
    Tech Support to this group in the hopes that someone here may have
    already seen and resolved a similar problem.
    Thanks in advance for any help you can offer!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    Date: Wed, 28 May 97 13:47:20 PDT
    From: dg7077a
    To: Forte Technical Support
    Cc: Gardner, Steve
    Subject: Link Problems With Borland C++ 4.52
    Name of requestor: [Dale V. Georg / Alaiah Chandrashekar]
    Company: [Indus Consultancy Services]
    Phone for callback: [(610) 709-3956]
    Customer Site: [Mack Trucks, Inc.]
    Product: [Forte]
    Version of Forte: [2.0.H.1]
    Server OS: [SunOS 5.5.1]
    Client OS: [Windows 3.1]
    DBMS: [Oracle 7.2.3]
    Reproducible?: [Yes]
    Brief description: [Link Problems With Borland C++ 4.52]
    Complete description of problem or question:
    We are attempting to write a C-wrapper interface from Forte to Crystal
    Reports' Report Engine. We are using Borland C++ version 4.52.
    Unfortunately, we have been unable to get a clean compile after a day
    and half of effort. We get as far as the link stage of the
    compilation, and
    the compiler aborts with an "Unknown symbol" error message for each
    of the functions we are trying to wrapper. We have tried a number of
    ideas to fix this problem, and are continuing to try to solve it on
    our own,
    but any help would be greatly appreciated. Please have someone call
    Alaiah Chandrashekar at the number above as soon as possible.
    Thanks!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    -------------

    We are trying to wrapper Crystal Reports from Forte. I know that there
    are a number of other people in this same boat, as I've seen messages
    posted here at various points during the past few weeks. We are having
    a particular problem with getting the compile to go through, which we
    have sent in to Forte Tech Support. I'm forwarding the message I sent
    Tech Support to this group in the hopes that someone here may have
    already seen and resolved a similar problem.
    Thanks in advance for any help you can offer!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    Date: Wed, 28 May 97 13:47:20 PDT
    From: dg7077a
    To: Forte Technical Support
    Cc: Gardner, Steve
    Subject: Link Problems With Borland C++ 4.52
    Name of requestor: [Dale V. Georg / Alaiah Chandrashekar]
    Company: [Indus Consultancy Services]
    Phone for callback: [(610) 709-3956]
    Customer Site: [Mack Trucks, Inc.]
    Product: [Forte]
    Version of Forte: [2.0.H.1]
    Server OS: [SunOS 5.5.1]
    Client OS: [Windows 3.1]
    DBMS: [Oracle 7.2.3]
    Reproducible?: [Yes]
    Brief description: [Link Problems With Borland C++ 4.52]
    Complete description of problem or question:
    We are attempting to write a C-wrapper interface from Forte to Crystal
    Reports' Report Engine. We are using Borland C++ version 4.52.
    Unfortunately, we have been unable to get a clean compile after a day
    and half of effort. We get as far as the link stage of the
    compilation, and
    the compiler aborts with an "Unknown symbol" error message for each
    of the functions we are trying to wrapper. We have tried a number of
    ideas to fix this problem, and are continuing to try to solve it on
    our own,
    but any help would be greatly appreciated. Please have someone call
    Alaiah Chandrashekar at the number above as soon as possible.
    Thanks!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    -------------

  • Visited Link Problem, DM CS5

    Visited Link Problem
    When links on my web site are visited in Safari 5.0.5, a dark purple box is put around the link, making it impossible to see. This does not happen in Firefox 3.6.16 nor Opera. Web site is www.smallings.com
    The link should be a light purple in all browsers.
    Product: Dreamweaver CS5 version 11.0
    System: Mac OS  10.6.7 Snow Leopard
    I was told I must make a change somewhere to the script to let DM know that when it goes into Safari, the links are to look such and such. I am not a developer or programmer and cannot write script. Maybe a bit of HTML, not Java.
    Can anybody help with this?

    Visited Link Problem
    When links on my web site are visited in Safari 5.0.5, a dark purple box is put around the link, making it impossible to see. This does not happen in Firefox 3.6.16 nor Opera. Web site is www.smallings.com
    The link should be a light purple in all browsers.
    Product: Dreamweaver CS5 version 11.0
    System: Mac OS  10.6.7 Snow Leopard
    I was told I must make a change somewhere to the script to let DM know that when it goes into Safari, the links are to look such and such. I am not a developer or programmer and cannot write script. Maybe a bit of HTML, not Java.
    Can anybody help with this?

  • InDesign to Adobe Acrobat to Adobe Reader Link problem

    Hi - I'm responsible for a long conversation about link problems in creating file links in InDesign that did not work in Acrobat. At the end of that long discussion, I thought I solved the problem, but didn't. Since then, I've been MUCH more observant.
    The problem appears to take place in Adobe Reader.
    My home computer on Win7 is different than my work Computer (XP), but I have the same software on both.
    At work, I discovered that when I clicked on a PDF, it worked fine, that its links opened a new PDF window, but when I clicked on links on the second document, the links failed and Microsoft returned an error message telling me that I was screwed. Because I was screwed, I couldn't see what was in the path of that error.
    It turns out that for some unknown reason (which you might clarify for me), my Adobe Readers are attempting to open my documents in Internet Explorer and that just won't work.
    What I observed at home is that I made 5 test documents in ID, and ported them to Acrobat. As it turns out, my default for opening PDFs is Adobe Reader, which I saw on the chrome of the first document I opened. When I clicked a link, and I got the error message, I noticed my browser was up.
    When I set my default for opening in Acrobat, everything worked like a charm! How about that!
    Now then, what that says to me is that Adobe Reader is to be used exclusively with a browser, so if the people who are going to read your internal PDF files with Reader without those files being on a web server of some type, you are totally screwed. The only way you can use Reader is if you click on the file and bring it up directly. Don't rely on linking to other documents.
    I mean, that is what it seems to me.
    Now, I am creating a big project for an environment without a webserver and obviously my sense of panic is palpable. That said, I believe that all my users can read my files using Acrobat (to be tested tomorrow), which I hope means I can breathe a bit easier.
    Do any of you have any thoughts on this subject? If you are really curious, I can make a packet of test files available.

    Karen_Little wrote:
    The files and the PDFs are all in the same directory.
    The tests are on local drives. All indesign files and their related PDFs were in the same directory.
    The same for Word and its related PDFs. Note that the PDFs created by Word then read by Adobe Reader worked correctly. They all opened in Adobe Reader.
    If the default program for opening PDFs is Acrobat, everything works correctly, with the added benefit of everything opening in a different window, which is what I want (yet to be tested at work). If the default program is Adobe Reader, the second generation of links do NOT work because Reader opens in Internet Explorer.
    When I open a Word-created PDF with Acrobat, view the link, and click to the Actions menu, the action is "Open a file"
    When I open an InDesign PDF with Acrobat and do the same, the action says "Open a web link"
    Big BIG BIG bug.
    Are you seeing the link commands by editing them in Acrobat? If not, try, so you can see the exact command and file or URL instruction. It still may be a bug, but you'll have better evidence when you report it here:
    Adobe - Feature Request/Bug Report Form
    And, you might want to try correcting a link command in Acrobat, to see if can work for both Acrobat and Reader.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • Oracle 9.2.0.1.0 installation link problems.....HELP !!!!!!

    Hi All
    During installation of Oracle 9.2.0.1.0 on Linux, I received the following error:
    Error:
    Error in invoking target install of makefile
    /opt/oracle/product/9.2.0.1.0/network/lib/ins_oemagent.mk
    I did some research and found that it is executing the "relink" script. So I tried to debug it it. Here is the output:
    [oracle@redash oracle]$ cd /opt/oracle/product/9.2.0.1.0/bin/
    [oracle@redash bin]$ relink oemagent
    chmod 755 /opt/oracle/product/9.2.0.1.0/bin
    if [ linux = aix ]; then \
    gcc -L/opt/oracle/product/9.2.0.1.0/lib/ -L/opt/oracle/product/9.2.0.1.0/rdbms/lib -L/opt/oracle/product/9.2.0.1.0/network/lib -L/opt/oracle/product/9.2.0.1.0/lib/ -L/opt/oracle/product/9.2.0.1.0/rdbms/lib -L/opt/oracle/product/9.2.0.1.0/network/lib -o dbsnmp /opt/oracle/product/9.2.0.1.0/network/lib/s0nmi.o -lvppdc /opt/oracle/product/9.2.0.1.0/network/lib/libvps.a \
    /opt/oracle/product/9.2.0.1.0/network/lib/libnmi.a \
    /opt/oracle/product/9.2.0.1.0/network/lib/libnmd.a /opt/oracle/product/9.2.0.1.0/network/lib/libnms.a /opt/oracle/product/9.2.0.1.0/network/lib/libnmt.a /opt/oracle/product/9.2.0.1.0/network/lib/libnml.a \
    /opt/oracle/product/9.2.0.1.0/network/lib/libnmi.a /opt/oracle/product/9.2.0.1.0/net[i]Long postings are being truncated to ~1 kB at this time.

    Before installing Oracle 9.2 on linux (i'm using redhat 7.2), there are some steps you have to issue.
    Those link problems are related to the wrong version of binutils, you need binutils-2.10.0.18-1.i386.rpm
    You need also JDK,to set some kernel parameters and so on..
    However follow the steps of this link http://www.puschitz.com/OracleOnLinux.shtml
    For me it worked.
    Hope this helps
    Tarek

Maybe you are looking for

  • Error in automatic posting

    Dear All, I am getting an error while creating billing doc, system not doing automatic posting because of error in account determination for tax code. I maintained condition record, and also assign the tax code to GL account (GL also not blocked). al

  • How to enable "Enable Disk Use" function on itunes 10.7

    I can't find function ENABLE DISK USE in my itines version. Before it was in OPTIONS, but not I don't know where to look. Help please

  • DataExport option is not working for Dynamic Calculation Members

    Hi, I am trying to export the dynamically calulated dense member "BlkCr" with DATAEXPORT command with option DataExportDynamicCalc ON but I do not get any data. Below is the script i have written: SET DATAEXPORTOPTIONS DataExportDynamicCalc ON; DataE

  • How should the "recall" key work? Is there a design defect?

    I purchased a LCD TV/DVD unit (NS-LDVD26Q-10A) last week.  I connected it directly to cable (no cable box), channel scanned, etc.  It works fine EXCEPT the "recall" key does not remember the prior channel after a few minutes.  I'm using the remote th

  • Configuration changes under Win7 arent saving

    I wont do this again. FF is not saving config changes with passwords, noscript, themes, and wont auto log into sites. Iv cut the firewall and running it as admin.