Opening balances update after go live

hi members,
is there a possibility to update the opening balances uploaded initially after we Go-live?
lets take an example, say, On the first day of the fiscal year i have uploaded vendors with an initial details consisting of 3 bills and later after going live i found that i need to upload another 2 bills.
I did my initial upload with the help of LSMW and will i be using the same transaction or anything other than this if i need to update the opening balances.
I think we will be using the Retained Earnings acct as the offsetting account in the LSMW template, if the bills are concerned with expenses and if not we will be using other balance sheet accounts. Correct me if i am wrong.
thanks in advance and its going to really help me
regards
suresh

Hi Suresh,
Yes you can upload the balances after Go live as long as you can justify it to your auditors and till you get a balanced Trial Balance (TB).
You dont have to offset your vendor line item with the retained earnings account. You should debit the expenses account and credit the vendor account. You retained earnings account gets adjusted accordingly and will take care of the difference in the Balance Sheet due to the vendor line item upload.
Hope you understand. Please revert if you have questions.
Regards,
Mike

Similar Messages

  • In ecc6 opening balance updation

    hi
    plz tell me what is procedure of opening balance updating, in AA,AP,AR,GL
    THANKU
    sowmay

    FAGLGVTR - G/L: Balance Carried Forward  - All entries made with entry date post financial year end but for closed financial period balance will be carried forward automatically....

  • I am unable to open my updates after they download.

    I've downloaded 3.6 but it will not open or update Firefox on my Desktop. Other downloads will not open either.

    Hi there sharonlarks26,
    You may want to try reinstalling the latest version of iTunes. Take a look at the article below for more information.
    Troubleshooting iTunes installation on Mac OS X
    http://support.apple.com/kb/ht2311
    -Griff W.

  • Regarding Existing Opening balance updation

    Hi Expert,
                        I have all ready posted opening balance now we are doing regular transaction.but now I found some wrong  amount I have entered In opening balance.so I want to change amount as a correct amount.It is possible to edit opening balance.Please help me..
    Thanks & Rgards
    Alok Kumar.

    Hi,
    Please refer threads:
    http://scn.sap.com/thread/3557520
    Thanks & Regards,
    Nagarajan

  • Iphoto wont open or update after Yosemite upgrade

    Hi there,
    I have seen questions like this but not exactly this before.
    After backing my early 2011 Macbook pro 13" to my 'my passport' I installed Yosemite about a week ago.
    Now iPhoto will not open. There is no error message, just nothing happens. The icon doesn't bounce in the dock.
    I then noticed that there was an iPhoto and iMovie update available and I thought this might be the remedy, so clicked on 'update' in the App Store. They will not update either. No error message just either 'paused' or 'waiting' status for over 2 hours, but nothing happens and the buttons are greyed out.
    I have closed all apps and rebooted and tried again but the same thing happens. Most of the time the buttons are greyed out.
    Any advice? Do I have to reinstall Yosemite or iphoto?
    If I have backed up my system, are my photos safe?
    Any help or info gratefully received.
    Thank you.

    If you have backed uo your system then your photos should be safe. But we can't say with absolute certainty as we don't know the back up settings you chose.
    Here's what will work with certainty:
    Most Simple Back Up:
    Drag the iPhoto Library from your Pictures Folder to another Disk. This will make a copy on that disk.
    Slightly more complex: Use an app that will do incremental back ups. This is a very good way to work. The first time you run the back up the app will make a complete copy of the Library. Thereafter it will update the back up with the changes you have made. That makes subsequent back ups much faster. Many of these apps also have scheduling capabilities: So set it up and it will do the back up automatically.
    Example of such apps: Chronosync - but there are many others. Search on MacUpdate or the App Store
    Try reinstall iPhoto on your Mac - just the app not the Library.
    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2. Download it from the App Store to reinstall It's on your Purchases List* there.
    *Sometimes iPhoto is not visible on the Purchases List. it may be hidden. See this article for details on how to unhide it.
    http://support.apple.com/kb/HT4928
    One question often asked: Will I lose my Photos if I reinstall?
    iPhoto the application and the iPhoto Library are two different parts of the iPhoto programme. So, reinstalling the app should not affect the Library. BUT you should always have a back up before doing this kind of work. Always.

  • TableView - How to update a running balance column after any other column in the view is re-sorted

    To keep this simple and to illustrate a problem that I am trying to solve let's say we have
    a domain class that contains an income per day.
    This class has two persistent properties - populated from a database table - date and income.
    And there is one transient property - running balance - that shows the accumulated income
    starting from the first record. This property is not persisted and it is used only to show
    the running/accumulated income in a table view.
    This domain object is shown in a table view with three columns:
         - date
         - income
         - running balance
    The first two columns - date and income - are sortable. When the user clicks on the column
    heading these can will be sorted in ascending or descending order. The running balance
    column needs to reflect this change and be correctly updated.
    So the question is : how would you implement the running balance update after the data in
    the table has been updated by the user?
    Take 1)
    =============
    The obvious approach is to use "setOnSort" method to consume the SortEvent event and re-sort the
    data but the sort-event does not contain any useful information that would tell from which column
    the sort event originated.
    Take 2)
    =============
    Found a possible solution:
         - TableView.getSortOrder() returns a list that defines the order in which TableColumn instances are sorted after the user clicked one or more column headings.
         - TableColumn.getSortType() returns the sort type - ascending/descending.
         - This info can be used in the TableView.setOnSort() event handler to re-sort the data and update the balance at the same time.
    Take 3)
    =============
    When the TableView.setOnSort() event handler is called the data is already sorted therefore the only thing that needs to be done is to update the running balance.

    I  think I understand what you're trying to do. If I've missed it, apologies, but I think this will provide you with something you can work from anyway.
    I would listen to the data instead of watching specifically for sorting. This will be much more robust if you add new functionality later (such as adding and removing rows, editing the data that's there, etc).
    Specifically, for the runningBalance column, create a cellValueFactory that provides a DoubleBinding; this binding should listen for changes to the data and compute the value by running through the table's items up to the point of the item for which it's displaying the value. (Hope you can untangle that sentence.)
    Example. The important part is the cellValueFactory for the cumulativeAmountCol. I guess I should mention that you shouldn't try this exact approach with very large tables as the performance might be pretty bad (computations of the order of n x m on changing data, where n is the number of rows in the table and m is the number of visible rows in the table).
    import java.text.DateFormat;
    import java.text.NumberFormat;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Calendar;
    import java.util.Date;
    import java.util.Iterator;
    import java.util.List;
    import java.util.Random;
    import javafx.application.Application;
    import javafx.beans.Observable;
    import javafx.beans.binding.DoubleBinding;
    import javafx.beans.property.DoubleProperty;
    import javafx.beans.property.ObjectProperty;
    import javafx.beans.property.SimpleDoubleProperty;
    import javafx.beans.property.SimpleObjectProperty;
    import javafx.beans.value.ObservableValue;
    import javafx.collections.FXCollections;
    import javafx.scene.Scene;
    import javafx.scene.control.TableCell;
    import javafx.scene.control.TableColumn;
    import javafx.scene.control.TableColumn.CellDataFeatures;
    import javafx.scene.control.TableView;
    import javafx.scene.control.cell.PropertyValueFactory;
    import javafx.scene.layout.BorderPane;
    import javafx.stage.Stage;
    import javafx.util.Callback;
    public class CumulativeTableColumnExample extends Application {
      private final static int NUM_ITEMS = 20 ;
    @Override
      public void start(Stage primaryStage) {
      final TableView<LineItem> table = new TableView<>();
      // using the extractor here makes sure the table item list fires a list changed event if any amounts change
      // this enables the cumulative amount column to keep up to date when the amount in a different row changes.
      table.setItems(FXCollections.observableList(createRandomData(), new Callback<LineItem, Observable[]>() {
          @Override
          public Observable[] call(LineItem item) {
            return new Observable[] {item.amountProperty()};
      final TableColumn<LineItem, Date> dateCol = new TableColumn<>("Date");
      final TableColumn<LineItem, Number> amountCol = new TableColumn<>("Amount");
      final TableColumn<LineItem, Number> cumulativeAmountCol = new TableColumn<>("Cumulative Amount");
      table.getColumns().addAll(Arrays.asList(dateCol, amountCol, cumulativeAmountCol));
      dateCol.setCellValueFactory(new PropertyValueFactory<LineItem, Date>("date"));
        amountCol.setCellValueFactory(new PropertyValueFactory<LineItem, Number>("amount"));
        cumulativeAmountCol.setCellValueFactory(new PropertyValueFactory<LineItem, Number>("amount"));
        cumulativeAmountCol.setSortable(false); // otherwise bad things might happen
      final DateFormat dateFormat = DateFormat.getDateInstance(DateFormat.SHORT);
      dateCol.setCellFactory(new Callback<TableColumn<LineItem, Date>, TableCell<LineItem, Date>>() {
          @Override
          public TableCell<LineItem, Date> call(TableColumn<LineItem, Date> col) {
            return new TableCell<LineItem, Date>() {
              @Override
              public void updateItem(Date date, boolean empty) {
                super.updateItem(date, empty);
                if (empty) {
                  setText(null);
                } else {
                  setText(dateFormat.format(date));
      cumulativeAmountCol.setCellValueFactory(new Callback<CellDataFeatures<LineItem, Number>, ObservableValue<Number>> () {
          @Override
          public ObservableValue<Number> call(CellDataFeatures<LineItem, Number> cellData) {
            final LineItem currentItem = cellData.getValue() ;
            DoubleBinding value = new DoubleBinding() {
                super.bind(table.getItems());
              @Override
              protected double computeValue() {
                double total = 0 ;
                LineItem item = null ;
                for (Iterator<LineItem> iterator = table.getItems().iterator(); iterator.hasNext() && item != currentItem; ) {
                  item = iterator.next() ;
                  total = total + item.getAmount() ;
                return total ;
            return value;
        final NumberFormat currencyFormat = NumberFormat.getCurrencyInstance();
      // generics hell.. can't wait for lambdas...
      final Callback<TableColumn<LineItem, Number>, TableCell<LineItem, Number>> currencyCellFactory = new Callback<TableColumn<LineItem, Number>, TableCell<LineItem, Number>>() {
          @Override
          public TableCell<LineItem, Number> call(TableColumn<LineItem, Number> column) {
            return new TableCell<LineItem, Number>() {
              @Override
              public void updateItem(Number amount, boolean empty) {
                if (empty) {
                  setText(null) ;
                } else {
                  setText(currencyFormat.format(amount));
        amountCol.setCellFactory(currencyCellFactory);
        cumulativeAmountCol.setCellFactory(currencyCellFactory);
        BorderPane root = new BorderPane();
      root.setCenter(table);
      primaryStage.setScene(new Scene(root, 600, 400));
      primaryStage.show();
      public List<LineItem> createRandomData() {
        Random rng = new Random();
        List<LineItem> items = new ArrayList<>();
        for (int i=0; i<NUM_ITEMS; i++) {
          Calendar cal = Calendar.getInstance();
          cal.add(Calendar.DAY_OF_YEAR, rng.nextInt(365)-365);
          double amount = (rng.nextInt(90000)+10000)/100.0 ;
          items.add(new LineItem(cal.getTime(), amount));
        return items ;
      public static void main(String[] args) {
      launch(args);
    public static class LineItem {
        private final ObjectProperty<Date> date ;
        private final DoubleProperty amount ;
        public LineItem(Date date, double amount) {
          this.date = new SimpleObjectProperty<>(this, "date", date);
          this.amount = new SimpleDoubleProperty(this, "amount", amount);
        public final ObjectProperty<Date> dateProperty() {
          return date;
        public final Date getDate() {
          return date.get();
        public final void setDate(Date date) {
          this.date.set(date);
        public final DoubleProperty amountProperty() {
          return amount ;
        public final double getAmount() {
          return amount.get();
        public final void setAmount(double amount) {
          this.amount.set(amount);

  • AR opening Balances

    Hi All,
    We loaded up our  custoemr  opening balances and we  we  used a load GL A/c  and  went  live .now  in live  production system, when we  receive  the customer  payment,how do we  make the load  a/c zero? cuz customer payment  should  go into cash/bank a/c.the entries are as under
    AR opening Balances
    DR Customer  $560
    CR Load A/c   $560    this is posted as custoemr  invoice with doc type DR
    Now we receive the  check payment  from customer ,if  we  hit the cash a/c  ,how do we zero out this load  a/c??
    Regards
    Shaun

    Ming,
    We have  uploaded AR/AP open balances, we yet to load GL opening  balances, but we went live  on Ist of dec,2009, which is our period 1,2010( as  per  our fiscal calender). So we are  planning to load  our GL balances next week.So the customer load a/c will be zeroed  out in GL load  or we have to make  seperate entry to revenu a/c and  make  it zero?
    Thanks for your  help.
    I assigned you points.
    Regards
    Shaun

  • Clear G/L accounts before entering opening balance

    Hi,
    We have not gone live with SAP B1 yet.  I am importing closed A/P and A/R invoices for past history.  What is the correct way to zero out G/L accounts before entering the opening balances when we go live.  We have multiple G/L accounts.
    Thank you for your help.

    Using the DiApi you can import both closed AR invoices and pay them at the same time. Run your trial balance before starting the process (every account should have zero balance. Perform the import and pay the invoices. Run trial balance again and perform journal entries to get GL back to zero (just do reverse of what trial balance reports).
    Of course perform your tests in the test database but the above works we do it on almost all of our implementations.

  • Opening Balances for GO live

    We wish to GO Live on a particular date. However the opening balance before that particular date are still under verification, but still we are having values of opening balances will be corrected say in next 20 to 25 days after the date of go live.
    Please suggest us suitable method of correcting the opening balances with out passing the Journal Entry.
    Please also let us konw once we correct / update the opening balances by the suitable method as suggested by you, What will be the effect on the subsequent entries / transactions which are already entered into the system after GO Live.
    thanks
    harish .

    AS per my understanding opening Balance can be uploaded later or the figure available be uploaded as Parcked, so that if there are any differences, that can be taken care of.
    Regards,
    Rajesh Banka

  • Open production orders and outbound delivery after go-live

    Hello All,
    I tried to search answer for this question but could not find answer.
    Could anybody suggest, what to do with open production orders and outbound delivery after go-live when WM is activated. As, after go-live WM-PP interface will be activated and system should consume material from storage bin specified in control cycle and that will happen for newly created production order after go-live,but what about existing production orders how to update production supply area against work center in production order.
    Similarly with outbound delivery how to update WM status after go-live.
    Thanks in advance

    Thanks to both Jurgen and Sander
    Regarding production order yes, one way is to re-read PP master data in production orders, but is that the only way to handle this or do we have any other option?
    I was aware of re-read PP master data but it will real time consuming and also if it will problematic for already released or partially confirmed production orders.

  • RG1 register opening balance and closing balance updation

    Hi All,
    We are using the RG1 register recently i.e. after the Functional Upgrade (ECC 6.0). While executing J2I6 RG1 Excel report, opening balance and closing balance is not appearing in the report even though we have done the J1I5 extraction.
    Is it mandatory to update the J_2IRG1BAL table with zero stock as and when the new material codes are created.
    Regards,
    Praveen

    HI
    Yes it is mandatory to update the table J_2IRG1BAL with material form and opening stock etc. for all the new materials
    EXGRP: Excise group of the material
    DATUM: Date from which you want RG1 report i.e. 01.01.2004
    MATNR: Material
    FORM:  P for packed, L for loose. note that the same material cannot be maintained as both packed and loose.
    WERKS: Leave it blank
    Maintain all relevant opening balance fields. These fields start with OP
    Note 951955 - CIN: General clarifications for RG1 goods*
    check the above note
    regards
    Prashanth

  • SIS- Updating- Open Orders value and quantity not updated after delivery

    Dear Guru's
    in the SIS transaction MCTA
    when i create the sales order the values in the fields
    incoming sales ,sales,credit memo,open orders ,open orders etc
    are getting updated correctly
    but after creating the delivery,pgi and billing these values are not getting updated .like the reduce in the open order,open oerder qty they same as earlier afer creating sales order.
    if i cancel the order then the values are again updated accordingly
    can you please suggest me a solution for this problem,why this is happening of not geting updated after doing delivery and pgi
    waiting for the reply
    thanks in advance
    ramana

    Hi,
    Your query revolve's around LIS reporting. For any reporting, SAP recommended solution is SAP BI
    FYI SAP is not going to continue Support for LIS Based reporting.Developement on LIS based reporting is already stopped.
    Companies still use this tool to manage their reporting.
    Not all the key figures are updated by default. In your case you will have to carry out the enhancement.
    Please go through the following path:
    SPRO - Logistics General - Logistics Information System --- Check Help on Data Enhancement.
    Rgds

  • I am unable to open my itunes after maverick update.  Any suggestions?

    I am unable to open my itunes after maverick update.  Any suggestions?

    Hi there sharonlarks26,
    You may want to try reinstalling the latest version of iTunes. Take a look at the article below for more information.
    Troubleshooting iTunes installation on Mac OS X
    http://support.apple.com/kb/ht2311
    -Griff W.

  • Why doesnt itunes 11.1.3 wont open app store after updating to ios7?

    why doesnt itunes 11.1.3 wont open app store after i updated my phone to ios7?

    Hi karthikprabhakaran,
    If you are having issues connecting to the iTunes Store after updating to iOS 7, you may find the following article helpful:
    Apple Support: Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    Regards,
    - Brenden

  • Data Migration Opening Balances are not updating in the Report F.08

    Hi,
    We have uploaded the GL balances in 2008 for the year 2007. But they are not updating in the F.08 report when i executed for 2008.
    Why they are not updating in the report. In which table can i check the Data migration values in the system?
    Thansk
    Kishore

    Hi We have uploaded all the values in 2008 with 2008 date. fiscal year is K4.
    F.08 Report for the year 2008 is showing only 2008 accumulated values. But not showing the Opening balances which we have uploaded in 2008 for the before years like 2007.
    Why it is showing like that?
    Thansk
    kishore

Maybe you are looking for

  • VB code not showing in Design View

    I am working with a form that has VB code for validation and need to style it with CSS. The problem is the form is not visible in Design View. The code is there, the page renders and works fine in a browser but has anyone seen this issue before? I ha

  • Airport express stream to panasonic viera

    Help please. I have an airport express that will not play through my Panasonic Viera plasma tv. I am streaming from my macbook pro to the airport express because I tested it by plugging in headphones to the airport express. I am plugged into the tv v

  • How to create URL link for telephone number ,open to account search page and account result page ?

    Hi Experts, Bussines role - ZCC_ICAGENT  If user open this bussiness role and open Account page ,user enter telephone number and enter search account ,then result will be displayed.Instead of 3 clicks ,user click direct URL link ,telephone number is

  • Switching from windows to mac - using iPhoto

    Hello. I recently bought a mac and had the tech.'s switch over all my pictures, every 11,000 of them. I am kind of stuck trying to use iPhoto. A few things I have questions on, such as why all of my photos are dated under "events" and aren't even in

  • Exporting EP 6 Objects to EP 7?

    Hi all - Our customer currently has 2 portals. One on SAP EP 6, the other one on SAP EP 7.0. Is it possible to export content from EP 6 and directly import into EP 7? Or is it required to do an upgrade from EP 6 to EP 7 first and then export the obje