CPA Cache and J2EE server issues

Hi Experts,
I am having a File to File scenario where the sender channel picks up  csv files ( around 3MB each). Once I finished the configuration of the scenario, the J2EE server started to restart continuously five times and stops with a out of memory error.
After going through the defaultTrace.trc file in logviewer, this is the first error that I could see after starting the J2EE server.
CPA Cache not updated with directory data, due to: Couldn't open Directory URL (http://pi-dev:50000/dir/hmi_cache_refresh_service/ext?method=CacheRefresh&mode=C&consumer=af.pid.pi-dev), due to: HTTP 503: Not Ready
Source Name: com.sap.aii.service.cpa.impl.cache.CacheManager.I checked the RFC destination of INTEGRATION_DIRECTORY_HMI and also checked if PIDIRUSER and PIAFUSER are locked or not. But they are not locked.
After the above error, the errors just build up probably because of the adapter framework not firing up. One of the error is:
Failed to lookup object from JNDI for name localejbs/AFWListener within app level thread. Reason: com.sap.engine.services.jndi.persistent.exceptions.NameNotFoundException: Path to object does not exist at localejbs, the whole lookup name is localejbs/AFWListener.
Source: com.sap.aii.af.ra.ms.runtime.Resources
I also increased the max thread count in the Application Thread Manager to 250 in the Config tool. I kept the heap sizes as posted above.
Any help will be greatly appreciated.
Regards

Hey,
>the J2EE server started to restart continuously five times and stops with a out of memory error.
Strange,  Can you test with  less than 1 MB  file  and let us know the status, Is  SAP PI  & ECC  are installed in the same Server.
Cheers
Agasthuri

Similar Messages

  • What is their difference betwwen  Sun ONE Application Server  and J2EE serv

    Sun ONE Application Server is Sun implementation of J2EE server.
    But it seems even no Sun ONE Application Server, use J2EE SDK command
    j2ee -verbose
    we still can launch an Application Server that support EJB, JSP....
    what is their difference betwwen Sun ONE Application Server and J2EE server provided by J2EE SDK ?
    Thanks,

    Sun ONE generally refers to the Sun ONE Application Server version 7.x. This is a J2EE 1.3 compliant application server from Sun. Sun also released a Reference Implementation version (RI) as a requirement of the J2ee 1.3 spec. This is the J2EE server you are refering too. The Sun ONE Application Server 7 is a more robust production ready App Server.
    Going forward, Sun combined the 2 seperate groups to include just 1 release. The J2EE 1.4 Reference Implementation is the Sun Java System Application Server Platform Edition version 8. SJS AS 8 PE is both free and production ready. Other version will include High Availability, Managing and Monitoring features.
    -Jeff

  • Difference between Presentation Server Cache and BI Server Cache

    Hello Experts,
    What is the Diff b/w Presentation Server Cache and BI Server Cache
    Thanks,
    S Gouda

    Hello,
    Okay, what do you want to do about caching at BI server and Presentation server.
    A nQSXXXX.tmp is a temporary cache file which maintained by the BI Server for an analysis request by a user and is kind of shared data between the OBI Server and the OBI Presentation server. This is refereed as the 'Cursor Cache' which could be managed by going thru Administration> Manage Sessions > Clear Cursor Cache.These .tmp files are it is not related to BI Server cache.
    By Default, the BI Server Cache is stored in the and stored as NQSxxxxx.tbl files. [middlware_home]/instances/instance1/bifoundation/OracleBIServerComponent/coreapplication_obis1/cache]
    Caching occurs by default at the subrequest level, which results in multiple cache entries for some SQL statements. Caching subrequests improves performance and the cache hit ratio, especially for queries that combine real-time and historical data.
    Below are some useful links for cache management in OBIEE 11g.
    http://oraclebisolutions.blogspot.com/2013/02/obiee-11g-obi-server-and-presentation.html
    http://drazda.blogspot.com/2012/10/obiee-11g-cache-management.html
    http://allaboutobiee.blogspot.in/2012/03/cache-management-purging-cache.html
    Pls mark itf this helps. Else post the exact questions you have about this post.
    Thanks,
    SVS

  • BACK button difference between Weblogic and J2EE server

              Hi Everyone,
              I have a J2EE application implemented mainly with JSP and EJB, which can run on
              both J2EE and Weblogic Servers seperately. When running on either of them, the
              server acts as both a web and application server.
              It is my understanding that it first goes to the cache in the browser when you
              try to revisit the previous page (JSP files) by clicking the BACK button in the
              browser. If the page is there, it just displays that page from the cache. If not,
              it will go to the server to retrive (execute) that page.
              When I run my application over J2EE server and try to visit the previous page
              by using the BACK button in the browser, it does this way correctly. But when
              I run my
              application over Weblogic server, it always goes to the server and execute the
              JSP file again in the server, rather than simply retriving that page from the
              cache. If your JSP file is simply doing data retriving, that is fine. But if it
              is doing data inserting, it will insert your data again. This is not good.
              I know that the Weblogic server is mainly an application server. But I am not
              sure when it acts as a web server,
              why it works differently from J2EE which also can acts as both an pplication and
              a web server. Does anyone have any ideas or suggestions about this?
              Thanks a lot.
              -John
              

    I believe that the correct behaviour is to rerun the .jsp page unless the
              user specifically sets the header to allow the browser to cache it. That
              being said... You should never make a web application that can be broken by
              the user hitting "reload" or the browser automatically retrying. An
              application like this is very fragile and will probably break in practice.
              I suggest that you either make all your pages idempotent or you keep track
              through a hidden form field a transaction id and only allow the execution of
              any particular transaction once. As far as WebLogic not being a good web
              server, I would say that with 6.1 you get most of the management advantages
              of using a separate web server and also most of the static file performance
              you will find with apache or IIS.
              Sam
              "John Wang" <[email protected]> wrote in message
              news:[email protected]...
              >
              > Hi Bruno,
              >
              > Thank you for your prompt reply.
              >
              > I think I might not explain my problem clearly. My application
              > is in developing stage now. So we are just working on a single
              > serevr which can acts as both a web and an application server.
              > Later we are going to distribute our application into a web and an
              application
              > seperately.
              >
              > As you said, it seems that my problem is because the weblogic server is
              mainly
              > an application server and does not act as a web server very well. So if I
              distribute
              > my application into both a web and an application servers, it should be
              fine,
              > since it is ok when I run it over the J2EE server. Is this correct?
              >
              > In other words, I can say that the J2EE server is configured better in its
              role
              > as a web server than the weblogic server, isn't it?
              >
              > In addition, all my JSP files are only dealing with catching
              > data from user input and displaying data. Data inserting is done
              > by EJB and JavaBeans through the JSP files. Because those JavaBeans in the
              JSP
              > files, each time when I use the BACK button, it will invoke those
              JavaBeans and
              > EJBs through the JSP files and do things like inserting in the background.
              That
              > is what I mean in my previous message.
              >
              > Thanks.
              >
              > -John
              >
              > "Bruno" <[email protected]> wrote:
              > >
              > >Hi John,
              > >
              > >You should use a real Web Server on the front side of your application.
              > >Weblogic
              > >is mainly an application server that has to be used in middle tier. But
              > >it's not
              > >a good Web Server. Like almost all J2EE application. You should use a
              > >separate
              > >web server like apache, optimised to serve static file. Furthemore, this
              > >approach
              > >will enable you to physically separate the two servers for a better
              security.
              > >Anyway, usually jsp files are dynamic files and are not intended to be
              > >totally
              > >cached (except in special cases). I think you should just use JSP to
              > >display data.
              > >If you want to do data inserting, you should use EJB or JavaBeans for
              > >that rather
              > >than JSP.
              > >
              > >Hope it helps
              > >
              > >Regards
              > >
              > >"John Wang" <[email protected]> wrote:
              > >>
              > >>Hi Everyone,
              > >>
              > >>I have a J2EE application implemented mainly with JSP and EJB, which
              > >>can run on
              > >>both J2EE and Weblogic Servers seperately. When running on either of
              > >>them, the
              > >>server acts as both a web and application server.
              > >>
              > >>It is my understanding that it first goes to the cache in the browser
              > >>when you
              > >>try to revisit the previous page (JSP files) by clicking the BACK button
              > >>in the
              > >>browser. If the page is there, it just displays that page from the
              cache.
              > >>If not,
              > >>it will go to the server to retrive (execute) that page.
              > >>
              > >>When I run my application over J2EE server and try to visit the previous
              > >>page
              > >>by using the BACK button in the browser, it does this way correctly.
              > >>But when
              > >>I run my
              > >>application over Weblogic server, it always goes to the server and
              execute
              > >>the
              > >>JSP file again in the server, rather than simply retriving that page
              > >>from the
              > >>cache. If your JSP file is simply doing data retriving, that is fine.
              > >>But if it
              > >>is doing data inserting, it will insert your data again. This is not
              > >>good.
              > >>
              > >>I know that the Weblogic server is mainly an application server. But
              > >>I am not
              > >>sure when it acts as a web server,
              > >>why it works differently from J2EE which also can acts as both an
              pplication
              > >>and
              > >>a web server. Does anyone have any ideas or suggestions about this?
              > >>
              > >>Thanks a lot.
              > >>
              > >>-John
              > >>
              > >
              >
              

  • Error while starting NW server and j2ee server is getting stopped.

    Hi,
    I am working in NW04s. It contains ABAP sp5 and java sp9 versions. The server was working find till ten days back. After the gap of ten days, when i started to work on this SAP system, i was not able to start the j2ee server. During the startup of the server itself, j2ee server is getting stopped and dispatcher also. Following is the error bunch I got in trace. If any one has any idea about this, please reply this soon.
    [EXCEPTION]
    #1#com.sap.engine.frame.ServiceException: <Localization failed: ResourceBundle='com.sap.engine.frame.KernelResourceBundle', ID='UME initialization failed.', Arguments: []> : Can't find resource for bundle java.util.PropertyResourceBundle, key UME initialization failed.
         at com.sap.security.core.server.ume.service.UMEServiceFrame.start(UMEServiceFrame.java:372)
         at com.sap.engine.frame.ApplicationFrameAdaptor.start(ApplicationFrameAdaptor.java:31)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    Caused by: com.sap.security.core.persistence.datasource.PersistenceException: Connect to SAP gateway failed
    Connect_PM  TYPE=A ASHOST=garden SYSNR=00 GWHOST=garden GWSERV=sapgw00 PCS=1
    LOCATION    CPIC (TCP/IP) on local host with Unicode
    ERROR       connection to partner '15.70.176.191:sapgw00' broken
    TIME        Mon Nov 13 12:45:30 2006
    RELEASE     700
    COMPONENT   NI (network interface)
    VERSION     38
    RC          -6
    MODULE      nixxi.cpp
    LINE        4207
    DETAIL      NiIRead
    SYSTEM CALL recv
    ERRNO       10054
    ERRNO TEXT  WSAECONNRESET: Connection reset by peer
    COUNTER     4
         at com.sap.security.core.persistence.datasource.imp.R3PersistenceBase.newPersistenceException(R3PersistenceBase.java:178)
         at com.sap.security.core.persistence.datasource.imp.R3PersistenceBase.init(R3PersistenceBase.java:446)
         at com.sap.security.core.persistence.imp.PrincipalDatabagFactoryInstance.<init>(PrincipalDatabagFactoryInstance.java:356)
         at com.sap.security.core.persistence.imp.PrincipalDatabagFactory.newInstance(PrincipalDatabagFactory.java:156)
         at com.sap.security.core.persistence.imp.PrincipalDatabagFactory.getInstance(PrincipalDatabagFactory.java:109)
         at com.sap.security.core.persistence.imp.PrincipalDatabagFactory.getInstance(PrincipalDatabagFactory.java:56)
         at com.sap.security.core.InternalUMFactory.initializeUME(InternalUMFactory.java:266)
         at com.sap.security.core.server.ume.service.UMEServiceFrame.start(UMEServiceFrame.java:279)
         ... 6 more
    #1.5#000E7FFD8B5D001D00000011000008540004221BAAB8047C#1163402130490#com.sap.engine.core.Framework##com.sap.engine.core.Framework#######SAPEngine_System_Thread[impl:5]_54##0#0#Fatal#1#/System/Server#Plain###Critical shutdown was invoked. Reason is: Core service com.sap.security.core.ume.service failed. J2EE Engine cannot be started.#

    > ceException: Connect to SAP gateway failed
    > Connect_PM  TYPE=A ASHOST=garden SYSNR=00
    > GWHOST=garden GWSERV=sapgw00 PCS=1
    >
    > LOCATION    CPIC (TCP/IP) on local host with Unicode
    > ERROR       connection to partner
    > '15.70.176.191:sapgw00' broken
    You can ping this machine from your portal-nodes and you can connect to the port "sapgw00" (should be 3300) ?
    > ##0#0#Fatal#1#/System/Server#Plain###Critical
    > shutdown was invoked. Reason is: Core service
    > com.sap.security.core.ume.service failed. J2EE Engine
    > cannot be started.#
    This is the reason why your j2ee-server stops - the portal can't connect to the ume. What did you configured as the ume - the portal database, a ldap-server or a r3-system ?
    Regards
    Norman

  • Need help:Urgent:MS SQL Server and J2EE Server

    Hello,
    i am developing simple bean managed persistence bean. i want to know how could i use microsoft SQL Server as my database with ejb's in J2EE. i don't want to use cloudscape rather i want to connect through jdbc bridge with sql server. can any body help me out ?
    i have developed DSN for my database with the name of DsnProduct and user name for DB is guest and password is guest123.
    so do i have to change configuration is my J2EE server . or put some additional code. so far i have added the following line in my implementation class
    private String dbName= "java:comp/env/jdbc/ProductDB";
    DataSource ds = (DataSource) ic.lookup(dbName);
    con = ds.getConnection("guest","guest123");
    moreover in server configuration i have added driver
    sun.jdbc.odbc.JdbcOdbcDriver
    and also provide the following JNDI Name
    jdbc/ProductDB
    and
    it's url is
    jdbc:odbc:DsnProduct
    i am thankfull for your support.
    [email protected]

    hi llturro,
    Thanks for answering my question. I have tried out what you suggested, but I still can't fix my problem. The following are the messages that display when I try to run my servlet. It seems that the DataSource, Connection and Statement are ok, however when it comes to the ResultSet the error message appear. What's wrong with my ResultSet coding ?
    ResultSet rs = stat.executeQuery("SELECT ISBN FROM BOOKSINFO WHERE ISBN='"+primarykey+"'");
    setEntityContext Method
    Find by primary key
    DataSource OK
    Connection OK
    Primary Key = 013-00-675721-9
    Statement OK
    java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
    java.rmi.RemoteException: Unknown Exception/Error thrown by EJB method.; nested exception is:
    java.lang.NullPointerException
    java.rmi.RemoteException: Unknown Exception/Error thrown by EJB method.; nested exception is:
    java.lang.NullPointerException
    java.lang.NullPointerException
    <<no stack trace available>>

  • Reporting and analysis Server Issue

    I have Installed OEPM 11.1.2 and configured everything and all of them were successfully configured except for Reporting and analysis where it failed to deploy to the application server. What could be the issue. I couldn't log in to workspace as it says the reporting and analysis server is not up and running at port 6800.
    When I validated the setup it advises me to start the web analysis application and run the configuration again but there is no specific Web Analysis service in listed in the services window. Whatever the services are listed I've started and ran the configuration again but no success. Am i forgetting something?
    Please help me with this guys. Thank You.
    Junaid

    Hi Junaid,
    OS is OK!
    It seems some services not configured correctly; I can just comment if possible then you can stop all hyperion services and reconfigure most of the time it resolve issues related to Configuration.
    Thanks
    Focusthread Hyperion Trainer
    [http://focusthread.com/training]

  • Clients and J2EE Server

    I am not shure, I thought that you don't hav to have a j2ee server installed for every client who wants to send and receive messages with the Help of JMS, but in the JMS tutorial stands on page that 57 that "JMS client programms can communilate with each other when they are running on different systems in a network. These systems must be visible to each other by name and must both running the j2ee server"
    I wantet to make an Applet wich is a JMS Client, who communikates with the server, is this possible? And if yes, does every person who wants to use the applet have to have installed the j2ee server?

    in this case, j2eeserver is used for the jndi lookup, not the cloudscape, jsp, webserver, and all that other crup.
    there is no reason not to connect to a remote jndi listener, rather than going thru a local listener which passes you off to the remote one.
    i have avoided jndi recently, and can help in websphere MQ, otherwise i am not sure.
    i would like also like to know.

  • Lightroom and preview cache and other related issues.

    So I went to open up LR on Friday afternoon (1/30/15) and it wouldn't open. I can't think of anything I had done differently to it, nothing new with my computer. But when I clicked to open it, I got a screen that read, "The Lightroom catalog named 'Lightroom 5 Catalog' cannot be opened because another application already has it opened." I sought some outside advice. I made sure there was nothing even open in the task manager (after having already shut down and re-booted my computer a couple of times) and then opened my most recent backup catalog. I also deleted the "lock" file.
    I was then able to import new photos to LR, but noticed that one folder was missing--the one from 1/29/15. That is likely the last folder I was working in before this whole mess started. After doing some clicking, I could see that those pictures were still in a catalog and on my hard drive, but I could not open a catalog with them in it. If I tried, I got a screen that read, "Lightroom encountered an error when reading from its preview cache and needs to quit."  On the advice of a computer guy and with the reassurance that I can always restore if necessary, who told me to delete the preview cache file. I thought that's what I did, but now I'm not sure. I deleted a huge file folder entitled "Lightroom 5 Catalog previews.lrdata.  This did allow me to open LR, but I had a few days' worth of missing folders and decided to restore what I had just done and seek advice again. Now I'm being asked this if I want to merge the deleted folder with a previews folder from 8/23/13.
    Do I want to merge these? The August 2013 date is about the time I purchased LR. I have done nothing since seeing this.  So I first ask if I should merge these and restore the files OR just keep the deleted previews folder in the recycle bin, then have LR find the missing folders.  And secondly, what the heck happened to make this happen in the first place?  Any help is greatly appreciated.  Thank you!

    Thank you for your reply.  Very simple and helpful!
    However, I am now a bit lost as my catalog is messed up.  I am missing folders in the catalog that I have open.  When I helped LR find them on my hard drive, I got a popup question that read, "The selected folder or one of its subfolders is already in Lightroom.  Do you want to combine these folders.  I clicked "Merge" and then the folder completely disappeared from the list of folders.  I still see it in the correct place on my hard drive, but I can't get to it from LR now.  I assume those missing folders (and another folder full of pics I imported but now don't see listed in the catalog) are in another catalog as I think I have been working with the backup catalog that I opened at the beginning of this whole mess.  Can you help me get everything current and in one catalog again?  Thank you.

  • Timezones and client/server issue

    We have a client process which runs on Windows PCs which are scattered among different timezones. These clients send data periodically to a server.
    The data includes timestamps indicating when certain events happened on each client PC. We need to know the timezone for each PC so that we can display those timestamps (stored on the server in GMT) in the timezone of each PC.
    The tricky bit: the clients are in C++ and the server is in Java. We cannot assume a JRE is installed on the clients.
    Our C++ client code can get the Windows timezone name as a string and pass that to our Java server code. What isn't obvious is how to translate that string to a Java TimeZone object. For example, the Windows string "Central Standard Time" maps to the Java TimeZone ID String "America/Chicago".
    I've done enough research to discover that the (relatively new) jre/lib/tzmappings file contains exactly these mappings. But it appears that the code which relies on that file is quite "under the hood" in java -- most likely in the unpublished sun.util.calendar package.
    Does anyone know of a way to map an O/S-specific timezone string to a Java TimeZone object? I know I can write my own code to read the tzmappings file myself, but that file explicitly states that "No applications should depend on this file in any form." I'd prefer a kosher solution.
    All ideas, suggestions, thoughts, links, etc. appreciated. Thank you!

    Thanks for the comments, everyone. Some responses:
    It seems the exact opposite to me. Relying on yourown file rather
    than using a file that explictly says "Don't useme!" seems less brittle.
    Both are brittle. By relying on the "one built into
    Java" I can rely on timezone additions and changes
    made by Sun without doing anything. Otherwise I have
    to be responsible for maintaining mine over time,
    noticing (for example) whenever Sun updates theirs
    and then updating and re-releasing mine.
    You either are going to be mixing data or not.Can you clarify for me what you mean by "mixing
    data"?
    We were planning to store all timestamps in the
    database in GMT with a timezone code. This allows
    queries to be based on normalized time (all use GMT),
    yet also allows us to know when an event happened in
    "local time" (on the PC where the event occurred) by
    converting the GMT value using the timezone code.There is a difference between doing a query and displaying the data.
    In terms of the query you don't need to access anything (special files.) You do the query in SQL, nothing more.
    In terms of displaying the data you have a number of choices.
    1. Don't display the time at all.
    2. Display it in reference to a specific timezone.
    3. Display each time in reference to the timezone that originated it.
    The last choice is not usable for users when the data is mixed in one display.
    >
    it is going to be a very large mistake to attemptto display each time in
    a different timezone (without categorizing it someother way.) It will be
    non-sensical to the users.What about when the clients ARE in various timezones?
    We have GUI screens and reports which show events on
    PCs in various continents. For example, showing:
    Again you are going to be doing one of the following.
    1. Data that is relative to them only.
    2. Data from all zones.
    If the first then just display the time relative to them in the first place (use the default for the VM.)
    If the second then you are back to the problem that I discussed above.
    MachineA 09:01 Service Started
    MachineA 10:32 Service Stopped
    MachineB 10:33 Service Stopped
    makes it look like the events (Service Stopped)
    happened about a minute apart on MachineA and
    MachineB. But they didn't, in this example, because
    the machines are in two different timezones. A user
    can't tell that above. But this clarifies it:
    MachineA 09:01 PST Service Started
    MachineA 10:32 PST Service Stopped
    MachineB 10:33 EST Service StoppedNote that I am not suggesting that you do not store your data in an absolute sense.
    But storage and display are two different things. And your example is flawed unless your database data is flawed.
    For example if you store the time in the database as GMT then the only way you can get case 1 is if you use the local timezone for each and then don't display the timezone.
    >
    In fact, the service stopped on MachineB before
    MachineA.
    The question begging to be asked is: what does the
    user expect to see? A list of events sorted relative
    to "wall time" (shown above), or a list sorted by
    absolute time? The latter looks like this:I think you will find that most users expect time to be relative to a certain timezone when times from different timezones are mixed in the same display.
    If grouped by timezone then they will accept timezone relative times even when there are different view with different timezones.

  • NWDS and J2ee server Installation

    Hi all,
    Iam new to web dynpro java .To download the necessary software for it i went to sap downloads page in SCN . i entered into Netweaver main releases. I am not understanding which version to down load . I want only web dynpro java and portal server.my system is having  window xp Sp3 OS  with 1 GB ram and 50 Gb freespace in hard drive. in some blogs i saw that only 1 gb is necessary for installing but in some it is 2GB min . what are the correct system requirements and
    which version of Netweaver is more suitable for installing in my system  and right place to download sufficient software .when
    i download also it is asking for going sap service market place. is there any other way to download necessary soft ware for practicing webdynpro java and portal server.......
    Thanks and Regards
    Prasad

    For learning Web Dynpro Java and Portal you should download the CE release: http://www.sdn.sap.com/irj/scn/nw-ce-downloads. From there you can download 7.1 and 7.2 trials. I would go for the 7.2 trial ("SAP NetWeaver Composition Environment 7.2 Trial Version").
    br,
    Tobias

  • J2EE server issues

    Hi, I am new to flex.I am following the tutorial "Flex in a
    week"
    There re problems that ia m facing.
    1.The arrayCollection "selectedOptions" which was declared in
    the AdobeODT.mxml cannot accessible within the
    ReservationForm.mxml. I got the error 'Access of undefined
    property'
    2.Up to the chapter vallidating formdata all things are
    correct.But when installed the lcds and reopen the flex project i
    am unable to view the output.
    I think it is the problem with the installtion of J2EE.
    Please advise me.

    The selectedOptions ArrayCollection should be declared in
    both ReservationForm.mxml and AdobeODT.mxml.
    LCDS and ColdFusion 8 were difficult to set up. I never set
    up a server until now. Take a break from Day 3 and check out Blaze
    DS. Download the turnkey solution and do the exercises. Then go
    back to Day 3. Worked for me, anyway.
    Link to turnkey download:
    http://www.2shared.com/file/4204375/2060f179/up_to_9.html

  • Forms and reports server issue

    Hai
    iam new to oracle applications.i was asked to solve this issue . i get the error when i start the oracle applications.i get the error in the forms,report and apache webserver.
    the file parameter.config could not be located or read.
    for that the solution was given in the metalink as
    SolutionTo implement the solution, please execute the following steps:
    1. stop all APPS-Tier Services
    2. execute following script to identify the current value :
    select t.PROFILE_OPTION_NAME, t.USER_PROFILE_OPTION_NAME,v.PROFILE_OPTION_VALUE
    from FND_PROFILE_OPTIONS p,FND_PROFILE_OPTION_VALUES v,FND_PROFILE_OPTIONS_TL t
    where
    p.profile_option_id=v.profile_option_id
    and p.PROFILE_OPTION_NAME=t.PROFILE_OPTION_NAME
    and p.PROFILE_OPTION_NAME like '%DEFAULT_ORG_ID%';
    3. Verify the defined values for Organizations via the output 'adutconf.lst', created via the script
    $AD_TOP/sql/adutconf.sql
    4. Modify the value for the 'DEFAULT_ORG_ID' in tables FND_PROFILE_OPTION_VALUES and FND_PROFILE_OPTIONS_TL with a valid value and commit it.
    5. start the APPS-Tier Services
    but i donot understand this .i have confusion with the 3rd,4th and 5th steps.so plz explain me these steps in detail to me
    Regards
    Orauser123

    hai hussein
    i executed the script adutconf.sql and checked the fie adutconf.lst for the organisation value but i donot find any value like that
    i have placed last few lines of the adutconf.lst after executing the script adutconf.sql in $AD_TOP/sql
    JL JL jlcrloc 11.5.41 Installed 06-Jan-2000
    JL JL jldoloc 11.5.41 Installed 06-Jan-2000
    JL JL jlecloc 11.5.41 Installed 06-Jan-2000
    JL JL jlgtloc 11.5.41 Installed 06-Jan-2000
    JL JL jlhnloc 11.5.41 Installed 06-Jan-2000
    JL JL jljmloc 11.5.41 Installed 06-Jan-2000
    JL JL jlmxloc 11.5.41 Installed 06-Jan-2000
    JL JL jlniloc 11.5.41 Installed 06-Jan-2000
    JL JL jlpaloc 11.5.41 Installed 06-Jan-2000
    JL JL jlpeloc 11.5.41 Installed 06-Jan-2000
    JL JL jlprloc 11.5.41 Installed 06-Jan-2000
    JL JL jlpyloc 11.5.41 Installed 06-Jan-2000
    JL JL jlsvloc 11.5.41 Installed 06-Jan-2000
    JL JL jlttloc 11.5.41 Installed 06-Jan-2000
    JL JL jluyloc 11.5.41 Installed 06-Jan-2000
    JL JL jlveloc 11.5.41 Installed 06-Jan-2000
    52 rows selected.
    --> Registered Data Groups
    ID Data Group Name Dflt Created By Updated By
    -99 Multiple Reporting Currencies No 08-11-1997 1 08-11-1997 1
    0 Standard Yes 29-04-1992 1 29-04-1992 1
    2 rows selected.
    --> Base language and other Installed languages
    Type Code NLS Language
    Base US AMERICAN
    1 row selected.
    --> NLS Settings
    NLS_NCHAR_CHARACTERSET: AL16UTF16
    NLS_CHARACTERSET......: UTF8
    NLS_DATE_FORMAT.......: DD-MON-RR
    NLS_NUMERIC_CHARACTERS: .,
    NLS_LANGUAGE..........: AMERICAN
    NLS_SORT..............: BINARY
    --> Replication Package Installed?
    Not Installed
    --> End of Application Information Gathering
    i dont know where to find the defined values for organisations.so please help me to solve this issue.iam confused

  • Timesheet and project server issue

    Hi there,
    For my timesheet in PWA 2013, Team members can fill out timesheets for project work. However, the progress they submit could not be updated in the Project server? For instance, in the timesheet, task A has been done 20 hours. I filled in the timesheet for
    this task and submit. Also, it has been approved. However, the task from the project server still show me 0 hours on "Actual work".
    Any help is appreciated! Thanks!
    cc

    Hi SillyBird,
    So I guess we found what was not going as expected in your case. First of all, some documentation for you to read. The second link shows you the SEM process
    http://blogs.msdn.com/b/project/archive/2009/11/23/time-tracking-in-project-server-2010.aspx
    http://khurramjamshed.blogspot.ca/2011/02/project-server-task-and-timesheet.html
    In the SEM process, there are 2 APPROVALS: 
    first the timesheet manager approves the timesheet (ie time on project and administrative time)
    then (the sequencing can be forced by an option in the timesheet configuration in server settings) the status manager approves only the task updates
    Finally the project manager (that is usually the status manager) opens the project plan that contains the approved actuals, updates the remaining work, publishes and closes the project plan for the team members to have in PWA the new/updated assignments.
    Now some links about the status manager:
    http://office.microsoft.com/en-us/project-help/change-the-manager-of-an-enterprise-project-HA010113077.aspx
    http://office.microsoft.com/en-us/project-help/status-manager-task-field-HA010167477.aspx
    Basically the status manager will be the task update approver, meaning the one that will receive in the approval center the task updates for approval. He is by default the user that created the project plan, meaning probably the project manager (but can
    be a PMO officer). The status manager can only be changed in MS Project Pro (in case the project initiator is not the PM), inserting the "status manager" column.
    Be aware that it has to be changed by the user that wants to be status manager himself. It cannot be done by a third person (such as an admin) due to the fact that the status manager column in MS Project Pro proposes a list of only 2 users : the active user
    (that currently edits the project) and the current status manager.
    Note also that when you change the status manager value in Project Pro, it has to be done for every task (easily doable by draging the value from the first to the last cell, like in Excel). Then new tasks will have the new status manager.
    Hope this helps.
    Guillaume Rouyre - MBA, MCP, MCTS

  • Re: Torch 9800 not connecting to server and BBM server issue

    Hi.I also have problem with bb app word:...when I try to use BBappword or download some files I read a message like the phone has problem to connet to bbserver and that I should control my connectivity...which one?why this message?connectivity works:I'm writing here,I'm using whats app,I search on google...somebody can help me,please?os is updated with last version.thankyou very much.

    Hi mark_sing,
    Welcome to the BlackBerry Support Community.
    Signing in to your BlackBerry ID in BBM requires a data plan that includes internet browsing. I'd recommend contacting your network provider to verify that you have the correct data plan.
    Let me know if this helps.
    -FS
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click Solution? for posts that have solved your issue(s)!

Maybe you are looking for

  • Photoshop CS4 - getting error message that states: Could not complete your request because of a program error. Getting this message when

    Could not complete your request because of a program error. Getting error message every time I open the program and try to do anything. Have to Force Quit to close. Using a Mac. Your expertise is appreciated!!

  • Re: Retriving archived data

    Hi, Two tables related to FI(BSEG, BKPF) have been archived, so currently there is no data in the database table . Now I have to reload the archived data again into the database tables for further processing. Can you please advise, if this is a corre

  • Problem getting text value of a node

    Hi this is my xml: <servizio servizioID="WS-AS-14"> <mapping idEnte="-1" userName="administrator" name="ISTAT" nameTo="master">      <category id="1.2.2.0" target="true" toId="01.05.01.011.000">      <name>Descrizione1</name>      </category>      <c

  • Upgrade to Solman 7.1 from Solman 7.01

    Dear experts, For the upgrade to Solman 7.1, I saw there were high impacts for ChaRM and Service Desk ! My questions are: What are these impacts ? I saw there was CRM Web UI to manage tickets, is it mandatory to install CRM to use it ? Best, Alexiel

  • Need help:Scripting on windows and Sql Loader

    Hi I need some help regarding script work on windows machines i.e., how to write a script,the file extension,how to run the script etc,how to schedule it... I also need the doc regarding sql loader(complete details.....) Thanks in advance... bye