Open delievry items and qt

I think from LIPS table we can get the delievries created.
Questions:
1) How to get the open delivery quantity ?
2) In case of STO PO delivery how to link the delivery item with the purchase order item. Which table and fields to be linked ?
Regds

Dear Aditya,
1. Open Delivery : Use Function Module WS_LM_DATA_SELECTION_FREE.
Value of IT_WBSTK : A (Not yet processed), B (Partially processed)
2. You would need to fetch the data from EKKO based on <b>BSART as UB</b> (which means that it is a STO). Based on this information you can fetch the data from LIPS.
Hope this will resolve your issue.
Regards,
Naveen.

Similar Messages

  • Viewing ALL Open Work Items and Corresponding Approvers in System

    Is there a workflow report in ECC that displays ALL open work items in the system at any given time and their approvers that need to take action?

    Hi ,
    SWIA -  You can give a status of the workitem ( Ready , Inprocess ...........), workitem type (dialog....)
    in the selection criteria and also the time then you can find all the open workitems.
    And also you can check Header table SWWIHEAD it includes all the information related to workflows
    but this is a lenghty process need to process object type and need to refer so many attributes.
    best way is need to create one report make use of it.

  • Getting "open recent" items and "open documents" from an application

    How do I ask Textedit (if running) for the list of documents currently open?
    How do I ask Textedit (if running ) for the list of "open recent" items?
    Thank you

    Thank you. This does the job for "opened documents" in TextEdit and other applications. I wish there were a similar method for "open recent" items. Each application (TextEdit, BBEdit etc) seems to handle the "open recent" items in its own way!
    Thank you again.

  • "Couldn't start this app" error when trying to open Action Items and any other built-in apps

    Hi all,
    When I try to open the Action Items app within an email in OWA, I get the error seen in the screenshot. In Outlook 2013, the frame comes up with a 404 error.
    Third party apps load fine.
    This is a new install of Exchange 2013 Enterprise with CU2. Everything else seems to be working fine. I have tried rebooting the server and disabling and re-enabling the apps with no luck. Can't seem to find anything in the Event Log about it.
    Any ideas why this would happen and how to fix it?
    "Something went wrong and we couldn't start this app"

    Hi,
    Could you please check the IIS log and see what’s the error code?
    Try using the administrator account to log in the Outlook and see if he can see the apps successfully.
    Thanks,
    Simon
    If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Interest calculation on Open items and cleared items

    Dear Experts
    I am trying to do needful configuration for interest indicator on which interest can be calculated for open items and cleared items as well.  But,  system is calculating interest for open items properly, but not calculating interest on cleared items with same interest indicator,  I am repeatedly getting error "interest calculation indicator is not compatible with this type of interest calculation"
    Is it possible to use same interest indicator for open line items and cleared line items of customer?
    If possible, request you share the needful config steps to do same.
    points will be awarded for usful reply.
    Best regards,
    S. Habib Pasha.

    Hello Habib,
    depending on the requests you can setup a item interest calculation or a balance interest calculation "Define calculation types".
    IIC: check settings (item selection, all cleared items, only items with payment, no cleared items) "Prepare item interest calculation"
    I guess you have setup the item interest calculation - maybe you have mixed some entries with BAIC.
    Check in "Prepare account balance interest calculation" whether you have entries with the indicator you want to use.
    At least check your entries in "Define time-based Terms" If you have entries with Balance account interest calculation the system gives even an error.
    Hope this is helpfull.
    Best regards
       Horst

  • Fetching AR open items and customer's credit limit to Collateral Management

    Hi
    Is there a badi that you can use to fetch receivables data (open invoices/items and credit limit) from FI-AR to Collateral Management System?
    Answer: The badi Get Receivables has to be used
    BAPI1010_6 u201ECreditAccountDetail
    Other bapi of interest, :
    BAPI_AR_ACC_GETOPENITEMS
    BAPI_AR_ACC_GETCURRENTBALANCE
    Edited by: EI18 on Sep 9, 2011 10:21 PM

    Hi,
    Open items check means it will consider all the open items when it is doing credit check. Here it adds all the open items amount and do the credit check..
    Oldest open item means it will consider only the oldest open item and based on tht i will do credit check..Here i will check the oldest open item value and its date then do the credit check..
    Coming to payment terms check, system is responding correctly.. because payment terms are immed due net. tht means still time is there in the same day. that is the reason it is not blocking the second document.
    once move to 2nd day then it means first doc is not cleared tht is the reason it is blocking the 2 nd doc on 2nd doc..
    Hope u have understand..
    Regards
    Sankar

  • Performance Issue with BSIS(open accounting items)

    Hey All,
          I am having serious performance issue with a accrual report which gets all open GL items, and need some tips for optimization.
    The main issue is that I am accesing large tables like BSIS, BSEG, BSAS etc without proper indexes and that I am dealing with huge amounts of data.
    The select itself take a long time and after that as I have so much data overall execution is slow too.
    The select which concerns me the most is:
      SELECT zuonr hkont gjahr belnr buzei budat blart wrbtr shkzg xblnr waers bukrs
                 INTO TABLE i_bsis
                  FROM bsis
                  WHERE bukrs = '1000'
                  AND hkont in r_hkont   
                  AND budat <= p_lcdate
                  AND augdt = 0
                  AND augbl = space
                  AND gsber = c_ZRL1   
                  AND gjahr BETWEEN l_gjahr2 AND l_gjahr
                  AND ( blart = c_re      "Invoice
                  OR    blart = c_we      "Goods receipt
                  OR    blart = c_zc      "Invoice Cancels
                  OR    blart = c_kp ).   "Accounting offset
    I have seen other related threads, but was not that helpful.
    We already have a secondary index on bukrs hkont and budat, and i have checked in ST05 that it does use it. But inspite that it takes more than 15 hrs to complete(maybe because of huge data).
    Any Input is highly appreciated.
    Thanks

    Thank you Thomas for your inputs:
    You said that R_HKONT contains several ranges of account numbers. If these ranges cover a significant
    portion of the overall existing account numbers, then there is no really quick access possible via the
    BSIS primary key.
    Unfortunately R_HKONT contains all account numbers.
    As Rob said, your index on HKONT and BUDAT does not help much, since you are selecting "<=" on
    BUDAT. No chance of narrowing down that range?
    Will look into this.
    What about GSBER? Does the value in c_ZRL1 provide a rather small subset of the overall values? Then
    an index on BUKRS and GSBER might be helpful.
    ZRL1 does provide a decent selection . But I dont know if one more index is a good idea on overall
    system performance.
    I assume that the four document types are not very selective, so it probably does not pay off to
    investigate selecting on BKPF (there is an index involving BLART) and joining BSIS for the additional
    information. You still might want to look into it though.
    I did try to investigate this option too. Based on other threads related to BSIS and Robs Suggestion in
    those threads I tried this:
    SELECT bukrs belnr gjahr blart budat
      FROM bkpf INTO TABLE bkpf_l
            WHERE bukrs = c_pepsico
            AND bstat IN (' ', 'A', 'B', 'D', 'M', 'S', 'V', 'W', 'Z')
            AND blart IN ('RE', 'WE', 'ZC', 'KP')
            AND gjahr BETWEEN l_gjahr2 AND l_gjahr
            AND budat <= p_lcdate.
    SELECT zuonr hkont gjahr belnr buzei budat blart wrbtr shkzg xblnr waers bukrs
               FROM bsis INTO TABLE i_bsis FOR ALL ENTRIES IN bkpf_l
                         WHERE bukrs = bkpf_l-bukrs
                          AND  hkont IN r_hkont
                          AND  budat = bkpf_l-budat
                          AND  augdt = 0
                          AND  augbl = space
                          AND  gjahr = bkpf_l-gjahr
                          AND  belnr = bkpf_l-belnr
                          AND  blart = bkpf_l-blart
                          AND  gsber = c_zrl1.
    The improves the select on BSIS a lot, but the first select on BKPF kills it. Not sure if this would help
    improve performance.
    Also I was wondering whether it helps on refreshing the tabe statistics through DB20. The last refresh
    was done 7 months back. How frequently should we do this? Will it help?

  • SO open line items with Profit Center field

    I want to generate a report with all SO open line items and also show its profit center field. Shall I use VBAP table? Which field in this table shows it is an open line items?
    Thank you and Regards,
    Frances

    Dear Fan
    First Check out for any Standard report, which satisfies the requirement.
    In Easy Access, check out all the standard FI report.
    Rgds
    Sumanth.Gururaj
    Consultant/Systems Analyst - SAP SD/MM

  • Mass clearing of inter company open line items

    Hi all,
    we are trying to do a mass clearing ig inter company open line items and wanted to setup a program in SAP to expedite the process. Currently we are using F-03 to manually clear the open line items. We wanted to make things simple where we could simply give SAP a set of parameters so it will know what to clear and where to offset.
    Do u have any idea what they need ?
    please advise.
    thanks.
    Baba

    Hi
    Have you tried by changing the Base line date while cleaing the vendor account. ?
    Satish

  • Vendor open AP items

    Hi,
    How to find the vendor open AP items and what it mean.... can any one explain me in detail.......... ASAP.
    Regards,
    Raghunath.S

    hello Raghunath ,
    Go through this link:
    <a href="http://help.sap.com/erp2005_ehp_02/helpdata/en/03/ff2b2c1d7941f785030137163f0b29/frameset.htm">AP</a>
    Regards,
    Nisha
    @award pts, if helpful.

  • Credit check only open billing item

    Dear Folks,
    Is it possible to do a creditcheck in the sales order on the basis of only open billing items and not at open sales order?
    Thank you very much.

    If I have correctly under stood your question, then the answer is <b>NO. It cannot be done.</b> All the three update groups ( in case of Automatic Credit control) consider both Open Items and Open sales order values. Even in the Simple credit limit check, the Credit value is calculated basd on Open Items and the Current Sales Order value.
    <b>Simple credit limit check</b>
    A credit limit check can be carried out when sales documents are created or changed. The check is carried out within one credit control area. When changing a document, the check is repeated if changes regarding quantity or value are made. A credit control area consists of one or more company codes. A sales document belongs to one credit control area depending on the allocation of the sales organization to a company code. The SAP System checks the credit limit which was granted to the customer in this credit control area. The credit control areas and the credit limit of a customer are defined in financial accounting and entered in the customer master record. During the check, the SAP System totals the receivables, the open items from special G/L transactions and the net value of the sales order for every item of a sales document. The open items take into account obligations bound by contract which are not recorded for accounting purposes but which involve expenses through diverse business transactions. The total is compared with the credit limit. If the limit is exceeded, the system responds in the way defined by you in the configuration menu.
    Hence, I think this is not possible in std sap, but if anybody knows a workaround, then I will be certainly glad to know.
    Thanks

  • When i login to my mac, it opens iTunes, Skype and AIM. I've tried deleting these from the login items, but they are not on the list.  Can anyone help?

    When i login to my mac, it opens iTunes, Skype and AIM. I've tried deleting these from the login items, but they are not on the list.  Can anyone help?

    babowa wrote:
    If you do not lock that folder immediately after deleting all the contents, it will simply populate again (Resume - a "feature" in Lion). You do that by doing a Get Info (highlight folder and press Command + I keys), unlock the lock at the bottom, enter your admin password, then check the box to lock the folder. lock the lock and you're done.
    Yes, that is correct. The alternative is to quit all applications prior to logging out. Lion will then have a chance to remove the saved states.
    babowa also wrote:
    And, for the OP:
    It has also been a regular feature of Mac OS to automatically open any window that was open at shutdown. To avoit that behavior, simply close any Finder windows and  properly quit applications by closing their window and using Command + Q (or File >Quit).
    This was true only for the Finder. Prior to Lion, no other apps would launch unless they were included in the Login Items for the account. And the OS would not restore windows for other apps.
    A very small number of apps (TextWrangler is an example) implemented this capability prior to Lion. They could restore previously opened windows. But that is an application feature, and can be controlled by the application's preferences. Lion implements it at the system level, and users have virtually no control on a per application basis.

  • Open items and closed items

    Hi,
    I am working on a report,where there is a field called status.In this field I have created 3 select options(active,balance out,archive).In XK02 transaction when i enter the vendor number,company code,purchase organisation and select the archive option from the status field and try to save it,then it should check if there are any open PO's or SA's for that particular vendor.If there are any then it should give an error message.This is working fine and I am getting the error message for open line items.If I want to check this for closed line items how can I do that?How can I get the closed line items for that particular vendor?
    Regards,
    Hema

    Hello Hema,
    I didn't get your situation but, i came accross same type of situation.
    i just went through VAPMA table there i got KUNNR and POSNR for a material number and i checked in VBUP table for the status using KUNNR and POSNR. The field in VBUP is LFGSA.
    Reward If Helpful.
    Regards
    Sasidhar Reddy Matli.
    Message was edited by:
            Sasidhar Reddy Matli

  • Difference between cleared items,open items and all postings (FI).

    Hi experts,
    Can anybody tell me the difference between cleared items,open items and all postings for an account.
    While running corresponding bapis and transaction FAGLL03 (for GL) or FBL1N (for accounts payable) i found that in some cases all postings is less than cleared items or open items for a time period. How could it happen.According to my knowledge all postings should contain cleared items and open items.
    Please correct me..
    Thanks and Regards
    Arjun

    Hi Arjun,
    For every Billing Documnet created(VBRK/VBRP-VBELN) there will be an accounting document created in BSID/BSAD tables.
    OPEN ITEMS means the Billed/Invoice Amounts that are pending from Customers, i.e which we have to receive from Customers.
    CLOSED ITEMS means the AMOUNTS received from that customer.
    OPEN ITEMS : fetch data from BSID table Only
    CLOSED ITEMS : fetch data from BSAD only.
    ALL POSTINGS : fetch data from both BSID and BSAD.
    Hope this will help.
    Regards,
    Nitin.

  • Doubt about report FBL5N of screen field:Open items and Cleared items

    hi
    i know the report FBL5N is use DDF LDB and the report work flow is BSID->BKFP->BSEG
    but i don't know to differentiate Open Items and Cleared items in this report.
    Open items and Cleared items stand for a field flag in these table (BSID,BKFP,BSEG )? if true the field is?
    or they must be calc in program ? if true what about calc rules?
    waiting for help! thank you!

    Hi,
    Here is the difference in Open Items and Cleared Items.
    In FI first the document is Open (when it is posted) so the entry is made in table BSID. Once the document is cleared, it will move from BSID to BSAD. And for Cleared item you will see Clearing Document no and Clearing date values updated (these are blank when the item is open).
    The only difference in Open and Cleared is via Clearing Document and Clearing Date. If the values are present, it means document is cleared.
    Hope this helps.
    ashish
    Message was edited by:
            Ashish Gundawar

Maybe you are looking for