Can't be cleared

Dear All
I have list data (document type RE vs WE) in Tcode FBL3N not cleared,
I tried to use Tcode F.13 and in "only doc with can be cleared"  is not check
when F.13 with test run , the system say "No errors were logged during clearing in test run"
but when  F.13 run, the system say "No clearing procedures were carried out"
How to cleared ?
Would you like help me please
thanks
imron

Hi,
I hope you are trying clear line items in GR/IR Clearing Account...am i right?
Please check your settings in OB74. Settings will be like below.
Acc Ty      From Acc         To Acc          Creterion 1  Creterion 2   Creterion 3
K                 /1        /9999999999 /ZUONR     GSBER     VBUND
K                 /A     /Z     /ZUONR     GSBER     VBUND.
And during your test run, system is showing any documents or not? if yes, then after the above said settings run again.
Or else you can clear them manually through F-03, before that you need to deselect the check box Post Automatically only in GL master for that GR/IR account.
This might solve your purpose.
Thanks,
Srinu

Similar Messages

  • How can I reset/clear the RMIClassLoader

    I have a remote method that takes an interface class as an argument. Clients have classes that implement this interface along with serializable. The client has its codebase set to a http://hostname:port/ This works fine, but problems ensue when a client calls this method, exits the application, and then modifies the class file by changing the source code and recompiling. Since the RMIClassLoader keeps track of classes loaded based on the calling process's codebase, it won't reload the class file because a class with that name has already been loaded for that codebase. I've read that the RMIClassLoader can't be cleared, so I'm hoping to find some way to recreate it each time a new client checks in (there is a check-in method that does some setup that all clients call when they start up).
    The main goal of this problem is to be able to have an existing RMI server running with new clients connecting in development. The new clients will be using the command pattern to pass intelligient commands to the server via a parameter. Restarting the server every time client code changes is not very efficient.
    Thanks
    Matt

    I don't see how versioning solves this problem.
    Let's say the interface contains a method:
    public int foo();
    and the implemented class overrides this method as follows:
    public int foo(){
    return 1;
    If the client connects to the server, the server will look in the client's codebase to find the class, and will load it (assuming it can get to it).
    Now the client disconnects and the programmer decides he really wanted to return 2 and changes his method in his concrete class as follows:
    public int foo(){
    return 2;
    This change will not alter the serialization id.
    Now if he starts his application up and connects to the server, the server will check its RMIClassLoader for that codebase and see that it has already encountered that class, deserialize it, and continue to return 1.
    If instead the client programmer were to explicitly modify the serialization id of his concrete class and implement the readObject(ObjectInputStream is) and writeObject(ObjectOutputStream os) to handle serialization id discrepancies, the RMIClassLoader is still not going to grab the latest class file and will still return 1.
    Am I missing something?

  • Can u give clear steps how to load 3 data target at a time by the help of p

    can u give clear steps how to load 3 data target at a time by the help of parllalesim

    hi,
    create the load infopackage type and give the infopack you need to load.
    create 3 similar process types.
    chain should have this flow
    start -> delet index(if cube is the target) -> load target(connect the load process to start process) parallel -> and process -> create index(if cube)/actiavtion of ods(if ods)
    Ramesh

  • How can I taake clear photos on my ipad 2

    how can i take clear photos with my ipad 2

    The cameras on the iPad 2 are low resolution (about 1 meg each) and are mainly for things like FaceTime and Skype video calls - unless you are in very good light you are unlikely to get acceptable photos from the iPad, you would be better off using a compact camera or you phone's camera.

  • I updated my Iphone4S this week to the newest IOS 7.1 and now everyone who calls me says the calls are not clear, muffled.  Is there something I can do to clear this?  4 people in 4 different states that called me all said the same thing.

    I updated my Iphone4S this week to the newest IOS 7.1 and now everyone who calls me says the calls are not clear, muffled.  Is there something I can do to clear this?  4 people in 4 different states that called me all said the same thing.

    Settings > General > Reset > Reset Network Settings
    Contact the carrier to troubleshoot.

  • How can I find clearing document item from BSE_CLR?

    Hi All,
    I can find cleared document item be partial paid in table bse_clr by field BUKRS, BELNR, GJAHR, BUZEI.
    but I can't find clearing document item in table bse_clr, is there any other table stored the clearing document item data?
    best regards,
    Eric

    hi
    Use table BSAD,BSAS,BSAK  for cutomers, gl accounts and vendors respectively
    Regards

  • Is there any report which I can see the clearing items seperately

    Dear Experts,
    Is there any standard report which I can see manual clearing postings with chargoff amount.
    Normally this is posting with document type-AB. There are other documents with AB as reversal documents,
    settlements and other expenses. So we cannot differentiate by document type.
    Is there any other way to develop this report?
    Regards
    Shanu

    Dear Shanu,
    Goto to Layout there is field called Doc Status.
    In the status if it is A - Clearing Document and B means Reset Clearing Document.
    Sorry i was wrong it will not give you the required format.
    We have to look some other way
    Edited by: lolu jo on Apr 12, 2011 11:12 PM

  • Dynamic Drop-down list - selected value can't be cleared ...

    1. check out the following code of a dynamic drop down list using cursor :-
    DECLARE
         -- DROP-DOWN LIST OF ALL DEPARTMENTS
         TEMPNUMBER NUMBER(2) := 2 ;
    -- Because we've to initialize the list
    -- at least with 1 item.
    CURSOR C_DEPT IS
         SELECT DEPT_ID FROM DEPARTMENT;
    BEGIN
         ABORT_QUERY ;
         CLEAR_LIST('DEPTLIST');
         FOR TEMP IN C_DEPT LOOP
         ADD_LIST_ELEMENT( 'DEPTLIST', TEMPNUMBER, TEMP.DEPT_ID, TEMP.DEPT_ID );
         :SRBLOCK.LST := TEMP.DEPTNO;
         -- prev. line set the newly selected value
         TEMPNUMBER := TEMPNUMBER + 1 ;
         END LOOP;     
    END;
    2. problem is as we've to atleast initialize with one list item... that item can't be cleared with CLEAR_LIST.
    3. how can i actually clear that and still use cursor. because i've searched forum for this thing and found all those code not working ... for my project ...
    4. quick help needed ...

    Hi Omar,
    I have solution for you
    To populating or refreshing the lists you can use
    two procedures:
    One of them - generic, which can be used for all types of list
    Another is specific which contain a SQL statement to retrieve the data for
    particular list.
    1. Specific procedure:
    PROCEDURE GET_DEPARTMENT_LIST
    IS
    sql_stat VARCHAR2(32767);
    ret_code NUMBER;
    BEGIN
    -- SQL Statement for Drop-down List
    -- (must have two columns for label and value - both VARCHAR2)
    sql_stat := ' SELECT DEPARTMENT_NAME,TO_CHAR(DEPT_ID)'
    ||' FROM SCHEMA.DEPARTMENT';
    POPULATE_MY_LIST('BLOCK.DEPARTMENT_LIST',sql_stat,ret_code);
    END;
    2. Generic procedure:
    PROCEDURE POPULATE_MY_LIST
    (item_name VARCHAR2,
    sql_stat VARCHAR2,
    out_code OUT NUMBER)
    IS
    rg_id RECORDGROUP;
    rg_name VARCHAR2(100);
    ret_code NUMBER;
    item_id ITEM;
    BEGIN
         item_id := FIND_ITEM(item_name);
         IF ID_NULL(item_id) THEN
              out_code := -1;
              RETURN;
         END IF;
         --Creating Record Group with Unique Name
         rg_name := 'RG_'||SUBSTR(item_name,INSTR(item_name,'.',1)+1,LENGTH(item_name));
         --Checking Record Group Name for existance
         rg_id := FIND_GROUP(rg_name);
         --If Group does exist - delete it
         IF NOT ID_NULL(rg_id) THEN
              DELETE_GROUP(rg_id);
         END IF;
         --Creating Record Group
         rg_id := CREATE_GROUP_FROM_QUERY(rg_name,sql_stat);
    ret_code := POPULATE_GROUP(rg_id);
    IF (ret_code <> 0) THEN
         out_code := ret_code;
         RETURN;
    END IF;
    POPULATE_LIST(item_name,rg_id);
    IF NOT FORM_SUCCESS THEN
         out_code := -2;
         RETURN;
    ELSE
    out_code := 0;     
    END IF;
    DELETE_GROUP(rg_id);
    END;
    Hope it help.
    Dmitry

  • Why can't I clear the chat history in Android?

    Why can't I clear the chat history in Android?
    [Topic title updated by moderator to be more descriptive. Original topic title was: "skype"]

    Hello, dmitry72, and welcome to the Skype Community!
    Sorry you're having trouble doing such a simple task. Unfortunately, you are correct in your findings - unlike the desktop version of Skype, there's no way to simply clear your chat history in one swift motion other than clearing the data or uninstalling the app. You can, however, clear the chat history of a conversation by deleting it. The only downside to the workaround is the amount of time it would consume if you desired to remove every conversation. 
    Your feedback can change Skype, so do send the developers some using the app! They're listening, so you may send this (or take a chance that this gets noticed by developers) and other bright ideas you may have about Skype for Android. You might see some great changes in the upcoming versions!
    The option to send feedback is within the Settings menu on the latest version of Skype. 
    Thanks for your feedback!
    If there's anything we could do more to help, don't hesitate to post again!
    I.T. Professional
    Virtualisation Solutions (VCA-DCV - VMware)
    Donating time to help you here with your Skype needs.
    If I've answered your question, feel free to "Kudo" me!

  • Phone call becomes garbled to other person after about a minute into call, but I can hear them clearly.  I stood by a tower with full signal and was still hung up on because I couldn't be heard after about a minute.  Please help.

    This is a recent occurrence.  I either initiate or receive calls, and about a minute into them, the person cannot hear me because it becomes so garbled to them, but I can hear them clearly.  I was able to make one call that was completely clear, and that was tonight, but it was one only.  I've done a master reset, but I have not deleted all data, as I'm afraid to do so and lose pictures.  The only other option I supposedly have is to replace the phone.  Please help.  What could this be?

    This is a recent occurrence.  I either initiate or receive calls, and about a minute into them, the person cannot hear me because it becomes so garbled to them, but I can hear them clearly.  I was able to make one call that was completely clear, and that was tonight, but it was one only.  I've done a master reset, but I have not deleted all data, as I'm afraid to do so and lose pictures.  The only other option I supposedly have is to replace the phone.  Please help.  What could this be?

  • I'm finding Ios7 exceeding frustrating having to spend hours reinstalling and looking for last data. For example I cannot delete photos I have synced, applications are missing. Where can I get clear instructions to fix the mess?

    Where can I get clear instructions to clean up a mess that Ios7 has made of my data and info on my iPad. I can't delete photos, apps are missing, it's crazy and so frustrating. I have spent hours on this.

    How did the photos get onto your iPad ? If they were synced from a computer then they can't be deleted directly in the iPad's Photos app - instead they are deleted by not including them in your next photo sync from your computer's iTunes.
    For your apps, as long as they are still in your country's store then you should be able to redownload them via the Purchased tab in the App Store app on your iPad, and via the Purchased link under Quicklinks on the right-hand side of the iTunes store home page on your computer's iTunes. If you had backed up to your computer's iTunes before starting the update then you could redownload them to your computer's iTunes and then retry restoring to your backup and see if that copies the apps and their content back (the actual apps aren't included in a backup, just their content/settings, so for a restore to work fully you need to have the relevant apps in the Apps part of your library).

  • How can I programmatically clear a chart?

    Hi,
    Could you please let me know how can I programmatically clear a chart? I would like to run a code multiple times and everytime I run it , the chart should be cleared . I tried to find a History property node but seems like there is no such properfy node for chart

    If I have conceived your problem clearly, there is of course history data property node for charts. You may get one by right clicking on chart 
    create>>Property node>>History data(which is last on list)  
    CLAD
    Passionate for LabVIEW

  • In my iPhone 5 I can't listen clearly in my Bluetooth

    I can't heard clearly in Bluetooth

    Hello Bruno,
    It sounds like you are wanting to change your Tweet sound on your phone. You can do this in the settings:
    Sounds and silence
    http://help.apple.com/iphone/7/#/iph3dd62d95
    Go to Settings > Sounds for options such as ringtones and alert tones
    If you cannot change it here would you mind elaborating on what is happening when you try?
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • Where can i find clear information about sap function modules?

    where can i find clear information about sap function modules?
    for example,
    if i want to know whats the use of function module  "SAPGUI_PROGRESS_INDICATOR" .
    where i can find all the detail info..
    is there any sap transaction code for knowing about all function modules and there use?
    Regards
    Smitha

    Hi:
    For documentation, you have to find it out in se37 but it is not neccessary every Fm would have.
    Now question is about its used (if you know th e function module)-> go in se37-> put function module -> select where used list -> select used in like - program, class, BSP application etc -> click on ok; it would give the list of its used and just go in that find  how it is being used.
    if you have to find the function module for table - > go in se11 -> select table name -> click on where used list -> select function module  interface and click on ok, it would give the list of  its used.
    Otherwise go in g o o g l e dot  c o  m.
    Regards
    Shashi

  • No sound for incoming calls but it works using speaker and earpiece. I can't hear anything but the other party can hear me clearly. I was told it's hardware problem. Would anyone please help? Thanks

    No sound for incoming calls but it works using speaker and earpiece. I can't hear anything but the other party can hear me clearly. I was told it's hardware problem. Would anyone please help me? Thanks

    This is an annoying problem for many people. Most likely your dock connector (on the bottom where you plug in your phone) is dirty or screwed up and is probably just coincidence that it happened after you updated. Some people have had success cleaning the port with a dry clean tooth brush. There is a long discussion going on at the thread I linked below. Good luck...
    https://discussions.apple.com/thread/2475631

  • How can i permanently clear/free-up this space?

    Hi! I recently transferred all my movie files to my external hard disk. After the transfer, I simply moved the movie folder to the trash bin and clicked "empty trash". To my surprise, when I checked the storage tab, this is how it appears now.
    The yellow portion used to be the space occupied by movie files. How can i permanently clear/free-up this space? TIA

    Use any of the following to find out what is taking up space.
    HD Space Checkers:Disk Inventory X (FREE)
    WhatSize (SHAREWARE)
    OmniDiskSweeper (FREE)
    GrandPerspective (FREE - donation)
    Mac Performance Guide
    Slimming your hard drive
    ================
    Make sure you empty the trash in iPhoto.
    Quick fix How To Quickly Free Up Hard Drive Space on Mac OS
    http://www.youtube.com/watch?v=fO-mlLApEuk

Maybe you are looking for

  • Creating XML Publisher report without xml data source

    Hi Anyone developed XML publisher without xml source.I wanted to know is there any way to develop that.. Presently we need a .xml file to develop any report on XML Publisher.But if there will be a way where is no .xml file and we need to generate tag

  • Black ink cartridge is not working

    And no, it's not empty! ;-) I have an HP 1210 All-In-One and while my color ink cartridge (which IS just about empty) will print, the black ink cartridge will not. After replacing the black ink cartridge, I printed 10-20 pages or so and then suddenly

  • I don't have a firefox tab or button in my new installation. How can I recover it?

    I have firefox version 5 on my desktop and just installed it on my new laptop but the firefox tab is missing. How can I recover it?

  • Pencast Pdf file audio doesn't work

    I have to download lectures from my professor for class and she has a Pencast pdf file with audio but it does not work on my computer. I have tried opening it up on Safari and Chrome but neither have worked. I have downloaded the most recent version

  • GR based IV ticked

    Dear Expert, I have some doubt on GR based IV indicator in PO. Let say i have 1 PO with quantity 100 ,GR based IV was ticked. 1st,i do GR 40,then proceed IR. 2nd time,i do GR 60 then i reverse 60 using mvt 122,how come system still allow to proceed I