How to move the balance from one GL account ot other GL account in a report

Hi,
I have an issue with one GL account balance should be move to other GL account and also it should be reflect in reporting.
For example i have one account like 200100 and it is having some balance in current period. Now i want to move from other account like 200102. this will be reflect in the reports. how can we do this in BW.
Please any one can help me...
Thanks in advance,
Amar.

I think, you need to elaborate the issue bit wide... Couple of things;
If you see the descrepancy in the data in BW that from in source system, better look at in BW where it went wrong and see if you can correct it there (may be in PSA) or you can even re-extract the data and then load it into the respective cubes or data targets.
On the other hand, if the data in BW matches with that of the source system, better ask the consultant/ IT team member whoever is responsible to look at it, if at all if it needs to be corrected so he can post the corresponding journal entries. In this case, if it need to be corrected, you will have to re-extract the data to have it match with the source system or if you can wait until the next delta...that will take care of it...

Similar Messages

  • OpenScript: 1.     How to move the scripts from one location to another location. in OpenScript; Copy, paste or Import, export

    How to move the scripts from one location to another location. Copy, paste or Import, export

    Both way you can do.. Difference is - if you copy paste to another folder script dependencies will not move with the same( ie Assets added), whereas if you export and import the script all dependencies will be correlated automatically

  • How to access the screen from one function group to other function group

    Hi Experts,
    How to access the the screen from one function group to other function group.
    Please help me on this , Bcoz it is client requirement i need to finish this urgently.
    Please
    Thanks
    Basu

    HI ,
    You can do a call transaction or submit and return
    Regards,
    Sooness.

  • How to move the script from one env to another

    Hi
    I have a database where i have two schemas.
    1)Owner and 2) User . User schema contains all synonyms for the objects present in Owner schema and the application will connect to user schema only.
    Now i have 2 script files 1) create tables in the owner + giving grant access for user 2 ) create synonyms for objects in the owner
    I have to move the code from Dev environment to QA . For QA i dont have privileges hence have to give the script file to DBA to run it
    My DBA says....give the scripts through clearcase. only 2 script files should be there and environment information should not be hardcoded. i.e
    for statements in the script file like : grant access for <table_name> to USERSCHEMANAME and create synonym <table_name_alisa> for OWNERschemaNAME.table_name
    how do i give the scripts to my DBA with out hardcodiing.    How do you have this code movement in your project ?
    Should i use any placeholder for OWNERNAME ( environment spefcific informationn) and should ask them to replace it by the corresponding env name while executing
    What should i do?
    Hope i am clear please let me know if iam not clear
    regards
    raj

    how do i give the scripts to my DBA with out hardcodiing. How do you have this code movement in your project ?
    Should i use any placeholder for OWNERNAME ( environment spefcific informationn) and should ask them to replace it by the> corresponding env name while executing
    Use a variable for schema names or create public synonyms.
    And document how the DBA should implement your changes.
    Your DBA should have his own "su'ish"/ "@ conn.sql'-ish" scripts for that.
    Passwords can be reset runtime temporarily, and set back after the implementation completed successfully.

  • How to move the changes from one system to other without using CMS

    Hi
    In our project they are migrating NWDI 6.40 to NWDI 7.0.
    During migration CMS won't be available.
    Could you plesae tell what are the different options are there to move the WebDynpro changes from (NWDS) Development to Quality system and then production system without using CMS server?
    If i will create a development package and import this packgae in Quality package will my new changes also be available in Quality server?
    Thanks & Regards
    Susmita

    Hi Susmita
    I wasn't completely sure, but from your description of your problem, it seemed like you would have access to your DTR during your upgrade. The following solution assumes as much. If this is not the case, you'll need to do things slightly differently, but the solution will still be possible.
    Depending on the scope and size of your changes, it may be practical for your developers to deploy directly from their NetWeaver Developer Studio (or for a designated administrator to install the NWDS and do the same). To do so, from the Development Configurations perspective, create a new NWDS project for each of the DCs you want to deploy. Then right-click the project and choose from one of the deployment options. (Deploy new archive and run will allow you to see if your deployment has taken effect.) When deploying, the target server is the one set up as your J2EE engine in the NWDS properties - you'll consequently have to modify this when the target server for your deployment changes (from QA to production, or vice versa).
    Note that this is only applicable in certain situations, and only as a short term stopgap measure. This sort of practice - developers or administrators deploying haphazardly to servers other than those intended for development - is precisely what the NWDI is designed to prevent (and is one of very few things it's fairly good at doing). For instance, if your QA and production systems are attached as TEST and PROD runtimes systems respectively in your NWDI, a full assembly and subsequent full deployment would usually occur to these servers when deploying with the NWDI. This is a much stronger guarantee of consistency than the build that will be performed within your local NWDS to deploy your changes. (Conversely, the rigidity of the assembly is perhaps the NWDI's greatest design flaw.)
    (Also, Snehal: thanks for the information on the sapmake_util blog. It's not something I've encountered before and looks very useful.)
    James

  • How to move the dock from one display to another with multiple monitors?

    Sometimes the dock will switch from one monitor to another just by clicking in the dock area of the second montor. Other times it does not.

    I found out that I have to keep moving downward on my trackpad after the cursor hits the bottom of the screen. It works now.

  • Can I move the songs from one apple account to another?

    Can I move the songs I have form an old apple account to my new one?

    So what is Apple's position on this?  There must be a hundred thousand people with the need to split accounts when children move out, couple divorce, or otherwise need to split one account into another.

  • How to read the value from one context node in other in the same view.

    Hi,
    I am working on enhanced component ICCMP_BP_CP/BuPaContactPersonCreate ,  i need to read the partner_guid from Customer context node in  contactpersonaddress context node.
    Could you please guid me how to achieve this? if possible, please explain me with some sample code.
    i am trying this code in GET_FAXFAX method of contactpersonaddress-faxfax, but it is throwing me the type cast exception.
    data: lr_entity type ref to cl_crm_bol_entity.
    data: lv_test type string.
    lr_entity ?= collection_wrapper->get_current( ).
    lr_entity = lr_entity->get_related_entity( 'BuilContactPersonAddressRel' ).
    Thanks in advance.
    Regards,
    Kamesh Bathla
    Edited by: Kamesh Bathla on Jun 25, 2009 7:46 PM

    problem solved by writing the code in context node class CREATE_CONTPERSADDRESSVALNODE method
      coll_wrapper = customer->get_collection_wrapper( ).
      TRY.
          entity ?= coll_wrapper->get_current( ).
        CATCH cx_sy_move_cast_error.
      ENDTRY.
      IF entity IS BOUND.
    CONTPERSADDRESSVALNODE->on_new_focus( focus_bo = entity ).
        DATA: lr_collection TYPE REF TO cl_crm_bol_entity,
              lv_fax TYPE string,
              lv_fax_ext TYPE string,
              lv_tel TYPE string,
              lv_tel_ext TYPE string,
              entity_addr TYPE REF TO if_bol_bo_property_access, "#EC *
              coll_wrapper1 TYPE REF TO cl_bsp_wd_collection_wrapper.
         lr_parrent type
        lr_collection = entity->get_related_entity( 'BuilStandardAddressRel' )."'BuilContactPersonAddressRel' ).
        IF lr_collection IS BOUND.
          coll_wrapper1 = contpersaddressvalnode->get_collection_wrapper( ).
          TRY.
              entity_addr ?= coll_wrapper1->get_current( ).
            CATCH cx_sy_move_cast_error.
          ENDTRY.
    getting fax number
          CALL METHOD lr_collection->if_bol_bo_property_access~get_property_as_value
            EXPORTING
              iv_attr_name = 'FAXFAX'
            IMPORTING
              ev_result    = lv_fax.
    ***setting fax number
          CALL METHOD entity_addr->set_property
            EXPORTING
              iv_attr_name = 'FAXFAX'
              iv_value     = lv_fax.

  • REG:How to move the data from one screen to another

    Hi Gurus,
    My requirement is .....
    in the view1 we have the communication data
        with fileds pernr voice extension, and
        the display button ...
    when the display button is pressed we have to get the fields
      pernr ,voice extension,mail, fields on the screen as pop up window for the  selected pernr on the view1 , the pop up window contains a update button ,once pressed changing the field value ,it should be updated in the infotype 0105 with the same updated details
    Thanks Regards
    Suman

    Hi Suman,
    Try going through this [tutorial |http://****************/Tutorials/WebDynproABAP/Modalbox/page1.htm]if you have any doubts regarding sharing your context data among different views. This tutorial also explains with step-by-step snapshots about how you can pass data in between your MAIN view & a popup window.
    Regards,
    Uday

  • How ro move the EP6SP11 from one server(hardware) to another(hardware)r?

    is there any transport tool?
    or only re-install the EP again on the second server ?

    Hi,
    There are many tools that claim or might probably work for many custom developed application or COTS.
    To my experience extends, there is no way you can actually migrate "as is where is" to another server.
    There are several things that you may want to consider which the tool will not and can not consider which I hope you will understand.
    You can develop one specific suiting your needs, however the same cannot be generalized.
    You certainly need to re-install in another server.
    Hope this clarifies.
    Regards,
    Sen
    P.S: If this helps you, please reward the points.

  • How do you move an iphone from one itunes account to a new one?

    How do move an iphone from one itunes account to a new one?  I have a work phone that is linked to my personal itunes acct and want to separate them.  (they will still need to be on the same computer) is this possible?

    You cannot

  • Re :- How to Transfer GL Balance from One A/c to Another Account

    hii gurus
    please tell me  how to transfer GL balances from one GL Account to another GL Account. Could u tell me T- Code for the same.

    Hello
    We transfer GL account balance from one GL a/c to another GL a/c in the following situations.
    When the GL a/c need to be maintained in Open item Management, say GL a/c belongs to a Balance sheet item but you have forgot to check the Open Item Management check box and made entries to that particular GL a/c.
    In this situation you can’t activate the Open item Management when the A/C is having balance, so first u need to make the GL a/c zero balance and than check Open item Management check box, follow the following steps.
    Create another dummy GL a/c, say ABC and the GL a/c which you want to make zero balance is having Dr Balance. Now make a posting using FB50 or F-02, you Dr the ABC GL a/c and Cr the other GL a/c so that the GL a/c balance becomes zero, now go to GL master and check the Open item Management check box. And again make posting through F-02 Crediting the ABC GL a/c and Debiting the other GL a/c.
    Reg

  • How can you move the objects from one server to another?

    how can you move the objects from one server to another?

    Hi,
    Collecting objects for Transporting
    1. rsa1->transport connection
    2. left panel choose 'object type', middle panel choose 'infocube' and 'select objects'
    3. then choose your infocube and 'transfer'
    4. will go to right panel, choose collection mode 'manual' and grouping only 'necessary objects'
    5. after objects collection finished, create request
    6. If they are $TMP, then change the package.
    7. When you click the Save on the change package, it will prompt for transport. Here you can provide an existing open transport request number, or if you like here itself you can create a new one.
    8. You can check the request in SE09 to confirm.
    Releasing Transport Request  
    Lets say you are transporting from BWD to BWQ
    Step 1: In BWD go to TCode SE10
    Step 2: Find the request and release it (Truck Icon or option can be found by right click on request #)
    Note: First release the child request and then the parent request
    Steps below are to import transport (generally done by basis )
    Step 1: In BWQ go to Tcode STMS
    Step 2: Click on Import queue button
    Step 3: Double Click on the line which says BWQ (or the system into which transport has to be imported)
    Step 4: Click on refresh button
    Step 5: High light the trasnport request and import it (using the truck icon)
    Transport
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b5/1d733b73a8f706e10000000a11402f/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/0b/5ee7377a98c17fe10000009b38f842/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/224381ad-0701-0010-dcb5-d74236082bff
    Hope this helps.
    thanks,
    JituK

  • One computer with 2 accounts-how to move an iPad from one to the other.

    imac with 2 accounts-how to move an ipad from one account to the other account

    Yes it is possible using PAPI. I have just used PAPI to create instances . I have not tried the requirement which you want. But as per my knowledge it can be done.
    Good Luck
    Right Chord

  • How can I move purchased apps from one itunes account to another account?

    How can I move purchased apps from one itunes account to another account?

    You can't. The apps must be purchased separately.

Maybe you are looking for

  • Compilation error while calling static method from another class

    Hi, I am new to Java Programming. I have written two class files Dummy1 and Dummy2.java in the same package Test. In Dummy1.java I have declared a static final variable and a static method as you can see it below. package Test; import java.io.*; publ

  • Can no longer accessed Referenced Masters on Macintosh HD

    How do I correct a problem with master files being reported as unavailable by Aperture 3.0.2. I have always used referenced files (starting with Aperture 1.5) instead of a managed file system, with both the library and the referenced files located on

  • Early 2008 Mac Pro shut downs during start up and restarts to full power fans, Help!

    I have searched through all the forums all day and can't find anyone with the exact same problem. It doesn't matter if I'm booting up to Windows 7 (boot camp) or OS X.The computer will start booting... and anywhere between the "apple tone" and the lo

  • Toshiba LCD TV as external monitor

    Hi there, my Toshiba 27" LCD TV has a VGA input so I bought the Mini-DVI to VGA adapter and connected my Black MacBook to it: turning mirroring off I'm trying to get the best resolution for the LCD TV in order to watch some avi videos and dvd's With

  • Issues installing CS4 upgrade from CS2?

    Hello, I recently had to replace my hard drive on my Mac and am now in the process of installing CS4 Design Premium. I've downloaded the files from the Adobe website and when attempting to install I enter in my CS4 upgrade serial number and it is acc