Linker not eliminating unused object from dynamic executable

Hello,
when I try to build a dynamic executable from shared objects, I get a small number of undefined symbols. These symbols are in an object (.o) that is not used in the executable. I have "-z ignore" specified, but the linker still seems unable to identify that object as unused.
I can compile the same code on HPUX without problems (no undefined symbols, and no unexpected dependencies).
On SOLARIS I use the following options:
Comile: -xcode=pic13 -w -DSOLARIS -D_USE_NAMESPACES_ -misalign
Link shared object: -G -z ignore
Link dynamic exec: -g0 -z ignore -z rescan
Full commands:
CC -c -z -xcode=pic13 -w -DSOLARIS -D_USE_NAMESPACES_ -misalign -D_ADV_DEBUG -D__SOURCE_FILE__=NotQueueHandler_obj -g0 -w -D_ADV_DEBUG -DSOLARIS -D_USE_NAMESPACES_ -I/view/rfischer_cchu_LIB_SEA/vobs/SERVER/TOP.WFM/Not/src -I/view/rfischer_cchu_LIB_SEA/vobs/SERVER/TOP.WFM/Not/SOLARIS/gen -I/view/rfischer_cchu_LIB_SEA/vobs/SERVER/TOP.WFM/Not/SOLARIS/gen/Not -I/view/rfischer_cchu_LIB_SEA/vobs/SERVER/TOP.WFM/SOLARIS/include -I/yvr/build/R8.1.0.0/bea/tuxedo9.1rp092/include -I/yvr/build/R8.1.0.0/oracle/10.2/rdbms/demo -I/yvr/build/R8.1.0.0/oracle/10.2/plsql/public -I/yvr/build/R8.1.0.0/oracle/10.2/network/public -I/yvr/build/R8.1.0.0/oracle/10.2/rdbms/public -o /view/rfischer_cchu_LIB_SEA/vobs/SERVER/TOP.WFM/Not/src/SOLARIS/NotQueueHandler_obj.o /view/rfischer_cchu_LIB_SEA/vobs/SERVER/TOP.WFM/Not/src/NotQueueHandler_obj.cpp
CC -G -z ignore -o /view/rfischer_cchu_LIB_SEA/vobs/SERVER/TOP.WFM/Not/src/SOLARIS/libNot.so /view/rfischer_cchu_LIB_SEA/vobs/SERVER/TOP.WFM/Not/src/SOLARIS/NotEventObjectCallback_c.o /view/rfischer_cchu_LIB_SEA/vobs/SERVER/TOP.WFM/Not/src/SOLARIS/NotEventInterfaceCallback_c.o /view/rfischer_cchu_LIB_SEA/vobs/SERVER/TOP.WFM/Not/src/SOLARIS/NotEventNotifier_c.o /view/rfischer_cchu_LIB_SEA/vobs/SERVER/TOP.WFM/Not/src/SOLARIS/NotRegistration.o /view/rfischer_cchu_LIB_SEA/vobs/SERVER/TOP.WFM/Not/src/SOLARIS/NotRegistration_db.o /view/rfischer_cchu_LIB_SEA/vobs/SERVER/TOP.WFM/Not/src/SOLARIS/NotInterface.o /view/rfischer_cchu_LIB_SEA/vobs/SERVER/TOP.WFM/Not/src/SOLARIS/NotRegistrar.o
CC -w -w -D_REENTRANT -mt -R/usr/lib/lwp -I$TUXDIR/include -o /view/rfischer_cchu_LIB_SEA/vobs/SERVER/TOP.WFM/Not/src/SOLARIS/NotApp.tmp BS-3a6a.cpp -L${TUXDIR}/lib -g0 -z ignore -z rescan -L/view/rfischer_cchu_LIB_SEA/vobs/SERVER/TOP.WFM/SOLARIS/lib -L/yvr/build/R8.1.0.0/bea/tuxedo9.1rp092/lib -L/yvr/build/R8.1.0.0/symas/opt/symas/lib -L/yvr/build/R8.1.0.0/oracle/10.2/lib32 -L/opt/mqm/lib /view/rfischer_cchu_LIB_SEA/vobs/SERVER/TOP.WFM/Not/src/SOLARIS/NotMain.o ${TUXDIR}/lib/tgiopservice.o ${TUXDIR}/lib/tpfwinit.o -lenv -lomg -lnative -lorb -lorbpoa -lorbutl -ltmib -licbgp -lskel -ltux -lbuft -L${ORACLE_HOME}/lib32 ${ORACLE_HOME}/rdbms/lib32/xaonsl.o -lclntsh -lfml -lfml32 -lengine -R/usr/lib/lwp -lpthread -lposix4 -lsocket -lnsl -lm -lnsl -lsocket -lpthread -lAlog -lDb -lInf -lDal -lCmm -lSw -lDbug -lReg -lOc -lOs -lNot -lCmm -lElog -lCnd -lQueue -lDb -lLocalNot -lQueue -lnative -lorb -ltux -lengine -lfml -lfml32 -lomg -lenv -lorbutl -lorbpoa -lclntsh -lAlog -lDb -lInf -lDal -lCmm -lSw -lDbug -lReg -lOc -lOs -lNot -lCmm -lElog -lCnd -lQueue -lDb -lLocalNot -lQueue -lnative -lorb -ltux -lengine -lfml -lfml32 -lomg -lenv -lorbutl -lorbpoa -lclntsh -lAlog -lDb -lInf -lDal -lCmm -lSw -lDbug -lReg -lOc -lOs -lNot -lCmm -lElog -lCnd -lQueue -lDb -lLocalNot -lQueue -lnative -lorb -ltux -lengine -lfml -lfml32 -lomg -lenv -lorbutl -lorbpoa -lclntsh -lAlog -lDb -lInf -lDal -lCmm -lSw -lDbug -lReg -lOc -lOs -lNot -lCmm -lElog -lCnd -lQueue -lDb -lLocalNot -lQueue -lnative -lorb -ltux -lengine -lfml -lfml32 -lomg -lenv -lorbutl -lorbpoa -lclntsh
Thanks...
Roger

Thanks for your response.
With "dynamic executable" I meant an executable that uses dynamic libraries. We have been using static libraries for our code, but are switching to shared libraries now (and it is a bit of a challenge).
There is a component Elog, which has a number of classes. Each class has its own object (.o) file. There is a specialized class, ElogComplexInterface, which has a few additional dependencies (eg on component Asn). libElog.so contains all the classes from the Elog component.
There is another component, Not, which uses some classes from the Elog component, but not ElogComplexInterface. The Not component has two libs and an executable: libNot.so is used by other objects, libLocalNot is used only by the executable, and NotApp is the executable.
When we link NotApp on Solaris, we get an unresolved reference for component Asn. NotApp does not use (directly or indirectly) any Asn component. It was my understanding that "-z ignore" causes the linker to determine that ElogComplexInterface is not used in NotApp, and hence the reference to Asn is irrelevant.
When linking on HPUX, we don't get any unresolved references.
The first "CC" line in the original post is how we compile the C++ code (to show that we use PIC). It has an error (extra -z) which has been removed since I posted.
The second "CC' line shows how we link the shared library (libNot.so).
The last "CC" line in the original post shows how we link the executable (NotApp).
Roger

Similar Messages

  • How to remove unused objects from the webcatalog In OBIEE11g

    Hi,
    I want to delete unused objects from obiee11g catalog, i know in obiee10g it's working fine (i.e: we can do it via manage catalog then delete the unused objects) is there any way to do it automatically like RPD utility --->removing unused objects from Physical layer in RPD
    fyi: I don't want to delete manualy. i need somethink like button/link to find unused objects(report,filter,folder..etc) from my obiee11g catalog.
    Thanks
    Deva
    Edited by: Devarasu on Nov 29, 2011 12:06 PM
    Edited by: Devarasu on Nov 29, 2011 3:15 PM

    Hi,
    Checked with Oracle Support team and confirmed below points
    --> incorporated into the Current product and consider as BUG it may resolve future release
    --> Currently there isnt any automatic method to remove the unused objects like reports, filters,folder etc from catalog.
    Treated as Bug
    Bug 13440888 - AUTOMATICALLY REMOVE OF UNUSED CATALOG OBJECTS FROM WEBCATALOG
    FYI:
    SR 3-4984291131: How to remove unused objects from the webcatalog in obiee11g
    Thanks
    Deva

  • HR_INFOTYPE_OPERATION not working when called from Dynamic action

    Hi ,
           Senario  : I would like to execute a form from dynamic action which
    creates a record in 0015 (Additional payment IT) .
           I have writen the code as shown below am using FM HR_INFOTYPE_OPERATION
    . When i execute the program from se38 it is creating a record, however it is
    not created when it is called from dynamic action..when i debugged the code in
    inside the FM HR_INFOTYPE_OPERATION there is a FM HR_MAINTAIN_MASTERDATA where
    they are using call dialog (statement) and
    sy-oncom = 'N'   when called from Dynamic action and
    sy-oncom = 'S'   when called executed directly.
    I tried to change the sy-oncom to S while run from Dynamic action it created
    the record.
    So Can anyone explain me abt sy-oncom and how can i resolve the issue..
    code..
    REPORT ZHRPYENH01 .
    perFORM TERMIATION_9000.
    INCLUDE DBPNPMAC.
          FORM Termiation_9000                                          *
    FORM TERMIATION_9000.
    INFOTYPES : 0015.
    *data : i .
    *i ='c'.
    *break-point.
    *message i000(000) with i.
      TABLES : PRELP.
      DATA : P9000 TYPE PA9000." with header line.
      DATA : P0000 TYPE STANDARD TABLE OF  P0000 WITH HEADER LINE.
    DATA : P0015 TYPE STANDARD TABLE OF  P0015 WITH HEADER LINE.
      DATA : HIRE_DATE  LIKE SY-DATUM,
             TERM_DATE  LIKE SY-DATUM.
      DATA : MOLGA LIKE T500L-MOLGA VALUE '25',
             SEQNR LIKE PC261-SEQNR.
      DATA : RGDIR TYPE STANDARD TABLE OF PC261 WITH HEADER LINE.
      DATA : ACTUAL_PERIOD LIKE PA9000-RETENTION.
      DATA : PNP-SW-FOUND TYPE SY-SUBRC ,
             PNP-SY-TABIX TYPE SY-TABIX.
      DATA : TER_PERNR LIKE PA0001-PERNR.
      DATA : REF_PERNR LIKE PA0001-PERNR.
      data : key type BAPIPAKEY.
      data : payed_amount type p0015-BETRG.
    data : future_payment_amount type p0015-BETRG.
    data : p0002 like pa0002.
      types : begin of t_deduction ,
              deducation_date like p0015-begda,
              future_payment_amount type p0015-BETRG.
      types : end of t_deduction.
    data :  future_deduction type standard table of t_deduction with
    *header line.
      data :  future_deduction type  t_deduction .
    data : RETURN type  BAPIRETURN1.
    *data : deduction_p0015 like standard table of p0015 with header line.
    data : deduction_p0015 like p0015 .
    xxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxx
    ****Prepare 0015 data for deduction
    *deduction for payed amount
    clear deduction_p0015.
    *refresh deduction_p0015.
    deduction_p0015-pernr = REF_PERNR.
    *deduction_p0015-pernr = TER_PERNR.
    deduction_p0015-lgart = 'M120'.
    deduction_p0015-begda = sy-datum + 1 .
    deduction_p0015-endda = sy-datum + 1 .
    deduction_p0015-BETRG = payed_amount.
    deduction_p0015-WAERS = 'SGD'.
    deduction_p0015-ZUORD =  TER_PERNR.
    *append deduction_p0015.
    **deduction for future payment amount
    *loop at future_deduction.
    *clear deduction_p0015.
    *deduction_p0015-pernr = REF_PERNR.
    **deduction_p0015-pernr = TER_PERNR.
    *deduction_p0015-lgart = 'M120'.
    *deduction_p0015-begda = FUTURE_DEDUCTION-DEDUCATION_DATE.
    *deduction_p0015-endda = FUTURE_DEDUCTION-DEDUCATION_DATE.
    *deduction_p0015-BETRG = future_deduction-future_payment_amount.
    *deduction_p0015-WAERS = 'SGD'.
    *deduction_p0015-ZUORD =  TER_PERNR.
    *append deduction_p0015.
    *endloop.
    Create a deduction wage type in 0015 for the employee
    break-point.
    CLEAR RETURN.
    CALL FUNCTION 'BAPI_EMPLOYEET_ENQUEUE'
      EXPORTING
        NUMBER              = REF_PERNR
        VALIDITYBEGIN       = '18000101'
    IMPORTING
       RETURN              = return
    if not return is initial.
    message E000(000) with
    'Referred Employee could not be locked for referal  payment deducation,
    please try after some time'.
    endif.
    CALL FUNCTION 'HR_INFOTYPE_OPERATION'
      EXPORTING
        INFTY                  = '0015'
        NUMBER                 = REF_PERNR
       SUBTYPE                = 'M120'
      OBJECTID               =
      LOCKINDICATOR          =
       VALIDITYEND            = SY-DATUM
       VALIDITYBEGIN          = SY-DATUM
      RECORDNUMBER           =
        RECORD                 = deduction_p0015
        OPERATION              = 'COPY'
      TCLAS                  = 'A'
       DIALOG_MODE            = '2'
      NOCOMMIT               =
      VIEW_IDENTIFIER        =
      SECONDARY_RECORD       =
    IMPORTING
       RETURN                 = return
       KEY                    = key
    break-point.
    COMMIT WORK.
    if not return is initial.
    *return-TYPE
    *ID
    *NUMBER
    *MESSAGE
    message I000(000) with return-MESSAGE.
    endif.
    CALL FUNCTION 'BAPI_EMPLOYEET_DEQUEUE'
      EXPORTING
        NUMBER              = REF_PERNR
        VALIDITYBEGIN       = '18000101'
    IMPORTING
       RETURN              = return
    xxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxx
    Thanks and regards
    -Senthil Bala
    Message was edited by: senthil bala

    Hi Senthil
    Why at all U want a subroutine to create a record in IT0015 through Dynamic action.There are some standard codes available to update infotypes.
    Let me give U an example
    14     9CON     BETRG     4     2     I     INS,0015 This will create a record in IT0015 when IT0014 is updated with Wagetype 9CON
    14     9CON     BETRG     4     3     W     P0015-LGART='5400' Set wagetype for IT0015(Here U can use a subroutine call to set the wagetype)
    14     9CON     BETRG     4     4     W     P0015-BETRG=P0014-BETRG set amount for IT0015(Here U can use a subroutine call to get the amount)
    14     9CON     BETRG     4     5     W     P0015-BEGDA=P0014-ENDDA set the dates(Here U can use a subroutine call to set the dates)
    Hope this will help U.
    Please award points if helpful

  • Create view link between two view objects (from programmatic data source)

    Hi Experts,
    Can we create a link between two view objects (they are created from programmatic datasource ; not from either entity or sql query). If yes how to create the link; ( i mean the like attributes?)
    I would also like to drag and drop that in my page so that i can see as top master form and the below child table. Assume in my program i will be only have one master object and many child objects.
    Any hits or idea pls.
    -t

    Easiest way to do this is to add additional transient attributes to your master view object, and then include those additional transient attributes in the list of source attributes for your view link. This way, you can get BC4J to automatically refer to their values with no additional code on your part.

  • Media Manager not deleting unused media from HDV (intermediate codec) clips

    I have a project which uses HDV footage which I captured using the Apple Intermediate Codec. I now have a bunch of clips that are very large in file size so I'd like to use the Media Manager to delete all the unused footage from the clips. I have tried countless different selections of sequences, clips in the browser, clips in a timeline etc but can't seem to get the Media Manager to show a smaller file size for the processed files based on 'Use Existing' with 'Delete unused media' option. The two size meters at the top always stay the same. Can the media manager trim HDV/Apple Intermediate Codec footage? If not is there a way to get rid of the footage that I haven't used? Thanks!
    Ben

    I've never mastered MM. If I want a small section out of larger clip, I simply just export that section of the clip using 'current settings'.
    Hope someone who has tamed the MM beast will step in here and offer you a better way...
    good luck.
    x

  • Apex link not able to connect from local machine.

    Hi,
    Here is the scenario.
    I have installed oracle apex 3.2 in my vmware linux machine.
    I'm able to connect the link (http://b03apex.domain.com) from my linux(vmware) box but I'm not able to connect from windows local machine.
    I tried to ping the ip, from both the ends are working but not sure why I'm not able to connect from windows local machine.
    local windows ip: 192.168.1.2
    vmware Linux ip address : 192.168.1.3
    Do I need to do add any parameters in the Apache logs to connect from windows local machine.?
    Need your suggestion.
    Thanks, Muhammed.

    user9354175 wrote:
    I tried to ping the ip, from both the ends are working but not sure why I'm not able to connect from windows local machine.In that case, it means there is network connectivity. The problem is thus something else - like a firewall or name resolution failure.
    >
    local windows ip: 192.168.1.2
    vmware Linux ip address : 192.168.1.3
    Do I need to do add any parameters in the Apache logs to connect from windows local machine.?No.
    Can you ping the VM hostname from your Windows console (instead of IP address)?
    Have you tried in your Windows browser the following URL (using IP address of the VM instead of the hostname)?
    http://192.168.1.3/
    Have you checked that your browser is not configured to use a proxy server?
    Have you checked your Windows firewall for allowing tcp web traffic to the virtual machine?
    Have you checked for the same on on the virtual machine (firewall will be likely be done using <i>iptables</i>).

  • Web Service not returning Boolean objects from DTO class

    Hi,
    I've seen posts reporting the same problem on other forums from a few years ago that are unresolved.
    I've created a service in NDS that has a method that returns some data via a DTO class. All the data is returned apart from those that are of type java.lang.Boolean. I thought the method names might be causing the problem so created a "get" method as well as an "is" method but it is still being ignored.
    I have tested this using the Portal Web Service Navigator and by using the service in Visual Composer 7.
    Is there a problem with Boolean data types in SAP Web Services ?
    Thanks
    Gary

    Hi Rich,
    No. In fact what happens is that in the se80 case, it returns 29 lines of results and in the wsadmin case it returns 25 lines of results. The web service/function module actually executes unit tests remotely by doing an RFC from the development system to the test system (where the unit tests are executed). In the se80 case, for one object, the unit tests execute correctly. In the wsadmin, the unit tests for that object don't execute hence returning less lines of result.
    In both cases, the users used to log in the web service or se80 are the same and the users for the RFC are the same.
    Thank you for your insight.
    Regards,
    Philon

  • Number range interval not found for object ISH_NLEI in executing NP38

    Dear ALL,
    In executing Transaction NP38 when we save the surgical procedure codes the system
    generates an error message "number range interval not found " . The object referred here
    ISH_NLEI number range has already been defined in spro Define technical number range.
    Please assist what should be done here to resolve the problem.
    Regards
    Ramit

    Hi, check if it maintained in tcode snro for this object

  • Can not open database object from the form builder

    Hi
    i have this message
    PDE-PXC002 Program unit execution aborted due to unhandled exception(904).
    PLS I need some one to help me.
    when I try to connect as system or sys or scott user its oben properly, But when i try by another user its not work.

    YES THAT RIGHT AND I KNOW THAT BUT THE x USER CAN NOT OPEN THE DATABASE OBJECT TO GET OR VIEW OWN OBJECTS
    ONY OTHER USER CAN OPEN THE DATABASE OBJECT BUT x USER CAN NOT OPEN THE DATABASE OBJECT IN THE NAVIGATOR FORMS.

  • ODM not displaying system objects from remote machine

    Hi,
    When I connect to OID using ODM in the local machine, I was able to see the system objects. It seems everything is working. But when I access using a remote machine with same userid(orcladmin), I was able to connect to the machine but I cant see the system objects. Only menu available is Operation & crate objects which are under this menu.
    Any hints!!!
    Thanks

    Hi,
    Have a look:
    http://blogs.technet.com/b/askperf/archive/2012/04/18/task-scheduler-error-a-specified-logon-session-does-not-exist.aspx
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/a7853ac3-6c48-4615-896a-e306067ab804/net-use-via-powershell-returning-a-specified-logon-session-does-not-exist-it-may-already-have-been?forum=winserversecurity
    Regards,
    Rafic
    If you found this post helpful, please give it a "Helpful" vote.
    If it answered your question, remember to mark it as an "Answer".
    This posting is provided "AS IS" with no warranties and confers no rights! Always test ANY suggestion in a test environment before implementing!

  • Fresh Install HCM 9.1 but Links not working. Help please

    Dear All,
    I'm trying to make a switch from SAP to PeopleSoft. I tought it easier to install PSFT since the number of source to install is much less than SAP. However, I kept getting same error where the links not working no matter which environment I tried to install.
    I downloaded all software from eDelivery.
    HCM 9.1, PTOOLS 8.52, Oracle 11g 64 bit, Oracle Client 32 bit.
    First Try:
    Install on windows 7 64bit. Everything works fine until first login to the PSFT and all links not working.
    Suggestion from Hakan is to apply the patch and gave me a link to the old FTP site. I downloaded the 85209 patch but got password.
    Finally I managed to get a customer ID from a friend and downloaded Patch 85211 and applied. But got java error so I scrapped it.
    Anyway, Gasparotto said the environment is not certified and will not fix my problem with the patch.
    Second Try:
    Installed Virtual Box.
    Installed Windows 2008 R2 and applied the SP1.
    Installed everything all over again.
    Ensured the PTWEBSERVER password similar the username.
    Everything works fine but when login to PSFT, again..... links not working and see on the bottom left corner there are some javascript error where they cannot find certain peoplesoft objects..
    Just upgraded to IE 9 because I read somewhere IE 8 is not certified.
    Tried to login again, no error message and everything looks fine but... links not working.
    Logs also looks normal to me.
    Does anyone ever encountered similar issues before?
    Does this is a normal behaviour before tools patch 85211 being applied ?
    Thanks,
    aLuNa
    My APPSRV Log:
    PSSAMSRV.12 (0) [11/03/12 09:04:46](0) PeopleTools Release 8.52 (WinX86) starting. Tuxedo server is APPSRV(99)/100
    PSSAMSRV.12 (0) [11/03/12 09:04:46](0) Cache Directory being used: C:\APPSRV_CONFIG\appserv\HCDMO\CACHE\PSSAMSRV_100\
    PSSAMSRV.12 (0) [11/03/12 09:04:46](0) Server started
    PSRENSRV.2808 [11/03/12 09:04:49](0) PeopleTools Release 8.52 (WinX86) starting. Tuxedo server is RENGRP(92)/101
    PSRENSRV.2808 [11/03/12 09:04:49](3) Switching to new log file C:\APPSRV_CONFIG\appserv\HCDMO\LOGS\PSRENSRV_1103.LOG
    PSADMIN.2124 (0) [11/03/12 09:04:52](0) End boot attempt on domain HCDMO
    PSAPPSRV.1488 (3) [11/03/12 09:13:16 GetCertificate](3) Returning context. ID=PTWEBSERVER, Lang=ENG, UStreamId=091316_1488.3, Token=PSFT_HR/2012-11-03-02.13.17.193528/PTWEBSERVER/ENG/XxZ3vyJWXF/S1MoQtG2Wox6wGJA=
    PSAPPSRV.1488 (5) [11/03/12 09:13:21 GetCertificate](3) Returning context. ID=PTWEBSERVER, Lang=ENG, UStreamId=091321_1488.5, Token=PSFT_HR/2012-11-03-02.13.22.193632/PTWEBSERVER/ENG/pS6ec6pIAJJSYc1oOWcNYiR0UFQ=
    PSAPPSRV.1488 (7) [11/03/12 09:13:29 GetCertificate](3) Returning context. ID=PS, Lang=ENG, UStreamId=091329_1488.7, Token=PSFT_HR/2012-11-03-02.13.30.193285/PS/ENG/3GnOezS6D9PUlzwrjPwqexv4ir0=
    PSAPPSRV.1488 (34) [11/03/12 09:18:47 GetCertificate](3) Returning context. ID=PS, Lang=ENG, UStreamId=091847_1488.34, Token=PSFT_HR/2012-11-03-02.18.48.194158/PS/ENG//oJB5tvSHYNzsmZ2Gs4g2vBLUVs=

    alunwawa wrote:
    Does anyone ever encountered similar issues before? Yes, I did already see the same, that was when installed the same with 8.52.00 (without Peopletools patch) or without applying the patch project...
    Does this is a normal behaviour before tools patch 85211 being applied ?Without patch, you have the error you mentioned. How many time I told that 8.52.03 min. is required, I did not go further, but there was some bugs before which make it not working.
    I understand that's rather frustrating for people who wants to jump to Peoplesoft. I don't know SAP, but here you go, Peoplesoft is not a simple toy.
    Unfortunately, if you have no access to My Oracle Support to get the Peoplesoft patches, you have no way but work on Peoplesoft OVM (free of use), and to use them on VirtualBox, the Jim's articles are worth to follow.
    Nicolas.
    PS: @Jim, thanks for the kind words.
    My last install guide is quite old now (PT8.50/Linux), even though it did not change very much within the last tools 8.52. But seeing the number of time such questions have asked over here (PT8.52 on Windows), I'm thinking to write one more, that time on Windows.

  • How to remove an object from an article

    Hi all,
    newbie here, sorry. I searched this forum for an answer, but I couldn't find it. So here it is....
    I created a folio with 3 articles. After changing something I always update the article. But sometimes it will upload not only all objects from that article to the digital publishing site, but also objects (files) that are in/from another article. In my case I used a video in article 1, I changed something in article 3 and I updated article 3 to my folio. When uploading object (files) for article 3, I spotted the video I used in article 1!! This video doesn't belong in article 3, I don't use it there. But it will enlarge article 3 quite a bit and with this my entire folio will become much larger, which is completely unnecessary!
    Is there any way to delete parts(/objects/files) from an article that are not really used in the article? Without affecting the rest of the (working) article of course....
    Any help would be appreciated!
    Ton Janssen

    Hi there,
    this seems to do the trick....I put all the HTML files and supporting documents etc for one article in a separate folder and now it seems to work well.....thanks a lot for your help!
    Ton Janssen

  • I can't get my emails because I keep getting the message The Procedure entry point PORT_LoadLibery From Origin could not be located in the dynamic link libery ect

    How do I stop getting this message to come up and be able to get my mail. The Procedure entry point PORT_Load Library From Origin could not be located in the dynamic links library
    == This happened ==
    Every time Firefox opened
    == today

    With Windows Explorer, navigate to your C:\Program Files\Common Files\Apple\Apple Application Support folder.
    Copy the SQLite3.dll that you should find there, navigate to the nearby Mobile Device Support folder, and Paste it in there also.
    Restart the programme all should be well
    In case that your OS is (64 bit)
    1. Open windows explorer, go to location C:\Program Files (x86)\Common Files\Apple\Apple Application Support
    2. Copy file "SQLite3.dll"
    3. Now paste it in the folder  C:\Program Files (x86)\Common Files\Apple\Mobile Device Support
    4. Restart the programme, it should not display that message, it should be clear.
    Good Luck

  • Running windows 7 64 I get this error from downloader.exe The procedure entry point ?GetRegisterInfo@@GXPADHOH@Z could not be located in the dynamic link library transport_dll.dll

    I keep getting this message from downloader.exe running Windows 7 64 bit O/S each time I start Firefox 3.6.9. The procedure entry point ?GetRegisterInfo@@GXPADHOH@Z could not be located in the dynamic link library transport_dll.dll. I have uninstalled Firefox and reinstalled it on a number of occasions but this message box persists. I can still use Firefox by just clicking the message away but it is an annoyance when starting the program. Thank you for any info you can provide me on this.

    Entry point errors can often be fixed by deleting the offending dll, then repairing the component it is part of. If that doesn't help read on...
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    If the advice above doesn't resolve things you could try this alternate version:
    iTunes 12.1.0.71 for Windows (64-bit - for older video cards) - itunes64setup.exe (2015-01-28)
    which is a 64-bit installer for the 32-bit version of the core application, similar to previous 64-bit releases.
    Or roll back to the previous build:
    iTunes 12.0.1.26 for Windows (32-bit) - iTunesSetup.exe (2014-10-16)
    iTunes 12.0.1.26 for Windows (64-bit) - iTunes64Setup.exe (2014-10-16)
    tt2

  • I downloaded the latest version of itunes.  Now I cannot open iTunes.  I receive this error message: The procedure entry point AVCFAssetCreateWithByteStreamAndOptions could not be located in the dynamic link library AVfoundationCF.dll.  Thoughts?

    I downloaded the latest version of iTunes on my PC.  Now I cannot open iTunes.  I receive the following error message: "The procedure entry point AVCFAssetCreateWithByteStreamAndOptions could not be located in the dynamic link library AVfoundationCF.dll"  After pressing the "OK" button I receive a second error message: 'iTunes not installed correctly.  Please reinstall iTunes.  Error 7 (Windows error 127)".  I've uninstalled iTunes and reinstalled to no avail.  I've also eliminated the temp files (per suggestions on the trouble-shooting page) and no luck.  I also tried system restore and that did not fix the problem.  Any thougths on a repair?   

    Taken at face value, you're having trouble with an Apple Application Support program file there. (Apple Application Support is where single copies of program files used by multiple different Apple programs are kept.)
    Let's try something relatively simple first. Restart the PC. Head into your Add or Remove Programs control panel, select "Apple Application Support", click "Change" and then click "Repair".
    If no joy after that, try the more rigorous uninstall/reinstall procedure from the following post. (Although the procedure is for Vista and 7 and you've got XP, just read "Computer" as "My Computer", read "Uninstall a program control panel" as "Add or Remove programs control panel" and assume the system is 32-bit, and you'll be doing the right things.)
    Re: I recently updated to vista service pack 2 and I updated to itunes 10.2.1 and ever since I did that my itunes won't open any more.  Itunes starts but before anything loads a

Maybe you are looking for

  • The Add-ons Manager will not display!

    I've been having an intermittent problem with certain features not displaying at all. First it was that I could not "Customize" my toolbar for quite a while. It finally returned suddenly, in FF v4.01, after being unavailable since v3.5. I've also bee

  • Need help in reading file, got stuck

    The code below works sometimes sometimes gives a message problem finding/reading file public void readData() try DataInputStream dataIn = new DataInputStream(new FileInputStream("c://suneetha//data.txt")); for(i=0;i<3;i++) for(j=0;j<3;j++) goal[j] =

  • There is no Applicationserver on Host with System ID 00?!?

    Hi there, i tried to import a Scenratio from our XI Consolidation System to the Prod System. When i go to tools - > Import Configuration Objects and Import the Scenario the following Error Occurs: As you can see in the Screenshot: http://img10.images

  • Tools Pallette icons don't show up (are hidden) (not shown)

    I install LV8.6 and the Set the Tools pallette for Icons only. The tools pallette don't show the top level icons when the view is set to icons only. The icons are there, they are just not displayed. Does anyone know how to resolve this issue??? I hav

  • Filters Won't Work in CS3 - Get "file system I/O error" message

    Using CS3 on Mac G5, OS 10.4, and some Photoshop filters (e.g. Liquify) won't open, getting the message: "A file system I/O error has occurred." Some filters do open, but others fail. Have tried reinstalling CS3, trashing preferences, unlocked permis