IDispatchService.post() error with ServiceRequestEBS

I'm trying to do a CreateServiceRequestList operatio using ServiceRequestEBS (from BSR).
My requestor ABCS is a synchronous process which calls the operation in a asynchronous way. When the invoker call the ebs i get this error:
IDeliveryService.post() invoked for twp-way operation 'CreateServiceRequestList'. This method can only be used to invoke one-way operations which don't return any messages. Please check the WSDL which defines this operation and use the method IDeliveryService.request() to invoke a two-way operation
Detail: CreateServiceRequestList is an one-way operation and not a two-way operation.
What i'm doing wrong ?
Ty

The problem is that my routing rule was defined as Synchronous. Now, my ebs receive requisitions and "try" to route but do not initiate the specified provider... but this is for another thread... ty.

Similar Messages

  • GL account posting error with cost centre

    Hi experts
    I am trying to post Goods issue with the combination of GL account and cost centre...
    The system throwing an error message saying " GL account XXXXX not valid for cost centre XXXXX or order entered"
    what could be the mistake i have done... kindly reply
    Thanks
    Alex

    Hi
    Z message means you have a custom validation in Place
    Go to OB28 and check which validation is causing this issue..
    you need to either change it so that this posting goes through or use a proper GL account in accordance with the validation
    Regards
    SAPFICO

  • Invoice posting error with WBS element

    I have created purchase order with account assignment category P with WBS element. Quantity 2 numbers and unit price 10000Rs. I checked WBS element in this u201CAVAC Availability control activeu201D check box is selected. Now I am trying to post invoice for this PO with amount 25000Rs with tax amount 1200Rs but getting an error saying u201Cavailability controlu201D cannot post invoice.  Help me in this regard
    GP

    Hi,
    It would be a great help if you would send the error code from the error message.
    Kind Regards,
    Arminda Jack

  • IDOC posting error with dollar values

    Hello,
    We have recently started posting general ledger transactions via IDOC.  We just noticed that a few of the idocs reflect a status 53 however did not create postings.  When drilling into the message, it says that there were not valid line items. (meaning lines with 0 dollar value).  However all of the records had valid dollar values.  I have found a few notes that adress this as an issue in 46B, however we are on 4.7 and all of the suggested code fixes have been implemented already.  Has anyone seen this happen?
    -Jeff

    1. Please check that the process code in the inbound partner profile is correct.
    2. If this is the case, you should check the ALE inbound methods ALE inbound methods for the process code and see whether the specified function module and application object type are correct.
    3. If this is also the case, then the function module and the application object type are not permitted for the logical message type, message variant, message function and basis type that are contained in the IDoc control record. You should check whether the correct values have been assigned to these fields in the control record. If they do have the correct values, then the assignment to the function module and the application object type needs to be maintained.
    BR,
    Alok

  • Error while posting GR with MvT 835 for Brazil Plant using transaction MBSU

    Hi,
    While posting GR with MvT 835 through transaction MBSU with reference to GI document, we are receiving below error :-
    Balance not zero: **** - debit: ****
    credit: ****
    Message No.: M7050.
    We are using TAXBRA procedure for Brazil.
    We request you to please let us know what all configuration do we need to check.
    Regards,
    Kiran

    Answered.

  • RE: [Adobe Reader] when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? i

    HelloThank's for your helpsI hope this document is helpfulBest Regards,
    Date: Sun, 22 Jun 2014 17:10:17 -0700
    From: [email protected]
    To: [email protected]
    Subject:  when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help me th
        when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help m
        created by Anoop9178 in Adobe Reader - View the full discussion
    Hi,
    Would it be possible for you to share the document?
    Regards,
    Anoop
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6485431#6485431
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
         To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Adobe Reader by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

    thank's for reply and your help
    i did the step's that you told me but  i still have the same problem
                                     i have the latest v.11.0.7
    i
    i disable the protected mode

  • Trying to Imitate the html POST  method with an applet

    I am trying to imitate the POST method with an applet, so that I can eventually send sound from a microphone to a PHP script which will store it in a file on a server. I am starting out by trying to post a simple line of text by making the PHP script think that it is receiving the text within a POST-ed file. The reason I am doing things this way is in part because I am, for the time being, limited to a shared server without any support for servlets or any other server side java.
    The code I am trying is based in part on an old thread found elsewhere in this forum, concerning sending data to a PHP file by imitating the POST method:
    link:
    http://forum.java.sun.com/thread.jspa?threadID=530399&messageID=2603608
    someone named "harmmeijer" provided most of the answers on that thread. If that person is still around hope they take a look at this,also I have some questions to clarify what they said on the other thread..
    My first attempt at code is below. The applet is in a signed jar file and is trying to pass a text line to the PHP script in the same directory and on the same server that the applet came from. It is doing this by sending header information that is supposed to be identical to what an html form would send if it was uploading a .txt file with the line of text within it. The applet displays one button. When you press it, it sucessfully starts up the postsim method (defined at the end), which is supposed to send the info to the PHP script at the server.
    I have two questions:
    1) I know that the PHP script is starting up, because it prints out a few messages depending on what happens. However, the script does not recognize any file coming down the line, so it does not save anyting on the server, and prints out a message saying the no file was uploaded.
    Any idea what might be going wrong? I'm not getting any error messages from the applet. I've tried a few different variations of the 'header' information contained in the line:
    osToServer.writeBytes("--****4353\r\nContent-Disposition: form-data; name=\"testfile\"; filename=\"C:testfile.txt\"\r\nContent-Type: text/plain\r\n");
    The commented out line below it shows one variation (which was given in the thread mentioned above).
    2) You'll notice that I've commented out the two lines having to do with the input line:
    //InputStream isFromServer;
    and
    //isFromServer = uc.getInputStream();
    The reason is that the program crahes whenever I put the latter line in - to the extent that Opera closes down the JVM and then crashes when I tried to exit it.. I must be doing something horribly wrong there! I first tried using isFromServer = new DataInputStream(uc.getInputStream());
    becuase it was consistent with the output stream, but that caused the same problem.
    Here's the code:
    public class AudioUptest1 extends Applet{
    //There are a few spurious things defined in this section, having to do with the fact the microphone data is evenuatly going to be sent. haven't yet insterted code to get input from a microphone.
    AudioFormat audioFormat;
    TargetDataLine targetDataLine;
    SourceDataLine sourceDataLine;
    DataOutputStream osToServer;
    //InputStream isFromServer;
    URLConnection uc;
    final JButton captureBtn = new JButton("Capture");
    final JPanel btnPanel = new JPanel();
    public void init(){
    System.out.println("Started the applet");
    try
    URL url = new URL( "http://www.mywebsite.com/handleapplet.php" );
    uc = url.openConnection();
    //Post multipart data
    uc.setDoOutput(true);
    uc.setDoInput(true);
    uc.setUseCaches(false);
    //set request headers
    uc.setRequestProperty("Connection", "Keep-Alive");
    uc.setRequestProperty("HTTP_REFERER", "http://applet.getcodebase");
    uc.setRequestProperty("Content-Type","multipart/form-data; boundary=****4353");
    osToServer = new DataOutputStream(uc.getOutputStream());
    //isFromServer = uc.getInputStream();
    catch(IOException e)
    System.out.println ("Error etc. etc.");
    return;
    //Start of GUI stuff
    captureBtn.setEnabled(true);
    //Register listeners
    captureBtn.addActionListener(
    new ActionListener(){
    public void actionPerformed(
    ActionEvent e){
    captureBtn.setEnabled(false);
    //Postsim method will send simulated POST to PHP script on server.
    postsim();
    }//end actionPerformed
    }//end ActionListener
    );//end addActionListener()
    add(captureBtn);
    add(btnPanel);
    // getContentPane().setLayout(new FlowLayout());
    // setDefaultCloseOperation(EXIT_ON_CLOSE);
    setSize(250,70);
    setVisible(true);
    }//end of GUI stuff, constructor.
    //These buffers might be made larger.
    byte tempOutBuffer[] = new byte[100];
    byte tempInBuffer[] = new byte[100];
    private void postsim(){
    System.out.println("Got to the postsim method");
    try{
    //******The next four lines are supposed to imitate a POST upload from a form******
    osToServer.writeBytes("--****4353\r\nContent-Disposition: form-data; name=\"testfile\"; filename=\"C:testfile.txt\"\r\nContent-Type: text/plain\r\n");
    //osToServer.writeBytes("Content-Disposition: form-data; name=\"testfile\"; filename=\"C:testfile.txt\"\r\nContent-Type: text/plain\r\n");
    //This is the text that's cupposed to be written into the file.
    osToServer.writeBytes("This is a test file");
    osToServer.writeBytes("--****4353--\r\n\r\n");
    osToServer.flush();
    osToServer.close();
    catch (Exception e) {
    System.out.println(e);
    System.out.println("did not sucessfully connect or write to server");
    System.exit(0);
    }//end catch
    }//end method postsim
    }//end AudioUp.java

    Hi All,
    I was trying to write a signed applet that helps the
    user of the applet to browse the local hard disk and
    select a file from the same. The JFileChooser class
    from Swing is what I used in my applet. The problem
    is with the policy file. I am not able to trace the
    exact way to write a policy file which gives a total
    access to read,write,delete,execute on all the drives
    of the local hard disk.
    I am successful in signing the applets and performing
    operations : read,write,delete & execute on a single
    file but failing to grant permission for the entire
    file.
    Any help would be highly appreciated.Which policy file are you using? there might be more than one policy file.
    also, u have to specify the alias of the signed certificate in the policy file to grant the necessary priviledges to the signed applet.

  • SSRS Exporting causing error with Excel

    Hello,
    I would search this but I don't know what key terms to try, but here is my problem. Created a report in Report Builder and see it on SSRS and can run it. I get the data back I need. When I try and export to Excel I get "Excel found unreadable content
    in '<report name>.xlsx'. Do you want to recover the contents of this workbook? If you trust the source of this workbook, click Yes." When I click Yes I get a blank document. If I save the document to my computer and open it I get an option to repair
    which says "Replaced Part: /xl/worksheets/sheet1.xml part with xml error. Illegal xml character. Line1, column 3344028". I have rebuilt the query too.
    Has anyone else seen this, or have a link to a set of solutions I can test?
    This is using SSRS 2012.

    I know... I am just doing what I am told. I said the same thing to the person asking for it.
    They have no idea what they are asking for.
    Run this query to tell you the Average # of Entries you have per PC. BTW my lab has an average of 327! Far more that the 186 listed in the blog post!
    declare @ARP BIGINT
    declare @PCCount BIGINT
    Set @ARP = (select count(*) from dbo.v_GS_INSTALLED_EXECUTABLE)
    Set @PCCount = (Select count(*) from v_GS_COMPUTER_SYSTEM)
    Select
    'Ave Entries per PCs ' + Convert(varchar(250), sum(@ARP/@PCCount+0.001)),
    'Number of Installed EXE entries ' + convert(varchar(250), @arp),
    'Number of pages '+ convert(varchar(250), sum(Round(@arp/80,0)+1)),
    'Number of papper Bundles '+ convert(varchar(250), round(sum(@arp/40000.0),2))
    Then you need to send them this blog post along with the detail from the query above.
    http://be.enhansoft.com/post/2009/10/26/How-to-Perform-a-Basic-Software-Audit.aspx
    http://www.enhansoft.com/

  • Errors with Time Machine (not completing backup, and needing to erase the ".inProgress" package)

    I have in a previous discussion been talking about errors with my Time Machine backup.  The errors were with a problem with Indexing a file, it fails and stops the whole backup.  Each time it attemps another backup, it fills my ".inProgress" package with a (nearly) whole backup, filling my Time Machine hard drive, and thus errasing my previous good backups.  The error occurs after about 95% completion.
    In my last post of a similar disscussion, the problem was indexing the Preference Pane files and this caused the whole backup to fail.  This was my last post there:  (below in some additional info of my situation)
    I did exclude the MobileMe.prefPane.  And I got:
    12/16/11 9:24:50.468 PM com.apple.backupd: Starting standard backup
    12/16/11 9:24:50.556 PM com.apple.backupd: Backing up to: /Volumes/3 TB GoFlex Drive/Backups.backupdb
    12/16/11 9:25:14.418 PM com.apple.backupd: Waiting for index to be ready (101)
    12/16/11 9:27:02.366 PM com.apple.backupd: Deep event scan at path:/ reason:must scan subdirs|
    12/16/11 9:27:02.366 PM com.apple.backupd: Finished scan
    12/16/11 9:33:37.119 PM com.apple.backupd: Deep event scan at path:/Volumes/Mac OS Lion GM reason:must scan subdirs|
    12/16/11 9:33:37.119 PM com.apple.backupd: Finished scan
    12/16/11 9:36:15.650 PM com.apple.backupd: 758.92 GB required (including padding), 830.32 GB available
    12/16/11 10:25:14.873 PM com.apple.backupd: Copied 22.8 GB of 630.5 GB, 782749 of 2357620 items
    12/16/11 11:25:15.335 PM com.apple.backupd: Copied 86.6 GB of 630.5 GB, 1167675 of 2357620 items
    12/17/11 12:25:16.227 AM com.apple.backupd: Copied 152.2 GB of 630.5 GB, 1393795 of 2357620 items
    Dec 17 01:25:16 Thomas-P-Kellys-iMac com.apple.backupd[99858]: Copied 305.2 GB of 630.5 GB, 1413946 of 2357620 items
    Dec 17 02:25:16 Thomas-P-Kellys-iMac com.apple.backupd[99858]: Copied 457.1 GB of 630.5 GB, 1419190 of 2357620 items
    Dec 17 03:19:07 Thomas-P-Kellys-iMac com.apple.backupd[99858]: Copied 1736865 files (568.3 GB) from volume Macintosh HD.
    Dec 17 03:25:16 Thomas-P-Kellys-iMac com.apple.backupd[99858]: Copied 572.1 GB of 630.5 GB, 1848939 of 2357620 items
    Dec 17 03:40:33 Thomas-P-Kellys-iMac com.apple.backupd[99858]: Indexing a file failed. Returned 200 for: /Volumes/Mac OS Lion GM/System/Library/PreferencePanes/Mouse.prefPane, /Volumes/3 TB GoFlex Drive/Backups.backupdb/Tom iMac/2011-12-14-171406.inProgress/7DB524DD-EFB9-42A6-8A21-0A2A312EDA6D/Mac OS Lion GM/System/Library/PreferencePanes/Mouse.prefPane
    Dec 17 03:40:33 Thomas-P-Kellys-iMac com.apple.backupd[99858]: Aborting backup because indexing a file failed.
    Dec 17 03:40:33 Thomas-P-Kellys-iMac com.apple.backupd[99858]: Stopping backup.
    Dec 17 03:40:33 Thomas-P-Kellys-iMac com.apple.backupd[99858]: Copied 2164998 files (581.1 GB) from volume Mac OS Lion GM.
    Dec 17 03:40:33 Thomas-P-Kellys-iMac com.apple.backupd[99858]: Copy stage failed with error:11
    Dec 17 03:40:50 Thomas-P-Kellys-iMac com.apple.backupd[99858]: Backup failed with error: 11
    This time it was the Mouse.prefPane that caused the error.  I'd like to exclude the entire PreferencePanes directory.
    This was my error message this time:
    I just realized this was on my small Developers partition.  Perhaps there is an error with the build, OR an error with the initial restore.  I'd like to perhaps exclude the entire /Volumes/Mac OS Lion GM.  I expect that Time Machine is working fine with my main partition and the error happens when it's almost done with the Mac OS Lion GM partition.
    The problem now is that I only have 265 GB of 3 TB available on my Time Machine HDD.  If attempt another backup, it'll surely erase about 410 GB of my past saved backups.  I've already lost 6 months, and I only have two months left of backups.  I need to erase the ".inProgress" package again.  That'll take time, and it's impossible to do from this main partition, even at root access.  This ".inProgress" has a total of two (nearly) full backups; it didn't cleanup the first full backup attempt while starting the second,perhaps it would have had it finished.  But I fear even if I exclude the whole "Mac OS Lion GM" partition,  It'll create a third full backup before cleanup and erase ~400 GB of previous good backups.  Then, I'll have a total of 4 (nearly) full backups!  3 TB is just enough without any past backups.
    Maybe I'll just copy my documentations of my 'errasing the ".inProgress" package'  last time (from the Mac OS Lion GM partition) and do a full restore of just that partition.  Thus erasing the errors all together.  If it doesn't fix the errors then this could be a bug in the build that doesn't allow Time Machine to work.  I've always included this partition in Time Machine before, even with other Lion builds, so I suspect that it was an error in the initial restore.  (I may be answering my own questions, and that the inital restore (of the small partition) is the problem, and I just need to re-restore the small partition)
    Again, I'm going to have to erase the ".inProgress" file to regain 1.53 TB of space before proceeding.
    Also, I gave myself permission to read the ".Backup.345781513.887697.log", the log that was created last night when I first started Time Machine this last time.  It was interesting, but didn't show the error I could see from the console.
    Right now, mds and mdworker appear to be going crazy even after I just now turned off Time Machine.  I think I'll let it go for the rest of the night.  Then I'll work on erasing the ".inProgress" package from the other partition boot up.
    That was my entire last post.  To add some information, I have two OS X partitons, both Mac OS X Lion.  One is my large main partition, the other is one I don't mind testing with.  I recently replaced my internal hard drive in my iMac and restored from Time Machine both partitions.  This appeared to go smoothly.  But I have yet to create a single successful Time Machine backup since.  At first it was doing a Full Backup, which I didn't like, but now it just aborts around 95% completion.  Each, time, it tries it fills the Time Machine hard drive with duplicate (nearly) full backups errasing my older good backups.  I would like to erase the ".inProgress" file to save space.
    My main question in this new discussion is does anyone know of a good way of erasing the ".inProgress" file? This is so I can preseerve my previous backups.  ACLs and other permissions seem to make it impossible to erase from this startup partition, the one I'm running Time Machine from.  Even at root level, if I give myself permission to change permissions or delete a file, it'll say Operation not Permitted instead of Permission Denied.  I have been able to delete this ".inProgress" package before when booting from the other  partition, but with great difficulty.  I have had much help from another Member in this Support Community when it comes to solving my Time Machine problems.  I think I have found the problem (indexing files in my small OS X partition), as stated in my copy& pasted post above, but I really need to delete this inProgress package first to save space before continuing!

    Pondini wrote:
    Gator TPK wrote:
    Now I'll have to fix the small partition?  How's the best way to do this?  There could be thousands of files that won't index fine.
    See if there's anything you haven't done, that applies, in the pink box of #C3 in Time Machine - Troubleshooting
    Otherwise, since most (or all?) of the indexing errors are in OSX, you might want to just reinstall it.  Something may have gone wrong sometime, that damaged those files.
    I reviewed #C3 in Time Machine - Troubleshooting and I have already done most of those things.  I have just learned something new though:
    When I included my Main OS X partition again, I got an indexing error for the first time for that partition.  I might be interesting to note that the _spotlight process was running, and it's running again (the magnifying glass has a dot and it generically says "Indexing Tom's iMac").  mdworker, mds and backupd processes really are working hard, one moment they used over 500% of my CPU.  It's nice to know for once quad core is good for something other than video encoding.  (Now if they could just get the Finder to do more than 100.1%, only 1 thread is doing 100%, I'd like to see file size calculations 8 times quicker!)
    I never got an indexing error once in the past 2 weeks for that large Mac OS X v10.7.2 main volume, and it had appeared to finish that partition backup before running into problems with my smaller test partition.  Also, I had just updated the smaller test partition with a later build of Mac OS X.  But It appears that the beta builds are clearly not the problem.  I thought I could just restore again (from the December 4th backup) the small partition and both would be fine.
    I'll finish reviewing all the suggestions on Time Machine - Troubleshooting and go from there.  Hopefully, the _spotlight indexing simutaniously was the only problem.  It's strange that the indexing hasn't happened since the original restore last week untill I finally got a good clean complete partial Time Machine backup.  Why would the first Time Machine backup trigger indexing again?
    For now, I'm going to exclude the Main Partition again, and let another good backup run.  And try your suggestions.  (And wait till mds, mdworker, etc. to finish!)
    I have the logs of the first two sucsessful backups and the last two failed backups from the last 3 hours, if that would help.?

  • Error with Loading Device Software on 8700 AT&T phone.

    Hi. I would like some help with my 8700 AT&T refurb blackberry phone.  When I tried to download the device software (v4.5) to my already downloaded DTM (v4.6), it gave me an error message I did not know what to do with.  
    I want to synch my organizer data (calendar, contacts) from older desktop (Outlook 2002) to my new laptop (Outlook 2007, Windows 7).  I am having trouble downloading the supporting device software.  I keep getting an error message that reads "Error with the Application Loader.  Cannot update software using this system as device is currently activated on a blackberry Enterprise Server or professional software.  Contact administrator or check with service provider."  I do not use Enterprise.  I don't have an internet service plan for my phone as I use it only for calendar and contacts.  AT&T gives the software option for AT&T 8700 in English device software as v4.1.0.175 as the only option that is supported by my current platform (2.0.0.90).  Is this right? 
    All I really want to update my phone with the latest software that supports Outlook 2007 on my new laptop.  What do I need to make that happen? 
    Thanks in advance.

    Hi there!
    Refurbs can be problematic. If a BB was ever activated on BES, then it has an IT Policy. IT Policies are not removed by the standard WIPE actions. Rather, they take additional steps to clean off the Policy.
    Just to check, please go to this screen:
    Homescreen > Options > Security Options > (Information) or (General Settings) or (something similar)
    On that screen will be some selection boxes plus other sections (divided by horizontal lines). If, on that screen, there is any discussion about IT Policy (even if it says "Default"), then you indeed have an IT Policy on your BB. (The screen may also have a section for "Services").
    If you don't have an IT Policy, then something else is going on...in which case, stop here and report back exactly what you found on that screen.
    If you do have an IT Policy, then, in my view, you have two choices.
    1) Since this refurb was provided to you by ATT, they did not deliver to you a "clean" device. You could take it back to them and have them clean the IT Policy off.
    2) You can remove the Policy yourself. The process is 100% destructive to the data on the BB, so you'll want to be sure you've already taken a good full backup. Then use Method 3 in this KB.
    As for what device OS to install, you have more choices than you indicated. See this page:
    https://www.blackberry.com/Downloads/browseSoftwar​e.do;jsessionid=0A15EC28AEC181D3F3F9C5235D9F166A.n​...
    Select, from the drop-down, your model (8700). The resulting screen shows that ATT is currently supporting 4.5.0.182 (MultiLanguage) for your BB model. The MultiLanguage pack will include English, so you don't have to fall all the way back to the English only version. So, you have choices. The best advice is to use the most recent version -- bug fixes, enhancements, and all of that.
    What I advise, since you want to use Outlook 2007, is to use that 4.5.0.182 package for your BB and the most recent RIM desktop package (5.0.1.28). That way, you will have full compatibility for what you are looking for.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • "ink system failure" error with code oxc19e0023 on a HP Photosmart Premium All-in-One Printer - C309

    "ink system failure" error with code oxc19e0023 on have a HP Photosmart Premium All-in-One Printer - C309g  - Have done all the resets and reseated the ink also tried replacing ink with new HP carts..getting frustrated please help
    This question was solved.
    View Solution.

    Have you tried the steps outlined in this article:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03081973&cc=us&dlc=en&lc=en
    If not give the steps a try and let us know if it helps.
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • Tips for blue screen (BSOD) errors with Windows Vista and Intel Turbo Memory on T61/T61p

    Important note: The symptoms and solutions described below address only a small subset of the possible causes for blue screen errors, aka BSOD. This information can help address blue screen errors specifically related to Turbo Memory, but may not solve errors related to other issues. Please read through the instructions completely, make sure they apply to your system, and after attempting the solutions please post back with your feedback for the community.
    Some users may experience random blue screen errors with ThinkPad
    systems running Windows Vista with Intel Turbo Memory hardware. These
    blue screens may occur during normal usage on the system or they may
    occur when booting into Windows Vista. Blue screens related to the
    Intel Turbo Memory hardware may reference a stop code of 8086 with
    memory address locations of {0, 0, 0, 0}.
    There are two main steps that you can take to help resolve blue screen issues related to Intel Turbo Memory.
    Step 1: Update Intel Turbo Memory Driver
    If the driver version is before version 1.0.1.1004-7.0.3.1001, please
    update to this version.
    To determine what version of the Intel Turbo Memory driver is installed:
    1.    Click Start, then click Control Panel.
    2.    Click System and Maintenance.
    3.    Click System.
    4.    Click Device Manager.
    5.    Expand the Storage controllers category.
    6.    Double-click Intel Flash Cache Logic Chip.
    7.    Click the Driver tab. Then you will see the driver version (for example, 1.0.1.1004).
    The new driver and installation instructions can be found here.
    Note: The Intel Matrix Storage Driver is updated with this package.
    Step 2: BIOS version
    If your BIOS version is older than those listed below, please update to the version listed.
    How to check your BIOS version:
    Turn off the system.
    Turn on the system.
    While the To interrupt normal startup, press the blue ThinkVantage button message is displayed at the lower-left area of the screen, press the F1 key.
    The
    BIOS Setup Utility menu will be displayed. If you have set a supervisor
    password, the BIOS Setup Utility menu appears after you enter the
    password.
    Check BIOS Version and Embedded Controller Version.
    Turn off the system.
    System BIOS versions:
    ThinkPad T61/T61p (14.1 inch widescreen with IEEE 1394 model) - BIOS version 1.22 (7LET52WW)
    Please
    remember that these updates do not solve every possible system blue
    screen, but they do resolve several problems related to the Intel Turbo
    Memory driver.
    Message Edited by Tim_Lenovo on 11-30-2007 07:03 PM
    Tim Supples
    Lenovo Social Media
    Got a question? Don't PM me, post it on the forum!
    Lenovo Blogs
    X60 Tablet SXGA+ primary, Z61p fully loaded workhorse

    Thanks Tim,
    I do have my T61p fully up-to-date to the latest drivers and updates (via System Update and the Drivers&Software web page when the former is not that up-to-date).
    At the moment the most recurrent problem is this:
    http://forum.lenovo.com/lnv/board/message?board.id=T_Series_Thinkpads&thread.id=55
    which has been longly speculated here:
    http://forum.thinkpads.com/viewtopic.php?t=47755
    My other angst is the boot-time chkdsk hang-up problem:
    http://forum.thinkpads.com/viewtopic.php?t=52765&highlight=chkdsk
    I just wonder if this purely a Vista issue when using NV cache, the disk spinning down at almost exactly 1 hour from the beginning of the chdsk operation seems too much of a coincidence.
    This is my T61p configuration:
    Intel Core 2 Duo T7700 2.4GHz
    BIOS version 1.26-1.06
    4GB RAM 2 SO-DIMMs
    nVidia Quadro FX 570m with 512MB VRAM
    WUXGA LCD
    Seagate 7200.2 160 GB
    4GB RAM 2 SO-DIMMs
    Windows Vista Ultimate 32bit (waiting to move to 64bit)
    thanks,
    andrea
    Message Edited by abarbieri on 12-05-2007 03:48 PM
    T61p - 15.4" - T7700 - FX 570M 256MB - 4GB RAM - ST916023AS - 4965AGN - BT - FPR - 9 cell - Vista Ult. x86
    T21p - 14" - PIII 850MHz - S3 Savage/IX 8MB - 512MB RAM - 100GB 7200rpm - WinXP x86

  • Tips for blue screen (BSOD) errors with Windows Vista and Intel Turbo Memory on X61/X61s

    Important note: The symptoms and solutions described below address only a small subset of the possible causes for blue screen errors, aka BSOD.
    This information can help address blue screen errors specifically
    related to Turbo Memory, but may not solve errors related to other
    issues. Please read through the instructions completely, make sure they
    apply to your system, and after attempting the solutions please post
    back with your feedback for the community.
    Some users may experience random blue screen errors with ThinkPad
    systems running Windows Vista with Intel Turbo Memory hardware. These
    blue screens may occur during normal usage on the system or they may
    occur when booting into Windows Vista. Blue screens related to the
    Intel Turbo Memory hardware may reference a stop code of 8086 with
    memory address locations of {0, 0, 0, 0}.
    There are two main steps that you can take to help resolve blue screen issues related to Intel Turbo Memory.
    Step 1: Update Intel Turbo Memory Driver
    If the driver version is before version 1.0.1.1004-7.0.3.1001, please
    update to this version.
    To determine what version of the Intel Turbo Memory driver is installed:
    1.    Click Start, then click Control Panel.
    2.    Click System and Maintenance.
    3.    Click System.
    4.    Click Device Manager.
    5.    Expand the Storage controllers category.
    6.    Double-click Intel Flash Cache Logic Chip.
    7.    Click the Driver tab. Then you will see the driver version (for example, 1.0.1.1004).
    The new driver and installation instructions can be found here.
    Note: The Intel Matrix Storage Driver is updated with this package.
    Step 2: BIOS version
    If your BIOS version is older than those listed below, please update to the version listed.
    How to check your BIOS version:
    Turn off the system.
    Turn on the system.
    While the To interrupt normal startup, press the blue ThinkVantage button message is displayed at the lower-left area of the screen, press the F1 key.
    The
    BIOS Setup Utility menu will be displayed. If you have set a supervisor
    password, the BIOS Setup Utility menu appears after you enter the
    password.
    Check BIOS Version and Embedded Controller Version.
    Turn off the system.
    System BIOS versions:
    ThinkPad X61 or X61s - BIOS version 1.06 (7NET25WW)
    Please
    remember that these updates do not solve every possible system blue
    screen, but they do resolve several problems related to the Intel Turbo
    Memory driver.
    Tim Supples
    Lenovo Social Media
    Got a question? Don't PM me, post it on the forum!
    Lenovo Blogs
    X60 Tablet SXGA+ primary, Z61p fully loaded workhorse

    Dear Tim,
    First off, many thanks for the tips for resolving BSOD with Vista + Turbo Memory on X61.  I've been suffering from this BSOD for countless times since I bought in my X61 7673-CW9 in April 2008.
    Even prior to having the pleasure to visit this wonderful forum, I followed both steps as indicated, and updated my Intel Turbo Memory driver to 1.5.0.1013 and my BIOS to 7NETB4WW (2.14).  However, the BSOD recurrs.
    For the past two months, I've recovered my system to factory default settings using Rescue and Recovery for over twenty times, each time with the latest Intel Turbo Memory driver and BIOS.  Notwithstanding that, BSOD recurrs.
    During these painful experiences, I tried two options: 1) making my X61 up-to-date by using System Update and Windows Update (including Vista SP1 or excluding Vista SP1); 2) keeping my X61 the status as factory default (i.e. without updating through either System Update or Windows Update (the automatic/scheduled update function of both is turned off)).  In either case, BSOD recurrs.
    I'm 100% positive that the BSOD does not arise from any hardware or software/firmware I install.  I never install any hardware (e.g. RAM).  And, it is not caused by any software/firmware I install: the clear and unequivocal evidence is that at one time,I encountered BSOD while having restored back to factory setting and booting for the first time.
    I live in Taiwan, and I seldom heard this BSOD here.  All of my friends (as most of Taiwan residents) using X61 operate in Traditional Chinese environment, whereas I operate in English environment.  In Taiwan, when booting for the first time after purchase/recovery, the Windows Vista Business system provides for lanuage choice (Traditional Chinese or English), and, once chosen, the language cannot be altered later on (unless, of course, the system is restored back to factory default settings).
    My system specs are the same as the day I purchased it and are listed below (as I'm not sure if my machine type X61 7673-CW9 is applicable outside Taiwan):
    Processor: Intel(R) Core(TM)2 Duo CPU T8300 @ 2.4GHz
    Memory: 1.00 G.B.
    System: Windows Vista Business (32-bit)
    Hard Drive: 160 G.B. @ 7,200 r.p.m.
    And, of course, with Intel Turbo Memory 1 G.B.
    I contacted the Lenovo support staff here in Taiwan for countless times, but they seem to be clueless.  I learned that some friends at this forum downgraded their OS back to Windows XP, but I chose not to.  The reason is simple: my purchase price for X61 7673-CW9 includes the Intel Turbo Memory, which cannot function under Windows XP (at least so far).
    Therefore, I just wish to share my experience here and perhaps I can get some advice from you and other friends here.  Any advice will be tremendously and enormously appreciated.
    Kevin Chen @ Taiwan

  • Valuation with material cost estimate: error with product " 200038 "

    Hi,
    I am getting an error:
    Valuation with material cost estimate: error with product " 200038 "  (Message KE350).
    Kindly assist on the same?

    If this material is mto material go to t.code KE40 and maintain define access to standard cost estimate define cost key with
    "Transfer sales orde cost estimatex".
    If it is mts material define costing key with Transfer std cost estimate  and in costing data
    costing variant : ppc1
    costing verstion: 1
    period  indicator:  Release std cost estimate matching with goods issue or material costing matching posting date.
    This will resolve ur problem.

  • Journal posting error

    Journal post request failed with an ERROR, and refers to see LOG file
    Which displays following LANGUAGE, that is not understandable by me please tell me how to resolve the issue
    General Ledger: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    GLPPOS module: Posting
    Current system time is 23-APR-2013 16:26:08
    glpmai() 23-APR-2013 16:26:08SHRD0176: GLPPOS started in debug mode...
    PPOS0003: *** Posting Process Started ***
    PPOS0004: All phases to posting will be detailed in this log.
    PPOS0219: glpmai() - Your Posting Run ID is 115117
    glucmt() 23-APR-2013 16:26:08<< glucmt() 23-APR-2013 16:26:08
    glpini() 23-APR-2013 16:26:08SHRD0180: glpini() - Performing action >> check_batches_exist...
    SHRD0180: glpini() - Performing action >> get_bal_seg_name...
    SHRD0180: glpini() - Performing action >> get_mgmt_seg_name...
    SHRD0180: glpini() - Performing action >> get_ic_seg_name...
    SHRD0180: glpini() - Performing action >> get_cc_seg_name...
    SHRD0180: glpini() - Performing action >> get_ss_seg_name...
    SHRD0180: glpini() - Performing action >> get_flex_delimiter...
    SHRD0180: glpini() - Performing action >> get_flex_segments...
    SHRD0180: glpini() - Performing action >> initialize_fafailbat_list...
    SHRD0180: glpini() - Performing action >> get_adb_ledger_info...
    SHRD0180: glpini() - Performing action >> get_posting_date...
    SHRD0180: glpini() - Performing action >> update_batch_status...
    SHRD0181: glpini() - num_of_batches_in_posting_req = 1
    SHRD0181: glpini() - num_of_headers_updated = 2
    glpuch() 23-APR-2013 16:26:08SHRD0180: glpuch() - Performing action >> update_cons_history(G/D/F)...
    << glpuch() 23-APR-2013 16:26:08
    glpueh() 23-APR-2013 16:26:08SHRD0180: glpueh() - Performing action >> update_elim_history(G/D/F)...
    << glpueh() 23-APR-2013 16:26:08
    glucmt() 23-APR-2013 16:26:08<< glucmt() 23-APR-2013 16:26:08
    SHRD0180: glpini() - Performing action >> check_alc_ledgers_exist...
    SHRD0180: glpini() - Performing action >> check_sl_ledgers_exist...
    SHRD0180: glpini() - Performing action >> is_mrc_acct_type_specific_conv_on...
    SHRD0180: glpini() - Performing action >> check_budget_jes_exist...
    SHRD0180: glpini() - Performing action >> check_mixed_stat_jes_exist...
    SHRD0180: glpini() - Performing action >> check_adj_periods_exist...
    SHRD0180: glpini() - Performing action >> check_efb_upgrade_run...
    SHRD0181: glpini() - control->access_set_id = 1262
    SHRD0181: glpini() - control->coa_id = 53604
    SHRD0181: glpini() - control->prun_id = 115117
    SHRD0181: glpini() - control->dmode = TRUE
    SHRD0181: glpini() - control->num_batches = 1
    SHRD0181: glpini() - control->period_set_name = ZNR Accounting
    SHRD0181: glpini() - control->period_type = 64
    SHRD0181: glpini() - control->industry = C
    SHRD0181: glpini() - control->bal_seg_name = SEGMENT1
    SHRD0181: glpini() - control->bal_seg_num = 0
    SHRD0181: glpini() - control->mgt_seg_name = SEGMENT2
    SHRD0181: glpini() - control->mgt_seg_num = 1
    SHRD0181: glpini() - control->ic_seg_name = SEGMENT4
    SHRD0181: glpini() - control->ic_seg_num = 3
    SHRD0181: glpini() - control->cc_seg_name = SEGMENT2
    SHRD0181: glpini() - control->cc_seg_num = 1
    SHRD0181: glpini() - control->ss_seg_name = SEGMENT2
    SHRD0181: glpini() - control->ss_seg_num = 1
    SHRD0181: glpini() - control->num_segs = 4
    SHRD0181: glpini() - control->batches_exist = TRUE
    SHRD0181: glpini() - control->budget_jes_exist = FALSE
    SHRD0181: glpini() - control->mixed_stat_jes_exist = FALSE
    SHRD0181: glpini() - control->adj_periods_exist = FALSE
    SHRD0181: glpini() - control->acct_cat_bal = FALSE
    SHRD0181: glpini() - control->alc_ledgers_exist = FALSE
    SHRD0181: glpini() - control->sl_ledgers_exist = FALSE
    SHRD0181: glpini() - control->max_days_roll_fwd = 32
    SHRD0181: glpini() - control->acct_type_conv = FALSE
    SHRD0181: glpini() - hist_rate_col =
    SHRD0181: glpini() - hist_amt_col =
    SHRD0181: glpini() - bs_conversion_type =
    SHRD0181: glpini() - is_conversion_type =
    SHRD0181: glpini() - preferred_led_id = 1
    SHRD0181: glpini() - control->cons_ledgers_exist(excluding_alcs) = FALSE
    SHRD0181: glpini() - control->cons_jes_exist(excluding_alcs) = FALSE
    SHRD0181: glpini() - control->ab_ledgers_exist(excluding_alcs) = FALSE
    SHRD0181: glpini() - control->posting_date = 2013/04/23 16:26:08
    SHRD0181: glpini() - control->user_name = OPERATIONS
    SHRD0181: glpini() - control->user_id = 1318
    SHRD0181: glpini() - control->login_id = 5731484
    SHRD0181: glpini() - control->request_id = 6048255
    SHRD0181: glpini() - control->program_id = 101
    SHRD0181: glpini() - control->efb_upgrade_flag = TRUE
    << glpini() 23-APR-2013 16:26:08
    glppva() 23-APR-2013 16:26:08SHRD0180: glppva() - Performing action >> Check for untaxed journals...
    SHRD0180: glppva() - Performing action >> Check for unapproved batches...
    << glppva() 23-APR-2013 16:26:08
    glpfcr() 23-APR-2013 16:26:08SHRD0180: glpfcr() - Performing action >> get_sid_and_serial#...
    SHRD0180: glpfcr() - Performing action >> get_ussgl_profile_option...
    SHRD0180: glpfcr() - Performing action >> chk_batch_with_multiple_ledgers...
    SHRD0180: glpfcr() - Performing action >> chk_no_funds_required_for_batch...
    SHRD0180: glpfcr() - Performing action >> define_batches_cursor...
    SHRD0180: glpfcr() - Performing action >> build_ins_bc_packets_stmt...
    SHRD0181: glpfcr() - sqlstmtbuf =
    INSERT INTO GL_BC_PACKETS(
    packet_id,
    ledger_id,
    je_source_name,
    je_category_name,
    code_combination_id,
    actual_flag,
    period_name,
    period_year,
    period_num,
    quarter_num,
    currency_code,
    status_code,
    last_update_date,
    last_updated_by,
    entered_dr,
    entered_cr,
    accounted_dr,
    accounted_cr,
    je_batch_id,
    je_header_id,
    je_line_num,
    budget_version_id,
    encumbrance_type_id,
    ussgl_transaction_code,
    session_id,
    serial_id,
    application_id)
    SELECT
    :packet_id,
    JEH.ledger_id,
    JEH.je_source,
    JEH.je_category,
    JEL.code_combination_id,
    JEB.actual_flag,
    JEB.default_period_name,
    PS.period_year,
    PS.period_num,
    PS.quarter_num,
    JEH.currency_code,
    'P',
    sysdate,
    :user_id,
    nvl(JEL.entered_dr, 0),
    nvl(JEL.entered_cr, 0),
    nvl(JEL.accounted_dr, 0),
    nvl(JEL.accounted_cr, 0),
    :je_batch_id,
    JEH.je_header_id,
    JEL.je_line_num,
    JEH.budget_version_id,
    JEH.encumbrance_type_id,
    JEL.ussgl_transaction_code,
    :session_id,
    :serial_num,
    :appl_id
    FROM GL_JE_BATCHES JEB,
    GL_JE_HEADERS JEH,
    GL_JE_LINES JEL,
    GL_PERIOD_STATUSES PS
    WHERE JEB.je_batch_id = :je_batch_id
    AND JEH.je_batch_id = JEB.je_batch_id
    AND JEL.je_header_id = JEH.je_header_id
    AND PS.application_id = :appl_id
    AND PS.ledger_id = JEH.ledger_id
    AND PS.period_name = JEB.default_period_name
    SHRD0181: glpfcr() - sqlstmtbuf(len) =
    1404
    SHRD0180: glpfcr() - Performing action >> process_fc_batches...
    << glpfcr() 23-APR-2013 16:26:08
    glpsec() 23-APR-2013 16:26:08SHRD0180: glpsec() - Performing action >> chk_access_set_security...
    SHRD0181: glpsec() - sqlstmtbuf =
    UPDATE GL_JE_BATCHES JEB
    SET JEB.status = 'a'
    WHERE JEB.status = 'I'
    AND JEB.chart_of_accounts_id = :coa_id
    AND JEB.posting_run_id = :prun_id
    AND EXISTS (SELECT 'unwriteable journal' FROM gl_je_headers jeh WHERE jeh.je_batch_id = JEB.je_batch_id AND NOT EXISTS (SELECT 'unwriteable journal' FROM gl_access_set_ledgers acc WHERE acc.access_set_id = 1262 AND acc.ledger_id = jeh.ledger_id AND acc.access_privilege_code IN ('B', 'F') ))
    SHRD0181: glpsec() - sqlstmtbuf(len) =
    454
    SHRD0118: Updated 0 record(s) in table: GL_JE_BATCHES
    SHRD0180: glpsec() - Performing action >> chk_ledgerBSV_valid...
    SHRD0118: Updated 0 record(s) in table: GL_JE_BATCHES
    SHRD0180: glpsec() - Performing action >> chk_ledgerMSV_valid...
    SHRD0118: Updated 0 record(s) in table: GL_JE_BATCHES
    glucmt() 23-APR-2013 16:26:08<< glucmt() 23-APR-2013 16:26:08
    << glpsec() 23-APR-2013 16:26:08
    glphok() 23-APR-2013 16:26:08<< glphok() 23-APR-2013 16:26:08
    glpsqi() 23-APR-2013 16:26:08SHRD0181: glpsqi() - num_ledgers_locked = 1
    << glpsqi() 23-APR-2013 16:26:08
    glpcjl() 23-APR-2013 16:26:08SHRD0180: glpcjl() - Performing action >> build_CJL1_cursor...
    SHRD0181: glpcjl() - cjl1_stmt =
    SELECT JEH.ledger_id,
    JEH.je_header_id,
    JEH.je_batch_id,
    max(JEH.period_name),
    max(JEH.currency_code),
    max(JEH.name),
    max(JEB.name),
    to_char(max(JEH.default_effective_date),'YYYY/MM/DD'),
    decode(sign(nvl(sum(JEL.accounted_dr),0)
    - nvl(sum(JEL.accounted_cr),0)),
    1,
    0,
    (nvl(sum(JEL.accounted_cr),0)
    - nvl(sum(JEL.accounted_dr),0))),
    decode(sign(nvl(sum(JEL.accounted_dr),0)
    - nvl(sum(JEL.accounted_cr),0)),
    1,
    (nvl(sum(JEL.accounted_dr),0)
    - nvl(sum(JEL.accounted_cr),0)),
    0),
    max(CC.SEGMENT1),
    max(LED.track_rounding_imbalance_flag),
    max(nvl(LED.rounding_code_combination_id, 0))
    FROM GL_JE_BATCHES JEB,
    GL_JE_HEADERS JEH,
    GL_LEDGERS LED,
    GL_JE_LINES JEL,
    GL_CODE_COMBINATIONS CC
    WHERE JEB.status = 'I'
    AND JEB.chart_of_accounts_id = :coa_id
    AND JEB.posting_run_id = :prun_id
    AND JEH.je_batch_id = JEB.je_batch_id
    AND JEH.currency_code != 'STAT'
    AND JEH.status != 'b'
    AND JEH.actual_flag != 'B'
    AND nvl(JEH.conversion_flag,'x') != 'N'
    AND LED.ledger_id = JEH.ledger_id
    AND JEH.currency_code != LED.currency_code
    AND JEL.code_combination_id = CC.code_combination_id
    AND JEL.je_header_id = JEH.je_header_id
    GROUP BY JEH.je_batch_id, JEH.je_header_id, CC.SEGMENT1, JEH.ledger_id
    HAVING nvl(sum(JEL.entered_dr),0) = nvl(sum(JEL.entered_cr),0)
    AND nvl(sum(JEL.accounted_dr),0) != nvl(sum(JEL.accounted_cr),0)
    ORDER BY JEH.je_batch_id, JEH.ledger_id, JEH.je_header_id, CC.SEGMENT1
    SHRD0181: glpcjl() - cjl1_stmt(len) = 1835
    SHRD0180: glpcjl() - Performing action >> build_CJL2_cursor...
    SHRD0181: glpcjl() - cjl2_stmt =
    SELECT JEH.ledger_id,
    JEH.je_header_id,
    JEH.je_batch_id,
    max(JEH.period_name),
    max(JEH.currency_code),
    max(JEH.name),
    max(JEB.name),
    to_char(max(JEH.default_effective_date),'YYYY/MM/DD'),
    decode(sign(nvl(sum(JEL.accounted_dr),0)
    - nvl(sum(JEL.accounted_cr),0)),
    1,
    0,
    (nvl(sum(JEL.accounted_cr),0)
    - nvl(sum(JEL.accounted_dr),0))),
    decode(sign(nvl(sum(JEL.accounted_dr),0)
    - nvl(sum(JEL.accounted_cr),0)),
    1,
    (nvl(sum(JEL.accounted_dr),0)
    - nvl(sum(JEL.accounted_cr),0)),
    0),
    max(CC.SEGMENT1),
    max(LED.track_rounding_imbalance_flag),
    max(nvl(LED.rounding_code_combination_id, 0))
    FROM GL_JE_BATCHES JEB,
    GL_JE_HEADERS JEH,
    GL_LEDGERS LED,
    GL_JE_LINES JEL,
    GL_CODE_COMBINATIONS CC
    WHERE JEB.status = 'I'
    AND JEB.chart_of_accounts_id = :coa_id
    AND JEB.posting_run_id = :prun_id
    AND JEH.je_batch_id = JEB.je_batch_id
    AND JEH.currency_code != 'STAT'
    AND JEH.status != 'b'
    AND JEH.actual_flag != 'B'
    AND nvl(JEH.conversion_flag,'x') != 'N'
    AND LED.ledger_id = JEH.ledger_id
    AND JEH.currency_code != LED.currency_code
    AND JEL.code_combination_id = CC.code_combination_id
    AND JEL.je_header_id = JEH.je_header_id
    GROUP BY JEH.je_batch_id, JEH.je_header_id, JEH.ledger_id
    HAVING nvl(sum(JEL.entered_dr),0) = nvl(sum(JEL.entered_cr),0)
    AND nvl(sum(JEL.accounted_dr),0) != nvl(sum(JEL.accounted_cr),0)
    ORDER BY JEH.je_batch_id, JEH.ledger_id, JEH.je_header_id
    SHRD0181: glpcjl() - cjl2_stmt(len) = 1807
    SHRD0180: glpcjl() - Performing action >> build_CJL3_cursor...
    SHRD0181: glpcjl() - cjl3_stmt =
    SELECT CC.SEGMENT1
    FROM GL_JE_LINES JEL,
    GL_CODE_COMBINATIONS CC
    WHERE JEL.je_header_id = :jeh_id
    AND CC.code_combination_id = JEL.code_combination_id + 0
    AND (JEL.accounted_cr + (JEL.je_line_num/1000000)) =
    (SELECT max(JEL1.accounted_cr + (JEL1.je_line_num/1000000))
    FROM GL_JE_LINES JEL1
    WHERE JEL1.je_header_id = :jeh_id)
    SHRD0181: glpcjl() - cjl3_stmt(len) = 401
    SHRD0180: glpcjl() - Performing action >> build_CJL4_cursor...
    SHRD0181: glpcjl() - cjl4_stmt =
    SELECT CC.SEGMENT1
    FROM GL_JE_LINES JEL,
    GL_CODE_COMBINATIONS CC
    WHERE JEL.je_header_id = :jeh_id
    AND CC.code_combination_id = JEL.code_combination_id + 0
    AND (JEL.accounted_dr + (JEL.je_line_num/1000000)) =
    (SELECT max(JEL1.accounted_dr + (JEL1.je_line_num/1000000))
    FROM GL_JE_LINES JEL1
    WHERE JEL1.je_header_id = :jeh_id)
    SHRD0181: glpcjl() - cjl4_stmt(len) = 401
    SHRD0180: glpcjl() - Performing action >> build_CJL5_stmt...
    SHRD0181: glpcjl() - cjl5_stmt =
    UPDATE GL_JE_LINES jel1
    SET jel1.accounted_cr = jel1.accounted_cr + (:mtl * :acr)
    WHERE jel1.je_header_id = :jeh_id
    AND jel1.accounted_cr + (jel1.je_line_num/1000000) =
    (SELECT max(jel2.accounted_cr +
    (jel2.je_line_num/1000000))
    FROM GL_JE_LINES jel2
    WHERE jel2.je_header_id = :jeh_id)
    SHRD0181: glpcjl() - cjl5_stmt(len) = 364
    SHRD0180: glpcjl() - Performing action >> build_CJL6_stmt...
    SHRD0181: glpcjl() - cjl6_stmt =
    UPDATE GL_JE_LINES jel1
    SET jel1.accounted_cr = jel1.accounted_cr + (:mtl * :acr)
    WHERE jel1.je_header_id = :jeh_id
    AND jel1.accounted_cr + (jel1.je_line_num/1000000) =
    (SELECT max(jel2.accounted_cr +
    (jel2.je_line_num/1000000))
    FROM GL_CODE_COMBINATIONS cc, GL_JE_LINES jel2
    WHERE jel2.je_header_id = :jeh_id
    AND cc.code_combination_id =
    jel2.code_combination_id + 0
    AND cc.SEGMENT1 || '' = :plug_balseg)
    SHRD0181: glpcjl() - cjl6_stmt(len) = 535
    SHRD0180: glpcjl() - Performing action >> build_CJL7_stmt...
    SHRD0181: glpcjl() - cjl7_stmt =
    UPDATE GL_JE_LINES jel1
    SET jel1.accounted_dr = jel1.accounted_dr + (:mtl * :adr)
    WHERE jel1.je_header_id = :jeh_id
    AND jel1.accounted_dr + (jel1.je_line_num/1000000) =
    (SELECT max(jel2.accounted_dr +
    (jel2.je_line_num/1000000))
    FROM GL_JE_LINES jel2
    WHERE jel2.je_header_id = :jeh_id)
    SHRD0181: glpcjl() - cjl7_stmt(len) = 364
    SHRD0180: glpcjl() - Performing action >> build_CJL8_stmt...
    SHRD0181: glpcjl() - cjl8_stmt =
    UPDATE GL_JE_LINES jel1
    SET jel1.accounted_dr = jel1.accounted_dr + (:mtl * :adr)
    WHERE jel1.je_header_id = :jeh_id
    AND jel1.accounted_dr + (jel1.je_line_num/1000000) =
    (SELECT max(jel2.accounted_dr +
    (jel2.je_line_num/1000000))
    FROM GL_CODE_COMBINATIONS cc, GL_JE_LINES jel2
    WHERE jel2.je_header_id = :jeh_id
    AND cc.code_combination_id =
    jel2.code_combination_id + 0
    AND cc.SEGMENT1 || '' = :plug_balseg)
    SHRD0181: glpcjl() - cjl8_stmt(len) = 535
    SHRD0180: glpcjl() - Performing action >> build_ins_je_segvals...
    SHRD0180: glpcjl() - Performing action >> build_ins_recon_lines...
    SHRD0180: glpcjl() - Performing action >> loop_through_CJL1_cursor...
    SHRD0026: Current system time is: 23-APR-2013 16:26:08
    SHRD0180: glpcjl() - Performing action >> loop_through_CJL2_cursor...
    SHRD0026: Current system time is: 23-APR-2013 16:26:08
    << glpcjl() 23-APR-2013 16:26:08
    glpcbs() 23-APR-2013 16:26:08SHRD0180: glpcbs() - Performing action >> validate_header_attributes...
    SHRD0118: Updated 2 record(s) in table: GL_JE_HEADERS
    SHRD0180: glpcbs() - Performing action >> check_period_status_for_batches...
    SHRD0118: Updated 0 record(s) in table: GL_JE_BATCHES
    SHRD0180: glpcbs() - Performing action >> validate_period_name_for_batches...
    SHRD0118: Updated 0 record(s) in table: GL_JE_BATCHES
    SHRD0180: glpcbs() - Performing action >> validate_frozen_budget_and_org_for_headers...
    SHRD0118: Updated 0 record(s) in table: GL_JE_HEADERS
    SHRD0180: glpcbs() - Performing action >> validate_frozen_budget_accounts_for_headers...
    SHRD0181: glpcbs() - sqlstmtbuf =
    UPDATE GL_JE_HEADERS JEH
    SET STATUS = 'Y'
    WHERE JEH.je_batch_id in
    (SELECT JEB1.je_batch_id
    FROM GL_JE_BATCHES JEB1
    WHERE JEB1.actual_flag = 'B'
    AND JEB1.status = 'I'
    AND JEB1.chart_of_accounts_id = :vcoa_id
    AND JEB1.posting_run_id = :vprun_id)
    AND JEH.status = 'U'
    AND EXISTS
    (SELECT 1
    FROM GL_JE_LINES JEL,
    GL_BUDGET_FROZEN_RANGES FRZ,
    GL_CODE_COMBINATIONS CC,
    GL_BUDGET_ASSIGNMENTS ASG
    WHERE JEL.je_header_id = JEH.je_header_id
    AND FRZ.budget_version_id = JEH.budget_version_id
    AND ASG.budget_entity_id = FRZ.budget_entity_id
    AND CC.code_combination_id =
    JEL.code_combination_id
    AND CC.chart_of_accounts_id = :vcoa_id
    AND ASG.code_combination_id =
    JEL.code_combination_id
    AND CC.SEGMENT1 BETWEEN FRZ.SEGMENT1_low and FRZ.SEGMENT1_high
    AND CC.SEGMENT2 BETWEEN FRZ.SEGMENT2_low and FRZ.SEGMENT2_high
    AND CC.SEGMENT3 BETWEEN FRZ.SEGMENT3_low and FRZ.SEGMENT3_high
    AND CC.SEGMENT4 BETWEEN FRZ.SEGMENT4_low and FRZ.SEGMENT4_high
    SHRD0181: glpcbs() - sqlstmtbuf(len) =
    1198
    SHRD0118: Updated 0 record(s) in table: GL_JE_HEADERS
    SHRD0180: glpcbs() - Performing action >> update_batch_status_for_error_budget_jrnls...
    SHRD0118: Updated 0 record(s) in table: GL_JE_BATCHES
    SHRD0180: glpcbs() - Performing action >> validate_ccids_and_others_for_headers...
    SHRD0181: glpcbs() - sqlstmtbuf =
    UPDATE GL_JE_HEADERS JEH
    SET (running_total_dr,
    running_total_cr,
    running_total_accounted_dr,
    running_total_accounted_cr,
    multi_bal_seg_flag,
    balanced_je_flag,
    balancing_segment_value,
    status) =
    (SELECT sum(nvl(JEL.entered_dr,0)),
    sum(nvl(JEL.entered_cr,0)),
    sum(nvl(JEL.accounted_dr,0)),
    sum(nvl(JEL.accounted_cr,0)),
    decode(count(distinct CC.SEGMENT1), 1, 'N',
    'Y'),
    decode(sign(sum(nvl(JEL.accounted_cr,0)) -
    sum(nvl(JEL.accounted_dr,0))),
    0, 'Y', 'N'),
    decode(sign(sum(nvl(JEL.accounted_cr,0)) -
    sum(nvl(JEL.accounted_dr,0))),
    0, decode(sign(sum(nvl(JEL.entered_cr,0))
    - sum(nvl(JEL.entered_dr,0))),
    0, '',
    max(CC.SEGMENT1)),
    max(CC.SEGMENT1)),
    decode(sum (distinct
    decode(CC.code_combination_id, null, 1,
    decode(CC.enabled_flag, 'N', 100,
    decode(sign(CC.start_date_active -
    JEL.effective_date),
    1, 1000,
    decode(sign(CC.end_date_active -
    JEL.effective_date),
    -1, 10000,
    decode(CC.template_id, null,
    decode(JEH.actual_flag,
    'B', 0,
    'E', 0,
    decode(CC.detail_posting_allowed_flag,
    'N', 10, 0)), 100000)))))),
    0, 'U',
    1, 'A',
    10, 'C',
    100, 'F',
    1000, 'J',
    10000, 'M',
    100000, 'V',
    'Z')
    FROM GL_JE_LINES JEL,
    GL_CODE_COMBINATIONS CC
    WHERE JEL.je_header_id = JEH.je_header_id
    AND JEL.code_combination_id =
    CC.code_combination_id(+)
    AND CC.chart_of_accounts_id(+) = :vcoa_id)
    WHERE JEH.status = 'U'
    AND JEH.je_batch_id IN
    (SELECT JEB1.je_batch_id
    FROM GL_JE_BATCHES JEB1
    WHERE JEB1.status = 'I'
    AND JEB1.chart_of_accounts_id = :vcoa_id
    AND JEB1.posting_run_id = :vprun_id)
    SHRD0181: glpcbs() - sqlstmtbuf(len) =
    2195
    SHRD0118: Updated 2 record(s) in table: GL_JE_HEADERS
    SHRD0180: glpcbs() - Performing action >> update_batch_running_totals...
    SHRD0118: Updated 1 record(s) in table: GL_JE_BATCHES
    SHRD0180: glpcbs() - Performing action >> validate_batch_control_totals_and_suspense...
    SHRD0118: Updated 1 record(s) in table: GL_JE_BATCHES
    glucmt() 23-APR-2013 16:26:08<< glucmt() 23-APR-2013 16:26:08
    << glpcbs() 23-APR-2013 16:26:08
    glpisl() 23-APR-2013 16:26:08SHRD0180: glpisl() - Performing action >> build_ISL1_cursor...
    SHRD0180: glpisl() - Performing action >> build_ISL2_cursor...
    SHRD0181: glpisl() - isl2_stmt =
    SELECT
    CC.SEGMENT1,
    decode(sign(sum(nvl(JEL.accounted_cr,0))
    - sum(nvl(JEL.accounted_dr,0))),
    1, (sum(nvl(JEL.accounted_cr,0)) - sum(nvl(JEL.accounted_dr,0))),
    0),
    decode(sign(sum(nvl(JEL.accounted_cr,0))
    - sum(nvl(JEL.accounted_dr,0))),
    1, 0,
    (sum(nvl(JEL.accounted_dr,0)) - sum(nvl(JEL.accounted_cr,0)))),
    decode(sign(sum(nvl(JEL.entered_cr,0))
    - sum(nvl(JEL.entered_dr,0))),
    1, (sum(nvl(JEL.entered_cr,0)) - sum(nvl(JEL.entered_dr,0))),
    0),
    decode(sign(sum(nvl(JEL.entered_cr,0))
    - sum(nvl(JEL.entered_dr,0))),
    1, 0,
    (sum(nvl(JEL.entered_dr,0)) - sum(nvl(JEL.entered_cr,0))))
    FROM GL_JE_LINES JEL,
    GL_CODE_COMBINATIONS CC
    WHERE JEL.je_header_id = :jeh_id
    AND CC.code_combination_id = JEL.code_combination_id
    GROUP BY SEGMENT1
    SHRD0181: glpisl() - isl2_stmt(len) = 969
    SHRD0180: glpisl() - Performing action >> build_ISL3_cursor...
    SHRD0180: glpisl() - Performing action >> build_ISL4_cursor...
    SHRD0180: glpisl() - Performing action >> build_ins_je_segvals...
    SHRD0180: glpisl() - Performing action >> build_ins_recon_lines...
    SHRD0180: glpisl() - Performing action >> loop_through_ISL1_cursor...
    glucmt() 23-APR-2013 16:26:08<< glucmt() 23-APR-2013 16:26:08
    << glpisl() 23-APR-2013 16:26:08
    glpiil() 23-APR-2013 16:26:08
    glpince() 23-APR-2013 16:26:08SHRD0180: glpince() - Performing action >> find_ic_journals...
    SHRD0181: glpince() - sqlstmtbuf =
    UPDATE gl_je_headers jh
    SET jh.multi_bal_seg_flag = 'I'
    WHERE jh.je_batch_id IN
    (SELECT jb.je_batch_id
    FROM gl_je_batches jb
    WHERE jb.chart_of_accounts_id = :coa_id
    AND jb.posting_run_id = :prun_id
    AND jb.actual_flag != 'B'
    AND jb.status = 'I'
    AND jh.currency_code != 'STAT'
    AND jh.status != 'P'
    AND jh.multi_bal_seg_flag = 'Y'
    AND EXISTS
    (SELECT 'unbalanced intercompany journals'
    FROM gl_ledgers led,
    gl_je_lines jl,
    gl_code_combinations cc
    WHERE led.ledger_id = jh.ledger_id
    AND led.allow_intercompany_post_flag = 'Y'
    AND jl.je_header_id = jh.je_header_id
    AND cc.code_combination_id = jl.code_combination_id
    GROUP BY cc.SEGMENT1
    HAVING SUM(NVL(jl.accounted_dr,0)) !=
    SUM(NVL(jl.accounted_cr,0))
    SHRD0181: glpince() - sqlstmtbuf(len) =
    946
    SHRD0180: glpince() - Performing action >> Check for ic journals with actual balances...
    SHRD0118: Updated 0 record(s) in table: GL_JE_HEADERS
    glucmt() 23-APR-2013 16:26:08<< glucmt() 23-APR-2013 16:26:08
    << glpince() 23-APR-2013 16:26:08
    PPOS0247: There are no intercompany or intracompany journals that require balancing.
    << glpiil() 23-APR-2013 16:26:08
    glpcib() 23-APR-2013 16:26:08<< glpcib() 23-APR-2013 16:26:08
    glpmni() 23-APR-2013 16:26:08SHRD0180: glpmni() - Performing action >> get_net_income_cc...
    SHRD0181: glpmni() - sqlstmtbuf =
    SELECT distinct JEH.je_header_id,
    to_char(JEH.default_effective_date, 'YYYY/MM/DD'),
    LED.ledger_id,
    LED.net_income_code_combination_id,
    CC.SEGMENT1
    FROM GL_JE_BATCHES JEB,
    GL_JE_HEADERS JEH,
    GL_LEDGERS LED,
    GL_JE_LINES JEL,
    GL_CODE_COMBINATIONS CC
    WHERE JEB.status = 'I'
    AND JEB.posting_run_id = :vprun_id
    AND JEB.actual_flag = 'A'
    AND JEB.je_batch_id = JEH.je_batch_id
    AND LED.ledger_id = JEH.ledger_id
    AND LED.enable_average_balances_flag = 'Y'
    AND JEB.average_journal_flag =
    decode(LED.consolidation_ledger_flag, 'Y', 'Y', 'N')
    AND JEL.je_header_id = JEH.je_header_id
    AND JEL.status = 'U'
    AND CC.code_combination_id = JEL.code_combination_id
    AND NOT EXISTS
    ( SELECT 'Net income account exists for this bsv'
    FROM GL_NET_INCOME_ACCOUNTS NIA
    WHERE NIA.ledger_id = JEH.ledger_id
    AND NIA.bal_seg_value = CC.SEGMENT1)
    ORDER BY LED.ledger_id,
    CC.SEGMENT1
    SHRD0181: glpmni() - sqlstmtbuf(len) = 1019
    SHRD0180: glpmni() - Performing action >> prepare_ni_templates_cursor...
    SHRD0180: glpmni() - Performing action >> begin_processing_cursor...
    SHRD0147: Finished processing rows
    SHRD0180: glpmni() - Performing action >> reinitialize_adb_variables...
    SHRD0026: Current system time is: 23-APR-2013 16:26:08
    SHRD0181: glpmni() - control->ab_ledgers_exist(including_alcs) = FALSE
    << glpmni() 23-APR-2013 16:26:08
    glperp() 23-APR-2013 16:26:08
    glperp() 23-APR-2013 16:26:08SHRD0181: glperp() - batch_name = Reverses "Zn Computer Sales"17-APR-13 15:57:42 - 6045453
    SHRD0181: glperp() - batch_per = JUL-13
    SHRD0181: glperp() - num_of_batches_in_error = 0
    glucmt() 23-APR-2013 16:26:08<< glucmt() 23-APR-2013 16:26:08
    << glperp() 23-APR-2013 16:26:08
    glpsqp() 23-APR-2013 16:26:08<< glpsqp() 23-APR-2013 16:26:08
    glpsqs() 23-APR-2013 16:26:08PERF0005: Oracle error detected in glpsqs() - ORA-20001: An active sequence assignment is required.
    ORA-06512: at "A
    <x glpsqs() 23-APR-2013 16:26:08
    glpuch() 23-APR-2013 16:26:08SHRD0180: glpuch() - Performing action >> update_cons_history(G/D/F)...
    << glpuch() 23-APR-2013 16:26:08
    glpueh() 23-APR-2013 16:26:08SHRD0180: glpueh() - Performing action >> update_elim_history(G/D/F)...
    << glpueh() 23-APR-2013 16:26:08
    glpsqx() 23-APR-2013 16:26:08<< glpsqx() 23-APR-2013 16:26:08
    glucmt() 23-APR-2013 16:26:08<< glucmt() 23-APR-2013 16:26:08
    PPOS0002: Posting terminated with fatal errors
    <x glpmai() 23-APR-2013 16:26:08
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    Executing request completion options...
    Finished executing request completion options.
    Concurrent program returned no reason for failure.
    +---------------------------------------------------------------------------+
    Concurrent request completed
    Current system time is 23-APR-2013 16:26:08
    +---------------------------------------------------------------------------+

    Please see if the following docs help.
    R12: Posting Throws ORA-06512: at "APPS.GL_GLPPOS_ACCTSEQ_PKG" [ID 1058014.1]
    Posting a Journal Fails in GLPHOK due to ORA-20001 error [ID 242002.1]
    GL Posting Program Terminated With Errors in GLPUBR [ID 292683.1]
    Thanks,
    Hussein

Maybe you are looking for