Need a report to see the inbound deliveries on STO

Hello,
I would like to run a report which will give me the list of open STOs which i can filter by material, supply plant, receiving plant or date.
Is there a standard report available for this?
Thanks
Bala

Hi,
Check the transcation ME2N with following option
Scope of list - ALV
Selection Parameters - WE101
Document Type - UB
Hope this will be of some help to you.
Thanks & Best Regards,
Devendra Gaware

Similar Messages

  • I Need interactive report to list the purchase orders details for a vendor

    I Need interactive report to list the purchase orders details for a vendor that has    interactive drill down options to give the detail of vendor from vendor master.

    Hi
    see this sample report
    this is Customer wise sales orders
    just make similar report just using LFA1, EKKO and EKPO tables instead of KNA1,VBAK,VBAP
    REPORT ZTEJ_INTAB1 LINE-SIZE 103 LINE-COUNT 35(5) NO STANDARD PAGE
    HEADING.
    *TABLES DECLARATION
    TABLES : KNA1, VBAK, VBAP.
    *SELECT OPTIONS
    SELECT-OPTIONS: CUST_NO FOR KNA1-KUNNR.
    *INITIALIZATION
    INITIALIZATION.
    CUST_NO-LOW = '01'.
    CUST_NO-HIGH = '5000'.
    CUST_NO-SIGN = 'I'.
    CUST_NO-OPTION = 'BT'.
    APPEND CUST_NO.
    *SELECTION SCREEN VALIDATION
    AT SELECTION-SCREEN ON CUST_NO.
    LOOP AT SCREEN.
    IF CUST_NO-LOW < 1 OR CUST_NO-HIGH > 5000.
    MESSAGE E001(ZTJ1).
    ENDIF.
    ENDLOOP.
    *BASIC LIST SELECTION
    START-OF-SELECTION.
    SELECT KUNNR NAME1 ORT01 LAND1 INTO
    (KNA1-KUNNR, KNA1-NAME1,KNA1-ORT01,KNA1-LAND1)
    FROM KNA1
    WHERE KUNNR IN CUST_NO.
    WRITE:/1 SY-VLINE,
    KNA1-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    KNA1-NAME1 UNDER 'NAME',
    61 SY-VLINE,
    KNA1-ORT01 UNDER 'CITY',
    86 SY-VLINE,
    KNA1-LAND1 UNDER 'COUNTRY',
    103 SY-VLINE.
    HIDE: KNA1-KUNNR.
    ENDSELECT.
    ULINE.
    *SECONDARY LIST ACCESS
    AT user-command.
    IF SY-UCOMM = 'IONE'.
    PERFORM SALES_ORD.
    ENDIF.
    IF SY-UCOMM = 'ITWO'.
    PERFORM ITEM_DET.
    ENDIF.
    *TOP OF PAGE
    TOP-OF-PAGE.
    FORMAT COLOR 1.
    WRITE : 'CUSTOMER DETAILS'.
    FORMAT COLOR 1 OFF.
    ULINE.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'NAME',
    61 SY-VLINE,
    63 'CITY',
    86 SY-VLINE,
    88 'COUNTRY',
    103 SY-VLINE.
    ULINE.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR SECONDARY LISTS
    TOP-OF-PAGE DURING LINE-SELECTION.
    *TOP OF PAGE FOR 1ST SECONDARY LIST
    IF SY-UCOMM = 'IONE'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'SALES ORDER DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'DATE',
    60 SY-VLINE,
    62 'CREATOR',
    85 SY-VLINE,
    87 'DOC DATE',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR 2ND SECONDARY LIST
    IF SY-UCOMM = 'ITWO'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'ITEM DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'SALES ITEM NO.',
    60 SY-VLINE,
    62 'ORDER QUANTITY',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *END OF PAGE
    END-OF-PAGE.
    ULINE.
    WRITE :'USER :',SY-UNAME,/,'DATE :', SY-DATUM, 85 'END OF PAGE:',
    SY-PAGNO.
    SKIP.
    *& Form SALES_ORD
    *& FIRST SECONDARY LIST FORM
    FORM SALES_ORD .
    SELECT KUNNR VBELN ERDAT ERNAM AUDAT INTO
    (VBAK-KUNNR, VBAK-VBELN, VBAK-ERDAT, VBAK-ERNAM, VBAK-AUDAT)
    FROM VBAK
    WHERE KUNNR = KNA1-KUNNR.
    WRITE:/1 SY-VLINE,
    VBAK-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    VBAK-VBELN UNDER 'SALES ORDER NO.' HOTSPOT ON,
    40 SY-VLINE,
    VBAK-ERDAT UNDER 'DATE',
    60 SY-VLINE,
    VBAK-ERNAM UNDER 'CREATOR',
    85 SY-VLINE,
    VBAK-AUDAT UNDER 'DOC DATE',
    103 SY-VLINE.
    HIDE : VBAK-VBELN.
    ENDSELECT.
    ULINE.
    ENDFORM. " SALES_ORD
    *& Form ITEM_DET
    *& SECOND SECONDARY LIST FORM
    FORM ITEM_DET .
    SELECT VBELN POSNR KWMENG INTO
    (VBAP-VBELN, VBAP-POSNR, VBAP-KWMENG)
    FROM VBAP
    WHERE VBELN = VBAK-VBELN.
    WRITE : /1 SY-VLINE,
    VBAP-VBELN UNDER 'SALES ORDER NO.',
    40 SY-VLINE,
    VBAP-POSNR UNDER 'SALES ITEM NO.',
    60 SY-VLINE,
    VBAP-KWMENG UNDER 'ORDER QUANTITY',
    103 SY-VLINE.
    ENDSELECT.
    ULINE.
    ENDFORM. " ITEM_DET
    REPORT demo_list_at_pf.
    START-OF-SELECTION.
    WRITE 'Basic List, Press PF5, PF6, PF7, or PF8'.
    AT pf5.
    PERFORM out.
    AT pf6.
    PERFORM out.
    AT pf7.
    PERFORM out.
    AT pf8.
    PERFORM out.
    FORM out.
    WRITE: 'Secondary List by PF-Key Selection',
    / 'SY-LSIND =', sy-lsind,
    / 'SY-UCOMM =', sy-ucomm.
    ENDFORM.
    After executing the program, the system displays the basic list. The user can press the function keys F5 , F6 , F7 , and F8 to create secondary lists. If, for example, the 14th key the user presses is F6 , the output on the displayed secondary list looks as follows:
    Secondary List by PF-Key Selection
    SY-LSIND = 14
    SY-UCOMM = PF06
    Example for AT USER-COMMAND.
    REPORT demo_list_at_user_command NO STANDARD PAGE HEADING.
    START-OF-SELECTION.
    WRITE: 'Basic List',
    / 'SY-LSIND:', sy-lsind.
    TOP-OF-PAGE.
    WRITE 'Top-of-Page'.
    ULINE.
    TOP-OF-PAGE DURING LINE-SELECTION.
    CASE sy-pfkey.
    WHEN 'TEST'.
    WRITE 'Self-defined GUI for Function Codes'.
    ULINE.
    ENDCASE.
    AT LINE-SELECTION.
    SET PF-STATUS 'TEST' EXCLUDING 'PICK'.
    PERFORM out.
    sy-lsind = sy-lsind - 1.
    AT USER-COMMAND.
    CASE sy-ucomm.
    WHEN 'FC1'.
    PERFORM out.
    WRITE / 'Button FUN 1 was pressed'.
    WHEN 'FC2'.
    PERFORM out.
    WRITE / 'Button FUN 2 was pressed'.
    WHEN 'FC3'.
    PERFORM out.
    WRITE / 'Button FUN 3 was pressed'.
    WHEN 'FC4'.
    PERFORM out.
    WRITE / 'Button FUN 4 was pressed'.
    WHEN 'FC5'.
    PERFORM out.
    WRITE / 'Button FUN 5 was pressed'.
    ENDCASE.
    sy-lsind = sy-lsind - 1.
    FORM out.
    WRITE: 'Secondary List',
    / 'SY-LSIND:', sy-lsind,
    / 'SY-PFKEY:', sy-pfkey.
    ENDFORM.
    When you run the program, the system displays the following basic list with a the page header defined in the program:
    You can trigger the AT LINE-SELECTION event by double-clicking a line. The system sets the status TEST and deactivates the function code PICK. The status TEST contains function codes FC1 to FC5. These are assigned to pushbuttons in the application toolbar. The page header of the detail list depends on the status.
    Here, double-clicking a line no longer triggers an event. However, there is now an application toolbar containing five user-defined pushbuttons. You can use these to trigger the AT USER-COMMAND event. The CASE statement contains a different reaction for each pushbutton.
    For each interactive event, the system decreases the SY-LSIND system field by one, thus canceling out the automatic increase. All detail lists now have the same level as the basic list and thus overwrite it. While the detail list is being created, SY-LSIND still has the value 1.
    Regards
    Anji

  • Report to see the output of VLPOD transaction

    Hi Gurus
         I have configured Proof of delivery concept to caputre loss of Quantity due to moisture. can any body tell me about standard report to see the output of VLPOD transaction.Full points for the correct solution.

    Hi,
    Try the t-code VLPODL, hope can help you!
    Good day
    Tao

  • Is there any report to see the Latest GR receipts materials wise

    Dear Experts,
                              is there any report to see the Latest GR receipts materials wise , thanks in advance
    regards
    rajakarthik

    transaction MC.A
    Execute it.
    if you see the result, then press F6 to add the date fields to the screen.

  • Is there any report to see the consumption details?

    Hi,
    Is there any report to see the consumption details? with material number or without material number?
    Regards,
    Sattuj

    There are a no of ways from where you can get your desrired data....
    Table mver---used for material consumption.
    T code mcre---again used in consumption reports,
    Table MVER gives you detail of Material Consumption
    Also, MSEG (MENGE) and S026 (ENMNG) ... Pls restrict the selection condition for material with movement type 261 in table MSEG
    Tables
    DBERCHV Consumption History
    DVER Material Consumption for MRP Area
    You can get all the consumption details in MB51 report by selecting relevnt movement types. And MB5S also.
    For Repetetive :-
    Check this T Code MCRP,which gives you the exact material consumption datewise or order wise.
    *Report MCRE is widely used for the material cosnumption than checking in COOIS.*
    Also these reports can help you.
    MCPF Material analysis: Dates
    MCPO Material analysis: Quantities
    MCPW Material analysis: Lead time

  • Report: to see the Invoices with Printing Errors

    Hi.
    Please help us in getting the report: to see the Invoices with Printing Errors
    The problem is that, at first there has been a problem and the invoice was not printed but we did not notice that it was not printed.
    There has to be a report, where we can see the invoices with printing errors.
    Thanks,
    Amar

    Hi,
    You can use the the standard Tcode:VF31.
    Process the record if it has errors the line turns to red.Select the check box and click on the Log(Shift+f6)
    You will be able to see the error messages for the output type:
    Regards,
    Saju.S

  • T-code/Report for seeing the existing entire GL master data

    Dear Experts,
    Is there any t-code/Report for seeing the existing entire GL master data at chart of accounts level and company code level.
    example :
    GL a/c no    company_code   account_group   shrt_text    long_text     tax_category      open_item_management   etc
    172500           1000                  Balance sheet   tds pay      tds payable    *                                 X
    Thanks in Advance
    Regards,
    T.Kartheek
    Moderator: Please, search before posting

    Dear expert
        you can use f.10 or f.08
    2.  GL Account Balances (Totals & Balances )             S_ALR_87012301
    3.  GL Line Items                                                            S_ALR_87012282
    4.Display of Changed Documents                                  S_ALR_87012293
    5. Chart of Accounts                                                       S_AL:R_87012326
    6.. GL Account List                                                      S_AL:R_87012328
    7.. Display Changes to GL Accounts                             S_ALR_87012308
    Regards
      Ajeesh.s
    Edited b

  • Inbound deliveries with STO

    Hi,
    I am currently designing an interface with an external WMS and I am thinking to use inbound deliveries but it seems inbound deliveries with stock transport order have important restrictions :
    1. inbound deliveries are created with the quantity from the STO and not from the outbound delivery => risk on stock in transit
    2. The batch numbers are not copied from the outbound delivery to the inbound delivery (it is done in GR with MIGO if you post from outbound delivery)
    3. I haven't (yet) found a way to create automatically an inbound delivery when you post the goods issue from the outbound delivery. (it seems SAP is providing special development for that ?)
    Does anyone experienced the use of inbound deliveries with STO and what are your recommendation?
    Thanks a lot,
    JP

    Hi,
    We want to create inbound delivery in order to interface with an external WMS (Warehouse Management). We are not using standard SAP "decentralized WMS" interface.
    By using inbound deliveries for the interface, we can initiate the GR in SAP and then wait for confirmation from WMS. The WMS can then confirm different quantities if some discrepancies are identified during unloading.
    Also, creating inbound deliveries allow planning for receiving (i.e yard management).
    => We do not want to post the GR first in SAP and then send it to the WMS as they can find some differences during unloading
    => We do not want warehouse operators to work in SAP
    => We need a document in the WMS which will trigger task creation for GR for warehouse operators.
    => We want to use same solution for GR for external purchase orders and STO. So if we use inbound deliveries for PO, we want to use it for STO.
    Does anyone has experienced to create inbound delivery for STO from outbound delivery with Idoc (i.e ASN with DESADV) or specific development ?
    Thanks for your help,
    JP

  • Report to see the g/l balance vendor wise

    hi experts,
    i need to check the balance of  one g/l "tds on contractor" vendor wise.
    but i am unable to get the information vendor wise.can anyone give me some idea by which t code i can see the report?
    Thanks
    Regards
    Konishko

    Try this...
    Using FBL1N (Vendor Line item Display) you can click on "dynamic selections" at the top and add the GL account to the search criteria. That way you can display only the open item information for any vendor for one particular GL account.

  • Report to see the actual cost and Revenue..

    Hi all,
    My Sales Cycle is Sales Order --> Delivery --> PGI --> Invoice --> and Accounting.
    When we do the PGI GOGS account entries will generate,
    When we do the Invoice Revenue and customer account entries will generate.
    Now my customer wants to see the total Actual cost as well as total revenues in a single report (Sales order wise).
    Is there any Standard report availble for this?????
    Thanks and Regards,
    SUBBU..

    Hi,
    You will have to use LIS and develop a std or flexible analysis to develop this report.
    Check the below links
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/LOLIS/LOLIS.pdf
    http://help.sap.com/printdocu/core/print46c/en/data/pdf/LOLIS/LOLIS_KOMPONENTEN%20DES%20LIS.pdf
    Regards,
    Amit

  • Standar report to see the sale order stock collectively

    Dear Gurus,
    Is there any standard report available to see the sales order stock collectively.
    I can see the sale order stock in MMBE. But disadvantage is, at a time i can see a single material only.
    I would like to see the sale order stock for more than 1 materials.
    For example MB52- Collective inventory stock can be seen

    Dear,
    You could check sales order stock using MB52. Tick Also Select Special Stock and fill special stock indicator ='E'
    You can check in MMBE t.code by enter material and execute....& see ur slaes order stock in On-order stock segment also try in CO09
    Regards,
    R.Brahmankar

  • Report to see the value of material at storage bin level

    Hi,
    The requirement is to see the quantity and value of material stored at storage bin level.
    Is there any standard report available to see the same.
    thanks

    Hi,
    Check on it:-
    Storage bin should display in MB52
    pherasath

  • What's the report to see the result after we run KSUB ?

    Dear All,
    Could you kindly help me ?
    I'm new for FI-CO .
    If i'd like to run assessment, and in the cycle I use Receiver Rule: Variable portion and type is Plan SKF . The sender will be cost center and receiver is WBS Group.
    Afterward, I run KSUB to run cycle.
    And I'm keen to see the result after doing the assessment, what's the report for it ?
    Could somebody tell me ??
    I wanna see the result from allocation ( type assessment). What's the report for it ?
    Thanks a lot.
    Have a good day,
    Best regards,
    Daniel N.

    Hi,
    the sender / receiver relation and the values are reported after executing KSUB.
    Another possibility is to execute KSB1 report for the sender cost centers and the assessmnet cost elements for the assessment period. Create a layout where the receiver (=partner object) is displayed.
    Best regards, Christian

  • MM-Report to see the materials which is not used from last 3 months

    Dear All,
    I want to find out the materials which are not used from last 3 months.Is there any report?
    Thanks
    Vishal

    Hi
    check MB5B
    give material and plant there
    select valuates stock radio button and NON-Hierarchical representation layout  on selection screen
    give last three month duration period on selection screen and execute report
    and see total  Goods receipt and total goods issue for material
    Regards
    kailas ugale

  • Report to see the consumption wise material report

    Hi,
      I want to know is there any report in which we can get material consumption wise report for particular period   like   i want to see material  whose consupmption in more than 500 number in last 4 months,  annd other material whose consumption is less than 500 material  for each month in last 4 months.
    regards,
      zafar

    I think you can get what you want with transaction MC.A
    execute it, when seeing the result, you can press F6 to exchange the fields you want see in the report

Maybe you are looking for

  • How to Handle Leave Encashment in Oracle Payroll

    Dear Friends, Can any one pls let me Know,How to Handle Leave Encashment in Oracle Payroll.. Pls help me on this.. with regards Veeru

  • Are the 3.2 Trial Download and Install DVD the same?

    Trying to determine if I should install from disk after I receive a valid key from Adobe.  Is there any material on disk that is not in the Trial download?  If so is there a way to add that without re-installing?  If not, is there a downside to re-in

  • How do you delete contacts from your phone for good without having it appear in the messages app?

    How do you delete contacts from your phone for good without having it appear in the messages app?

  • Share Screen

    Snow Leopard on my MBP is requiring a user id and password to share screen of my remote mac mini which, in any event, fails when I supply it. Leopard did not require authentication and my mac mini is set up to allow all users without a password. SL c

  • ME9F - Change ALV Output to List output

    Hi all, Im using transaction ME9F which currently displays the output in ALV mode. How to change it to list mode ? I have checked the user parameters tab in Su3 but nothing seems to be there or is there any other parameter id that i should set in Su3