Is there a way set the object type defaults in the Profile Matchup (PEPM)?

Our users would like to have the Profile Matchup (PEPM) default the object type to P (Qualifications profile of Person) and S (Requirements profile of Position).  Currently launching PEPM defaults to U (user) and S (position).  Is there a way to change the default value from U to P using a PID? or some other method?
Thanks in advance,
- Lora

Hi Lora,
I can't think of a way without changing the program behind it.
Regards,
Priya.

Similar Messages

  • Is there a way? When I type something in the search engine feature, is there a way that when I press enter to search, it comes up in a new tab, rather on the page I am using?

    When I type something in the search engine feature, is there a way that when I press enter to search, it comes up in a new tab, rather on the page I am using?

    Yes, and I presume you mean both the search engine results, and the pages opened from the results.
    Without making any changes you could always use '''Alt+Enter''' once you typed something into the search bar, or the location bar so that it would appear in a new tab. From the search results page you could always use "'''Ctrl+click'''" or "'''Ctrl+Shift+click'''" to open link n a new tab
    * Firefox and other Browser Keyboard Shortcuts (Comparison Table)<br>http://dmcritchie.mvps.org/firefox/keyboard.htm
    * Keyboard shortcuts | How to | Firefox Help<br>https://support.mozilla.com/kb/Keyboard%20shortcuts
    The configuration entries of interest:
    * '''browser.search.openintab''' user set boolean '''true'''
    * '''browser.tabs.openinnewtab''' user set boolean '''true'''
    Documentation
    * http://dmcritchie.mvps.org/firefox/tabs_config.htm
    * http://kb.mozillazine.org/About:config_entries (I use keyword shortcut of :"aboutconfig:" )
    * http://dmcritchie.mvps.org/firefox/tabs.htm
    Google settings:
    * [x] Open search results in a new browser window.
    :By default Google opens links in its search results to the same new tab, but I believe that the configuration changes supplied also fix that because I no longer have to use the keyboard shortcuts to override.
    Tools ("Alt+T") > Options > Tabs
    * [x] Open new windows in a new tab instead

  • HT201269 If we set up a device as new, is there a way to go back and restore from the previous phone?

    If we set up an iPhone 5 as a new device, is there a way to go back and restore from the previous iPhone 4?

    See  How to Restore from a Backup  Here  >  http://support.apple.com/kb/ht1766

  • I accidentally put a passcode lock on my iPhone and I forgot what I set for it, is there a way to take it off without accessing the phone? I have restored my phone but it doesn't work, is there anybody that could help me please?

    I accidentally put a passcode lock on my iPhone and I forgot what I set for it, is there a way to take it off without accessing the phone? I have restored my phone but it doesn't work, is there anybody that could help me please?

    You can't "accidentally" put a passcode on any iPhone...its a multi-step process. Further, restoring an iPhone will remove the passcode, as the passcode is not included in an iPhone backup.
    Are you sure you're talking about the phone passcode & not something else...like the "Restrictions" passcode?

  • A word document was emailed to me.  I can open the document without a problem.  Is there a way for me to type on the document.... to fill out the form?  When I click the fields, the virtual keyboard does not appear.

    A word document was emailed to me.  I can open the document without a problem on my iPad 2.   Is there a way for me to type on the document.... to fill out the form?  When I click the fields, the virtual keyboard does not appear.

    If you want to edit a word document then you will need an app on your iPad that supports word so that you can copy them to it via 'open in' e.g. Apple's Pages app or a third-party app such as Documents To Go or QuickOffice HD

  • Is there any way to get Mini Bridge to show the color labels that are set in Bridge and/or Lightroom

    Is there any way to get Mini Bridge to show the color labels that are set in Bridge and/or Lightroom?
    I am using Cloud InDesign CS6 on Windows 7.

    You will need to go via your computer's iTunes - to get music into the Music app you either need to download it directly on the iPad from the iTunes store app, or sync it from your computer's iTunes

  • I have been unable to download the iphone software v5.1.  I keep getting the timing out message.  Is there someway to set my network connections to allow the download?  Can I get the update some other way?

    I have been unable to download the iphone software v5.1.  I keep getting the timing out message.  Is there someway to set my network connections to allow the download?  Can I get the update some other way?

    The Huntress is correct, I have missed that you have an iPhone 3G
    Usually iTunes will tell you in that case, that iOS 4.2.1 the newest version for your phone.
    If you don't have an iPhone 3G, network connections timing out can be a security software problem:
    iTunes for Windows: Troubleshooting security software issues

  • Is there a way to access object from other schema?

    1. Is there a way to access object from other schema
    Without using synonym/public synonym without prefixing schema owner?
    2. If you do not see any object in all_objects by same name owned by connected user or public, can there still be objects hidden from this view? for instance synonyms created by SYSTEM
    TIA for help

    Well, you missed something somewhere. If there is no
    ALTER SESSION SET CURRENT_SCHEMA=whoeverthen there must be either public synonym for the object as this shows:
    SQL> CREATE USER a identified by a;
    User created.
    SQL> GRANT CREATE SESSION to a;
    Grant succeeded.
    SQL> CREATE USER b identified by b;
    User created.
    SQL> GRANT CREATE SESSION, CREATE PROCEDURE, CREATE PUBLIC SYNONYM to b;
    Grant succeeded.
    SQL> connect b/b
    Connected.
    SQL> CREATE PACKAGE test AS
      2     PROCEDURE testit;
      3  END;
      4  /
    Package created.
    SQL> CREATE PACKAGE BODY test AS
      2  PROCEDURE testit IS
      3  BEGIN
      4     NULL;
      5  END;
      6  END;
      7  /
    Package body created.
    SQL> connect a/a
    Connected.
    SQL> desc b.test
    ERROR:
    ORA-04043: object b.test does not exist
    SQL> connect b/b
    Connected.
    SQL> GRANT EXECUTE ON test TO a;
    Grant succeeded.
    SQL> connect a/a
    Connected.
    SQL> desc b.test;
    PROCEDURE TESTIT
    SQL> desc test;
    ERROR:
    ORA-04043: object test does not exist
    SQL> connect b/b
    Connected.
    SQL> CREATE PUBLIC SYNONYM test FOR TEST;
    Synonym created.
    SQL> connect a/a
    Connected.
    SQL> desc test
    PROCEDURE TESTITAnother possibility without public synonyms is that crv had granted the other user privileges on some object, and the other user creates a private synonym for that. When crv granted privileges on a different object with the same name, the private synonym became valid again. Something like:
    SQL> connect /
    Connected.
    SQL> drop public synonym test;
    Synonym dropped.
    SQL> GRANT CREATE SYNONYM TO a;
    Grant succeeded.
    SQL> connect a/a
    Connected.
    SQL> desc test;
    ERROR:
    ORA-04043: object test does not exist
    SQL> desc b.test
    PROCEDURE TESTIT
    SQL> CREATE SYNONYM test FOR b.test;
    Synonym created.
    SQL> desc test;
    PROCEDURE TESTIT
    SQL> connect b/b
    Connected.
    SQL> REVOKE EXECUTE ON test FROM a;
    Revoke succeeded.
    SQL> connect a/a
    Connected.
    SQL> desc test;
    ERROR:
    ORA-04043: object "B"."TEST" does not exist
    SQL> desc b.test
    ERROR:
    ORA-04043: object b.test does not exist
    SQL> connect b/b
    Connected.
    SQL> DROP PACKAGE test;
    Package dropped.
    SQL> CREATE FUNCTION test (p_num IN NUMBER) RETURN NUMBER AS
      2  BEGIN
      3     RETURN p_num * 10;
      4  END;
      5  /
    Function created.
    SQL> GRANT EXECUTE ON test TO a;
    Grant succeeded.
    SQL> connect a/a
    Connected.
    SQL> desc test;
    FUNCTION test RETURNS NUMBER
    Argument Name                  Type                    In/Out Default?
    P_NUM                          NUMBER                  INSo, I would go looking for the synonyms.
    TTFN
    John

  • RE: Is there a way to have 2 network cards on the samemachine

    Sean,
    I mean I am always connecting to the nodemgr of the 2nd environment
    successfully. Only when I run the client part of the application that I know
    is up, I get a response from the Name Server that it is actually the first
    IP address.
    I checked again. I defenitely have FORTE_NS_ADDRESS set to IP:5004, in my
    case, and not the hostname. I don't have FORTE_LOCATIONS set any where. the
    NS_ADDRESS for env2 has only 1 IP address associated with it. My Forte
    Control Panel on the client, and hence the NS address has only one entry.
    I tried going into escript like you said, and the name service still thinks
    it is IP1.
    Venkat Kodumudi
    Price Waterhouse LLP
    Internet: [email protected]
    Internet2: [email protected]
    -----Original Message-----
    From: Sean Brown [SMTP:[email protected]]
    Sent: Monday, June 22, 1998 1:31 PM
    To: Venkat Kodumudi; 'Sean Brown'
    Cc: [email protected]
    Subject: RE: Is there a way to have 2 network cards on the same
    machine
    Hmmmm? That is a little odd! Let me rehash what I think you are saying.
    You now have two environments each with their own name service with
    FORTE_NS_ADDRESS set to a different IP:Port combination. For example you
    are doing the steps:
    FORTE_NS_ADDRESS=255.255.255.1:5000
    start the nodemgr for env 1
    FORTE_NS_ADDRESS=255.255.255.2:5000
    start the nodemgr for env 2
    Now when you start a client you are always getting the address for env 1
    back from the nodemgr. I assume you actually mean the name service? Or, do
    you mean you are always connecting to the nodemgr & name service for env
    1?
    If the first scenario is the case and you are connecting to the nodemgr
    for
    env 2 but getting back IP's for services listening on the card for env 1 I
    would ask you what you are setting the FORTE_LOCATIONS value to before you
    start each service. If you are not setting it or are using the host name
    it
    will register using the IP for the primary network card associated with
    the
    machine name and I am again assuming that this is env 1. You need to set
    the FORTE_LOCATIONS variable to 255.255.255.2:0 (based on the steps above)
    before starting your services.
    If the second scenario is the case I would have you check what the
    FORTE_NS_ADDRESS is set to before you start up the client. Once again it
    must be the IP:Port combination not host:port combination if you want to
    get
    anything other than the primary card.
    I would also suggest that you do the following. After everything is up
    and
    running execute the following commands:
    escript -fns "ip for env1":port
    findsub nameservice
    showpart
    What you should see is everything currently registered under the name
    service. It will have the name and any "locations" (IP and port) that it
    is
    registered as listening on. I would look for the nodemgr and see where it
    has advertised itself. I would then look for any services you expect to
    be
    registered there and also verify where the have advertised themselves. If
    there are multiple locations listed for any one service, the client will
    use
    the first one in the list.
    Do the same for env 2.
    Sean
    -----Original Message-----
    From: Venkat Kodumudi [mailto:[email protected]]
    Sent: Monday, June 22, 1998 9:57 AM
    To: 'Sean Brown'
    Cc: [email protected]
    Subject: RE: Is there a way to have 2 network cards on the same machine
    I am giving the actual IP address. and not the host name. That is why I
    don't understand what is going on.
    Venkat Kodumudi
    Price Waterhouse LLP
    Internet: [email protected]
    Internet2: [email protected]
    -----Original Message-----
    From: Sean Brown [SMTP:[email protected]]
    Sent: Monday, June 22, 1998 10:53 AM
    To: Venkat Kodumudi; 'Sean Brown'
    Cc: [email protected]
    Subject: RE: Is there a way to have 2 network cards on the same
    machine
    Hello Venkat,
    I probably should have mentioned this before. Your are correct. Forteis
    doing a host lookup if you are providing a name for examplemachine1:5000.
    You can bypass the host lookup by using the actual ip dot addressinstead
    for example 255.255.255.255:5000. This way you are taking the name
    service
    out od the picture and Forte will use the address provided.
    Sean
    -----Original Message-----
    From: Venkat Kodumudi [mailto:[email protected]]
    Sent: Monday, June 22, 1998 9:27 AM
    To: 'Sean Brown'
    Cc: [email protected]
    Subject: RE: Is there a way to have 2 network cards on the same machine
    My requirement is that my second card serves as best case performance
    testing piece. This eliminates the network completely. We went one step
    ahead and created a new enviromnent for the second card. Whatever I do,
    the
    nodemgr is returning back the IP address of the first card, even thoughmy
    FORTE_NS_ADDRESS does not have the first card in the picture any where.
    I think Forte is doing a host look up and returning the first IP address
    it
    finds, as opposed to returning the IP address specified in theenvironment
    variable FORTE_NS_ADDRESS. Is there a way to trick it?
    Venkat Kodumudi
    Price Waterhouse LLP
    Internet: [email protected]
    Internet2: [email protected]
    -----Original Message-----
    From: Sean Brown [SMTP:[email protected]]
    Sent: Thursday, June 18, 1998 9:54 AM
    To: Venkat Kodumudi
    Cc: [email protected]
    Subject: RE: Is there a way to have 2 network cards on the same
    machine
    OK, you ran into one of the issues. That is, if both addresses areknown
    to
    the client that is trying to contact the partition it will always usethe
    first address in FORTE_LOCATIONS. This is because FORTE_LOCATIONS was
    designed more as a failover mechanism. So it will always try the
    first
    address in the list and if it succeeds, there is no reason to move onto
    the
    second.
    Now, the second issue is that there is currently a problem with theclient
    failover to the secondary address in FORTE_LOCATIONS. If the firstentry
    fails it is supposed to retry on the second entry. Instead, it
    retries
    the
    first entry again. I know that Forte knows about this but I do nothave
    a
    bug number on it.
    With that said, lets look at a possible solution for you. If the real
    objective here is to have a back up network card available for fail
    over
    on
    the same machine, or use one card to advertise outside your firewalland
    one
    to use inside, then you will have to contact Forte to determine whenthe
    failover problem will be fixed. But, if the objective is to loadbalance
    across the network cards you could have the environment manager listenon
    both ports and then alternate your server partitions across both
    cards.
    For
    example:
    set FORTE_NS_ADDRESS=card1:5000;card2:5000 and then start up the
    environment
    manager
    set FORTE_LOCATIONS=card1:0 (the 0 in the port causes the OS to pick a
    port)
    and start partition one
    set FORTE_LOCATIONS=card2:0 and start partition two
    and so on....
    In this scenario the environment manager will be listening on bothcards
    but
    each server will be listening on only one of the two cards. So if a
    request
    comes in for partition1 it will go through card one and if it is for
    partition two it will go through card two. You could assign your
    partitions
    to cards based on expected load.
    Well, I am done. I hope this helps!
    Sean
    -----Original Message-----
    From: Venkat Kodumudi [mailto:[email protected]]
    Sent: Thursday, June 18, 1998 8:06 AM
    To: 'Sean Brown'; 'John Jamison'
    Cc: [email protected]; Jose Suriol
    Subject: RE: Is there a way to have 2 network cards on the samemachine
    Sean,
    Thanks for your reply. I tried the approach. I was not very specificin
    my
    question. I do need the ability for server applications to listen and
    server
    on both the network cards.
    I was succesfully able to make the nodemgr listen on both the cardsand
    actually serve requests coming in from both the cards. But, followingyour
    advise, I took a cautious step with FORTE_LOCATIONS. Here is what I
    noticed.
    I have an application that has 6 partitions in total. I used
    FORTE_LOCATION
    to make it listen on 1. Both the cards. 2. Swapped the IP addresses
    for
    both
    cards for this application. 3. One card that I want it to listen on. I
    tried
    all approaches by exporting the locations variable for just this
    application. The nodemgr recieves a request from this pc connected onthe
    second card to talk to one of the partitions. The node mgr responds
    with
    a
    proxy - with the ip address and socket number of the first card. The
    FORTE_NS_ADDRESS variable looks like this:
    IP1:5002;IP2:5002.
    Is it possible atall to resolve my problem, without having a seperate
    environment?
    Thanks
    Venkat Kodumudi
    Price Waterhouse LLP
    Internet: [email protected]
    Internet2: [email protected]
    -----Original Message-----
    From: Sean Brown [SMTP:[email protected]]
    Sent: Wednesday, June 17, 1998 10:42 AM
    To: 'John Jamison'; Venkat Kodumudi
    Cc: [email protected]
    Subject: RE: Is there a way to have 2 network cards on the
    same
    machine
    Venkat,
    Actually, it is possible for Forte to listen on more than one IP andport
    combination. The first reply to your message was correct. If you
    set
    the
    FORTE_NS_ADDRESS to contain multiple entries before starting the
    name
    service, it will advertise on both. For Forte servers you use the
    FORTE_LOCATIONS env variable to get it to advertise on multipleip:port
    combinations.
    We were doing something very similar with another customer I was at
    to
    get
    around a firewall. I will warn you that there are some issues with
    FORTE_LOCATIONS that may keep that portion from working. However,
    from
    reading your note, it appears that all you need is for the nameservice
    to
    advertise and listen on multiple ports and that works fine. I justtested
    it again for sanity sake and it worked. I ran my test on NT using
    Forte
    3G2.
    Sean
    -----Original Message-----
    From: [email protected]
    [<a href="mailto:[email protected]">mailto:[email protected]]On</a> Behalf Of John Jamison
    Sent: Tuesday, June 16, 1998 4:51 PM
    To: Venkat Kodumudi
    Cc: [email protected]
    Subject: Re: Is there a way to have 2 network cards on the samemachine
    Venkat,
    Technically yes this is possible, though not in Forte. A nameserver
    can
    only listen on one port.
    To implement this scheme you will have to write a proxy service (insome
    language
    including perhaps forte) which listens on the well-known port on the
    second card, reads requests, then forwards them to the realnameservice
    (wkp on the first card), and forwards replies back. This is not
    trivial, but some firewall toolkit vendors supply stub code to write
    application specific proxies.
    -J
    Venkat Kodumudi wrote:
    Folks,
    Here is what we would like to do:
    We want to have 2 network cards on a unix box - which means I have
    2
    ip
    addresses, and the connection between the two is the unix box and
    only
    the
    unix box. I have a pc connected to the 2nd network card and I want
    it
    to
    connect to the nameserver that is listening on a well known port
    on
    the
    first network card. We don't want to turn IP forwarding between
    the
    two
    cards. We want Forte to address both cards to talk to clients, in
    one
    environment.
    Can this be done? If so how?
    Thanks in advance.
    Venkat Kodumudi
    Price Waterhouse LLP
    Internet: [email protected]
    Internet2: [email protected]
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive<URL:<a href=
    "http://pinehurst.sageit.com/listarchive/">http://pinehurst.sageit.com/listarchive/</a>>
    >>>>
    John Jamison [email protected]
    Vice President and Chief Technology Officer
    Sage IT Partners, Inc.
    Voice: 415 392-7243 x 306
    Fax: 415 391-3899
    Internet Enabled Business Change
    <a href=
    "http://www.sageit.com">http://www.sageit.com</a>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:<a href=
    "http://pinehurst.sageit.com/listarchive/">http://pinehurst.sageit.com/listarchive/</a>>

    Hello Venkat,
    I probably should have mentioned this before. Your are correct. Forte is
    doing a host lookup if you are providing a name for example machine1:5000.
    You can bypass the host lookup by using the actual ip dot address instead
    for example 255.255.255.255:5000. This way you are taking the name service
    out od the picture and Forte will use the address provided.
    Sean
    -----Original Message-----
    From: Venkat Kodumudi [mailto:[email protected]]
    Sent: Monday, June 22, 1998 9:27 AM
    To: 'Sean Brown'
    Cc: [email protected]
    Subject: RE: Is there a way to have 2 network cards on the same machine
    My requirement is that my second card serves as best case performance
    testing piece. This eliminates the network completely. We went one step
    ahead and created a new enviromnent for the second card. Whatever I do, the
    nodemgr is returning back the IP address of the first card, even though my
    FORTE_NS_ADDRESS does not have the first card in the picture any where.
    I think Forte is doing a host look up and returning the first IP address it
    finds, as opposed to returning the IP address specified in the environment
    variable FORTE_NS_ADDRESS. Is there a way to trick it?
    Venkat Kodumudi
    Price Waterhouse LLP
    Internet: [email protected]
    Internet2: [email protected]
    -----Original Message-----
    From: Sean Brown [SMTP:[email protected]]
    Sent: Thursday, June 18, 1998 9:54 AM
    To: Venkat Kodumudi
    Cc: [email protected]
    Subject: RE: Is there a way to have 2 network cards on the same
    machine
    OK, you ran into one of the issues. That is, if both addresses are known
    to
    the client that is trying to contact the partition it will always use the
    first address in FORTE_LOCATIONS. This is because FORTE_LOCATIONS was
    designed more as a failover mechanism. So it will always try the first
    address in the list and if it succeeds, there is no reason to move on to
    the
    second.
    Now, the second issue is that there is currently a problem with the client
    failover to the secondary address in FORTE_LOCATIONS. If the first entry
    fails it is supposed to retry on the second entry. Instead, it retries
    the
    first entry again. I know that Forte knows about this but I do not have a
    bug number on it.
    With that said, lets look at a possible solution for you. If the real
    objective here is to have a back up network card available for fail over
    on
    the same machine, or use one card to advertise outside your firewall and
    one
    to use inside, then you will have to contact Forte to determine when the
    failover problem will be fixed. But, if the objective is to load balance
    across the network cards you could have the environment manager listen on
    both ports and then alternate your server partitions across both cards.
    For
    example:
    set FORTE_NS_ADDRESS=card1:5000;card2:5000 and then start up the
    environment
    manager
    set FORTE_LOCATIONS=card1:0 (the 0 in the port causes the OS to pick a
    port)
    and start partition one
    set FORTE_LOCATIONS=card2:0 and start partition two
    and so on....
    In this scenario the environment manager will be listening on both cards
    but
    each server will be listening on only one of the two cards. So if a
    request
    comes in for partition1 it will go through card one and if it is for
    partition two it will go through card two. You could assign your
    partitions
    to cards based on expected load.
    Well, I am done. I hope this helps!
    Sean
    -----Original Message-----
    From: Venkat Kodumudi [mailto:[email protected]]
    Sent: Thursday, June 18, 1998 8:06 AM
    To: 'Sean Brown'; 'John Jamison'
    Cc: [email protected]; Jose Suriol
    Subject: RE: Is there a way to have 2 network cards on the same machine
    Sean,
    Thanks for your reply. I tried the approach. I was not very specific in
    my
    question. I do need the ability for server applications to listen and
    server
    on both the network cards.
    I was succesfully able to make the nodemgr listen on both the cards and
    actually serve requests coming in from both the cards. But, following your
    advise, I took a cautious step with FORTE_LOCATIONS. Here is what I
    noticed.
    I have an application that has 6 partitions in total. I used
    FORTE_LOCATION
    to make it listen on 1. Both the cards. 2. Swapped the IP addresses for
    both
    cards for this application. 3. One card that I want it to listen on. I
    tried
    all approaches by exporting the locations variable for just this
    application. The nodemgr recieves a request from this pc connected on the
    second card to talk to one of the partitions. The node mgr responds with a
    proxy - with the ip address and socket number of the first card. The
    FORTE_NS_ADDRESS variable looks like this:
    IP1:5002;IP2:5002.
    Is it possible atall to resolve my problem, without having a seperate
    environment?
    Thanks
    Venkat Kodumudi
    Price Waterhouse LLP
    Internet: [email protected]
    Internet2: [email protected]
    -----Original Message-----
    From: Sean Brown [SMTP:[email protected]]
    Sent: Wednesday, June 17, 1998 10:42 AM
    To: 'John Jamison'; Venkat Kodumudi
    Cc: [email protected]
    Subject: RE: Is there a way to have 2 network cards on the same
    machine
    Venkat,
    Actually, it is possible for Forte to listen on more than one IP andport
    combination. The first reply to your message was correct. If you setthe
    FORTE_NS_ADDRESS to contain multiple entries before starting the name
    service, it will advertise on both. For Forte servers you use the
    FORTE_LOCATIONS env variable to get it to advertise on multiple ip:port
    combinations.
    We were doing something very similar with another customer I was at toget
    around a firewall. I will warn you that there are some issues with
    FORTE_LOCATIONS that may keep that portion from working. However, from
    reading your note, it appears that all you need is for the name serviceto
    advertise and listen on multiple ports and that works fine. I justtested
    it again for sanity sake and it worked. I ran my test on NT using Forte
    3G2.
    Sean
    -----Original Message-----
    From: [email protected]
    [<a href="mailto:[email protected]">mailto:[email protected]]On</a> Behalf Of John Jamison
    Sent: Tuesday, June 16, 1998 4:51 PM
    To: Venkat Kodumudi
    Cc: [email protected]
    Subject: Re: Is there a way to have 2 network cards on the same machine
    Venkat,
    Technically yes this is possible, though not in Forte. A name server
    can
    only listen on one port.
    To implement this scheme you will have to write a proxy service (in some
    language
    including perhaps forte) which listens on the well-known port on the
    second card, reads requests, then forwards them to the real nameservice
    (wkp on the first card), and forwards replies back. This is not
    trivial, but some firewall toolkit vendors supply stub code to write
    application specific proxies.
    -J
    Venkat Kodumudi wrote:
    Folks,
    Here is what we would like to do:
    We want to have 2 network cards on a unix box - which means I have 2ip
    addresses, and the connection between the two is the unix box and onlythe
    unix box. I have a pc connected to the 2nd network card and I want it
    to
    connect to the nameserver that is listening on a well known port onthe
    first network card. We don't want to turn IP forwarding between thetwo
    cards. We want Forte to address both cards to talk to clients, in one
    environment.
    Can this be done? If so how?
    Thanks in advance.
    Venkat Kodumudi
    Price Waterhouse LLP
    Internet: [email protected]
    Internet2: [email protected]
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive<URL:<a href=
    "http://pinehurst.sageit.com/listarchive/">http://pinehurst.sageit.com/listarchive/</a>>
    >>
    John Jamison [email protected]
    Vice President and Chief Technology Officer
    Sage IT Partners, Inc.
    Voice: 415 392-7243 x 306
    Fax: 415 391-3899
    Internet Enabled Business Change
    <a href="http://www.sageit.com">http://www.sageit.com</a>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:<a href=
    "http://pinehurst.sageit.com/listarchive/">http://pinehurst.sageit.com/listarchive/</a>>

  • Is there a way to have 2 network cards on the samemachine

    Folks,
    Here is what we would like to do:
    We want to have 2 network cards on a unix box - which means I have 2 ip
    addresses, and the connection between the two is the unix box and only the
    unix box. I have a pc connected to the 2nd network card and I want it to
    connect to the nameserver that is listening on a well known port on the
    first network card. We don't want to turn IP forwarding between the two
    cards. We want Forte to address both cards to talk to clients, in one
    environment.
    Can this be done? If so how?
    Thanks in advance.
    Venkat Kodumudi
    Price Waterhouse LLP
    Internet: [email protected]
    Internet2: [email protected]
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hmmmm? That is a little odd! Let me rehash what I think you are saying.
    You now have two environments each with their own name service with
    FORTE_NS_ADDRESS set to a different IP:Port combination. For example you
    are doing the steps:
    FORTE_NS_ADDRESS=255.255.255.1:5000
    start the nodemgr for env 1
    FORTE_NS_ADDRESS=255.255.255.2:5000
    start the nodemgr for env 2
    Now when you start a client you are always getting the address for env 1
    back from the nodemgr. I assume you actually mean the name service? Or, do
    you mean you are always connecting to the nodemgr & name service for env 1?
    If the first scenario is the case and you are connecting to the nodemgr for
    env 2 but getting back IP's for services listening on the card for env 1 I
    would ask you what you are setting the FORTE_LOCATIONS value to before you
    start each service. If you are not setting it or are using the host name it
    will register using the IP for the primary network card associated with the
    machine name and I am again assuming that this is env 1. You need to set
    the FORTE_LOCATIONS variable to 255.255.255.2:0 (based on the steps above)
    before starting your services.
    If the second scenario is the case I would have you check what the
    FORTE_NS_ADDRESS is set to before you start up the client. Once again it
    must be the IP:Port combination not host:port combination if you want to get
    anything other than the primary card.
    I would also suggest that you do the following. After everything is up and
    running execute the following commands:
    escript -fns "ip for env1":port
    findsub nameservice
    showpart
    What you should see is everything currently registered under the name
    service. It will have the name and any "locations" (IP and port) that it is
    registered as listening on. I would look for the nodemgr and see where it
    has advertised itself. I would then look for any services you expect to be
    registered there and also verify where the have advertised themselves. If
    there are multiple locations listed for any one service, the client will use
    the first one in the list.
    Do the same for env 2.
    Sean
    -----Original Message-----
    From: Venkat Kodumudi [mailto:[email protected]]
    Sent: Monday, June 22, 1998 9:57 AM
    To: 'Sean Brown'
    Cc: [email protected]
    Subject: RE: Is there a way to have 2 network cards on the same machine
    I am giving the actual IP address. and not the host name. That is why I
    don't understand what is going on.
    Venkat Kodumudi
    Price Waterhouse LLP
    Internet: [email protected]
    Internet2: [email protected]
    -----Original Message-----
    From: Sean Brown [SMTP:[email protected]]
    Sent: Monday, June 22, 1998 10:53 AM
    To: Venkat Kodumudi; 'Sean Brown'
    Cc: [email protected]
    Subject: RE: Is there a way to have 2 network cards on the same
    machine
    Hello Venkat,
    I probably should have mentioned this before. Your are correct. Forte is
    doing a host lookup if you are providing a name for example machine1:5000.
    You can bypass the host lookup by using the actual ip dot address instead
    for example 255.255.255.255:5000. This way you are taking the name
    service
    out od the picture and Forte will use the address provided.
    Sean
    -----Original Message-----
    From: Venkat Kodumudi [mailto:[email protected]]
    Sent: Monday, June 22, 1998 9:27 AM
    To: 'Sean Brown'
    Cc: [email protected]
    Subject: RE: Is there a way to have 2 network cards on the same machine
    My requirement is that my second card serves as best case performance
    testing piece. This eliminates the network completely. We went one step
    ahead and created a new enviromnent for the second card. Whatever I do,
    the
    nodemgr is returning back the IP address of the first card, even though my
    FORTE_NS_ADDRESS does not have the first card in the picture any where.
    I think Forte is doing a host look up and returning the first IP address
    it
    finds, as opposed to returning the IP address specified in the environment
    variable FORTE_NS_ADDRESS. Is there a way to trick it?
    Venkat Kodumudi
    Price Waterhouse LLP
    Internet: [email protected]
    Internet2: [email protected]
    -----Original Message-----
    From: Sean Brown [SMTP:[email protected]]
    Sent: Thursday, June 18, 1998 9:54 AM
    To: Venkat Kodumudi
    Cc: [email protected]
    Subject: RE: Is there a way to have 2 network cards on the same
    machine
    OK, you ran into one of the issues. That is, if both addresses areknown
    to
    the client that is trying to contact the partition it will always usethe
    first address in FORTE_LOCATIONS. This is because FORTE_LOCATIONS was
    designed more as a failover mechanism. So it will always try the first
    address in the list and if it succeeds, there is no reason to move on to
    the
    second.
    Now, the second issue is that there is currently a problem with theclient
    failover to the secondary address in FORTE_LOCATIONS. If the firstentry
    fails it is supposed to retry on the second entry. Instead, it retries
    the
    first entry again. I know that Forte knows about this but I do not havea
    bug number on it.
    With that said, lets look at a possible solution for you. If the real
    objective here is to have a back up network card available for fail over
    on
    the same machine, or use one card to advertise outside your firewall and
    one
    to use inside, then you will have to contact Forte to determine when the
    failover problem will be fixed. But, if the objective is to loadbalance
    across the network cards you could have the environment manager listenon
    both ports and then alternate your server partitions across both cards.
    For
    example:
    set FORTE_NS_ADDRESS=card1:5000;card2:5000 and then start up the
    environment
    manager
    set FORTE_LOCATIONS=card1:0 (the 0 in the port causes the OS to pick a
    port)
    and start partition one
    set FORTE_LOCATIONS=card2:0 and start partition two
    and so on....
    In this scenario the environment manager will be listening on both cards
    but
    each server will be listening on only one of the two cards. So if a
    request
    comes in for partition1 it will go through card one and if it is for
    partition two it will go through card two. You could assign your
    partitions
    to cards based on expected load.
    Well, I am done. I hope this helps!
    Sean
    -----Original Message-----
    From: Venkat Kodumudi [mailto:[email protected]]
    Sent: Thursday, June 18, 1998 8:06 AM
    To: 'Sean Brown'; 'John Jamison'
    Cc: [email protected]; Jose Suriol
    Subject: RE: Is there a way to have 2 network cards on the same machine
    Sean,
    Thanks for your reply. I tried the approach. I was not very specific in
    my
    question. I do need the ability for server applications to listen and
    server
    on both the network cards.
    I was succesfully able to make the nodemgr listen on both the cards and
    actually serve requests coming in from both the cards. But, followingyour
    advise, I took a cautious step with FORTE_LOCATIONS. Here is what I
    noticed.
    I have an application that has 6 partitions in total. I used
    FORTE_LOCATION
    to make it listen on 1. Both the cards. 2. Swapped the IP addresses for
    both
    cards for this application. 3. One card that I want it to listen on. I
    tried
    all approaches by exporting the locations variable for just this
    application. The nodemgr recieves a request from this pc connected onthe
    second card to talk to one of the partitions. The node mgr responds witha
    proxy - with the ip address and socket number of the first card. The
    FORTE_NS_ADDRESS variable looks like this:
    IP1:5002;IP2:5002.
    Is it possible atall to resolve my problem, without having a seperate
    environment?
    Thanks
    Venkat Kodumudi
    Price Waterhouse LLP
    Internet: [email protected]
    Internet2: [email protected]
    -----Original Message-----
    From: Sean Brown [SMTP:[email protected]]
    Sent: Wednesday, June 17, 1998 10:42 AM
    To: 'John Jamison'; Venkat Kodumudi
    Cc: [email protected]
    Subject: RE: Is there a way to have 2 network cards on the same
    machine
    Venkat,
    Actually, it is possible for Forte to listen on more than one IP andport
    combination. The first reply to your message was correct. If you setthe
    FORTE_NS_ADDRESS to contain multiple entries before starting the name
    service, it will advertise on both. For Forte servers you use the
    FORTE_LOCATIONS env variable to get it to advertise on multiple
    ip:port
    combinations.
    We were doing something very similar with another customer I was at toget
    around a firewall. I will warn you that there are some issues with
    FORTE_LOCATIONS that may keep that portion from working. However,
    from
    reading your note, it appears that all you need is for the nameservice
    to
    advertise and listen on multiple ports and that works fine. I justtested
    it again for sanity sake and it worked. I ran my test on NT using
    Forte
    3G2.
    Sean
    -----Original Message-----
    From: [email protected]
    [<a href="mailto:[email protected]">mailto:[email protected]]On</a> Behalf Of John Jamison
    Sent: Tuesday, June 16, 1998 4:51 PM
    To: Venkat Kodumudi
    Cc: [email protected]
    Subject: Re: Is there a way to have 2 network cards on the samemachine
    Venkat,
    Technically yes this is possible, though not in Forte. A nameserver
    can
    only listen on one port.
    To implement this scheme you will have to write a proxy service (insome
    language
    including perhaps forte) which listens on the well-known port on the
    second card, reads requests, then forwards them to the realnameservice
    (wkp on the first card), and forwards replies back. This is not
    trivial, but some firewall toolkit vendors supply stub code to write
    application specific proxies.
    -J
    Venkat Kodumudi wrote:
    Folks,
    Here is what we would like to do:
    We want to have 2 network cards on a unix box - which means I have 2
    ip
    addresses, and the connection between the two is the unix box and
    only
    the
    unix box. I have a pc connected to the 2nd network card and I want
    it
    to
    connect to the nameserver that is listening on a well known port onthe
    first network card. We don't want to turn IP forwarding between thetwo
    cards. We want Forte to address both cards to talk to clients, in
    one
    environment.
    Can this be done? If so how?
    Thanks in advance.
    Venkat Kodumudi
    Price Waterhouse LLP
    Internet: [email protected]
    Internet2: [email protected]
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive<URL:<a href=
    "http://pinehurst.sageit.com/listarchive/">http://pinehurst.sageit.com/listarchive/</a>>
    >>>
    John Jamison [email protected]
    Vice President and Chief Technology Officer
    Sage IT Partners, Inc.
    Voice: 415 392-7243 x 306
    Fax: 415 391-3899
    Internet Enabled Business Change
    <a href=
    "http://www.sageit.com">http://www.sageit.com</a>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:<a href=
    "http://pinehurst.sageit.com/listarchive/">http://pinehurst.sageit.com/listarchive/</a>>

  • Is there any way to search for a term using the Firefox search field, and have the results automatically open in a new tab?

    Is there any way to search for a term using the Firefox search field, and have the results automatically open in a new tab? When there was support for Google Toolbar, I was able to do this; now, whenever I want to search for something, I have to open a new tab to do it, and cut-and-paste my search into the search field in the new tab. I used to be able to highlight, drag, and drop something into the search field and have it automatically open in a new tab. This is enough for me to switch to Chrome . . .

    Set a preference to have searches from the Search Bar (upper right) automatically open all searches in a new tab
    #type '''about:config''' in the URL/Location/Address bar and press the Enter key
    #if you see a warning, accept it (promise to be careful)
    #Filter = '''browser.search.openintab'''
    #in the lower panel, double click the item (or right-click and choose "Toggle") to change the value to "true"
    #close the about:config tab and test
    #See:
    #*For help with opening/using about:config, also see: http://kb.mozillazine.org/About:config
    #*Also see: http://kb.mozillazine.org/About:config_entries (click on "Browser", scroll down to browser.search.openintab)
    '''Search Bar''': http://support.mozilla.com/en-US/kb/Search+bar
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    About Google toolbar............
    Google decided that they will no longer produce the Google Toolbar for Firefox 5 and newer version. It is best to move on to other alternatives than to try any "hacks" to the toolbar that may or may not perform in the future. Future versions of Google toolbar will only work with IE7-9. Google Toolbar is not available on any other browser, even Google's own browser.
    *http://googletoolbarhelp.blogspot.com/2011/07/update-on-google-toolbar-for-firefox.html
    *https://support.mozilla.com/en-US/kb/google-toolbar-not-compatible-firefox?s=google+toolbar&r=0&as=s
    *http://www.google.com/support/toolbar/bin/answer.py?answer=1342452&topic=15356%29
    *Google Toolbar 8 FAQ (IE only): https://www.google.com/support/toolbar/bin/answer.py?hl=en&answer=1111588
    '''''To access your Google Bookmarks visit''''' www.google.com/bookmarks.
    Alternatives:
    *http://kb.mozillazine.org/Using_Google_Toolbar_features_without_toolbars
    *https://addons.mozilla.org/en-US/firefox/addon/googlebar-lite/
    *https://addons.mozilla.org/en-US/firefox/addon/gbookmarks-google-bookmarks-fo/

  • Is there a way to insert a clickable hyperlink in the long text of an order

    Is there a way to insert a clickable hyperlink in the long text of an order header instead of using the attachment option?
    Thank
    JAM
    Edited by: Jimmy Mendoza on Dec 6, 2010 8:48 PM

    hi jimmy,
    You can very well add hyper links in the long text ,the long text should be in word format,suppose you want to use www.google.com you can type this and when click on it,it will take you to the website.
    Regarding objects sap has not given this facility to add an attachment,for this you can use DMS functionality.

  • Knowing the Object type? Is this possible?

    Can we know the type of the object created ? Is there any method
    that lets you know the type of object?
    For example:
    class Superclass{
    class Subclass extends Superclass{
    class TestInheritance{
    public static void main(String[] args){
    Subclass subClass = new Subclass();
    }Now,Subclass is of type Subclass and also of type Superclass.
    Right?
    IS there any way or method I can find out the type of Subclass? ie
    Subclass is of type 'Subclass' and 'Superclass'.

    These might help:
    instanceof operator.
    also
    Object.getClass().className()
    http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Class.html

  • How to initialize the object type in pl/sql

    Hi,
    I am looking for an easy way to initialize the object type in pl/sql.
    I have created a object type with around 2 attributes.
    when ever i need to initialize the object ..need to pass:
    declare
    v_obj emp_obj;
    begin
    v_obj := emp_obj(null,null);
    then i can assign the values to object.
    Since I am having more than 50 attributes.. need to pass null to all the object attributes.
    is there any other way to initialize the object.
    thanking you in advance!!!

    RTFM [url http://oraclesvca2.oracle.com/docs/cd/B10501_01/appdev.920/a96594/adobjadv.htm#1008810]Advantages of User-Defined Constructors

  • I have created a PDF and password protected it for view. However, when reading the PDF in Adobe Reader app on the iPad the commenting and annotation options are not available. Is there a way to allow commenting and annotation in the app while password pro

    I have created a PDF and password protected it for view. However, when reading the PDF in Adobe Reader app on the iPad the commenting and annotation options are not available. Is there a way to allow commenting and annotation in the app while password protecting the document?

    Is there a setting that needs to be set to allow the annotation features?  I set password protection to open and then password for editing and set it to Any except page extraction, but it still did not give the annotation option

Maybe you are looking for

  • How to word wrap within text field

    I've created a form with a text field but when filling the form out, the words don't word wrap, but merely go in a single line across the text box field.  When can I format the text box to word wrap? tks

  • Jobs appearing in "Report Schedules" but remain at status 'Scheduled'

    Hello Folks We're running Business Intelligence Publisher 10.1.3.4.2 on Linux x86 We are sending jobs to BIP using Oracle APEX communictaing over web service. Here are the symptoms 1. Request document production from within APEX 2. APEX communicates

  • Database Primary Key Question - Best Practices

    I posted this in the ADDT forum, but I imagine I'll get more responses here: All you database developers - how do you deal with primary keys? Do you ALWAYS use an AutoIncrement/AutoNumber? Or only sometimes? Is there an argument to NOT use AutoIncrem

  • Content library not showing in iMovie 10.0

    Content Library not showing.  No answer found.  It is NOT at the top as some say.  Where did it go and where is it?  What's the best alternative to this stupid iMovie program.  So frustrating.  It was working a month ago.

  • After Effects CS6 will not open on Yosemite.

    Wondering if anybody has found a fix for this? All my other Applications are opening, but can NOT access After Effects. Thanks for any help.