Error with Posting

Hi All
I have a PL account which has no postings in year 2010 - however, when i run the report F.01 - i see the year end brought forward balance appearing in the 01/2010 column..
Can anyone shed some light as to why this might happen and how we can rectify this - since this is complicating our January month end..
Thanks much
Rukshana

Hi Again
so i open up year 2009, do the transfer to another PL account and then run the bal carr forward.
Wil there be any implications in me running the FAGLGVTR - Balance Carryforward again. And i would do it for 31.12.2009 right?
I will have to run it for the whole company code - will that again raise any issues..
Thank you
Rukshana

Similar Messages

  • Error with posting period

    Hi All,
    When I am trying to post goods issue
    for material 1 I get the following error log
    Posting only possible in periods 2002/11 and 2002/10 in company code .
    Then,I tried to update posting period using transaction code MMPV BUT INVAIN.
    Please help.
    Regards,

    Hi Neelam,
    1. Go to t.code OB52 there u change the period for your  Code for XXXX
    2.Then go to OX18- remove the Plant and Cocd assisngment(remove all the plants and pls make a note of those plant code later u may need it and save it.
    3.Go to OMSY,here u give the period from and to(whichever period u want to post n to)
    4.Now again go to OX18 (Plant and Cocd assisngment) here u assign the plant to cocd (all the plant which u have removed/disassigned in the step 2. then save it and come back.
    5.Now go to VL02N for Picking and PGI here u can be able to the same.
    Please check and revert back.. if it works
    Reason for doing above mentioned steps :
    As we can't initialize the company code in this case due to the existance of material valuation records, we are required to do this. This should be taken as work around solution for problem posted in this thread. Normally we come across these kind of problems in sand box or testing server environment.
    Once the system is in productive operation, we normally run the period
    closing program once a month at the beginning of a new period. This
    program sets the new period, making it possible to perform goods
    movements with reference to the new period.
    In real time this will be handled by MM consultants as they own this area
    Thanks and Regards,
    Guru

  • Errors with post-insert trigger

    I had a POST-INSERT TRIGGER here.but i encountered some problems.can someone help me with the errors?
    begin
         insert into user_acct
         userid_n, user_m, coy_c, contact_n, emp_n,
         work_loc_c, curr_passwd_t, prt_f, indv_pc_f, pc_deploy_c,      
         ext_email_addr_t, other_na_sys_t, status_c, status_rmk_t, upd_d)
         values
         (:user_acct.userid_n, :user_acct.user_m, :user_acct.coy_c, :user_acct.contact_n, :user_acct.emp_n,
         :user_acct.work_loc_c, :user_acct.curr_passwd_t, :user_acct.prt_f, :user_acct.indv_pc_f, :user_acct.pc_deploy_c,                
         :user_acct.ext_email_addr_t, :user_acct.other_na_sys_t, :user_acct.status_c, :user_acct.status_rmk_t,                
         :user_acct.upd_d);
         exception
              when others then
                   clear_message;
                   Message('Insertion of Applicant Particulars failed');
                   SYNCHRONIZE;
                   RAISE Form_Trigger_failure;
    end;
    begin
    insert into user_acct_na_detl
         na_sys_c)
         values
         (:na_sys_cd.na_sys_c);
         exception
              when others then
                   clear_message;
                   Message('Insertion of Non-Application failed');
                   SYNCHRONIZE;
                   RAISE Form_Trigger_failure;
    end;
              when others then
                   null;      
    end;     
    the error:
    Error 103 at line 31, column 3
    Encountered the symbol 'WHEN' when expecting one if the following:
    begin declare end exception exit for goto if loop mod null
    pragma raise return select update while <an identifier>
    <a double-quoted delimited-identifier><a bind variable><<
    close current delete fetch lock insert open rollback
    savepoint set sql commit<a single-quoted SQL string>
    The symbol "exception"was substituted for "WHEN" to continue
    Error 103 at line 2, column 1
    Encountered the symbol "END"

    i delete the "END" already but when i compile again, i encountered some error again.
    Error 370 at line 27, column
    OTHERS handler must be last among the exception handlers of a block
    Error 0 at line 1, column 1
    Statement ignored

  • Error with Posting..URLRequest

    package
              import flash.events.MouseEvent;
              import flash.net.URLLoader;
              import flash.net.URLRequest;
              import flash.net.URLVariables;
              import flash.net.URLLoaderDataFormat;
              import flash.net.URLRequestMethod;
              import flash.events.Event;
              import com.adobe.serialization.json.JSON;
              import flash.utils.Timer;
              import flash.events.TimerEvent;
              import flash.errors.IOError;
              import flash.events.IOErrorEvent;
              public class Score
                        private var loader : URLLoader = new URLLoader;
                        private var urlreq:URLRequest = new URLRequest("http://western_education/scores/submit");
                            private var urlvars: URLVariables = new URLVariables;
                        private var sessionId:int = 0;
                        private var sendingScore:Boolean = false;
                        public var msg:String = "";
                        public var isSuccessful:Boolean = false;
                        private var timeoutTmr:Timer = new Timer(5000, 0);
                        public function Score(){
                                  loader.dataFormat = URLLoaderDataFormat.TEXT;
                                  urlreq.method = URLRequestMethod.POST;
                                  sessionId = Math.random()*10000000;
                                  timeoutTmr.addEventListener(TimerEvent.TIMER, timeoutTmrListener);
                        public function setSendingScore(val:Boolean){
                                  sendingScore = val;
                        public function getSendingScore(){
                                  return sendingScore;
                        public function sendScore(gameId:int, score:int, knowledgeTokens:int):void{
                                  urlvars.score = score;
                                  urlvars.knowledgeTokens = knowledgeTokens;
                                  urlvars.gameId = gameId;
                                  urlvars.sessionId = sessionId;
                                  urlreq.data = urlvars;
                                  loader.addEventListener(Event.COMPLETE, completed);
                                  loader.addEventListener(IOErrorEvent.IO_ERROR, onIOError);
                                  loader.load(urlreq);
                                  setSendingScore(true);
                                  timeoutTmr.start();
                        private function onIOError(e:IOErrorEvent){
                                  setSendingScore(false);
                                  msg = "Connection Timed Out.";
                        private function timeoutTmrListener(e:TimerEvent){
                                  setSendingScore(false);
                                  msg = "Connection Timed Out.";
                                  timeoutTmr.stop();
                        public function completed(event:Event): void
                                  try{
                                            var returnData: URLLoader = URLLoader(event.target);
                                            var jsonData:Object= com.adobe.serialization.json.JSON.decode(returnData.data);
                                            msg = jsonData.message;
                                            isSuccessful = ((jsonData.isSuccessful == "true") ? true : false);
                                            sessionId++;
                                            setSendingScore(false);
                                            timeoutTmr.stop();
                                  }catch(e:Error){
                                            msg = e.message;
                                            setSendingScore(false);
                                            timeoutTmr.stop();
    This code works perfectly fine but when I create another class and just change the name of the respective class, but with the same logic, it no longer handles the post properly [and it will return that nothing was posted]..  Even though it's the same URL and code...
    How I stumbled upon this was because I was trying to do a post to another URL but couldn't figure out for the life of me what was failing.  Any help is appreciated.
    Thanks,
    Tim

    Hey kglad,
    My apologies; I figured out the problem which turned out to be stupid.  I didn't have the constructor matching the new name.. :-/
    Welp.  Thanks for helping out though.

  • Error message when I Embed QT movie with Poster movie

    Hi,
    I posted a QT movie with poster movie to my blog,
    http://blog.ginauhlmann.com/
    All info that I can think of is below, and any help would be greatly appreciated!
    I can't get my hosting company to help.
    Thanks!
    I uploaded a folder named video, with QT movie "FWP1.mov" & "FWP1.jpg" QT poster on to my FTP site.
    When I click on the play button, I get the following message:
    Forbidden
    You don't have permission to access /<!-- begin embedded QuickTime file... --> <table border='0' cellpadding='0' align="left"> <!-- begin video window... --> <tr><td> <DEFANGED_OBJECT
    classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' width="638" height="458" codebase='http://www.apple.com/qtactivex/qtplugin.cab'> <param name='src'
    value="http://ginauhlmann.com/video/FWP1.mov"> <param name='autoplay' value="false"> <param name='controller' value="true"> <param name='loop' value="false"> <DEFANGED_EMBED
    src="http://ginauhlmann.com/video/FWP1.mov" width="638" height="458" autoplay="false" controller="true" loop="false" pluginspage='http://www.apple.com/quicktime/download/'> </EMBED>
    </OBJECT> </td></tr> <!-- ...end embedded QuickTime file --> </table> on this server.
    Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
    Apache/2.0.52 (Debian GNU/Linux) PHP/4.3.10-2 Server at blog.ginauhlmann.com Port 80.
    In the design mode, I clicked on the hyperlink symbol and entered what follows below in the URL box:
    <!-- begin embedded QuickTime file... -->
    <table border='0' cellpadding='0' align="left">
    <!-- begin video window... -->
    <tr><td>
    <OBJECT classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' width="638"
    height="458" codebase='http://www.apple.com/qtactivex/qtplugin.cab'>
    <param name='src' value="http://ginauhlmann.com/video/FWP1.mov">
    <param name='autoplay' value="false">
    <param name='controller' value="true">
    <param name='loop' value="false">
    <EMBED src="http://ginauhlmann.com/video/FWP1.mov" width="638" height="458" autoplay="false"
    controller="true" loop="false" pluginspage='http://www.apple.com/quicktime/download/'>
    </EMBED>
    </OBJECT>
    </td></tr>
    <!-- ...end embedded QuickTime file -->
    </table>
    The info that is now in the URL box reads:
    %3C%21--%20begin%20embedded%20QuickTime%20file...%20--%3E%20%20%20%20%20%20%20%3 Ctable%20border=%270%27%20cellpadding=%270%27%20align=%22left%22%3E%20%20%20%20% 20%20%20%20%20%3C%21--%20begin%20video%20window...%20--%3E%20%20%20%20%20%20%20% 20%20%3Ctr%3E%3Ctd%3E%20%20%20%20%20%20%20%20%20%3COBJECT%20classid=%27clsid:02B F25D5-8C17-4B23-BC80-D3488ABDDC6B%27%20width=%22638%22%20%20%20%20%20%20%20%20%2 0height=%22458%22%20codebase=%27http://www.apple.com/qtactivex/qtplugin.cab%27%3E%20%20%20%20%20%20%20%20%20%3Cp aram%20name=%27src%27%20value=%22http://ginauhlmann.com/video/FWP1.mov%22%3E%20% 20%20%20%20%20%20%20%20%3Cparam%20name=%27autoplay%27%20value=%22false%22%3E%20% 20%20%20%20%20%20%20%20%3Cparam%20name=%27controller%27%20value=%22true%22%3E%20 %20%20%20%20%20%20%20%20%3Cparam%20name=%27loop%27%20value=%22false%22%3E%20%20% 20%20%20%20%20%20%20%3CEMBED%20src=%22http://ginauhlmann.com/video/FWP1.mov%22%2 0width=%22638%22%20height=%22458%22%20autoplay=%22false%22%20%20%20%20%20%20%20% 20%20%20controller=%22true%22%20loop=%22false%22%20pluginspage=%27http://www.app le.com/quicktime/download/%27%3E%20%20%20%20%20%20%20%20%20%3C/EMBED%3E%20%20%20 %20%20%20%20%20%20%3C/OBJECT%3E%20%20%20%20%20%20%20%20%20%3C/td%3E%3C/tr%3E%20% 20%20%20%20%20%20%20%20%3C%21--%20...end%20embedded%20QuickTime%20file%20--%3E%2 0%20%20%20%20%20%20%20%20%3C/table%3E%20
    The info in HTML mode, now reads:
    <!-- begin embedded QuickTime file... --> <table align="left" border="0" cellpadding="0"> <!-- begin video window... --> <tbody><tr><td> <object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="458" width="638"> <param name="src" value="http://ginauhlmann.com/video/FWP1.mov"> <param name="autoplay" value="false"> <param name="controller" value="true"> <param name="loop" value="false"> <embed src="http://ginauhlmann.com/video/FWP1.mov" autoplay="false" controller="true" loop="false" pluginspage="http://www.apple.com/quicktime/download/" height="458" width="638"> </object> </td></tr> <!-- ...end embedded QuickTime file --> </tbody></table>

    The error was that I should have been posting the link in the body of the blog text.

  • 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.

  • 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

  • Error while posting depot excise invoice

    Dear SAP Experts,
    We are continually facing the following error while posting "Depot
    Excise Invoice" on Production sever
    "Error in allocating Depot Invoice number interval not found Number
    object J_1IDEPINV"
    Message no is 8I336
    We have already maintained the number interval for the above object i.e
    J_1IDEPINV with respective series group 62.
    Here is the business process:
    1. First, we make transfer posting thr’ MB1B. We get material doc no
    2. Second, we make selection for RG23D for this material doc thr’ J1IJ.
    RG 23D register gets updated
    3. Third, we make ‘verify/post’ thr’ J1IJ itself. Here we are getting the
    error when we post it.
    Please do needful.
    Its an urgent isue
    Regards
    Tushar

    hello,
    In transaction SNRO check number range for object J_1IDEPINV. There you choose number intervals abd check number intervals.
    Regards
    Kedar Kulkarni

  • Tax code error while posting Planned delivery costs in Import Scenario

    Hi!!!!!
    I am getting on error while posting Planned delivery costs in MIRO for Import Purchase Order with zero value tax code v0. The error is
    "Tax code V0 country IN does not exist in procedure ZAXINN"
    For Import I defined a pricing procedure which contains all condition types for CVD, Ecess, SEcess, Additional Customs Duty and Others.
    While making Import PO im putting V0 tax code. I assigned the Tax Codes to the Company code.
    Please let me know what config is missing.
    Regards,
    Durga

    Is you ZAXINN assigned to the country India
    and is your taxcode (created in FTXP) created for country India?
    kr
    hakan

  • Error determining posting period(infostructure S008,Variant Z2,RC3) while creating Sales orders from Inbound IDOCS

    Hello,
    I am getting this Error message"error determining posting period(infostructure S008,Variant Z2,RC3)" while creating Sales order from Inbound Idocs in the IDOC,which is affecting sales order creation.
    While viewing this Info structure S008, I could see no records have been maintained. Wanted to know the reasons behind this Hard error?
    Is it something related to Date Field used in the Update Rules for this Infostructure which is causing this posting period error?
    Appreciate your inputs on this.
    Thanks and Regards
    Mohammed Roshan

    Thank you Jelena,I checked the Ship. Delivery dates in the IDOC which are for Current Fiscal Year- 20140703 and 20140711,Could there be any other reason for this error?
    Could it be an issue with e Update rule in this Infostructire S008
    Secondly when we try change the update rule thru MC25 for this Infostructure S008,It gives a message"
    "Maintenance of SAP standard updates not allowed"
    Kindly advice
    Thanks and Regards
    Mohammed Roshan

  • ErroR while posting J1IH (TR6)

    Hello Everybody
    I had the following error while posting J1ih.
    Balancing field "Profit Center" in line item 001 not filled
    In FB50 the following entry was posted with profit center PH1000
    PLA On Hold A/C Dr  25000
        to Bank Account Cr 25000
    When i am trying T Code J1IH
    PLA On Hold A/C Cr  25000
    Basic Excise Duty A/C Dr 22000
    ECS                            Dr 2000
    SECS                          Dr 1000
    When i save it the above mentioned error comes.
    Please Help
    Sunil Kumar

    The profit center is defined as a mandatory criteria for document splitting in your config in SPRO- General Ledger accounting (New)->Bus transactions->Doc splitting->Define doc split charact for GL accounting.
    So somehow it is not getting dervied for the PLA line item. Check the following:
    1. The PLA on hold account is maintained in SPRO in Classify GL accounts for document splitting under the correct category. (menu path same as above upto Doc splitting)
    2. The document type for J1IH is maintained with the correct variant in Classify doc types for splitting.
    Thanks and regards
    Kedar

  • Error while posting sec.HighEd cess (1%) in J1iin.

    we got following error while posting excise invoice J1IIN. all excise rates/values (10%,2%,1%) are coming properly in J1iin. if we remove excise duty 1% sec-high-ed-cess, than excise accounting entries posted properly in J1iin. but excise duty 1% (sec-high-ed-cess ) is there, than problem in posting, below amount 0.10 INR is of sec-high-ed-cess.
    Balance in transaction currency
    Message no. F5702
    Diagnosis
    A balance has occurred in transaction currency 'INR' with the following details:
    Exchange rate '00', amount ' 0,10' and currency key 'INR'.
    The data in the transaction currency were transferred from the calling application.
    System Response
    Your data cannot be processed in FI.
    Procedure
    The error is probably in the calling application.
    and.....
    System failure during locking GLaccount 1001 by 21150105
    Message no. 8I076
    reply me.  Text Removed
    Edited by: Lakshmipathi on Jan 13, 2012 6:42 PM
    Please dont add such comments

    Hey,
    I have already replied to your thread for F5702 error.
    G/L account locking error occurs when two or more users try to post to the same g/L account at the same time.
    Regards,
    Brinda

  • Error while posting vendor invoice in F-43

    Hi experts,
    while posting vendor invoice with Tax code , i am getting the following error:
    Posting is only possible with a zero balance; correct document
    Message no. F5060
    Here tax line item is not yet all displaying in simulation.
    If I posted with tax code with ZERO percentage it is posting correctly.
    where as same transaction I am able to post through transaction code FB60.
    What could be the reason?
    regs,
    ramesh b

    Hi
    Please check and correct the respective line items , because your selecting incorrect GL account with respective posting keys
    Example : You have exp gl a/c at first line items against vendor invoice posting's, normaly this vendor will post in first line item with posting key is 31 with vendor a/c and second line item 40 with exp GL a/c and same you will check any required inputs have missed out from this transactions.
    Regards
    CHOWDARY

  • 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 while posting 561 Document

    Dear All
                Error while posting document with movement 561. "Account Determination for entry 999 BSA 6000 not possible."
    Even OBYC setting for that valuation class already assigned.
    please advice.
    Regards
    Kumar.

    Hello Anandhakumar ,
    please check whether you have assigned the Company code which you are using to controlling area with same chart of accounts and check the OMWD settings..
    and check the FS02 tCode in that the see the control data for currency and chart of accounts settings.
    it could solve your query.
    regards,
    Ninad Kshirsagar

Maybe you are looking for