Open Vs Closed in FICO document

Dear Experts,
What determines an Open Vs Closed document for the following archiving objects.
1. FI_DOCUMNT
2. FI_SL_DATA
3. CO_ORDER
Thanks,
-Bharath

Hi
open items are are things which are out there and havent been paid.
example you sell a car to a customer , you would create an invoice asking
the customer to pay eg $10,000, you create the invoice in SAP, it will show up
as open( red light) , now the customer sends you a check for the car
so you apply that 10,000 against the 10,000 invoice so now
that he paid the amount the item is cleared( green light)
heres some help on open item managed and line item display
Open item management.  Select this box if you want to manage the account with open item management. Open item basis means that you want to view all individual line items that make up the balance of the account and clear individual line items with offsetting line items so that you can view both open and cleared items and amounts in an account. Open item managed should be used if an offsetting entry is made for every line item posted in the account  ( the account is reconciled and cleared against another account). A good example for the use of open item managed is for clearing accounts such as GR/IR account.
Line Item Display.  Select this box if you want to be able to see account balances by individual postings to the account. Be careful not to set this indicator on accounts with very large number of postings. If you selected Open item management indicator, this indicator should also be set. However setting this indicator does not require that you make the account open item managed.
Please assign points as a way of thanking

Similar Messages

  • Reg : Viewing Opening and Closing remarks in the document

    Dear All,
    In any document (Sales Quotation, Sales order etc), while right click we can see Opening and Closing Remarks. I have entered Opening and closing remarks. But am not able view in the screen. Where i can view the same in the respective document.
    Please do the needful
    Thanks & regards
    Venkatesh N

    Hi,
    You can check Note No. :    1038129 and 1289493 regarding the question asked by you.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • Open and closed invoices

    hi experts,
    I have to capture the parked, open and closed invoices in a report in reference to vendor...
    I got the parked invoice condition from the table BSTAT either v or w.
    But i am not getting the idea how to capture the open and closed invoices...
    Some one suggested me to use the ITEMSET structure but i donno how to capture those values can anyone suggest me how to do it...?
    SIRI

    Hi,
    you can use the same query...Also check the new code after the select..
    SELECT BUKRS BELNR GJAHR <b>BSTAT</b>
    FROM BKPF
    INTO TABLE T_BKPF
    WHERE BUKRS = P_BUKRS
    AND BSTAT IN ( ' ' , 'A' ) " ' ' - Normal document, A - Parked doc
    AND BLART = P_BLART
    AND CPUDT IN SO_CPUDT " Selection screen input.
    IF NOT T_BKPF[] IS INITIAL.
    SELECT BUKRS BELNR GJAHR BUZEI EBELN AUGBL AUGBT
    INTO TABLE T_BSEG
    FOR ALL ENTRIES IN T_BKPF
    WHERE BUKRS = T_BKPF-BUKRS
    AND BELNR = T_BKPF-BELNR
    AND GJAHR = T_BKPF-GJAHR
    AND EBELN IN SO_EBELN " selection-screen input
    ENDIF.
    LOOP AT T_BKPF.
    Parked
      IF T_BKPF-BSTAT = 'A'.
        WRITE: / T_BKPF-BELNR , ' - Parked'.
    process the next record.
        CONTINUE.
      ENDIF.
    Check for Open / Closed.
      LOOP AT T_BSEG WHERE BELNR = T_BKPF-BELNR
                                   AND      BUKRS = T_BKPF-BUKRS
                                   AND      GJAHR = T_BKPF-GJAHR
                                   AND      AUGBL <> ' '.
        EXIT.
      ENDLOOP.
    If the return code is 0 then the document is cleared..
      IF sy-subrc = 0.
        WRITE: / T_BKPF-BELNR , ' - Closed'.
    Else the document is not cleared.
      ELSE.
        WRITE: / T_BKPF-BELNR , ' - Open'.
      ENDIF.
    ENDLOOP.
    Thanks,
    Naren

  • 7344 servo motion switching between open and closed loop operation

    I have a custom end-of-line test system presently using a 4-axis 7344 servo controller to perform various functional tests on small, brushed DC motors. The system is programmed in C/C++ and uses flex motion functions to control the motor during testing. Motors are coupled to external encoder feedback and third party PWM drives running in closed-loop torque mode from an analog command signal. The system uses all four motion axis channels on the 7344 board to independently and asynchronously test up to four production motors at a time.
    In closed-loop mode, the system runs without issue, satisfying the battery of testing protocols executed by this system. I now have a request to add additional test functionality to the system. This testing must be run in open loop mode. Specifically, I need to use my +/- 10v analog output command to my torque drive to send different DAC output levels to the connected motor.drive while monitoring response.
    I do not believe the flex motion library or 7344 controller includes functions to easily switch between open and closed loop mode without sending a new drive configuration. I am also under the impression that I cannot reconfigure one (or more) servo controller axis channels without disabling the entire drive. As my system runs each axis channel in an asynchronous manner, any requirement to shutdown all drives each time I change modes is an unworkable solution.
    I am open to all ideas that will allow asynchronous operation of my 4 motor testing stations. If the only solution is to add a second 7344 controller and mechanical relays to switch the drive and motor wiring between two separately configured servo channels, so be it. I just want to explore any available avenue before I place a price tag on this new system requirement.
    Bob

    Jochen,
    Thank you for the quick response. The 7344 board does an excellent job running my manufacturing motor assemblies through a custom end-of-line tester in closed loop mode. A portion of the performance history and test result couples the motor through a mechanical load and external shaft. The shaft is in contact with a linear encoder that closes my servo loop.
    My new manufacturing requirement is to also sample/document how the small DC motor behaves in open loop operation. Your solution is exactly what I need to perform the additional functional tests on the product I am manufacturing. I see no reason why this cannot work. I was originally concerned that I would need to reinitialize the 7344 board after changing axis configuration. Initialization is a global event and impacts all four channels on the 7344 board.
    Using flex_config_axis() to change axis configuration on a single channel without disturbing other potentially running axis channels will solve my concern. It will be several weeks before I can return to the manufacturing facility where the 7344-based testing machine is located. I will update this thread once I verify a successful result.
    Bob

  • Open and closed hand cursors

    I have a drag image application and I wanted to use the open and closed hand cursors to move the image about. It seems there is no easy way of accessing these in Java. After searching for cursor names etc.. I decided to hard code the cursors from the .gif image. Also I didn't want the .GIFs as files as this adds to loading problems so I ended up using arrays of pixels that took a little while to enter.
    I'm giving you the code if you ever need to use it as I typed it in and wouldn't want anyone else to have to do the same.
    int curWidth=32;
                   int curHeight=32;
                   int curCol;
                   Image img;
                   int x,y;
                   int closed_black[] = { 6,5,7,5,9,5,10,5,12,5,13,5,5,6,8,6,11,6,14,6,
                             15,6,5,7,14,7,16,7,6,8,16,8,5,9,6,9,16,9,4,10,
                             16,10,4,11,16,11,4,12,15,12,5,13,15,13,6,14,14,14,
                             7,15,14,15,7,16,14,16,0};
                   int closed_white[] = { 6,4,7,4,9,4,10,4,12,4,13,4,5,5,8,5,11,5,14,5,15,5,
                             4,6,6,6,7,6,9,6,10,6,12,6,13,6,16,6,4,7,15,7,17,7,
                             5,8,17,8,4,9,17,9,3,10,5,10,15,10,17,10,3,11,17,11,
                             3,12,16,12,4,13,16,13,5,14,15,14,6,15,15,15,6,16,
                             15,16,7,17,14,17,0};
                   int closed_whiteruns[] = {6,13,7,15,7,15,5,15,5,15,5,14,6,14,7,13,8,13,8,13,0};
                   int open_black[] = { 10,3,11,3,6,4,7,4,9,4,12,4,13,4,14,4,5,5,8,5,9,5,12,5,
                             15,5,5,6,8,6,9,6,12,6,15,6,17,6,6,7,9,7,12,7,15,7,16,7,18,7,
                             6,8,9,8,12,8,15,8,18,8,4,9,5,9,7,9,15,9,18,9,3,10,6,10,7,10,
                             18,10,3,11,7,11,17,11,4,12,17,12,5,13,17,13,5,14,16,14,6,15,
                             16,15,7,16,15,16,8,17,15,17,8,18,15,18,0};
                   int open_white[] = {10,2,11,2,6,3,7,3,9,3,12,3,13,3,5,4,8,4,10,4,11,4,15,4,
                             4,5,6,5,7,5,10,5,11,5,13,5,14,5,16,5,17,5,4,6,6,6,7,6,10,6,
                             11,6,13,6,14,6,16,6,18,6,5,7,7,7,8,7,10,7,11,7,13,7,14,7,17,7,
                             19,7,4,8,5,8,7,8,8,8,10,8,11,8,13,8,14,8,16,8,17,7,19,8,3,9,6,9,
                             16,9,17,9,19,9,2,10,4,10,5,10,19,10,2,11,18,11,3,12,18,12,4,13,
                             18,13,4,14,17,14,5,15,17,15,6,16,16,16,7,17,18,17,7,18,16,18,
                             8,19,15,19,0};
                   int open_whiteruns[] = {9,14,8,17,4,16,5,16,6,16,6,15,7,15,8,14,9,14,9,14,0};                    
                   int pix[] = new int[curWidth*curHeight];
                   for(y=0; y<=curHeight; y++) for(x=0; x<=curWidth; x++) pix[y+x]=0; // all points transparent
                   // black pixels
                   curCol=Color.black.getRGB();
                   int n=0;
                   while(closed_black[n]!=0)
                        pix[closed_black[n++]+closed_black[n++]*curWidth]=curCol;
                   // white pixels
                   curCol=Color.white.getRGB();
                   n=0;
                   while(closed_white[n]!=0)
                        pix[closed_white[n++]+closed_white[n++]*curWidth]=curCol;
                   // white pixel runs
                   n=0;
                   y=7;
                   while(closed_whiteruns[n]!=0) {
                        for(x=closed_whiteruns[n++];x<closed_whiteruns[n];x++)
                             pix[x+y*curWidth]=curCol;
                        n++; y++;
                   img = createImage(new MemoryImageSource(curWidth,curHeight,pix,0,curWidth));
                   closedhandCursor = Toolkit.getDefaultToolkit().createCustomCursor(img,new Point(5,5),"closedhand");
                   for(y=0; y<=curHeight; y++) for(x=0; x<=curWidth; x++) pix[y+x]=0; // all points transparent
                   // black pixels
                   curCol=Color.black.getRGB();
                   n=0;
                   while(open_black[n]!=0)
                        pix[open_black[n++]+open_black[n++]*curWidth]=curCol;
                   // white pixels
                   curCol=Color.white.getRGB();
                   n=0;
                   while(open_white[n]!=0)
                        pix[open_white[n++]+open_white[n++]*curWidth]=curCol;
                   // white pixel runs
                   n=0;
                   y=9;
                   while(open_whiteruns[n]!=0) {
                        for(x=open_whiteruns[n++];x<open_whiteruns[n];x++)
                             pix[x+y*curWidth]=curCol;
                        n++; y++;
                   img = createImage(new MemoryImageSource(curWidth,curHeight,pix,0,curWidth));
                   openhandCursor = Toolkit.getDefaultToolkit().createCustomCursor(img,new Point(5,5),"openhand");
                   setCursor(openhandCursor);you need to define openhandCursor and closedhandCursor with your other cursor definitions (I made them default to start with) and then just use setcursor as normal. There must be an easier way to do this!
    p.s. thanks to Martin Zvarik for the original code here: http://www.jguru.com/faq/view.jsp?EID=9958

    Hi,
    you can use the same query...Also check the new code after the select..
    SELECT BUKRS BELNR GJAHR <b>BSTAT</b>
    FROM BKPF
    INTO TABLE T_BKPF
    WHERE BUKRS = P_BUKRS
    AND BSTAT IN ( ' ' , 'A' ) " ' ' - Normal document, A - Parked doc
    AND BLART = P_BLART
    AND CPUDT IN SO_CPUDT " Selection screen input.
    IF NOT T_BKPF[] IS INITIAL.
    SELECT BUKRS BELNR GJAHR BUZEI EBELN AUGBL AUGBT
    INTO TABLE T_BSEG
    FOR ALL ENTRIES IN T_BKPF
    WHERE BUKRS = T_BKPF-BUKRS
    AND BELNR = T_BKPF-BELNR
    AND GJAHR = T_BKPF-GJAHR
    AND EBELN IN SO_EBELN " selection-screen input
    ENDIF.
    LOOP AT T_BKPF.
    Parked
      IF T_BKPF-BSTAT = 'A'.
        WRITE: / T_BKPF-BELNR , ' - Parked'.
    process the next record.
        CONTINUE.
      ENDIF.
    Check for Open / Closed.
      LOOP AT T_BSEG WHERE BELNR = T_BKPF-BELNR
                                   AND      BUKRS = T_BKPF-BUKRS
                                   AND      GJAHR = T_BKPF-GJAHR
                                   AND      AUGBL <> ' '.
        EXIT.
      ENDLOOP.
    If the return code is 0 then the document is cleared..
      IF sy-subrc = 0.
        WRITE: / T_BKPF-BELNR , ' - Closed'.
    Else the document is not cleared.
      ELSE.
        WRITE: / T_BKPF-BELNR , ' - Open'.
      ENDIF.
    ENDLOOP.
    Thanks,
    Naren

  • Opening and Closing balance in FBL3N?

    Hi All,
    In other ERP systems, if you browse GL Account, i.e. FBL3N in SAP, you get the list of documents within specified period but in other systems you also get the OPENING balance as well as CLOSING balance and the current postings are in between them. Is there any standard report or report painter is to be used for such requirement.
    Balances can be checked through FS10N and S_ALR_87012301 etc. but requirement is to get the list of documents with opening and closing balance in beginning and end of the report. The best example is of Cash Journal (Txn FBCJ)
    Thanks

    Thank you Will,
    Yes, actually if other system provide such functionality then SAP should be providing that. I searched within table TSTC for such transaction but unable to get. Accountants requirement is when they execute FBL3N within specified period, the cummulative opening balance and closing balance should be provided with report.
    Thanks for your answer!
    Regards,
    Nayab

  • Functional Specification For Opening And closing stock On Particular Date

    Dear Gurus,
    I am creating report for opening and closing stock on particular date in which batch and storage location should also be included. I want to know the tables and fields for the same.I have searched the forum and got report on month basis but I want this report on posting day basis.kindly suggest tables and fields. Thanks in Advance

    Dear sir,
    There are many other colums that client wants to add which are not present in MB5B transaction.columns which client wants to add are as follows...
    Material Number                                                   
    Material Description                                       
    Material Type                                                                        
    Material Group                                                                     
    External material Group                                                            
    Movement Type     
    Plant     
    Storage Location     
    Customer Number     
    Customer Name     
    Vendor Number     
    Vendor Name     
    Posting Date     Receipt Doc. Number
    Issue Doc. Number     
    Reference Issue Document Number     
    Opening Stock Quanity     
    Material Receipt Quantity     
    Material Issue Quantity     
    Material Closing Stock Quantity      
    Value Of Closing Stock
    And for this I want  tables and logic for the same. kindly provide the solution for the same.

  • Dell VENUE 11 PRO 7140 keeps crashing when closing a word document

    Hello all,
    I'm having an issue with a VENUE 11 PRO 7140. 
    Every time that i try to close a word document, the computer crashes giving me this error: KMODE_EXCEPTION_NOT_HANDLED. 
    On the eventviewer looks like TOASTER.EXE caused the problem...
    I know that that executable belongs to Dell data backup so i uninstalled it since it's an enterprise environment and we back everything up. I tried closing a couple of word documents and it worked fine.
    The issue happened again (BSOD) when i had the user logon and try to open one of her word documents..
    The other problem that i have is that i do not have full time access to that PC since the user needs to work with it. Had the chance to spend a couple of hours today but it doesn't seem stable.
    Another strange thing that might be related to that is that the App readiness service keeps stopping even though i configured it as automatic on startup and to restart after each failure...
    Any ideas what can probably cause this? Anybody has had any similar issues with this kind of tablet?

    Hello all,
    I'm having an issue with a VENUE 11 PRO 7140. 
    Every time that i try to close a word document, the computer crashes giving me this error: KMODE_EXCEPTION_NOT_HANDLED. 
    On the eventviewer looks like TOASTER.EXE caused the problem...
    I know that that executable belongs to Dell data backup so i uninstalled it since it's an enterprise environment and we back everything up. I tried closing a couple of word documents and it worked fine.
    The issue happened again (BSOD) when i had the user logon and try to open one of her word documents..
    The other problem that i have is that i do not have full time access to that PC since the user needs to work with it. Had the chance to spend a couple of hours today but it doesn't seem stable.
    Another strange thing that might be related to that is that the App readiness service keeps stopping even though i configured it as automatic on startup and to restart after each failure...
    Any ideas what can probably cause this? Anybody has had any similar issues with this kind of tablet?

  • Material wise reciept and Issue report with Opening and Closing Stock

    Hi
    I need a report,Material wise Receipt and issue with Opening and Closing stock.Is there any standard report available in SAP ?
    Or we have to go for Customised Report.
    Please reply

    Hi,
    MB5B gives total receipts - if i click on the receipts i can view the multiple material documents - BUT is there any way to drill down the reciepts or view the breakup of the receipts on the same screen OR is there any other report for this.
    Regards,
    Laxmi

  • Opening and closing periods in FI

    Dear FICO experts,
    Just a quick question regarding OB52.
    We have only 1 company code, can we use the same posting period variant in mulitple line items for the combination ALL account types and a range of periods that are open?
    Posting period variant:0000
    Account Type: +
    Period from: 1
    Year:2001
    Period to: 12
    Year: 2011
    Posting period variant:0001 (continue making new posting period variants for all account types as needed)
    Account Type: +
    Period from: 1
    Year:2012
    Period to: 12
    Year: 2012
    OR
    Do we just adjust the one line item: example below
    Posting period variant:0000
    Account Type: +
    Period from: 1
    Year:2001
    Period to: 12
    Year: 2011 (keep ajdusting this one line item whenever we need to open new periods for all account types)
    Thanks, Deb
    Moderator: Company code is assigned to one variant; so the question is irrelevant

    Hi,
    The Posting Period Variant is just defined once and is not year dependent.
    The second option that you maintained is the way how the Posting Periods are maintained.
    Against the Same Posting period variant, you can have your open and closed periods and years maintained year after year.
    Generally, you keep only 1 period in a year open, the current period, and at the most 2-3 periods in some cases, and that you can easily maintain in Range.
    Hope this clarifies..
    Regards,
    SAPFICO

  • Opening and closing of year end

    Dear all,
    Pl what are the transaction code used for the opening and closing of year end activities. in fico module . what process we have to take for open and close the period open .
    girija

    hi
    Year End Process
    All the Month end Activities should be Carried Out.
    Balance Carried Forwarded to next year(F.16)
    PCA Balance Carried Forward(2KES).
    Carry forward the Vendor,Customer and Asset Balances
    (Unless Dep is posted for all the months the assets can not be Closed)
    Copy the No Ranges to new year
    Open the Next year period(OB52)
    asset accounting
    oaar
    ajab
    ajrw
    material management
    omsy
    mmpv
    Thanks & Regards
    phaneendra

  • FM for Opening And Closing Stock for Material

    Dear All,
        I need to Calculate the opening and closing stock of the material. If there is any FM for the same just let me know and if not kindly let me know the way out.
    Regards
    Amit

    Hi!
    The closing stock can be found in the MARD table.
    And the opening stock should be always zero.
    I think you wanted to know the yearly/monthly closing/opening stocks, then you have to gather all material documents from MKPF, MSEG tables, and calculate the stock, using the actual stock and subtract/add (depends on the movement type) the material document's quantity, until the given date.
    I don't know any FMs for this, maybe someone could tell you one...
    Regards
    Tamá

  • PDF files opening and closing slowly in Acrobat version 9.5.2.

    I am running Acrobat 9.5.2.  Last week our server died at work and we converted to a new one.  Since then pdf files have been opening and closing very slowly, sometimes taking 15+ seconds to close.  Strangely enough, if you open and close several in a row then they usually open and close quickly with some exceptions, but if you wait 10+ seconds and then try to open or close one it takes forever.  This happens whether or not the machine is connected to the server.
    I tried to do a repair, however it said that it could not connect to the my documents folder at the old server location.  When I originally installed Acrobat, it was done through my University and not while I was even connected to my work server, so that is confusing to me.  Please help, as I use pdf's constantly and this is really slowing me down.

    It doesn't seem like an Acrobat problem per se but a problem with they way your computer is configured to reach the new server. Perhaps you need to have someone come and look at how your computer is configured to reach the new server.  It could also be a problem with how the university configured their server. Server issues are something that cannot easily to diagnosed remotely.

  • Open adn closed items

    Hi
    What is the open and closed item concept in FBL5. Can any one explain it briefly
    Thanks.
    Regards
    Raj.

    Hi,
    Please see the following examples to give you a basic idea about open, closed and parked documents.
    Open Docs : For example, a Customer has ordered some items and a PO is created for it. Delivery is done and if the Customer is yet to pay the amount, then the doc will be open.
    Closed Docs : If the amount is paid and everything is settled, the Document will be closed.
    Parked Docs : If there are any changes to be made to the order, or if any more information is required to close the Doc, then rhey will in Parked state.
    Please note that this is to give you just a basic idea.  Will get back to you again with more details.
    Regards.
    M
    Reward if helpful.

  • AR open items closed off

    Dear Expert,
    Please be clarified what AR open items closed off is. It seems there is a process to do AR open items close off at month end or year end.
    Thanks

    HI Sree..
    That document was open on 4/1/2011......and was cleared on 4/8/2011................
    If you execute the R/3 report FBL5N (Customer Line Item Display) with the "Open at key date" 4/1/2011.........the report will show the document as open item.....
    What your Aging Report in the BI side will show it depeds on the design of the report.....but as per my understanding if the Query get executed with key date value 4/1/2011 ....then the report should show the document as Open Item..
    In that case the restricted keyfigure should design in such a way that it will compare the Clearing Date with the Key date......if the Key Date < Clearing date then the document will be trreated as an Open Item........if Key Date >= Clearing date then the Document will be displayed as an Open Item.........
    We are also using such a report.......Infact we have also designed in such a way so that the report can display how old the document is 90 days, 30 days....etc. by giving the Offset value......
    But frankly speaking it depends on your requirement and the design of the Query....
    Regards,
    Debjani......

Maybe you are looking for

  • Nike + crashes on my Ipod touch after about 1 hr 40 min run? HELP!

    I am using my son's 2nd Generation (I know, I know, replace it already! But he has the 4th Gen Ipod touch, I kept his 2nd Gen) with Nike +. The software has been updated to the most recent version that this device can accept, and I have rebooted the

  • Photoshop CS3, can't import RAW2 what are the steps to succeed?

    Hi It all started with taking stills with a new Panasonic DSLR. I shot RAW2. I tried to open at Photoshop CS3 but, though the files are recognized, I can't select them. I seek guidance to take appropriate steps to resolve this. Thank you for your tim

  • Can one copy a text layer's content to the clipboard?

    I have searched for this but have been unsuccessful in doing so...I want to be able to either;    a: copy the contents of a text layer to the clipboard so that when saving a file I can simply paste and save or...    b: save a file by the contents in

  • AS3 and XML, HELP!

    Hi I have no idea where to post this, so pls forgive me if im in the wrong place, but I have an Assessment due tomorrow, I'm only 4 weeks knew to AS3 and Flash, and confused as, so pls forgive me if i also look silly asking this question. The issue i

  • Smtp error in a cisco SF300

    I have a problem with a SF300-24 24-Port 10/100 Managed Switch. I want to use the Switch Port Mapper of oputils (manageEngine) and it doesn't bring me the info of the switch such as: vlans, MAC and the  IP address of the devices connected in each por