Maintain the general program errors

hi all,
i have problem while printing the customized layout for PO with message.
Sytem message 038 from work area SSFCOMPOSER does not exist.
Message 038 from work area SSFCOMPOSER was not defined.
You have to maintain this message in the system.  If you have
authorization for Customizing, maintain the general program errors.
Otherwise, please inform your system administrator.
Is it possible to maintain using SE91. if not, how to free from this message.
Thanks in advance for ur valuable time.
Regards,
reji.

hi anji,
thanks for ur reply,
But it works fine in development client but not in test client both clients are in the same server, how this happens?
regards,
prabhu

Similar Messages

  • I cannot open photo's stored in my i photo library to edit in Photoshop Elements.  Adobe comes up with the message program error. I use a Macbook Air.

    I cannot open photo's stored in my i photo library to edit in Photoshop Elements.  Adobe comes up with the message program error. I use a Macbook Air.

    No, that is done deliberately, since letting other programs poke around in the iphoto library is the fastest known way to corrupt it and make it wither up and die, along with your photos. If you want to use PSE with iphoto you have two choices:
    1. Set PSE as your external editor and send the photos from iphoto. Edit them, then save without changing the name or format and iphoto will remember your last saved edits + original, although you have to lose the edits to see the original again. You may need to set the editor prefs>saving files>on first save to save over existing to make this work.
    2. Export the photos from iphoto, use file>open in PSE, make all the changes of any sort that you like, save the file, and import it to iphoto as a new file.

  • The Concurrent Program Error (Report)

    Hi,
    I am new to apps.
    Here i have created the sample report,
    the query is very simple
    select
    h.Segment1,
    h.creation_date,
    h.vendor_id,
    h.currency_code,
    s.vendor_name,
    l.line_num,
    l.item_id ,
    l.item_description,
    l.unit_meas_lookup_code,
    l.quantity,
    l.unit_price,
    Nvl(l.quantity,0)* Nvl(l.unit_price ,0) total
    from po_headers_all h,
         po_lines_all l,
         Ap_suppliers S
    where h.PO_HEADER_ID = l.PO_HEADER_ID
      and h.VENDOR_ID = s.VENDOR_ID
      and h.org_id = fnd_profile.value('ORG_ID')
      and H.Segment1 = :P_po_numberThe above query in report is call 'G-Segment1'. In which i add a formula column called CF_net_value,
    The reason to add the formula column is that i need to format currency using fnd format_currency
    so i add the following code in the formula column .
    function CF_Net_valueFormula return Number is
    begin
      srw.reference(:Currency);
      srw.reference(:total);
      srw.user_exit('FND FORMAT_CURRENCY
                   CODE=":Currency"
                   DISPLAY_WIDTH="15"
                   AMOUNT=":TOTAL"
                   DISPLAY=":Cf_net_value"
      Return(:cf_net_value);              
    end;In RTF template i am using the CF_net_value to display the Total (i think that will be formatted one).
    After the report deployment and run the concurrent program i am receive the following error.
    REP-1416: '': User exit 'G_Segment1'. .
    REP-0069: Internal error
    REP-57054: In-process job terminated:Terminated with error:
    REP-1416: '': User exit 'G_Segment1'. Please help me in this struggle.
    Thanks & Regards,
    Kanish

    Please post the details of the application release, database version and OS along with the developer version you are using.
    Please see if old threads help -- https://forums.oracle.com/forums/search.jspa?threadID=&q=REP-57054&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Incorrect call-up of the extraction program---error while extraction

    Hi All,
    We are loading the data first time(Full update) in BW Production we are getting the below error.
    Error message is as follows:
    Incorrect call-up of the extraction program     R3     8
    Errors in source system     RSM     340     
    Details of error are as follows:
    Requests (messages): Everything OK
    Extraction (messages): Errors occurred
    Error occurred in the data selection
    We request you help for correcting this error.
    Regards
    Deva

    Hi ,
    Here is little more info about error details we see in Status tab of monitor.
    Error message from the source system
    Diagnosis
    An error occurred in the source system.
    System Response
    Caller 09 contains an error message.
    Further analysis:
    The error occurred in Service API .
    Refer to the error message.
    Procedure
    How you remove the error depends on the error message.
    Note
    If the source system is a Client Workstation, then it is possible that the file that you wanted to load was being edited at the time of the data request. Make sure that the file is in the specified directory, that it is not being processed at the moment, and restart the
    regards
    Dev

  • Need help with solving the (basic) programming error

    I'm reaaaaaaaaaally new to Java and programming in general. I've been glancing through my older brother's old stuff (he's back at Uni!) and I've taken an interest.
    Anyways, so I'm trying to finish this really simple program cause I wanna wow some friends ("wow" = "haha we've done this before a gazillion times") but I can't seem to solve this "incompatible lines" bug in the code, specifically line 24. I've been looking at it for exactly 4 hours!! Programming in Java 1.6.
    Thanks for the help!! :)
    import java.util.*;
    import java.util.Scanner;
    public class LuigisPizzaProgram {
         public static void main(String args[]) {
         System.out.println("Luigi's Pizza");
         System.out.println("-------------------------------------------");
         System.out.println(" a(SML) b(MED) c(LRG)");
         System.out.println("1. Cheese 5.00 7.50 10.00");
         System.out.println("2. Pepperoni 5.75 8.63 11.50");
         System.out.println("3. Combination 6.50 9.75 13.00");
         System.out.println("4. Vegetarian 7.25 10.88 14.50");
         System.out.println("5. Meat Lovers 8.00 12.00 16.00");
         System.out.println(" ");
         System.out.println("What kind of pizza do you want?");     
         int kind = new Scanner(System.in).nextInt();
         System.out.println(kind);
         System.out.println("What size of pizza do you want?");
         char size = new Scanner(System.in).nextLine();
         System.out.println(size);
         }

    Having said that, it is nontraditional to use Scanner like you are using it. There is no way to reuse it in order to get more input. Better would be something like:
            System.out.println("What size of pizza do you want?");
            Scanner scan = new Scanner(System.in);  // create the scan variable
            String size = scan.nextLine(); // now use the scan variable
            System.out.println(size);Also, when posting your code, please use code tags so that your code will be well-formatted and readable. To do this, place the tag [code] at the top of your block of code and the tag [/code] at the bottom, like so:
    [code]
      // your code block goes here.
    [/code]good luck, pete

  • I have downloaded Firefox 5 but am still am getting frequent remineders to upload ner security app. When I click all I get is about downloading the general program. I do not see anything for just updating security. What am I supposed to do?

    I have downloaded Firefox 5 twice. Now I am getting an e-mail telling me to download the new security attachments. When I click it what I get is downloading Firefox 5. I do not not see anything about downloading a new attachment for security purposes. When I click downloading Firefox 5 I am told that I already have it. How do get just the security component.
    Dr. Laurie

    Firefox does not send emails to users about anything. Who is the sender of that email? It's probably a scam. You have Firefox 4.0.1 as indicated in your System details. You might want to scan your Mac with anti-virus/spywares programs to make sure no malwares and/or spywares were installed. That could have explained why you received such email.
    FYI, Even if your email has an attachment, you should never open it unless it's being sent from someone you know.
    And are these reminders come in the form of emails or pop-ups? If they are emails, I'll report them as spams and delete them.

  • Using PhotoShop CC v2014.1.0 I can't save files as PDFs - I get a program error

    I have tried a couple of different files now. In the past I could save my files as PDF copies, but just recently it has been generating errors. I thought the first one was due to the size of the file but I just tried it again on a small file with the same "program error".

    So the question then becomes, what do the files that won't save as PDF have in common but at the same time they don't share with other files.
    And when I said that a font would cause the issue, this was in regards to using a specific font. Generally one that is corrupt in some fashion or was poorly created. First, try the steps here: Troubleshoot fonts | Photoshop CC, CS6, CS5

  • General protection error *sampsPerChanWritten= numSampsPerChan;

    hey guys,
       I'm having a lot of trouble understanding this general protection error,
    I have the function:
    int32 __stdcall DAQmxWriteAnalogF64 (TaskHandle taskHandle, int32 numSampsPerChan, bool32 autoStart, float64 timeout, bool32 dataLayout, const float64 writeArray[], int32 *sampsPerChanWritten, bool32 *reserved)
    GblWriteData[taskHandle]=*writeArray;
    //actual number of samps written is exactly how many samples came in
    *sampsPerChanWritten= numSampsPerChan;
    return 0;
     when I call this function
    DAQmxErrChk(DAQmxWriteAnalogF64(taskHandle,1,1,10.0,DAQmx_Val_GroupByChannel,&data,NULL,NULL));
     I get the general protection error. after some debugging the one line that is cause this is
    *sampsPerChanWritten= numSampsPerChan;
    numSampsPerChan is 1 from the function call, and an int32. I dont understand how this would cause an error.
    Someone mind helping?
    thanks!

    Hi tianshiz,
    You're passing NULL for the 'sampsPerChanWritten' parameter, but your implementation of DAQmxWriteAnalogF64() doesn't check whether this parameter is NULL before dereferencing it, so it crashes.
    By the way, based on this and your previous threads, it sounds like you're trying to use a DAQmx simulated device, but with your own custom data instead of the stock sine wave. Writing your own replacements for the DAQmx read and write functions is a good way to do that. However, I recommend naming your functions something different than the real DAQmx functions, so that you can use conditionals, function pointers, or polymorphism to choose which version to call at runtime. Otherwise, your program won't work with real DAQmx devices.
    On the other hand, if this is a stub function for a unit test, then carry on.
    Brad
    Brad Keryan
    NI R&D

  • A critical program error has occured while opening workbook

    Dear friends,
    A critical error has occured while opening workbook. The issue is that the same workbook is opening in some one machine but not in others.The following Dialog box is poping out when tried to open workbook:
    "A critical program error has occured.The Program will now terminate.Please refer to trace for further information."
    However,i  did the full updation of service pack3 of MS Excel 2003 on my machine and the same version as on that particular machine(on which workbook is opening). The problem is still there.Please provide some solution.
    Thankx a lot in advance!!!
    regards,
    Sandeep Singla

    The machine where the workbook is opening has a GUI :-
    Release : "710 Final Release"
    File Version : 7100.2.7.1038
    Build : 967944
    Patch Level : 7
    and the machine where the critical program error is coming has a GUI :-
    Release : "710 Final Release"
    File Version : 7100.2.8.1039
    Build : 983952
    Patch Level : 8
    The Excel 2003 are similar in both the machines as the service pack3 has been installed in the machine where workbook was not opening.
    Any help will be appreciated.
    Thanks and Regards,
    Sandeep Singla

  • Help - iTunes V4.8 'Program Error' at end of install.

    Please can anyone help with this CD installation failure of itunes only (without ipod connected):
    The installation of quicktime seems ok then iTunes, but on completion a window opens stating 'Program error, iTunes will close.. an error log was created'. No associated error number is displayed and I can't find the error log. At the same time the folder System32 opens. The Installation wizard says everything worked ok but if I then run iTunes the same 'program error..' window appears.
    Thanks in advance.
    PC pentium III   Windows 2000   256 RAM, 7.5Gig free disk space

    hi BB!
    hmmmm. that's an unusual sort of error message.
    let's first try taking any CD-drive complications out of the loop. download and save to your hard drive a fresh copy of the itunes installer from the apple website. (we'll run the install from there rather than on-line.)
    http://www.apple.com/itunes/download/
    try switching off all background applications prior to the install too (if possible, disconnect from the internet first):
    http://consumer.installshield.com/kb.asp?id=Q108377
    do you still get the same error then?
    keep us posted.
    love, b

  • Program error while executing query

    Hi,
    We are on 2004s front-end patch 700. I am able to create and change the queries but when I execute the query, I am getting short error message which says "Critical Program Error Occured, pls refer to the trace for further information".
    I am not very sure where to look for this error. But when I executed the query in RSRT it is working fine.
    I have also tried activating the trace but nothing is captured there too.
    Can you please help..?
    Thanks
    Samay

    Hello Samay,
      I believe you are running the query in Excel.
    You are in 700. I would advise to use the latest patch if possible ( > 904 ).
    May be, that will solve your issue.
    Otherwise, please attach the trace file details.
    You can record a front-end trace as follows:
    1.) Start BExAnalyzer
    2.) Go To Global Settings
    3.) Go to the trace tab
    4.) Check "Record Trace"
    5.) Close the dialog
    6.) Close BExAnalyzer
    7.) Reproduce the problem
    After the "Critical Program Error" popup appears you find a file
    BExAnalyzerTrace.txt in the %temp% folder.
    Regards,
    Sheik Bilal

  • Java Concurrent Program Errors out

    Hi All,
    Request you to help me in this issue as this is on high priority.
    we have registered a Java Concurrent Program Named Genus Merge Two P45 Pdf's which gives the output in pdf format.
    The concurrent program errors out showing the log as follows :
    GENUS Custom: Version : UNKNOWN
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    GEN_MERGE_TWO_PDFS module: Genus Merge Two P45 Pdf's
    Current system time is 10-MAR-2010 07:10:43
    Exception in static block of jtf.cache.appsimpl.AppsCacheLogger. Stack trace is: oracle.apps.fnd.common.AppsException: oracle.apps.fnd.common.PoolException: Exception creating new Poolable object.
         at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1509)
         at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:362)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:210)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:169)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:148)
         at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1201)
         at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:1044)
         at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(DebugEventManager.java:1013)
         at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:980)
         at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:967)
         at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:570)
         at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:593)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:570)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:524)
         at oracle.apps.fnd.common.AppsContext.<init>(AppsContext.java:292)
         at oracle.apps.fnd.common.WebAppsContext.<init>(WebAppsContext.java:1002)
         at oracle.apps.jtf.cache.ArchitectureWrapper.createAppsContextWithDBCFile(ArchitectureWrapper.java:143)
         at oracle.apps.jtf.cache.ArchitectureWrapper.createDefaultAppsContext(ArchitectureWrapper.java:107)
         at oracle.apps.jtf.cache.ArchitectureWrapper.createAppsContext(ArchitectureWrapper.java:96)
         at oracle.apps.jtf.cache.appsimpl.AppsCacheLogger.<clinit>(AppsCacheLogger.java:43)
         at oracle.apps.jtf.cache.appsimpl.AppsCacheEnvironment.getCacheLogger(AppsCacheEnvironment.java:67)
         at oracle.apps.jtf.cache.CacheManager.initCache(CacheManager.java:711)
         at oracle.apps.jtf.cache.CacheManager.<clinit>(CacheManager.java:378)
         at oracle.apps.fnd.cache.Cache.setCacheFullName(Cache.java:228)
         at oracle.apps.fnd.cache.Cache.initCache(Cache.java:114)
         at oracle.apps.fnd.cache.Cache.<init>(Cache.java:89)
         at oracle.apps.fnd.cache.AppsCache.<init>(AppsCache.java:86)
         at oracle.apps.fnd.cache.AolCaches.getCache(AolCaches.java:155)
         at oracle.apps.fnd.profiles.Profiles.<clinit>(Profiles.java:241)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.init(ExtendedProfileStore.java:498)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.<init>(ExtendedProfileStore.java:119)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at oracle.apps.fnd.common.AppsContext.instantiateProfileStore(AppsContext.java:3959)
         at oracle.apps.fnd.common.AppsContext.makeProfileStore(AppsContext.java:780)
         at oracle.apps.fnd.common.Context.setProfileStore(Context.java:767)
         at oracle.apps.fnd.common.Context.setProfileStore(Context.java:749)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:564)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:524)
         at oracle.apps.fnd.common.AppsContext.<init>(AppsContext.java:292)
         at oracle.apps.fnd.cp.request.CpContext.<init>(CpContext.java:141)
         at oracle.apps.fnd.cp.request.CpContext.<init>(CpContext.java:124)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:127)
    Caused by: oracle.apps.fnd.common.PoolException: Exception creating new Poolable object.
         at oracle.apps.fnd.common.Pool.createObject(Pool.java:1321)
         at oracle.apps.fnd.common.Pool.borrowObject(Pool.java:1062)
         at oracle.apps.fnd.security.DBConnObjPool.borrowObject(DBConnObjPool.java:752)
         at oracle.apps.fnd.security.AppsConnectionManager.borrowConnection(AppsConnectionManager.java:297)
         at oracle.apps.fnd.common.Context.borrowConnection(Context.java:1720)
         at oracle.apps.fnd.common.AppsContext.getPrivateConnectionFinal(AppsContext.java:2306)
         at oracle.apps.fnd.common.AppsContext.getPrivateConnection(AppsContext.java:2243)
         at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:2101)
         at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:1910)
         at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:1754)
         at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:1767)
         at oracle.apps.fnd.common.Context.getJDBCConnection(Context.java:1453)
         at oracle.apps.fnd.cache.GenericCacheLoader.load(GenericCacheLoader.java:168)
         at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1500)
         ... 44 more
    Caused by: java.lang.AbstractMethodError: oracle.sql.LnxLibThin.lnxnuc([BILjava/lang/String;)Ljava/lang/String;
         at oracle.sql.NUMBER.toInt(NUMBER.java:414)
         at oracle.jdbc.dbaccess.DBConversion.NumberBytesToInt(DBConversion.java:2959)
         at oracle.jdbc.driver.OracleStatement.getIntValue(OracleStatement.java:4596)
         at oracle.jdbc.driver.OracleResultSetImpl.getInt(OracleResultSetImpl.java:536)
         at oracle.apps.fnd.security.ConnectionManager.setClientData(ConnectionManager.java:1497)
         at oracle.apps.fnd.security.ConnectionManager.dbConnect(ConnectionManager.java:1446)
         at oracle.apps.fnd.security.ConnectionManager.dbConnect(ConnectionManager.java:1325)
         at oracle.apps.fnd.security.AppsConnectionManager.makeGwyuidConn(AppsConnectionManager.java:884)
         at oracle.apps.fnd.security.AppsConnectionManager.getGwyuidConn(AppsConnectionManager.java:962)
         at oracle.apps.fnd.security.AppsConnectionManager.makeGuestConnection(AppsConnectionManager.java:780)
         at oracle.apps.fnd.security.DBConnObj.<init>(DBConnObj.java:246)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at oracle.apps.fnd.common.Pool.createObject(Pool.java:1308)
         ... 57 more
    Exception in static block of jtf.cache.CacheManager. Stack trace is: oracle.apps.jtf.base.resources.FrameworkException: oracle.apps.fnd.common.PoolException: Exception creating new Poolable object.
         at oracle.apps.jtf.cache.CacheManager.initCache(CacheManager.java:718)
         at oracle.apps.jtf.cache.CacheManager.<clinit>(CacheManager.java:378)
         at oracle.apps.fnd.cache.Cache.setCacheFullName(Cache.java:228)
         at oracle.apps.fnd.cache.Cache.initCache(Cache.java:114)
         at oracle.apps.fnd.cache.Cache.<init>(Cache.java:89)
         at oracle.apps.fnd.cache.AppsCache.<init>(AppsCache.java:86)
         at oracle.apps.fnd.cache.AolCaches.getCache(AolCaches.java:155)
         at oracle.apps.fnd.profiles.Profiles.<clinit>(Profiles.java:241)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.init(ExtendedProfileStore.java:498)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.<init>(ExtendedProfileStore.java:119)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at oracle.apps.fnd.common.AppsContext.instantiateProfileStore(AppsContext.java:3959)
         at oracle.apps.fnd.common.AppsContext.makeProfileStore(AppsContext.java:780)
         at oracle.apps.fnd.common.Context.setProfileStore(Context.java:767)
         at oracle.apps.fnd.common.Context.setProfileStore(Context.java:749)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:564)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:524)
         at oracle.apps.fnd.common.AppsContext.<init>(AppsContext.java:292)
         at oracle.apps.fnd.cp.request.CpContext.<init>(CpContext.java:141)
         at oracle.apps.fnd.cp.request.CpContext.<init>(CpContext.java:124)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:127)
    Caused by: oracle.apps.jtf.base.resources.FrameworkException: oracle.apps.fnd.common.PoolException: Exception creating new Poolable object.
         at oracle.apps.jtf.base.resources.FrameworkException.convertException(FrameworkException.java:607)
         at oracle.apps.jtf.base.resources.FrameworkException.addException(FrameworkException.java:585)
         at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:66)
         at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:88)
         at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:202)
         at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:218)
         at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:249)
         ... 24 more
    Exception in thread "main" oracle.apps.fnd.common.PoolException: Exception creating new Poolable object.
         at oracle.apps.fnd.common.Pool.createObject(Pool.java:1321)
         at oracle.apps.fnd.common.Pool.borrowObject(Pool.java:1062)
         at oracle.apps.fnd.security.DBConnObjPool.borrowObject(DBConnObjPool.java:752)
         at oracle.apps.fnd.security.AppsConnectionManager.borrowConnection(AppsConnectionManager.java:297)
         at oracle.apps.fnd.common.Context.borrowConnection(Context.java:1720)
         at oracle.apps.fnd.common.AppsContext.getPrivateConnectionFinal(AppsContext.java:2306)
         at oracle.apps.fnd.common.AppsContext.getPrivateConnection(AppsContext.java:2243)
         at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:2101)
         at oracle.apps.fnd.common.AppsContext.getLocalJDBCConnection(AppsContext.java:2481)
         at oracle.apps.fnd.common.AppsContext.getLocalJDBCConnection(AppsContext.java:2416)
         at oracle.apps.fnd.common.AppsContext.getLocalJDBCConnection(AppsContext.java:2397)
         at oracle.apps.fnd.common.ProfileCache.getProfileObject(ProfileCache.java:110)
         at oracle.apps.fnd.common.NativeProfileStore.getSpecificProfileFromDB(NativeProfileStore.java:375)
         at oracle.apps.fnd.common.NativeProfileStore.getProfile(NativeProfileStore.java:314)
         at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1201)
         at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:1044)
         at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(DebugEventManager.java:1013)
         at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:980)
         at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:967)
         at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:570)
         at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:593)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:570)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:524)
         at oracle.apps.fnd.common.AppsContext.<init>(AppsContext.java:292)
         at oracle.apps.fnd.cp.request.CpContext.<init>(CpContext.java:141)
         at oracle.apps.fnd.cp.request.CpContext.<init>(CpContext.java:124)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:127)
    Caused by: java.lang.AbstractMethodError: oracle.sql.LnxLibThin.lnxnuc([BILjava/lang/String;)Ljava/lang/String;
         at oracle.sql.NUMBER.toInt(NUMBER.java:414)
         at oracle.jdbc.dbaccess.DBConversion.NumberBytesToInt(DBConversion.java:2959)
         at oracle.jdbc.driver.OracleStatement.getIntValue(OracleStatement.java:4596)
         at oracle.jdbc.driver.OracleResultSetImpl.getInt(OracleResultSetImpl.java:536)
         at oracle.apps.fnd.security.ConnectionManager.setClientData(ConnectionManager.java:1497)
         at oracle.apps.fnd.security.ConnectionManager.dbConnect(ConnectionManager.java:1446)
         at oracle.apps.fnd.security.ConnectionManager.dbConnect(ConnectionManager.java:1325)
         at oracle.apps.fnd.security.AppsConnectionManager.makeGwyuidConn(AppsConnectionManager.java:884)
         at oracle.apps.fnd.security.AppsConnectionManager.getGwyuidConn(AppsConnectionManager.java:962)
         at oracle.apps.fnd.security.AppsConnectionManager.makeGuestConnection(AppsConnectionManager.java:780)
         at oracle.apps.fnd.security.DBConnObj.<init>(DBConnObj.java:246)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at oracle.apps.fnd.common.Pool.createObject(Pool.java:1308)
         ... 26 more
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    oracle.apps.genus.utils.MergePdfs
    Program exited with status 1
    Executing request completion options...
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 10-MAR-2010 07:10:47
    ---------------------------------------------------------------------------

    Hi,
    FYI,
    I am not sure about this error,
    Use the following links, hope it may solve your problem,
    http://oracleappstechnology.blogspot.com/2007/09/oracleappsfndcommonpoolexception.html
    http://www.appsdbatechstuff.com/2008/06/java-workflow-mailer-does-not-startup.html
    http://it.toolbox.com/wiki/index.php/Oracle_Apps_-JavaConcurrent_Program
    Io exception: The Network Adapter could not establish the connection
    Regards,
    Hari

  • Photoshop CS4 program error: deleted prefs, keeps coming back instantly

    I am running Photoshop CS4 extended on my Mac OS X 10.5.6 OS. Out of no where, I create a new file, try to fill a layer with a solid color, I get the generic program error message. I click OK to get rid of it, but it is erratic. I have to force quit the program.
    I deleted the pref file manually as well as Apple + Option + Shift keys while loading the program and had Photoshop delete it for me.
    What other files do i need to delete/reset for this to work properly again?
    My computer:
    Mac Pro Dual Quad (octo)
    12 GB of ram
    I pulled up activity monitor and it isn't using much memory.

    sounds like a bad directory I would run Diskwarrior or disk utility of the OS install DVD

  • Warcraft III Program Error

    Hey guys...im new here and i hope someone can help me.
    I installed Warcraft III (Orignal CDs) with Wine with the Tutorial on ArchWiki.
    But everytime i start the game, the normal window Appears which loads the game. And after a few seconds i get the Message:
    Program Error
    The program War3.exe has encountered a serious problem and needs to close. We are sorry for the inconvenience.
    when i start the game in a terminal (tried with and without -opengl) i get this:
    [XNight@myhost Warcraft III]$ wine War3.exe
    err:ole:CoCreateInstance apartment not initialised
    wine: Call from 0x7bc49230 to unimplemented function Storm.dll.570, aborting
    wine: Unimplemented function Storm.dll.570 called at address 0x7bc49230 (thread 0009), starting debugger...
    then i press the Close Window on the window which appeared:
    Unhandled exception: unimplemented function Storm.dll.570 called in 32-bit code (0x7bc49230).
    Register dump:
    CS:0073 SS:007b DS:007b ES:007b FS:0033 GS:003b
    EIP:7bc49230 ESP:0033fbc0 EBP:0033fc24 EFLAGS:00200206( - -- I - -P- )
    EAX:0000023a EBX:7bc9c784 ECX:0033fc44 EDX:0000005c
    ESI:0033fbcc EDI:7b850050
    Stack dump:
    0x0033fbc0: 00000104 0033fbe8 7b88482c 80000100
    0x0033fbd0: 00000001 00000000 7bc49230 00000002
    0x0033fbe0: 0044ce3e 0000023a 00000026 7b88482c
    0x0033fbf0: 0015bf28 0033fc24 7b84f796 00110000
    0x0033fc00: 00000000 0015bf28 00000104 00002710
    0x0033fc10: 00000000 0033fc48 7b850160 7b850160
    Backtrace:
    =>0 0x7bc49230 call_dll_entry_point+0x620() in ntdll (0x0033fc24)
    1 0x0034000f (0x0033fd48)
    2 0x00401219 in war3 (+0x1218) (0x0033fdf4)
    3 0x00401d68 in war3 (+0x1d67) (0x0033fe90)
    4 0x7b85580c call_process_entry+0xb() in kernel32 (0x0033fea8)
    5 0x7b85644f ExitProcess+0xc3e() in kernel32 (0x0033fee8)
    6 0x7bc6ff00 call_thread_func+0xb() in ntdll (0x0033fef8)
    7 0x7bc72a00 call_thread_entry_point+0x6f() in ntdll (0x0033ffc8)
    8 0x7bc4926a call_dll_entry_point+0x659() in ntdll (0x0033ffe8)
    0x7bc49230 call_dll_entry_point+0x620 in ntdll: subl $4,%esp
    Modules:
    Module Address Debug info Name (105 modules)
    PE 400000- 46d738 Export war3
    PE 15000000-15064000 Deferred storm
    PE 21100000-2115f000 Deferred mss32
    PE 60000000-6005d000 Deferred ijl15
    PE 6f000000-6f878000 Deferred game
    ELF 7b800000-7b97f000 Export kernel32<elf>
    \-PE 7b810000-7b97f000 \ kernel32
    ELF 7bc00000-7bcb9000 Export ntdll<elf>
    \-PE 7bc10000-7bcb9000 \ ntdll
    ELF 7bf00000-7bf03000 Deferred <wine-loader>
    ELF 7c5cc000-7d30c000 Deferred libglcore.so.1
    ELF 7d8ad000-7d8af000 Deferred libnvidia-tls.so.1
    ELF 7d8af000-7d953000 Deferred libgl.so.1
    ELF 7d953000-7da05000 Deferred opengl32<elf>
    \-PE 7d970000-7da05000 \ opengl32
    ELF 7da05000-7da0e000 Deferred librt.so.1
    ELF 7da0e000-7da4b000 Deferred libdbus-1.so.3
    ELF 7da4b000-7da4e000 Deferred libssp.so.0
    ELF 7da4e000-7da5e000 Deferred libtasn1.so.3
    ELF 7da5e000-7dadf000 Deferred libsqlite3.so.0
    ELF 7dadf000-7daee000 Deferred libavahi-client.so.3
    ELF 7daee000-7daf9000 Deferred libavahi-common.so.3
    ELF 7daf9000-7dafd000 Deferred libgpg-error.so.0
    ELF 7dafd000-7db70000 Deferred libgcrypt.so.11
    ELF 7db70000-7dc07000 Deferred libgnutls.so.26
    ELF 7dc07000-7dc1c000 Deferred libresolv.so.2
    ELF 7dc1c000-7dc4d000 Deferred libcrypt.so.1
    ELF 7dc4d000-7dc5f000 Deferred libroken.so.18
    ELF 7dc5f000-7dc87000 Deferred libwind.so.0
    ELF 7dc87000-7dd0c000 Deferred libasn1.so.8
    ELF 7dd0c000-7de86000 Deferred libcrypto.so.1.0.0
    ELF 7de86000-7dec2000 Deferred libhx509.so.5
    ELF 7dec2000-7df2b000 Deferred libkrb5.so.26
    ELF 7df2b000-7df30000 Deferred libheimntlm.so.0
    ELF 7df30000-7df5e000 Deferred libgssapi.so.2
    ELF 7df5e000-7dfa7000 Deferred libcups.so.2
    ELF 7dff4000-7e067000 Deferred rpcrt4<elf>
    \-PE 7e000000-7e067000 \ rpcrt4
    ELF 7e067000-7e166000 Deferred ole32<elf>
    \-PE 7e080000-7e166000 \ ole32
    ELF 7e17c000-7e1af000 Deferred uxtheme<elf>
    \-PE 7e180000-7e1af000 \ uxtheme
    ELF 7e1af000-7e1b4000 Deferred libxfixes.so.3
    ELF 7e1b4000-7e1bd000 Deferred libxcursor.so.1
    ELF 7e1bd000-7e1c0000 Deferred libxcomposite.so.1
    ELF 7e1c0000-7e1c7000 Deferred libxrandr.so.2
    ELF 7e1c7000-7e1cf000 Deferred libxrender.so.1
    ELF 7e1cf000-7e1d4000 Deferred libxxf86vm.so.1
    ELF 7e1d4000-7e1ec000 Deferred libxcb.so.1
    ELF 7e1ec000-7e203000 Deferred libice.so.6
    ELF 7e203000-7e31d000 Deferred libx11.so.6
    ELF 7e31d000-7e32b000 Deferred libxext.so.6
    ELF 7e32d000-7e330000 Deferred libcom_err.so.2
    ELF 7e34a000-7e3f0000 Deferred winex11<elf>
    \-PE 7e360000-7e3f0000 \ winex11
    ELF 7e48f000-7e4b5000 Deferred libexpat.so.1
    ELF 7e4b5000-7e4e3000 Deferred libfontconfig.so.1
    ELF 7e4e3000-7e568000 Deferred libfreetype.so.6
    ELF 7e568000-7e58a000 Deferred mpr<elf>
    \-PE 7e570000-7e58a000 \ mpr
    ELF 7e58a000-7e59f000 Deferred libz.so.1
    ELF 7e59f000-7e5a2000 Deferred libxinerama.so.1
    ELF 7e5a2000-7e5a7000 Deferred libxdmcp.so.6
    ELF 7e5a7000-7e5ae000 Deferred libsm.so.6
    ELF 7e5be000-7e61c000 Deferred wininet<elf>
    \-PE 7e5d0000-7e61c000 \ wininet
    ELF 7e61c000-7e63c000 Deferred imm32<elf>
    \-PE 7e620000-7e63c000 \ imm32
    ELF 7e63c000-7e65c000 Deferred iphlpapi<elf>
    \-PE 7e640000-7e65c000 \ iphlpapi
    ELF 7e65c000-7e68a000 Deferred ws2_32<elf>
    \-PE 7e660000-7e68a000 \ ws2_32
    ELF 7e68a000-7e6a4000 Deferred wsock32<elf>
    \-PE 7e690000-7e6a4000 \ wsock32
    ELF 7e6a4000-7e727000 Deferred msvcrt<elf>
    \-PE 7e6b0000-7e727000 \ msvcrt
    ELF 7e727000-7e7bb000 Deferred winmm<elf>
    \-PE 7e730000-7e7bb000 \ winmm
    ELF 7e7bb000-7e7f2000 Deferred winspool<elf>
    \-PE 7e7c0000-7e7f2000 \ winspool
    ELF 7e7f2000-7e8e1000 Deferred comctl32<elf>
    \-PE 7e800000-7e8e1000 \ comctl32
    ELF 7e8e1000-7e942000 Deferred shlwapi<elf>
    \-PE 7e8f0000-7e942000 \ shlwapi
    ELF 7e942000-7eb30000 Deferred shell32<elf>
    \-PE 7e950000-7eb30000 \ shell32
    ELF 7eb30000-7ebf1000 Deferred comdlg32<elf>
    \-PE 7eb40000-7ebf1000 \ comdlg32
    ELF 7ebf1000-7ec4b000 Deferred advapi32<elf>
    \-PE 7ec00000-7ec4b000 \ advapi32
    ELF 7ec4b000-7ecd7000 Deferred gdi32<elf>
    \-PE 7ec60000-7ecd7000 \ gdi32
    ELF 7ecd7000-7ee09000 Deferred user32<elf>
    \-PE 7ecf0000-7ee09000 \ user32
    ELF 7efbc000-7efe1000 Deferred libm.so.6
    ELF 7efe8000-7f000000 Deferred version<elf>
    \-PE 7eff0000-7f000000 \ version
    ELF b75c1000-b75c5000 Deferred libuuid.so.1
    ELF b75c7000-b75cb000 Deferred libdl.so.2
    ELF b75cb000-b7716000 Deferred libc.so.6
    ELF b7716000-b7730000 Deferred libpthread.so.0
    ELF b7740000-b7743000 Deferred libxau.so.6
    ELF b7743000-b774f000 Deferred libnss_files.so.2
    ELF b774f000-b788f000 Export libwine.so.1
    ELF b7890000-b78ae000 Deferred ld-linux.so.2
    Threads:
    process tid prio (all id:s are in hex)
    00000008 (D) C:\Program Files\Warcraft III\War3.exe
    00000009 0 <==
    0000000e services.exe
    00000016 0
    00000015 0
    00000014 0
    00000010 0
    0000000f 0
    00000011 winedevice.exe
    00000017 0
    00000013 0
    00000012 0
    00000018 explorer.exe
    00000019 0
    Backtrace:
    =>0 0x7bc49230 call_dll_entry_point+0x620() in ntdll (0x0033fc24)
    1 0x0034000f (0x0033fd48)
    2 0x00401219 in war3 (+0x1218) (0x0033fdf4)
    3 0x00401d68 in war3 (+0x1d67) (0x0033fe90)
    4 0x7b85580c call_process_entry+0xb() in kernel32 (0x0033fea8)
    5 0x7b85644f ExitProcess+0xc3e() in kernel32 (0x0033fee8)
    6 0x7bc6ff00 call_thread_func+0xb() in ntdll (0x0033fef8)
    7 0x7bc72a00 call_thread_entry_point+0x6f() in ntdll (0x0033ffc8)
    8 0x7bc4926a call_dll_entry_point+0x659() in ntdll (0x0033ffe8)
    wine: Call from 0x7bc49230 to unimplemented function Storm.dll.570, aborting
    wine: Call from 0x7bc49230 to unimplemented function Storm.dll.570, aborting
    [moritz@myhost Warcraft III]$
    Thanks for help!
    Some Infos:
    -newest version of Wine
    -Nvidia fx5500 with nvidia-173xx
    It worked perfectly on all ubuntus (I tested 9.04 to 10.10)

    Ubuntu's universe repository for their latest release contains wine 1.2, but Arch's currently has 1.3.6.  Maybe the newer version introduced a regression that affects Warcraft III. Have you tried patching the game to its latest version? Check the wine appdb page for Warcraft III and see if there's anything else that can help. You might also try to install wine 1.2.1—there is at least one PKGBUILD for it  in the AUR.
    I own a copy of the game, but it currently sits in storage elsewhere; if I can grab it, maybe I'll try to install it too.

  • Unable to open Ps because of : program error

    Lr function normally: Ps just don't want to open because of this message . Up to date done 10 min ago with no success. Delete the program and reload ?

    What is the program error have you looked at any logs or crash reports for the Photoshop program error what you wrote has no real meaningful information. Has no infornation about what your even trying to use.
    Supply pertinent information for quicker answers
    The more information you supply about your situation, the better equipped other community members will be to answer. Consider including the following in your question:
    Adobe product and version number
    Operating system and version number
    The full text of any error message(s)
    What you were doing when the problem occurred
    Screenshots of the problem
    Computer hardware, such as CPU; GPU; amount of RAM; etc.

Maybe you are looking for

  • Field Explorer is empty after establishing a connection to a SQL 2008 SP

    I am trying to create a report using a SQL Server 2008 stored procedure as the source of data using an ADO connection. The stored procedure is slightly odd, in that its building up the SQL as a string, Below is a snippet of the code to show what I me

  • Will 1password work with windows vista 64?

    When I attempt to log on in foxfire, I do not get a screen that will allow me to use the log in capabilities of 1password software. I am using v=window vista 64. need solution Thanks

  • Why are 'saved as' .psd files so much bigger than original raw nef files?

    I was under the impression that original raw files were the biggest possible. I appear to be very wrong. Why are 'saved as' .psd files so much bigger than original raw nef files? I'm beginning to think that saving them as psd is a bad idea. Yes, thou

  • SDF LDB doesnt pick up documents posted in specific ledger

    Hello, I have created a new G/L account 999998 in Q43/700 system and enabled 'Clearing specific to ledger groups'. I created a new ledger C2 and assigned it to the ledger group C2. I have also made a posting to this new G/L account. The table FAGLBSI

  • Production order goods movement issue

    Hi,   i am interested in issuing the materials to a production order at the creation stage.please specify any settings can be made for this. I want it to happen in specific plant only and not at global level. please suggest regards madan