Oracle 8.1.6 Net8 install

Hi, hope I'm not duplicating anyone, but here goes.
I'm installing 8.1.6 on Mandrake 7.0 Linux.
It seems to run fine except for the Net8 install. Specifically, it seems to do a compile on install to create all the sqlplus and net8 client tools. However, these fail when it is running the GENCLNTSH script. the failure comes back with 'cannot find -ldl'
This appears, after grepping the files, to be port of an 'ld' command to create all the libs.
Does this make sense to anyone? Is -ldl a valid switch? I have tried -l -d -l but dont know what that would do so I am wary of it.
Any help gratefully received.
Vlad

This looks like the same problem I get. Sadly it would appear that the ratio of problems to answers is about 100/1.
I have just received my Oracle 8i release 2 8.1.6 CD and attempted an install, after first satisfying all prerequisites.
When installing Oracle 8i 8.1.6 Enterprise Edition, all is OK until the "linking Secure
Sockett Layer" phase, when a message box appears with the following: "Error in
invoking target nnfgt.o of makefile
/usr/opt/oracle/8i/8.1.6/network/lib/ins_net_client.mk". If this is ignored several
more appear with diferent target names.
Eventually the install completes, but when the Net8 Configuration Assistant runs it stops with the following error: "libcIntsh.so.8.0: Cannot open shared object file: No such file or directory
(libnjni8.so). Error loading native
library: libnjni8.so Java.lang.UnsatisfiedLinkError: JniGetOracleHome".
I am using:
JRE V1.1.6 V5
Have also tried with the latest IBM JRE V1.1.8 for RH Linux.
RH Linux V6.1.
I had great hopes for 8.1.6 having spent weeks failing to get 8.1.5 to install.
Come back NT all is forgiven!!
Good luck, we need it.

Similar Messages

  • Oracle Forms Fundementals Study CD installed but wont open!

    Oracle Forms Fundementals Study CD installed but wont open! When I click on icon nothing happens! Anybody have any advice?

    Sorry guys,was doing some more testing and there have been some new developments.
    First, my database is version 10.2.0.4
    secondly, on all client machines they have installed Oracle Forms 5.0.6.8.0
    Interestingly, i can now open the form by connecting to the 10g database.
    But when i try and query for data , run a report and things like that, am getting
    the below error.
    REP-0501: Unable to connect to the specified database
    ORA-12637: TNS: Packet recieved failed

  • How to check if Oracle Data Access Components  is installed?

    How to check if  Oracle Data Access Components is installed and version on my computer?
    Also How to check if Oracle Data Provider is installed and version?
    TIA
    Steve42

    Regedit HKLM->Software->Oracle.  See what's there...
    At the very least, that can give you paths and can check file versions from there.

  • How to determine which of the Oracle security products have been installed

    Hello!
    I would like to determine whether or not the Oracle security products have been installed for an Oracle database.
    The Oracle security products are:
    * Oracle Database Vault
    * Oracle Audit Vault
    * Oracle Configuration Management
    * Oracle Total Recall
    * Oracle Advanced Security
    * Oracle Data Masking
    * Oracle Label Security
    * Oracle Secure Backup
    * Oracle Database Firewall
    So what I thought is to look at the "DBA_REGISTRY" table which displays information about the components loaded into the database.
    But on the other hand there also is the "V$OPTION" view which lists database options and features.
    Does anybody know, how I could correctly determine whether or not each of the product is installed?
    I guess for "Oracle Database Vault" I should query V$OPTION, but what should I do with the other ones? And in case DBA_REGISTRY would be the right table, how would the comp_ids look like for the products?
    SELECT 'Oracle Database Vault' , nvl( (SELECT VALUE FROM V$OPTION WHERE PARAMETER = 'Oracle Database Vault'),'FALSE') FROM sys.dual
    OR
    SELECT 'Oracle Database Vault' , nvl2( (SELECT 'valueFound' FROM DBA_REGISTRY WHERE comp_id = '??????' AND status NOT IN ('INVALID', 'REMOVING' , 'REMOVED')),'TRUE','FALSE') FROM sys.dual
    Thanks in advance
    Kai

    Hi kai;
    There are some script avaliable on net, first please check them and run it on test server first!
    http://www.google.com.tr/#hl=tr&biw=1259&bih=793&q=installed%2Bproducts%2Boracle&aq=f&aqi=&aql=&oq=&gs_rfai=&fp=71a534c4a5161590
    Secondly you can check oraInventory and also oratab file or you can run runInstaller and can check Installed product tab on installation screen
    Regard
    Helios

  • Oracle 9i Web Services Quickstart Install TCP tunneling problem

    When I try to run the OTNGUIDGenerator example using the TCP Tunneling portion of the Oracle 9i Web Services Quickstart
    Install I get this in the From localhost8900 tunnel window:
    <?xml version='1.0' encoding='UTF-8'?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <SOAP-ENV:Body>
    <ns1:getGUID xmlns:ns1="oracle.otn.ws.emarket.OTNGUIDGenerator" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    </ns1:getGUID>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    I get this in the From 127.0.0.1:8888 window:
    HTTP/1.1 404 Not Found
    Date: Mon, 28 Oct 2002 20:38:06 GMT
    Server: Oracle9iAS (9.0.2.0.0) Containers for J2EE
    Content-Length: 171
    Connection: Close
    Content-Type: text/html
    <HTML><HEAD><TITLE>404 Not Found</TITLE></HEAD><BODY><H1>404 Not Found</H1>Resource /j2ee-web/oracle.otn.ws.emarket.OTNGUIDGenerator not found on this server</BODY></HTML>
    This is my webservices stub
    public class OTNGUIDGeneratorStub
    /** public String endpoint = "http://otn.oracle.com/ws/oracle.otn.ws.emarket.OTNGUIDGenerator"; */
    public String endpoint = "http://127.0.0.1:8900/j2ee-web/oracle.otn.ws.emarket.OTNGUIDGenerator";
    private OracleSOAPHTTPConnection m_httpConnection = null;
    public OTNGUIDGeneratorStub()
    System.setProperty("oracle.soap.transport.noHTTPClient", "true");
    m_httpConnection = new OracleSOAPHTTPConnection();
    Properties props = new Properties();
    /** props.put(OracleSOAPHTTPConnection.PROXY_AUTH_TYPE, "basic");
    props.put(OracleSOAPHTTPConnection.PROXY_HOST, "proxy.scott.af.mil");
    props.put(OracleSOAPHTTPConnection.PROXY_PORT, "375");
    props.put(OracleSOAPHTTPConnection.PROXY_USERNAME, "fowlerji");
    props.put(OracleSOAPHTTPConnection.PROXY_PASSWORD, "F1234567*g"); */
    m_httpConnection.setProperties(props);
    Not sure what to call the server - this works okay when I'm not using tunneling and using our proxy server??

    I think your problem is that you have a proxy user/password and the TCP Monitor (both the command line and built-in 9.0.3 version) do not support that - they only support specification of the proxy server itself :-(
    It is a feature request that I hope will make it into the late spring/early summer release of JDeveloper - I wrote it up as a request based on the number of folks who faced this issue with these tutorials.
    Mike.

  • Oracle Error on 7.5 Install

    I am trying to install ZAM Inventory 7.5 on a Windows 2003 server connecting to an Oracle 10G database. The install repeatedly errors out after encountering this error:
    PL/SQL procedure successfully completed.
    from all_tables
    ERROR at line 6:
    ORA-06550: line 6, column 7:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 5, column 2:
    PL/SQL: SQL Statement ignored
    Table created.
    0 rows created.
    PL/SQL procedure successfully completed.
    I worked with our dba who has limited time and he said that it wasn't giving the user it creates, NCSystem, the proper rights to the db. At one point we ran the install and as soon as he saw the user created he gave it these rights but the installer ended up erroring out later in the process for reasons I couldn't determine. It seems to me something is fundamentally not right if it is failing on this and searching around I haven't been able to find anyone else getting the same problem. I get this error installing form different machines and I am convinced it is a problem with the db. Has anyone run into this error before or have an idea how to solve it? Any help would be much appreciated.

    oblio9,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • How to run R12 Oracle E-Business Suite Pre-install Patches Report

    Hi.
    I have downloaded, unzipped this report as per R12 Oracle E-Business Suite Pre-install Patches Report [Video] (Doc ID 1448102.1)
    What then? The instructions say
    Unzip the file, extracting the entire contents, which creates the "EBS_12.1_Preinstall" folder. (The unzipped folder will use <1 MB of storage space.)
    Navigate to the EBS_12.1_Preinstall folder
    Open the file 'index.html' in a browser
    Do not rename any of the the files in the EBS_12.1_Preinstall folder. Such an action will break the report.
    But the "Index" is supposed to show what? At the moment all I see is a number of sections that have nothing in them (the other html pages, like AP etec, do provide information)
    11.5.10.2
    RHEL 5.5
    11.2.0.3

    Hi,
    But the "Index" is supposed to show what? At the moment all I see is a number of sections that have nothing in them (the other html pages, like AP etec, do provide information)
    Please see the FAQ section of the note. Specifically please refer quesions:
    - Does the report list all types of pre-install patches available on My Oracle Support?
    - Is this list of pre-install patches specific to a particular Oracle E-Business Suite release?
    Thanks &
    Best Regards,

  • CRS not starting after Oracle 11g Grid was succesuflly installed

    Hi:
    Have 2 node RAC. My Shared storage is on openfiler.
    Oracle 11g Grid was successfully installed and all the services was working fine. When i restarted the system I found CRS was not coming up. Remaining processes were up and running.
    Let me explain what I did: (O/s RHEL 5.4 & oracle 11g R2 grid)
    I have a partition in shared disk /dev/sdc1 (I have other partitions, but thought of using only one for OCR and voting disk). (did not define it as raw partition as I used to do in 10g RAC).
    While installing Oracle grid and when it prompted to enter the Diskgroup for OCR and Voting disk I gave a name DGDATA and choose only one (external redundancy) disk “/dev/sdc1″ (it does not ask for one for OCR and one for Voting as it used to do in 10g clusterware installation). As per my assumption both OCR and Voting disk were created within /dev/sdc1 (after installation when I queried I got the same info)
    The Oracle grid installation has gone through successfully. when I restart the system I find CRS not starting.
    The log says: “Error PROC:26: Error while accessing the physical storage ASM……..
    ORA-01034: oracle not available...
    Could not init OCR, code:26….
    Linux permission denied".
    For your information….ASM instance is up (check in both the nodes) and I find the diskgroup mounted.
    Can anyone help on this.
    Also let me know how to uninstall Oracle 11g Grid software and configuration. If I have to reinstall the Oracle 11g grid software and config once again is it possible without reinstalling RHEL. Let me know the steps or any link please. don't want to get into a mess again.
    Thanks in advance.
    Regards
    Dinesh

    Jorg, I even tried to nomount the DB instance using initDBRAC.ora pfile. Then tried to create spfile still got the same error.
    The second trace file which I have pasted looks like some memory dump.
    ASM_DISKSTRING= /dev/sdc*
    ***********************************************************************1st trace file
    Fatal NI connect error 12547, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=beq)(PROGRAM=/crs/11.2.0/grid/bin/oracle)(ARGV0=oracle+ASM1_o000_dbrac)(ENVS='ORACLE_HOME=/crs/11.2.0/grid,ORACLE_SID=+ASM1')(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))'))(enable=setuser)(CONNECT_DATA=(CID=(PROGRAM=oracle@skyit6)(HOST=skyit6)(USER=oracle))))
    VERSION INFORMATION:
    TNS for Linux: Version 11.2.0.1.0 - Production
    Oracle Bequeath NT Protocol Adapter for Linux: Version 11.2.0.1.0 - Production
    Time: 01-JUN-2011 01:27:07
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12547
    TNS for Linux: Version 11.2.0.1.0 - Production
    Oracle Bequeath NT Protocol Adapter for Linux: Version 11.2.0.1.0 - Production
    Time: 01-JUN-2011 01:27:07
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12547
    TNS-12547: TNS:lost contact
    ns secondary err code: 12560
    nt main err code: 517
    TNS-00517: Lost contact
    nt secondary err code: 32
    nt OS err code: 0
    ERROR: Failed to connect with connect string: (DESCRIPTION=(ADDRESS=(PROTOCOL=beq)(PROGRAM=/crs/11.2.0/grid/bin/oracle)(ARGV0=oracle+ASM1_o000_dbrac)(ENVS='ORACLE_HOME=/crs/11.2.0/grid,ORACLE_SID=+ASM1')(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))'))(enable=setuser))
    Wed Jun 01 01:27:07 2011
    ERROR: slave communication error with ASM; terminating process 16772
    Errors in file /oraeng/app/oracle/product/diag/rdbms/dbrac/DBRAC/trace/DBRAC_ora_16772.trc:
    ----======================2nd trace file
    Trace file /oraeng/app/oracle/product/diag/rdbms/dbrac/DBRAC/trace/DBRAC_ora_16772.trc
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Real Application Clusters option
    ORACLE_HOME = /oraeng/app/oracle/product/11.2.0
    System name: Linux
    Node name: skyit6
    Release: 2.6.18-164.el5
    Version: #1 SMP Tue Aug 18 15:51:54 EDT 2009
    Machine: i686
    Instance name: DBRAC
    Redo thread mounted by this instance: 0 <none>
    Oracle process number: 25
    Unix process pid: 16772, image: oracle@skyit6 (TNS V1-V3)
    *** 2011-06-01 01:27:07.010
    *** SESSION ID:(1.3) 2011-06-01 01:27:07.010
    *** CLIENT ID:() 2011-06-01 01:27:07.010
    *** SERVICE NAME:() 2011-06-01 01:27:07.010
    *** MODULE NAME:(sqlplus@skyit6 (TNS V1-V3)) 2011-06-01 01:27:07.010
    *** ACTION NAME:() 2011-06-01 01:27:07.010
    ERROR: slave communication error with ASM; terminating process 16772
    *** 2011-06-01 01:27:07.035
    dbkedDefDump(): Starting a non-incident diagnostic dump (flags=0x0, level=2, mask=0x0)
    ----- Error Stack Dump -----
    ----- Current SQL Statement for this session (sql_id=bff5sku8phfgx) -----
    create spfile='+dgasmspfile/spfileDBRAC.ora' from pfile
    *** 2011-06-01 01:27:07.070
    ----- Call Stack Trace -----
    calling call entry argument values in hex
    location type point (? means dubious value)
    skdstdst()+41 call kgdsdst() BF9E05FC ? 2 ?
    ksedst1()+77 call skdstdst() BF9E05FC ? 0 ? 1 ? AB80E70 ?
    852F42A ? AB80E70 ?
    ksedst()+33 call ksedst1() 0 ? 1 ?
    dbkedDefDump()+2699 call ksedst() 0 ? 0 ? BF9E0D40 ? 0 ? 0 ?
    0 ?
    ksedmp()+47 call dbkedDefDump() 2 ? 0 ?
    kfTerminateMe()+75 call ksedmp() 2 ? 3 ? F1170AC ? F149234 ?
    5 ? BF9E0A6C ?
    kfnCheckCommError() call kfTerminateMe() F149234 ? BF9E0C1C ?
    +32 B033D83 ? 29392378 ?
    F149234 ? EB00601 ?
    kfncSlaveSubmit()+5 call kfnCheckCommError() 29392378 ? F149234 ?
    83
    kfncFileDelete()+11 call kfncSlaveSubmit() BF9E0E5C ? 0 ? F147B24 ?
    81
    kfioDelete()+126 call kfncFileDelete() 29DEE0 ? 1C ?
    ksfddel1()+582 call kfioDelete() 29DEE0 ? 1C ? D ?
    ksfddel()+187 call ksfddel1() 29DEE0 ? 1C ? D ? 0 ?
    BF9E0F2C ? 9BA2 ?
    ksp_spfile_create() call ksfddel() 29DEE0 ? 1C ? D ? 0 ?
    +677
    kspcspfp()+791 call ksp_spfile_create() BF9E49D4 ? 0 ? 29DEE0 ? 1C ?
    7D02 ? 0 ?
    kspocte()+67 call kspcspfp() 29DEE0 ? 1C ? F074CC4 ? F ?
    61,1 1%
    Regards
    Dinesh

  • Oracle SOA Suite 10g; problem install

    Good morning,
    I try to install Oracle SOA Suite 10g, the install hangs at the last step in installing Oracle Web Services Manager by invoking the following message: Unable to locate a valid OC4J URI. Probably The Server is down.
    When I execute opmnctl startall_ , it gives me errors and the installation gives the same error. ( Unable to locate a valid OC4J URI. Probably The Server is down)
    Thank you for helping me.

    Yes, I try to install on Vista.
    This is the error exactly:_
    BUILD FAILED
    E:\product\10.1.3.1\OracleAS\owsm\scripts\install.xml:1996: The following error occurred while executing this line:
    E:\product\10.1.3.1\OracleAS\owsm\scripts\deploy.xml:395: The following error occurred while executing this line:
    E:\product\10.1.3.1\OracleAS\owsm\scrpc]
    ts\oc4j.xml:24: Unable to locate a valid OC4J URI. The server is probably down.
    Total time: 1 minute 24 seconds
    Error 1
    Echec de l'assistant de configuration "Assistant Configuration d'Oracle Web Services Manager "
    Thank you for helping me
    Edited by: 857737 on 10 mai 2011 04:28

  • Oracle 11g stop working after installing Patch 1

    I'm new to Oracle. I installed Oracle 11g Database this weekend. The installation went well with no problems. However, after installing the base system I then installed Patch1. I had no problems installing the patch. I restarted my system and then started the EM. I received the following message from the EM:
    ORA-12505: TNS:listener does not currently know of SID given in connect descriptor (DBD ERROR: OCIServerAttach)
    What does this mean and how do I fix it?
    I then did an uninstall of Oracle 11g and then re-installed it. The problem went away. So I'm confidenced that the installation of Patch 1 caused the problem.
    Thanks for your help.
    Lou

    I'm very sorry of the over sight on my part. My environment is as follows: Dell PowerEdge 1900 with 16gb of memory, 2 physical Quad processors and 4tb of disk space. I have the installed Oracle 11g on Windows 2008 Datacenter.
    I am trying to upgrade as follows: Oracle Database 11g Release 11.1.0.6 to Oracle Database 11g Release 11.1.0.7. I will implement the Post Installation instruction to see what happens. It was an oversight on my part.
    Thanks

  • IBM HACMP + Oracle Database 9i ( without RAC ) Install

    Hi all,
    Is there any document or installation guide about installing Oracle 9i on HACMP ?
    I found that if I installed HACMP first, and later install Oracle 9i , it will be installed in a "clustered way".
    I mean when i install Oracle 9i after HACMP, OUI will ask me for choosing node1 or node2 to install, just like I've installed Oracle Clusterware (but i haven't installed Oracle Clusterware).
    Is it normal ?
    Or should I install Oracle 9i first then HACMP ?
    Any help would be appreciated.
    Best Regards.

    Dear Virendra,
    Thanks for the reply.
    I found that If I installed HACMP first, OUI will detect it and Oracle Clusterware will be installed automatically.
    So I need to choose the "Custom" mode to install Oracle 9i and deselect Oracle Clusterware manually. By this way Oracle 9i could be installed in an single instance way.
    After that I just need to use dbca to create my database in SAN storage、install Oracle binary on node2 and copy some files from Node1 to Node2.
    My problem is solved. Thanks for all the reply.
    Best regards.
    BEN
    Edited by: user3531674 on 2009/9/10 下午 9:27

  • Need Oracle 8.1.6 Database install

    I need to support a customer (repair their database) Oracle version 8.1.6 that they have exported to a .DMP file. The earliest Oracle install I have is version 8.1.7.
    The customer will not upgrade to .7, the next upgrade they plan is to 9i and they will not trust a "fixed" .DMP from an Oracle 8.1.7.
    Can anyone point me to where I can acquire an Oracle 8.1.6 server install?
    Failing that can you provide a very convincing argument as to why importing a .DMP from an 8.1.7 server into an 8.1.6 server is no problem... if it is really not a problem?

    If you have a support contract, you might try Metalink. They'll generally have older stuff available for download.
    Justin
    Distributed Database Consulting, Inc.
    www.ddbcinc.com

  • Oracle Client 8.1.7 Install

    I need to install the Oracle 8.1.7 client on Windows 98. Can anyone provide me with the link to download and install the client. I have already downloaded the the Oracle 8i Enterprise/Prefessional/Personal install for Win NT. Is the client for Win 98 included with this setup?

    Yes, the client is included with the setup.
    If it is a link that you need, try http://otn.oracle.com/software/tech/windows/ole_db/content.html
    When you go through the setup.exe file, it will bring up the Universal Installer, which will tell you what components you already have installed and which ones are not. If your client and associated networking components are installed, you're fine.

  • How to find the of Oracle software types and versions installed

    Hi,
    How to find the of Oracle software types and versions installed on RedHat Linux AS machine and Sunsolaris10 machine?
    Regards,
    Mathew

    I'm not sure about your point.
    You can use "opatch" command-line
    cd $ORACLE_HOME/OPatch
    ./opatch lsinventory -detail
    PRODUCT NAME VERSION
    ============ =======
    Advanced Queueing (AQ) API Patch 10.1.0.4.0
    Advanced Queueing (AQ) API 10.1.0.2.0
    Advanced Replication Patch 10.1.0.4.0
    Advanced Replication 10.1.0.2.0
    Agent Required Support Files Patch 10.1.0.4.0
    Agent Required Support Files 10.1.0.2.0
    Assistant Common Files Patch 10.1.0.4.0
    Assistant Common Files 10.1.0.2.0
    Authentication and Encryption Patch 10.1.0.4.0

  • W2k8 is 32-bit,which oracle 10g version should be installed?

    Hi everyone,
    I am a new DBA. Now I will install Oracle 10g on w2k8. I found w2k8 is 32-bit system, i am wandering which oracle 10g version I should install?
    Thanks!

    Go to http://www.oracle.com/technology/software/products/database/index.html
    Note that Windows 2008 explicitly is listed against 11.1.0.7
    Therefore, you can assume that 11.1.0.7 is the first that definitely supports W2008.
    And you can assume that anything older than that line is definitely not supported.
    And if it is not supported (as is the case for 10g), you can assume that you will run into some kind of problem either during installation or (worse) at some unknown time later.
    You can probably find some workaround to make it appear to work. Which is fine ... it's your job. (At least until it stops working.)

Maybe you are looking for

  • How To know Which Columns are not null and Which are null

    Hi Freinds, I want to Know ,How by Wrting a Query we can get the Names of The Columns from the Table which is set to not-null or null, Thanks Shoaib

  • Calendar sync with exchange not working

    I connect my iMac to my corporate email using exchange and every few weeks I have to remove th account and add it again innorder for the calendar to update. Anyone have a fix for this?

  • Shall I Put My Macbook To Sleep Or Shut It Down?

    sorry for such a moronic question but I was wondering which would be better in the long run? I use my macbook for work from 8 to 2 in the morning and then shut it down. Then in the night around 9 Pm I sometimes use it again and leave it on for downlo

  • Why can't I delete photos from my album?

    I created an album today and am trying to sort through it by keyword to check that each photo is labeled correctly. I have been doing this by going to the search box below and choosing one keyword. However, iPhoto will not allow me to delete any phot

  • Removing Asterix( *) in ESS Standard application

    Hi Experts, In Standard ESS application For FRANCE in Personel information-->familydependent, the client wants asterix* to be removed for Lastname.   i think that asterix is generated by code ,because i cant see it under transparent container. Can an