Problem of create inventory opening balance

hi experts,
i extract the inventory according the document "How to handle inventory management scenarios in BW", i activate the 0IC_C03, and want to load the opening stock balance, but in the infopackage, i cannot find the "create opening balance" option, what's the problem? pls help.
thanks.

Hi,
After activation of infocube, do setup at source(R/3) for initial stock balances and load data using datasource: 2lis_03_BX and compress WITH marker update.
Later setup moments and load data using datasource: 2lis_03_bf and compress WITH OUT marker updated.
Srini

Similar Messages

  • Inventory Opening Balance from Flat file

    HI Experts
    Will you please provide step by step intruction on loading Inventory Opening Balance from Flat file.???
    I went through 'How to ... Inventory...' document. It does not explain this in detail.
    Please help
    Manikam

    Hi Manikam,
    while creating datasource for inventory opening balance, you need to select check box "opening balance " at "General tab" of datasource. and at infopackage " generate Intial Status".
    this setting is while creating flat file datasource for inventory opening balance.
    Best Regards.
    Edited by: Daya Sagar on Aug 27, 2009 9:27 AM

  • Cost of Inventory Opening Balance

    Dear all,
    I understand from the accounting terms that COS = opening stock+purchases-closing stock.
    I need to input the cost of inventory (COS)as opening balance. What account should I debit/credit. I have inventory account, Inventory opening balance suspense account, and the GL opening Balance suspense account.
    Kind Regards,
    Asif

    Hi!
    When doing a Opening Balance for Stock via Initial Stock Window, System will automatically post a Debit Entry to Inventory Acc which based on the Set G/L Accounts By Inventory Acc you mention in ItemMaster and Credit the Inventory opening balance suspense account (you need to map this on Opening Balance Acc Field on the Screen)

  • Account to be specifed while uploading inventory opening balance

    What is the account to be specified when I upload inventory opening balance for inventory items for the first time in Apps using Misc. Receipt?The material account(specified in Costing tab of Organization parameters form) gets debited but which account gets credited?

    Hi,
    It is based on the accounting entry which you provide during a misc Transaction. During a misc transaction (Receipt) system prompts for account.. and that a/c will be credited once the misc transaction is over.
    when you do a misc transaction (receipt), Material A/c got debited and system ask for a/c entry for misc trx and that a/c will be credited, we normally use *"Receiving Inventory A/c"* for the same.
    Hope this will help.
    Regards,
    S.P DASH

  • Track of Inventory opening balance

    Hi All,
    Can you please guide a bit regarding the below query
    Track of Inventory opening balance     
    How to track or get the opening balances (of the concerned a/c(s)) entered for the items.
    Thanks a lot in advance...

    HI,
    under (Inventory->Inventory reports->'Inventory Audit report)... you can find it opening balance for each item

  • Period Wise Inventory Opening balance,Receipts ,Issues and Closing Balance

    Hi Guys I need Period Wise Details,but the above query is giving date wise can any one give me a solution plz.
    the Below is the table structure and the select statement that i am working on.
    CREATE TABLE INV_TRACK( TRANS_ID NUMBER,
    ITEM_ID VARCHAR2(10), QTY NUMBER,
    COST NUMBER, TRANS_TYPE VARCHAR2(2 ),
    TRANS_DATE DATE )
    INSERT INTO INV_TRACK ( TRANS_ID, ITEM_ID, QTY, COST, TRANS_TYPE,
    TRANS_DATE ) VALUES ( 1, 'a1', 100, 50, 'r', TO_DATE( '10/01/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'))
    INSERT INTO INV_TRACK ( TRANS_ID, ITEM_ID, QTY, COST, TRANS_TYPE,
    TRANS_DATE ) VALUES ( 2, 'a1', 105, 50, 'r', TO_DATE( '10/01/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'))
    INSERT INTO INV_TRACK ( TRANS_ID, ITEM_ID, QTY, COST, TRANS_TYPE,
    TRANS_DATE ) VALUES ( 3, 'a2', 100, 100, 'r', TO_DATE( '10/01/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'))
    INSERT INTO INV_TRACK ( TRANS_ID, ITEM_ID, QTY, COST, TRANS_TYPE,
    TRANS_DATE ) VALUES ( 4, 'a1', 90, 50, 'i', TO_DATE( '10/02/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'))
    INSERT INTO INV_TRACK ( TRANS_ID, ITEM_ID, QTY, COST, TRANS_TYPE,
    TRANS_DATE ) VALUES ( 5, 'a2', 90, 100, 'i', TO_DATE( '10/02/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'))
    INSERT INTO INV_TRACK ( TRANS_ID, ITEM_ID, QTY, COST, TRANS_TYPE,
    TRANS_DATE ) VALUES ( 6, 'a2', 200, 100, 'r', TO_DATE( '10/02/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'))
    INSERT INTO INV_TRACK ( TRANS_ID, ITEM_ID, QTY, COST, TRANS_TYPE,
    TRANS_DATE ) VALUES ( 7, 'a3', 2500, 10, 'r', TO_DATE( '10/03/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'))
    INSERT INTO INV_TRACK ( TRANS_ID, ITEM_ID, QTY, COST, TRANS_TYPE,
    TRANS_DATE ) VALUES ( 8, 'a3', 100, 10, 'r', TO_DATE( '10/03/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'))
    INSERT INTO INV_TRACK ( TRANS_ID, ITEM_ID, QTY, COST, TRANS_TYPE,
    TRANS_DATE ) VALUES ( 9, 'a3', 1500, 10, 'i', TO_DATE( '10/03/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'))
    SELECT *
    FROM(SELECT TRANS_ID,item_id,trans_type,trans_date,
    lag(qty)
    over(PARTITION BY item_id ORDER BY trans_id ASC) "Opening Balance",
         DECODE(SIGN(qty-lag(qty)over(PARTITION BY item_id ORDER BY trans_id ASC)),1,(qty-lag(qty)over(PARTITION BY item_id ORDER BY trans_id ASC))) "Receipts",
         ABS(DECODE(SIGN(qty-lag(qty)over(PARTITION BY item_id ORDER BY trans_id ASC)),-1,(qty-lag(qty)over(PARTITION BY item_id ORDER BY trans_id ASC)))) "issues",
         qty "Closing Balance"
    FROM inv_track)     
    WHERE trans_date BETWEEN :date1 AND :date2

    You have the right idea for the issues/receipts, but the KEEP function will get you your opening/closing quantities.
    SQL> SELECT item_id,
      2         period,
      3         MIN(qty) KEEP (DENSE_RANK FIRST ORDER BY trans_id) AS opening_qty,
      4         SUM(CASE WHEN qty_delta>0 THEN qty_delta END) AS receipts,
      5         SUM(CASE WHEN qty_delta<0 THEN qty_delta END) AS issues,
      6         MAX(qty) KEEP (DENSE_RANK LAST ORDER BY trans_id) AS closing_qty
      7    FROM (
      8  SELECT trans_id,
      9         item_id,
    10         trunc(trans_date,'mm') AS period,
    11         qty,
    12         qty-LAG(qty) OVER (PARTITION BY item_id ORDER BY trans_id) AS qty_delta
    13    FROM inv_track
    14         )
    15   GROUP BY
    16         item_id,
    17         period
    18  /
    ITEM_ID    PERIOD    OPENING_QTY   RECEIPTS     ISSUES CLOSING_QTY
    a1         01-OCT-05         100          5        -15          90
    a2         01-OCT-05         100        110        -10         200
    a3         01-OCT-05        2500       1400      -2400        1500
    SQL>

  • Why I should update the Inventory Opening Balance before keyin documents

    Dear Experts,
    I was adviced to key the Inventory OB first before I key any marketing documents. Is there any impact if I key in the Inventory OB after I key in some marketing docuemnts?
    Please help explain.
    Warmest Regards,
    Chinho

    Chinho,
    If you are using a FIFO or Moving Average costing method, the Items cost is updated only when you import your OB and initialize with its COST.  First and foremost, Delivery, Invoice, Goods Issue transactions which will need quantities cannot be processed if you have negative inventory turned off.
    You should be able to Create Sales Orders and Purchase Orders and any Goods Receipt Transactions but for your Inventory Trial Balance in your old system to match with SBO, it would be better to do the Inventory OB first.
    Unless you have some compelling reason not to do so.
    Suda

  • About inventory opening balance & closing balance

    hi all,
    i want to opening balace and closing balance date wise in my query.
    how to do it?
    regards,
    chetan.

    Hi jeyakanthan,
    System generated report has diff format.
    Client want diff format thats why i m designing new query in which i want to add this item opening balance and item closing balance along with other details.
    Regards,
    Chetan.

  • Problem in creating (and opening) file with FileOutputStream

    Hello,
    I have a (java) program running on a linux server, and when it tries to create a new file, using FileOutputStream, it throws the following exception:
    java.io.FileNotFoundException: /log/log_123.123.123.123_1842_09/03/2008_20:38:04.txt (No such file or directory)
            at java.io.FileOutputStream.open(Native Method)
            at java.io.FileOutputStream.<init>(FileOutputStream.java:179)
            at java.io.FileOutputStream.<init>(FileOutputStream.java:70)
            at shop.server.domainlayer.WriterInputProcessor.initialize(WriterInputProcessor.java:155)
            at shop.server.domainlayer.WriterInputProcessor.<init>(WriterInputProcessor.java:64)
            at shop.server.domainlayer.ShopUserDataWriterServer.main(ShopUserDataWriterServer.java:141)I don't understand why it fails, because I have the directory in the server's file system, and I'm trying to create an entirely new file.
    Does anyone have an idea?
    Thank you very much!

    Thanks, the problem was that I had "/" in my file name, so the file system regarded it as a directory separator...

  • Encounters a Problem when creating or opening project

    I could only get V1 to work with Admin priviliges, otherwise it threw up the message "Adobe Premiere Elements has encountered a problem & needs to close"
    So I have upgraded to V10, but now hit the same block even with users having admin priviledges.
    Happens when I try to create a new project (when clicking OK after entering new details) or when trying to open an existing project.
    When creating a new project the basic folders and files are created before the error message and crash.
    I am using Windows XP SP3 with all latest updates.
    So I can do nothing at all with PE10.
    Error code is 0xc0000005
    Flag 0x00000000
    Record 0x000000000000000
    Address 0x00000000196cd0a3
    Any ideas?

    Dear A.T., thanks for trying to help. Regarding your questions:
    the PC is a single-user machine on a small network. In accordance with Microsofts security recommendations, the working user account does not have administrator priviledges
    4Gb RAM of which 2.15Gb unused
    683Gb free space on C:
    Two internal disks, formatted NTFS
    Latest Quicktime installed
    Previous version of Premiere Elements was v1
    A bit more information on how it fails. Approximately 10 seconds after specifying a new project or giving details for a project to open I see a window informing me that a problem has been encountered and asking if I want to send details to Microsoft. I dont know if this is Adobe or Microsoft generated.  If I click on any option then Premiere Elements disappears and a window declares "MS Visual C++, Runtime Error!, Program c:\program files\A....,   R6030 - CRT not initialised
    The Windows event log records "Faulting Adobe Premiere Elements.exe - faulting module display.dll version 6.0.0.0" I found display.dll in c:\Program Files\Adobe\Adobe Premiere Elements 10 folder. So an Adobe dll is causing the problem?
    So as you recommended, I updated the Intel G35 chipset driver, and that then allowed me to open create new projects and open old ones! Progress!
    But, after doing some video editing, when trying to close Premiere Elements, it crashes with the same unexpected problem encountered error and the same C++ error. This time the Windows Event Viewer stated that the faulting file was Ig4dev32.dll - the new G35 chipset driver I had just installed.
    So I can now create and work on projects but likely to lose my work unexpectedly!

  • Strange Permissions problem when creating new Open Directory user

    I just set up a mac lab to authenticate to an Open Directory server which also stores home folders. All of the initial users I created work fine, there were about 50 users that I set up. When I added a new user this morning though, it would not allow him to access anything within his home folder (i.e. nothing worked)
    I went back to the server and took a look at the Users share and noticed that when his accound was created, instead of setting the owner of the folder to his username (xxx123) it was set to his userid number (1024). I did a chown on his directory to his username and he was then able to access his home directory from the clients.
    I realize I found a fix, but I would prefer to not have to do this every time I create a new user. Why is this happening?

    Have you used the "Role" drop-down to "SYSDBA"? - if not, you get the ORA-01017 error.

  • Opening balances for gl accounts

    dear all,
    how should we create gl opening balances
    if year ending there is any differences in Balancesheet what would u do?
    how should adjustment entries pass?
    Thanks & regards,
    pillaribabu.

    Hi,
    If u want to upload the initial balances in fi only then u can use tcode f-02 or fb50 etc. You have to select diffrent key on the basis of data u r uploading for eg. for customer debit bal 01 and cr balwith 11 or for vendor for debit 21 and credit 31 asset 70.
    If you are using mm module then inventory balance will come from there. In this case the diffrence coming in ur accounting document due to inventory loading diffrently can be posted to a separate account u can define initial uploading account for this.
    The diffrence you are talking about in balance sheet is not possible in sap as in each entry dr=cr for posting. If you are talking about current accounting of client ( legacy system) , then u can post that difrrence in sap by creating a separate account for thie diffrence. And when this diffrence is sorted out in legacy u can post the entry in sap using f-02 .Ur  initial diffrence account must be nullified with this entry.
    Award points if u found answer helpful.
    Warm Regards

  • GL Accounts Opening Balance Window

    HI Experts,
                 Right Now I want to manually enter the opening balances of G/L accounts.I am working on the project for a Service Industry who don't maintain any Inventory (Non-Perpectual Inventory). I am having some doubts after these steps..
    1.      In the SAP Business One main menu, choose Administration  ® System Initialization  ® Opening Balances  ®  G/L Opening Balances.
    The G/L Opening Balances u2013Selection Criteria window appears.
           2.      Set the required G/L account range, and then, choose OK.
    The G/L Opening Balance window appears.
           3.      If the fiscal year does not start on January 1st, change the Date to the required date. Enter offsetting G/L account in the windowu2019s header, and fill in the relevant details.
    Here in  "Opening Balance Account" Field, I am not sure which account to be enter for the opening balance transactions.
    Can you guide me in this.
    Thanks
    Manickam

    Dear Manickam,
    Create one opening balance for G/L account and pick it in the opening balance field and it is only temporary account and doesn't affect your balance sheet
    Regards,
    Mukesh

  • Incorrect Opening Balance/Closing Balance in 2LIS_03_BX

    Hi all,
    While running the Query Inventory Report ( 0IC_C03_Q001), we found opening balance as well as closing balance were wrong with comapare to std. tcode MB5B.
    In MB5B                                                           In Qry
    material code - 131604.                             material code - 131604.
    Stock is 112.00                                        Stock is 471.00
    Receipt Total is 1390.00                            Receipt Total is 1390.00
    Issues Toatal is  85.00                              Issues Toatal is  85.00
    Closing Stock is 1417.00                           Closing Stock is 1776.00
    Can I delete the existing data of the datasource/extract structure 2lis_03_BX?
    and reload the datasource 2LIS_03_BX again w/o deleteing data from other two datasoucres i.e. 2LIS_03_BF AND 2LIS_03_UM.
    Please let me know with the steps.
    It is urgent.
    thanks in advance

    I'm not and expert on MM, so as Neel kamal says first be sure your opening stocks are wrong, ours were wrong, as we checked with our MM consultant.
    So in our case we deleted all data and start the process again, resetting the delta queues and setting up the stadistical data for material movements for the delta initialization. Main reason was the load of 2LIS_03_BX wasn`t correct (I mean the load was made in full update inestead of with the create opening balance option on the InfoPackage).
    If you created the opening balance with 2LIS_03_BX and after to start the delta init and delta updates you can try just to compress the requests in your cube following the how to guide. I'm not sure if it will work but you can try it before restart all the load process.
    Hope this helps,
    Regards
    Carlos.

  • Open Balance of Invoice

    Dear All,
    I need to list down the Invoices which are open and as well as their open amount but the condition is that it should be based on  a date condition. Example would be
    Suppose there is a Invoice which was created in the month of June with an amount $1000.00. A payment against the same invoice was created in the month of July. So if I run the report let say 1st of July to 31st of July, the invoice should appear with the payment transaction. But if i run the report with a date selection 1st of August till 31st of August, the invoice and the payment should not be listed in the report.
    Please can anyone tell me how should i achieve this?
    Regards,
    Gary

    Thanks Gordon
    I am facing problem in showing the open balance against the Invoice. The report should show the Invoice with the original amount i.e the doctotal and also the balance. In the balance due field for the invoice is 0 no matter what day i run the report. I am trying to achieve the history of open balances of the invoices.
    Regards,
    Gary

Maybe you are looking for

  • GR IR value difference

    GR IR value was showing difference. in between quantity received and quantity invoiced .

  • Performance of Big Report Programs

    Hi SAP Experts, I want to know whether we can put the trace on the Report Programs which are taking on almost around 10 hours to execute or how can we put a trace on background jobs. Thanks and Regards, Harsh Goel

  • Vdbench in zones

    I have created some zones with mounted file systems using ufs and /dev/dsk/  such that in the zone the filesystem is reflected as:  /data0  where in the Global zone that is mounting /dev/rdsk/c0t0d0s0. Now I'm hoping to use vdbench similar to the exa

  • Red light flashing & phone won't power

    So I have a Q5 with a simmilar problem lights is blinking in the pattern; 3blinks, 2blinks, 1 blink.  went to pull the battery but there is a big tag on it that says "DO NOT PULL THE BATTERY OR YOU VOID THE WARRANTY". Any hints or am I taking this th

  • Please help..an Array

    Please show me how to set up an array with initial a size (size is undetermine). String[][] temp =new String[0][3]; is it correctly for unknown row size and 3 columns?? thanks