EM Plug-In for Peoplesoft 8.50 Breaking Application Server When Discovering

During the Discover process, even though, the Application Server, web Server, and schedulers are down; the Plug-In for EM PeopleSoft breaks the PeopleSoft environment. We have to rebuild the Applications Server and Scheduler to get this to work. There is a value the must reside in the ubx file and that was changed, but the discovery always breaks the environments..
My question is this: If we have to stop and start the PeopleSoft Architecture through EM, no problem. We just need to be able to explain why the environments keep breaking and we have to keep rebuilding the domains.
8.50.08, Windows 2003, Oracle 64-bit, 11.1.0.7 (Everything is on Windows).
Any insight will be helpful to our situation.
Thanks

I experienced similar thing. The EM plugin for PS break the PS env down. I did not take time yet to investigate, and so far did not use it at all.
Nicolas.

Similar Messages

  • Is there plug-in for JBuilder developing Weblogic web application?

    Is there plug-in for JBuilder developing Weblogic web application?
    thanks in advance
    woodsonli

    Firefox 3.03 - why such an old version? 3.6.12 is the most recent release.
    It is up to Microsoft to fix Outlook Web Access to work with Firefox or to come up with a plugin for Firefox. If Mozilla was to start fixing or write plugins for all the software out there that is made to work with Internet Explorer and not any other browser, they wouldn't have time to work on Firefox.
    There are two Firefox extensions that will open IE in a Firefox tab. Many users install one of these addons to get around problems like you are having with Outlook Web Access.
    IE Tab2
    https://addons.mozilla.org/en-US/firefox/addon/92382
    IE Tab Plus
    https://addons.mozilla.org/en-US/firefox/addon/52809/

  • Open data set for reading excel file on application server in back ground

    open data set for reading excel file on application server in back ground

    hi Vijay,
    I am afraid you won't be able to read from Excel file on Appl. Server.
    ec

  • Function Module for putting Flat File into Application Server

    Hi Pals,
         what is the   Function module for putting my flatfile into application server..
    because i dont have  authorizations to  put my flatfile  into application server directly..
    I know one function mudule is there for that ...so,  can you suggest me.. what is the function module... for that..
    thanks.. and points will be assigned..
    chitti

    Hi,
    well normally you use the method GUI_UPLOAD of class CL_GUI_FRONTEND_SERVICES to upload a file from your client pc. Then you use the abap statements open dataset, transfer and close dataset to put the file to the app-server.
    kind regards
    Siggi

  • License Keys for J2EE-Engine_ORA SAP Web Application Server.

    Hi Experts
    I have installed SAP Net Weaver 04 support release 1 > oracle JAVA System. I don’t have ABAP system on same Hardware so I cant used SLICENSE GUI transaction code, how I generate hardware key, I am performing installation on Windows 2003 server.
    Now I want to add License Keys for J2EE-Engine_ORA SAP Web Application Server. So please give me producer for how to add license key.
    Regards,
    Rahul

    Hi
    Go to  Visual Administrator in the following path:
    <Your Server> -->  Services --> Licensing  Adapter to get the Hardware key , SID etc . Ten apply license in
    https://service.sap.com/licensekeys
    Once you get the license from SAP, do the following
    ->Download the license  file to a local disk
    --> Start the Visual Administrator  Server --> Services --> Licensing Adapter
    --> Use the Install License From File button to upload the file
    --> Select the file with the downloaded license key
    --> Choose Open to continue
    After installation restart J2EE engine
    Thanks
    Prince Jose

  • F4 help for file path in the Application server

    Hi All,
    i want to provide the F4 help so as to enable us to give the file path in the application server (AL11). I'm in version 4.0
    Regards
    Shekhar

    Hi
    Copy paste the following code and see the result
    Here you can see 2 types of open dialogs
    1. Directory View
    2. File View
    Use any one as per your requirement.
    DATA : l_filetable TYPE filetable,
           l_rc TYPE i.
    DATA: l_folder TYPE string,
          l_file TYPE string.
    PARAMETERS: p_folder(100) TYPE c,
                p_file(100) TYPE c.
    *Provide a Dialogue box for getting a folder path
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_folder.
      CALL METHOD cl_gui_frontend_services=>directory_browse
        EXPORTING
          window_title    = 'Select Folder Path'
          initial_folder  = 'D:\'
        CHANGING
          selected_folder = l_folder.
      p_folder = l_folder.
    *Provide a Dialogue box for getting a file path
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
        EXPORTING
          window_title      = 'Select a Text File'
          initial_directory = l_folder
        CHANGING
          file_table        = l_filetable
          rc                = l_rc.
    Reward points generously
    Regards
    Akshay Chonkar
      READ TABLE l_filetable INTO p_file INDEX 1.
      CHECK sy-subrc <> 0.

  • Capacity sizing document for Forms on iAS(Oracle Application Server)

    Hi,
    I need to know from where I can get Capacity planning document for Forms on Oracle Application Server for Intel/Solaris/Aix arch.Please Advise.
    Regards,
    Noman

    Hi,
    we have several developers working with developer suite 10g. Our OAS runs on Linux as yours. All our developers work locally using windows-pc's. We have a samba share we use to move the developed sources to the linux box. On the linux box with have some scirpts to compile the sources and move them to the runtime-directory.
    The final integration test in then done using the installed application on the oas.
    This works without having any problems for more two years now.
    btw: Be aware of the problems you will run into when moving an application from windows to linux:
    -> All filename ar Case-sensitive
    -> the writing of module-names in OPEN_FORM, NEW_FORM, CALL_FORM must match exactly the filename (in other words: call_form, open_form and new_form is also case-sensitive
    -> Attached librarys are also case-sensitive, even if there are shown in uppercase in the module-navigator.
    hope this helps.
    Edited by: aweiden on 08.11.2008 18:05

  • ABAP code for wrting a file to application server

    <Moderator Message: We are not here to do your job for you>
    Hi All,
    i have a requirement to get the data from some other ABAP program and this data has to be written in one of the files present in application server.
    please provide me the exact ABAP code for this...
    Edited by: Siegfried Szameitat on Dec 17, 2008 10:40 AM

    this has to be done using a process chain

  • Function Module for creating file name in Application Server

    Hi Guys,
    Can you suggest me a function module to generate a file name for a flat file to be save on application server using DATASET. 
    Required filename format : <table name >.<times tamp>.TXT
    Thanks in advance.

    Hi,
    Please try this ...
    DATA: BEGIN OF FILE1,
            CONST1(01) TYPE C VALUE '_',
            FIELD1     LIKE SY-DATUM,
            CONST2(01) TYPE C VALUE '_',
            FIELD2     LIKE SY-UZEIT,
          END OF FILE1.
    DATA: FILENAME LIKE EDI_PATH-PTHNAM.
    MOVE SY-DATUM  TO FILE1-FIELD1.
    MOVE SY-UZEIT  TO FILE1-FIELD2.
    CONCATENATE <table name> FILE1 INTO FILENAME.
    Regards,
    Ferry Lianto

  • DB/System requirements for prototyping a SAP web application server.

    Hi,
    We are I a phase to develop a prototype of a WEB application server. I am very new to this concept and I want to know what is the SAP basic DB / System requirements to develop / prototype a WEB application server. If any links available to understand more about the SAP WAS will be useful for the next steps.
    Thanks
    With Regards
    Anil

    Hi Sri,
    to see the OS support go the Product Availability Matrix (PAM) which can be found here: http://service.sap.com/pam
    As for the J2EE specs, both SAP Web AS 640 (NW04) and SAP Web AS 700 (NW04s) are J2EE 1.3 compliant, and both are currently released. The next version which will be out sometime next year NW2007 is planned to be JEE 5 compliant.
    Cheers,
    Jeff

  • TS2634 1st gen iPad has suddenly quit showing that it's charging.  I found that if it's shut it down and plugged in for 12+ hours, it will charge, but when in use, the battery drains quickly.  When connected to the Mac, it doesn't link with iTunes.

    Is this a problem that can be easily fixed?  I'm guessing it's a problem with the charger connector, possibly??

    The quickest way (and really the only way) to charge your iPad is with the included 10W USB Power Adapter. iPad will also charge, although more slowly, when attached to a computer with a high-power USB port (many recent Mac computers) or with an iPhone Power Adapter (5W). When attached to a computer via a standard USB port (most PCs or older Mac computers) iPad will charge very slowly (but iPad indicates not charging). Make sure your computer is on while charging iPad via USB. If iPad is connected to a computer that’s turned off or is in sleep or standby mode, the iPad battery will continue to drain.
    Apple recommends that once a month you let the iPad fully discharge & then recharge to 100%.
    How to Calibrate Your Mac, iPhone, or iPad Battery
    http://www.macblend.com/how-to-calibrate-your-mac-iphone-or-ipad-battery/
    At this link http://www.tomshardware.com/reviews/galaxy-tab-android-tablet,3014-11.html , tests show that the iPad 2 battery (25 watt-hours) will charge to 90% in 3 hours 1 minute. It will charge to 100% in 4 hours 2 minutes. The new iPad has a larger capacity battery (42 watt-hours), so using the 10W charger will obviously take longer. If you are using your iPad while charging, it will take even longer. It's best to turn your new iPad OFF and charge over night. Also look at The iPad's charging challenge explained http://www.macworld.com/article/1150356/ipadcharging.html
    Also, if you have a 3rd generation iPad, look at
    Apple: iPad Battery Nothing to Get Charged Up About
    http://allthingsd.com/20120327/apple-ipad-battery-nothing-to-get-charged-up-abou t/
    Apple Explains New iPad's Continued Charging Beyond 100% Battery Level
    http://www.macrumors.com/2012/03/27/apple-explains-new-ipads-continued-charging- beyond-100-battery-level/
    New iPad Takes Much Longer to Charge Than iPad 2
    http://www.iphonehacks.com/2012/03/new-ipad-takes-much-longer-to-charge-than-ipa d-2.html
    Apple Batteries - iPad http://www.apple.com/batteries/ipad.html
    Extend iPad Battery Life (Look at pjl123 comment)
    https://discussions.apple.com/thread/3921324?tstart=30
    New iPad Slow to Recharge, Barely Charges During Use
    http://www.pcworld.com/article/252326/new_ipad_slow_to_recharge_barely_charges_d uring_use.html
    Tips About Charging for New iPad 3
    http://goodscool-electronics.blogspot.com/2012/04/tips-about-charging-for-new-ip ad-3.html
    Prolong battery lifespan for iPad / iPad 2 / iPad 3: charging tips
    http://thehowto.wikidot.com/prolong-battery-lifespan-for-ipad
     Cheers, Tom

  • Configure ePortfolio for Crystal Reports 9 Report Application Server for Users to Run Reports

    Post Author: lacc
    CA Forum: Crystal Reports
    Sorry for this basic question but Crystal 9 is no longer supported and I am having trouble finding any documentation about how to configure ePortfolio let alone obtain any help from Crystal support.
    I have a set of .RPT files and would like the simplest and quickest method of distribution to the users with as little coding and fuss as possible.
    We have the ePortfolio page up and running but the users can only view the reports from ePortfolio. They also need to be able to run (refresh) the reports and enter the parameters which have already been built into the .RPT file. Providing access to the deactivated Schedule and History links would also be useful though not a priority unlike access to refresh and enter parameters.
    I usually create reports to run from within an application which I can handover to the application developer so working out how to distribute via this method is pretty new to me.
    I've also had a quick look at the Crystal Reports Viewer XI which appears to be backward compatible for Crystal 9 reports however this also appears to only allow users to view, not generate, reports.
    Any recommendations? Or could you point me in the direction of some documentation that might assist?

    Post Author: lacc
    CA Forum: Crystal Reports
    I think I've worked out that we are actually using ePortfolio Lite. Would anyone be able to confirm if there are any configuration options for ePortfolio Lite? I think we only have the Crystal Reports 9 Advanced version, not Crystal Reports 9 Enterprise. Would this mean that we therefore only have ePortfolio Lite not ePortfolio?

  • Does license for SOA Suite 11g include application server

    I am looking through the SOA 11g release information and it does not appear to include a license for the WebLogic server. Can anyone confirm that I need to license the appropriate WebLogic 11g base to run SOA Suite 11g on separately. I wish I could find a definitive statement about this on the Oracle web site or in documentation.

    Good point. There used to be some (licensing) clarity in the sense that Oracle's middleware applications (i.e. things higher in the middleware food chain) required the underlying Oracle stack and thus the embedded license scenario.
    Perhaps (and somewhat ironically) the situation gets more cloudy now that OFM is really and truly "hot pluggable" (i.e. in the sense you can run on other vendor or OSS containers for instance).
    Architecturally, I respect Oracle's Hot Pluggable stance and think it's the right thing to do, but practically-speaking I always advise use of Oracle's container etc. because that is naturally where the development and most intense QA and support occurs. This is not to say that Oracle doesn't support other hosting options well, only that the laws of physics (still) apply.
    Todd

  • API call for launching Sun Java System Application Server

    Hi,
    I want to use an API call to start the Sun Application server, so that the server runs in the same JVM as my java aplication.
    Please advise me how to do this.
    Thank you
    Komal

    Here is sample code to start application server if you are using SJSAS Platform Edition 8.1 2005Q2 Update 2
    http://docs.sun.com/app/docs/doc/819-2642/6n4tspp9t?a=view#beaps

  • Environment settings for a web-app in Application Server 6.0 SP3

    Hi all,
    I'm trying to pass java specific environment variables to a servlet in
    IAS, but I fail to acces them by a System.getProperty(..).
    I've seen that the Deployment Tool converts user-defined environment
    properties
    in <env-entry> tags (in web.xml) but <env-entry> puts stuff into the
    JNDI context, not System.getProperty().
    Is there a way to pass environment variables to servlet and acces them
    by System.getProperty() ?
    Thanks.
    Jean-Marie.

    Hi all,
    I'm trying to pass java specific environment variables to a servlet in
    IAS, but I fail to acces them by a System.getProperty(..).
    I've seen that the Deployment Tool converts user-defined environment
    properties
    in <env-entry> tags (in web.xml) but <env-entry> puts stuff into the
    JNDI context, not System.getProperty().
    Is there a way to pass environment variables to servlet and acces them
    by System.getProperty() ?
    Thanks.
    Jean-Marie.

Maybe you are looking for

  • How do i stop sharing apps from one phone to another one

    can some one please help i cant figure out how to stop sharring my game apps with my daughter

  • How to create a variant and execute a Z-program in background

    Hello, I have created a specific transaction to update relationships between partners (BP). For this i have create a screen painter, but as the run time is long i want to execute the program in background. How to save a variant and to execute the rep

  • Update sequence number in PLAF table.

    Hi There is a requirement where I have to update sequence number for Planned Order in ECC. Sequence Data is stored in PLAF-SEQNR field [Seq. number order]. BAPI_PLANNEDORDER_CHANGE did not work for me. There are only 27 field which i think we can edi

  • Transport of  Charasteristics & Class

    Dear Gurus, I have created Characteristics usting TCode CT04 & Class using TCode AL05.(Navigation path is , SAP menu-Logistics-Central Functions -Document Management System -Classification -Master Data) But I am not able to transport to the same.Can

  • Content for itunes in Canada

    My obvious question is are you waiting approval from the CRTC to use all the features the US Store has? If so when, looks like iphone functionality will also be hampered by borders. When you purchse an ipod, you take off the sticker displaying "Don't