Hi in VL06O, the item overview showing no line item in 'LIST OUTBOUND DELIV

Hi,
Hi in VL06O, the "item overview" showing no line item in 'LIST OUTBOUND DELIVary " tab.
But for that particular Delivery doc in VL03, the details showing three line item.
So could you please provide me with prooer suggestion
Best Regards,
BDP

Hi
In VL06O there is lot of parameter to see delivery due list.
Check the delivery date of the order and put the same date in between of VL06O report.
Second give only ur sales organisation and inbetween delivery date to check. and execute
Regards
Shambhu Sarkar

Similar Messages

  • Cleared items still shows as open items in transaction FBL3N

    Dear All,
    We have an issue with respect to cleared items still shows as open items in transaction FBL3N.
    Few documents has been posted and cleared, but still those line items still shows as open items.  We had this problem only for few line items. 
    For other line items this clearing process is working properly without any issue.
    Issue:
    1. Documnet has been posted on 15.08.2209 and the same document has been cleared on 12.03.2010, but this document still shows as open item only....
    Looking forward your  response / suggestions to resolve this issue.
    Thanks in advance
    Regards,
    Prasad

    Hi Prasad,
    You have the following ways to find out the reason:-
    1. Check your selection criteria in FBL3N, if you are selecting open items as on 15.08.2009, then they will still show open items..
    2. Check in table BSIS and BSAS and check where the documents are appearing.If they are cleared, they all should be appearing in BSAS.
    This is standard SAP and most probably it has got to do with dates...
    Regards,
    SAPFICO

  • How to get the Delivery date in PO line Item in SAPScript

    Hi Gurus,
    I am working on PO Script (MEDRUCK). I copied the Standard to a Z form. ZMM_MEDRUCK, Now I need to print the the Header text at the end of MAIN window.  I put Iem number along with the other line Item informmation like stanadrd PO Script MEDRUCK. I also want to show the delivey date with line Item, so Itried to use EKET-EINDT but it is returning the delivery date of last line item, means while printing the first line and other information it is showing the delivery date of the last line item, I tried with the  PEKPO-EINDT it is also not working.
    Can any body suggest me how i can get the delivery date for the respective line Item  ?
    Regards
    Sony

    actually your are picking up the correct data from Table EKET (EKET-EINDT) but your are printing that in item data loop for EKET might have already executed in your script and the header of that internal table consist the last entry of the table so for that. Fetch the delivery date explicite from the Table EKET when your in item level processing and print that.
    For Example u can use this code.
    To print you have write the this code in Script item level printing window "MAIN" window
    Following perform is called to get the line item delivery date in PO
    {/: PERFORM GET_DEL_DATE IN PROGRAM ZPerform_prog
    /: USING &EKPO-EBELN&
    /: USING &EKPO-EBELP&
    /: CHANGING &DEL_DATE&
    /: ENDPERFORM}
    {* Dellivery date &DEL_DATE& }
    write the below code in the Z program "ZPerform_prog"
    { FORM get_del_date  TABLES in_par STRUCTURE itcsy
                             out_par STRUCTURE itcsy.
      READ TABLE in_par WITH KEY 'EKPO-EBELN'.
      CHECK sy-subrc = 0.
      $_po_no = in_par-value.
      READ TABLE in_par WITH KEY 'EKPO-EBELP'.
      CHECK sy-subrc = 0.
      $_po_line = in_par-value.
      SELECT *
      FROM eket UP TO 1 ROWS WHERE ebeln EQ $_po_no AND ebelp EQ $_po_line.
        $_del_date = eket-eindt.
        CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL'
          EXPORTING
            date_internal            = eket-eindt
          IMPORTING
            date_external            = $_del_date
          EXCEPTIONS
            date_internal_is_invalid = 1
            OTHERS                   = 2.
        READ TABLE out_par WITH KEY 'DEL_DATE'.
        CHECK sy-subrc EQ 0.
        out_par-value = $_del_date.
        MODIFY out_par
                    INDEX sy-tabix.
        CLEAR : $_po_no , $_po_line ,$_del_date.
      ENDSELECT.
    ENDFORM.                    "GET_DEL_DATE }

  • TS2756 I'm trying to connect my ipad2 to my phones wifi hotspot. my phone says hotspot is activated and it shows up as an option on my ipad but when i hit that on the ipad it shows a page with a list of things like ip address, domain, url. what do i do no

    I'm trying to connect my ipad2 to my phones wifi hotspot. my phone says hotspot is activated and it shows up as an option on my ipad but when i hit that on the ipad it shows a page with a list of things like ip address, domain, url. what do i do now?

    iOS: Understanding Personal Hotspot
    http://support.apple.com/kb/HT4517
    Use Bluetooth to tether your iPhone, iPod touch, or iPad
    http://www.macworld.com/article/1159258/bluetooth_tethering.html
    How to Connect an iPad to an iPhone Via Bluetooth Tethering
    http://techtips.salon.com/connect-ipad-iphone-via-bluetooth-tethering-25472.html
     Cheers, Tom

  • Change the exchange rate of a line item manually

    My company has an issue regarding the exchange rates.  We are in a country using EURO.
    Though from one of our vendor we take prices in USD. In our pricing procedure in the sales orders we post the price of the vendor and in the prices we maintain another condition type for our profit.
    In the case of the vendor price that gives us USD, we have want to give the price in the usd and the system to translate the usd in eur (in the next line of the procing procedure) accourding to an exchange rate that the user will give per line item.
    At the moment the system thanslates the price to eur accourding to the exchange rate from the system (automatically) and I haven't have the possibility to change the predifined exchange rate manually as I want to do.

    Hi,
    Exchange rate are maintained in the T.Code "OB08".
    Goto the T.Code "OB08".
    Change the exchange rate as per your requirement.
    If you want to get different currency then goto the T.Code "XD02".
    Enter your customer number,Company code and sales area.
    Goto Sales area data.Sales tab.
    Change the currency to your value as per your requirement.
    If you create a new order with that customer,then we will get this new currency.
    After creating the invoice,pass the accounting document number into "FB03" and enter the company code and fiscal year.
    Enter.
    Click on "Currency".
    It gives you the value in base currency.
    Regards,
    Krishna.

  • How to read/get the document attached to PO line item

    Hi experts,
    I got a requirement wherein I need to read/get the document attached at PO line item and to send that document through mail as an attacment .
    please suggest me how to proceed on this.

    actually your are picking up the correct data from Table EKET (EKET-EINDT) but your are printing that in item data loop for EKET might have already executed in your script and the header of that internal table consist the last entry of the table so for that. Fetch the delivery date explicite from the Table EKET when your in item level processing and print that.
    For Example u can use this code.
    To print you have write the this code in Script item level printing window "MAIN" window
    Following perform is called to get the line item delivery date in PO
    {/: PERFORM GET_DEL_DATE IN PROGRAM ZPerform_prog
    /: USING &EKPO-EBELN&
    /: USING &EKPO-EBELP&
    /: CHANGING &DEL_DATE&
    /: ENDPERFORM}
    {* Dellivery date &DEL_DATE& }
    write the below code in the Z program "ZPerform_prog"
    { FORM get_del_date  TABLES in_par STRUCTURE itcsy
                             out_par STRUCTURE itcsy.
      READ TABLE in_par WITH KEY 'EKPO-EBELN'.
      CHECK sy-subrc = 0.
      $_po_no = in_par-value.
      READ TABLE in_par WITH KEY 'EKPO-EBELP'.
      CHECK sy-subrc = 0.
      $_po_line = in_par-value.
      SELECT *
      FROM eket UP TO 1 ROWS WHERE ebeln EQ $_po_no AND ebelp EQ $_po_line.
        $_del_date = eket-eindt.
        CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL'
          EXPORTING
            date_internal            = eket-eindt
          IMPORTING
            date_external            = $_del_date
          EXCEPTIONS
            date_internal_is_invalid = 1
            OTHERS                   = 2.
        READ TABLE out_par WITH KEY 'DEL_DATE'.
        CHECK sy-subrc EQ 0.
        out_par-value = $_del_date.
        MODIFY out_par
                    INDEX sy-tabix.
        CLEAR : $_po_no , $_po_line ,$_del_date.
      ENDSELECT.
    ENDFORM.                    "GET_DEL_DATE }

  • Add vendor number and vendor name to the SAP Standard CO/PS Line item repor

    Hi
    how i can post PS commitment line items and cost center and orders commitment line items
    The SAP standard reports are:
    CJI5 PS Commitment Line items
    KSB2 Cost Centre Commitment Line Items
    KOB1 Orders Actual Line Items
    KOB2 Orders Commitment Line Items.
    give me suggestion for above tr. codes
    Regards
    nreddy

    I dont uderstand completely, your subject says you want to add vendor field, but your message body says "how i can post PS commitment line items and cost center and orders commitment line items" . What is your requirement?

  • In a sales order, entering the cost center field for line items

    In a sales order, the cost center field for the tab 'account assignment' of line items is suppressed. Is there any possibilities to open the cost center field(for line items)?

    Hi kim,
    You can do this in Account Assignment Catagory..
    Hope this helps.
    Regards,
    Sree

  • LSMW program to upload the sales order with multiple line items.

    Dear SD and PP Gurus,
    I am new to creating LSMW Program.
    I want to create a LSMW program to upload the sales order with multiple line items. I have read on SDN that it can be done on two phases. First Create Header Data than line items. IS IT TRUE??, Or
    Is there any procedure by which we can load the sales orders with multiple line items in a single run (part).
    I want to use Batch process, not a BAPI or IDOC procedure.
    I have created a program with
    object 0090
    Method 0000
    Program Name RVINVB10
    Program Type D
    Source Structure 1 - For Header and Source Structure 2  for Line Items.
    Mapped Field INDET (With Fix Value 1), ORDERTYPE, SALESORG, DISTCHANNEL, DIVISION, CUSTOMER, PONUMBER , DELVDATE, PRCGDATE, PMTTERM
    INCOT1 INCOT2 with Source Structure - 1 and
    Field INDENT (With Fix Value 2),  ITEMNO, MATCODE, MATQTY, SUOM, PLANT, BATCH, AMOUNT with Structure-2
    than maintained Structure relation ship, field Mapping, Specified Files, Assigned files, Read Data and other process,
    At final stage (Start Direct Input program RVINVB10) it is giving a message - Table name not allowed.
    Please tell me where I am wrong.
    Thanks in advance.
    DSC

    Dear SD Gurus n Experts,
    I have solved the above problem. But there is another problem appearing regarding the date format. Now system generating a message: Date . . is not valid.
    While I am using Date: YYYYMMDD format in flat file, which is SAP's Standard Format.
    In SDN Link: LSMW upload Sales Order using VA01/VA02     I have found that there are some date fields which are mandatory to filled. Here I have mapped
    VDATU - Requested delivery date,  BSTDK - Customer purchase order date,  PRSDT - Date for pricing and exchange rate,  BSTDK_E - Ship-to party's PO date, FKDAT - Billing Date, KORDT - Delivery Date,
    and PRGRS - Date type is Constant = D
    Can any one tell me, where is the priblem.
    With thanks,
    DSC

  • Is there a receipt scanner that works with the macbook pro that imports line items into numbers or excel?

    Is there a receipt scanner that works well with the MacBook Pro that imports line items into Numbers or Excel?  Thanks.

    Yes. Google...

  • GR of Delivery completed item not possible for line item of PO/SA ?

    Hi,
    Am unable to Receive Goods in MIGO an Error - "GR of delivery completed item not possible for line item of PO/SA"?
    Regards
    Mohammed Khaja Pasha
    +919550917395.

    Hi Mohammed Khaja Pasha ;
    Delivery Completed checkbox provides a lot of fonctionality like an additional delivery is not expected, but is possible. If you prevent posting of migo , you can benefit from system messages M7 163 and 254.
    You want to ensure that the delivery is made before the planned delivery date : Set message 254.
    You want to ensure last possible delivery date : Set message 163.
    However ;
    The open PO quantity of the PO item equals zero.
    The PO item is no longer relevant for materials planning.
    The PO item is ignored when letters urging delivery of overdue goods are generated.
    The PO item can be deleted and archived.
    You can specify whether the Delivery Completed checkbox is to be selected automatically.
    Regards.
    M.Ozgur Unal

  • Converting Line item dimension to non line item dimension

    I have some BI 7.0 issues.
    For some of the existing cubes I had certain dimension as line item dimension  - I wanted to add some characteristic to these dimensions. I am able to do this change and activate the cube.
    But we noticed that the data which is a part of the line item dimension is lost. If the data set is small then we could have done a reload but in my case the volumes are huge, so reloading data is not a possible solution. We actually did the same exercise in BW 3.5 and noticed that the data is intact. We have looked into OSS notes and not found anything so far.
    Kindly help me to find a way to convert Line item dimension to non line item dimension in BI 7.0 without loosing Data.

    Hi,
    the only way to do is to generate a new cube and transfer the data from the first cube via transformation rule. A conversion within the existing cube is not possible.
    Regards,
    C. Aslan.

  • Sales order Userexit to copy item text from one line item to other

    Hi Gurus,
                 I have an urgent issue. Based on item category in sales order, for one line item, I am getting item text. Now I have to copy same item text to other line item.
    Till now I tried save_document_prep & save_document to
    build object tdname & fetch all tdid from table stxh for object 'VBBP'.
    After that READ_TEXT and SAVE_TEXT function module.
    But during creation of sales order I am not able to get any value in STXH table for created sales order. Now I want to know from which internal table I can get item text ?  (some internal table should be there like xvbap to get text per line item)
    Or is there any other way to do this... Please help.
    Points will be rewarded.
    Thanks,

    Hi ,
    try something like this .
            l_name = ls_vbap-vbeln.
            IF l_name IS INITIAL.
              l_name = 'XXXXXXXXXX'.
            ENDIF.
            CONCATENATE l_name ls_vbap-posnr INTO l_name.
            CALL FUNCTION 'READ_TEXT'
                name            = l_name
    Regards
    Prabhu

  • T.code required for Vendor line item display and Customer line item display

    Hi Gurus,
    Pl provide me transaction code for "Vendor line item display and " Customer line item display apart from FBL1n for vendor and FBL5n for customers.
    Kindly advise.
    Regards,
    Samar

    Hi,
    You could use these, for example:
    S_ALR_87012103 - List of Vendor Line Items
    S_ALR_87012197 - List of Customer Line Items
    Just curious: what's wrong with FBL1(5)N?
    Regards,
    Eli

  • GR amount/line item still showing in Open Item after run F.13

    Dear Exparts,
    We run the F.13 after MIGO and MIRO. The GR/IR line item should clear after run the F.13. But the scenario is that in FBL3N in GRIR G/L Balance, MIRO Line item showing clear but the GRN line item is still showing in Open item. How can it possible and what to do for it. As per my knowledge Both line item should clear after run f.13.
    And how can I get the credit amount in which respect the IR(MIRO) amount cleared.
    Thanks,
    Sourav

    Hello Sourav,
    In the Automatic clearing Program for the items to get cleared they
    should meet the fixed criterian and the user defined criteria (OB74).
    When we execute SAP124(F.13) with the flag "only documents which can
    be cleared" it will display in detailed list only those documents that
    can be cleared. If dont check this field it will generate a list even
    of documents that cannot be cleared.
    For example:
    in the OB74: ASSIGNMENT,FUND & BUSINESS AREA as the criteria.
    And the ASSIGNMENT is not matching and thus the system does not find
    the item suitable or rather eligible for clearing.
    The system groups items according to
    fixed system criteria:
    Company code
    Account type
    Account number
    Reconciliation account number
    Currency key
    BSID-WAERS for customers
    BSIK-WAERS for vendors
    BSIS-PSWSL for G/L accounts
    Special G/L indicator
    The program also groups items according to a maximum of five user
    criteria. Note that the trading partner number and the business area are
    no longer fixed system criteria (in comparison to the former clearing
    programs SAPF123 and SAPF123W). Therefore, if you want to group by
    business area or trading partner number, you have to enter these as user
    criteria.
    Thus initially items are grouped according to fixed criteria one of
    which is company code.
    I would like you to review note 10757 FAQ: MR11, clear GR/IR clearing
    account
    Please also review the documentation of the program SAPF124
    Please also review the help.sap.com documentation on GR/IR Account
    Maintenance.
    http://help.sap.com/saphelp_47x200/helpdata/en/30/1060387db94003e1000000
    9b38f8cf/frameset.htm
    hope this helps
    regards
    Ray
    Edited by: Raymond Moynihan on Oct 19, 2011 5:14 PM

Maybe you are looking for

  • IOS 8 - iTunes - iPhone 5S issue

    LONG STORY SHORT: I just want to be able to manage my music manually. Connect my iPhone to my macbook, drag the music from my library to the iPhone. Click a song and press delete if I no longer want it. Have the songs I deleted ACTUALLY GO AWAY inste

  • Add Days To Date

    Hi Everyone, I have been reading about adding an onchange event to a field in a form. My dilemma is below; I have a form where there is a date field that shows the end date of something. I want to auto populate another field with that same end date p

  • Third-party WiFi card clarification

    I am looking for clarification on what is needed for a Wifi connection before purchasing the card. I have a Titanium Powerbook, 15-inch, 667mHz, OS X 10.3.2. I do not have an airport card installed, but I do have airport drivers (3.2). If I purchase

  • What is N7K-USB-8GB used for

    Hi guys, N7K-SUP2 Nexus 7000 - Supervisor 2,   Includes External 8GB USB Flash N7K-USB-8GB Nexus 7K USB Flash Memory - 8GB   (Log Flash) what is 8GB USB Flash in SUP2 used for ? And what is N7K-USB-8GB used for ? Both used to manage image file ? Any

  • Object could not be found in cache, key is null!

    this is what I am getting when i tried to upload a file..the binary attribute is mapped to comp controller  attribute... I dont understand the exact meaning of this message... Please reply