Report for List of Transfer orders in warehouse management

hi,
i want generate a report for list of transfer order orders in warehouse management
is there any report with you guys kindly help me,
or any standard report is there to display list of transfer orders in warehouse management
Thanks,
Rajesh
Edited by: rajesh kumar kandagatla on Feb 11, 2009 9:27 PM

Hi,
If it is one time requirement, you can run the report LT23 and download the data to excel sheet and donwload material details in another sheet and you can match the temperature column in excel file.
If it is permanent requirement, create a query and attach transaction code to that or write a seperate report for this requirement.
Please let me know.
Thanks
Nagarajan

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 for list of POs for with Invoice has not been posted

    Hi All
    Can anybody tell me the report for list of PO' for which GR has already been done but Invoice is not posted
    Thnks
    Ranjith

    Hi
    Try Report ME2M,
    With input selection parameter  "WE101".
    Hope this helps.
    Harish

  • MULTI LEVEL REPORT FOR STOCK TRANSPORT PURCHASE ORDER

    Hi,
    I will have lot of stock transport purchase orders,like md4c transaction where we get multilevel report for sale order/production order,is there any report for stock transport purchase orders.its urgent kindly help

    goto purchase order history tab
    you can see all the details of PO-deluvery-GI, GR, imvoice. Click on delivery, you can see the billing document throughdocument flow button.
    This function is not availilable for production order, hence we have MD4c.

  • Report for List of Park Doc in FB60

    What Want a report for  List of Park Doc in FB60?

    Hi
    You can see the it in FBV3 and click on the list , here you can see the complete list based on the parameters entered by you.
    you can post it using FBV0.
    Anand

  • Report for list of locked pernrs problem..

    Hi,
    the requirement is like need to generate a report for list of locked pernrs with the following fields as pernr,fullname,PA(text and code),EG and ESG(text and code),changed on,changed by,position text and also quering any of the fields...
    Through SQ01 i did generated the report but its not giving the complete output such as the code and text is not showing in one report, the changed by and changed on column cant be queried as it doesnt exit....there should be one report with all the mentioned details of an employee....please provide me the solution...!
    Thanks

    Hi, you have to use switch in your infoset (or in a copy of the infoset):
    *$HR$ [COMMON]
    *$HR$ PROCESS_LOCKED_RECORDS = 'X'
    (go to-> coding- > data, then generate the infoset and regenerate a query if its already created).

  • Report for list of chargeable / non chargeable materials .

    Hi,
    What is the Tcode for getting report for list of chargeable / non chargeable materials .
    Tx
    Uts

    Hi,
    Try to use t-code MB52, maybe it could help you!
    Good day
    Tao

  • Release order for a stock transfer order in Product view

    Hi Experts
    My question is that i cann't see Release order for a stock transfer order in Product view which are available in MD04 in R/3.
    I have checked all the settings for Strategy group 50-Planning without final assembly in R/3 and Requirement type in APO. In APO I have checked requirement type and category group and I can see that in category we have defined Stock Transport Requisition, Stock Transport order,  Sales Order, TLB:VMI sales order, Replenishment delivery and VMI delivery as category.
    One more thing i am not even selecting any selection profile for Product view.
    What i need to check, Kindly suggest.
    Regards
    G C

    Hi G.C
    Check whether you have maintained correct integration model. Create integration model for transactional data. Select the sales order and PO/PR option in CFM1. The reason you need to send the sales order first when you are working with stock transfer order/stock transfer scheduling agreements you first have to send the sales order and then PO/PR. Activate the integrtion model.
    First check in ECC for the Integration with Other mySAP.com Components==>Advanced Planning and Optimization==>Initial Data Transfer==>Change Transfer==>Change Transfer for Transaction Data==>Activate Online Transfer Using BTE==> here check (ND-APO, NDI options are have been checked)
    Also check for the Maintenance of distribution definiton under APO -SPRO==>Integration with SAP Components==>Basic settings for data transfer==>Publication==>Maintain distribution definiton==>Select the publication type(External procurement, Delivery,Shipment) and assign to all the plants you are working with for STO.
    Try the above steps and do let me know if it worked.
    Regards
    KRN

  • Can i transfer stock with transfer order in Inventory management?

    Can i transfer stock with transfer order in Inventory management between two storage locations in the same plant?

    I hope you are referring a transfer order and the transfer between two storage locations connected to the same warehouse, and just not doing movement at IM level with a transfer order.
    But, if you are referring to making a bin-bin transfer within the warehosue and you want to influence the storage location to storage location automatically, yes, you can do this. You should use 'storage location control' configuration under WM-IM interface to drive this. Essentially, you need to maintain the warehouse, destiantion storage type, plant, destination storage location and movement type 311. When you perform the transfer order confirmation to move inventory from a storage type (inventory is under source storage location) to the destination storage type (per the configuration setting) there will be an automatic transfer posting made to move inventory at IM level from source to desintation storage location.

  • Break Up of Actual Costs in a report for list of orders

    Hi All,
    SAP standard reports displays only the total planned & total actual costs.
    Is there any standard report available which can display break up of planned & actual costs along with total costs, for list of orders (e.g: time, material and external resources consumption).
    Thanks in advance
    JK

    hi
    you can find the material cost,external service etc in the standard cost report itself select the change layout and select the items you want to display ,you can get the result
    regards
    thyagarajan

  • SD report for the open sales orders with items

    Hi,
    Is there any standard SAP report which display open sales order togeather with the open items. I want to have columns target quantity, delivered quantity and open quantity.
    Any tip?
    BR
    Saso

    Dear Saso,
    I think, instead using Report: VA05/ VA05N; its better to use Report: VL10C
    In this report, you will get all the Sales Orders along with Materials - relevant for open delivery, along with Open Qty. and various other options can be selected from "Change Layout - (Ctrlt+F8)".
    Best Regards,
    Amit
    Note: Don't maintain any Field-Entry (while executing the Report: VL10N; in order to list all Sales Orders. But, if you want to list Sales Orders based upon some criterias, maintain the Field-entries, as reqd.

  • Report For list of material Master with PO text

    Hi all,
    I need a report whether it is available in Standard SAP or a customized, for List of Material Master with their PO text.
    If any one can help, please reply to this theard.
    Regards,
    Kapil Kulkarni

    To get the material number combined with the PO text you will need the help of an ABAP programmer.  The programmer can create a report for you using the function module READ_TEXT in the function group STXD.  The tables to use are:
    STXH - STXD SAPscript text file header
    STXL - STXD SAPscript text file lines
    The selection screen should have at least the following:
    OBJECT - STXH-TDOBJECT
    NAME - STXH-TDNAME
    LANGUAGE - STXH-TDSPRAS
    TEXTID - STXH-TDID
    You find the information for these fields by going to the PO text entry screen and displaying the header information under Goto -> Header.  For materials, the object is MATERIAL, the name is "material number", the language is "EN", and the text ID is BEST.  You can use this program to get long text in lots of places like information records, purchase order texts, etc.
    Hope this helps.

  • Report for conformation cancelled process orders.

    Hi frnds,
    I need a report for orders which have got cancelled of confirmation.
    plz suggest...
    Robert.

    Dear,
    There is no standard report in SAP which shows Report for conformation cancelled.
    But you can check in order it self in COR2 good movement details.
    Or  check document in MB03
    Use CORS to reverse the phases.
    After canceling if you want to view it again then use CORT (here there is one check box named 'Reversed' means that phase is reversed).
    Or Please use user exit
    EXIT_SAPLCORF_404 Process order conf.: Customer specific input checks 2
    Regards,
    R.Brahmankar

  • Report for planned or prodcution order for production in Alternate plants

    Hai gurus,
    I have two plants - X and Y
    Plant x have finished goods A and B to be produced  and procured from plant - Y
    plant Y have finished goods C and D to be produced  and procured from plant - X
    The production in alternate plant concept is used in plant X  for Product A and B
    The production in alternate plant concept is used in Plant Y for Product C and D.
    Now my requirement is how to get the report for the Purchase order raised by the
    plant X for the Finished product A and B , also how to know the planned order
    and production order with reference to purchase order for Finished product A and B
    under plant - Y
    and VIce versa for the Finished product C and B in plant X and Y
    Waiting for the positive reply.
    Regards,
    Sekar chand

    There are a few reports that you can use to display STO requisitions and orders, by supplying plant, material, or MD04 like was mentioned.
    The only thing that you don't have in a report is the link to the production order. In SAP in a MTS situation there's no fixed link (pegging) between the requirement (STO) and the supply (prod Ord).
    You can view the pegging dynamically, for example in MD04.
    Edited by: Mario Adler on Oct 27, 2011 12:13 PM

  • Transaction/report for list of PGI with sales total price details

    Sir/madam,
    After making PGI we want to know the total sales price for that material. We want list of all details of price/value. Before making invoice we want to know the total price listing with sales order details.
    We get this one by one with VF01 while making invoice only. But we want all list before Invoicing.
    Pl' give answer.......
    Thanks.

    try VF04 & SDO1
    Regards,
    Akhtar
    Message was edited by:
            Akhtar Husain Shaikh

Maybe you are looking for

  • Graph image not getting displayed when navigating from another page

    Hi All, I have implemented a line graph in ADF with "dept no"(in x-axis) and "avg sal"(in y-axis). When I am going to run only this graph page, its showing proper data. But,when I am trying to navigate from another jspx page (which is under some pack

  • Can't install a program on windows 7

    Hi I'm having issues to install iTunes onto my laptop. First of all, I wanted to transfer some music onto my phone but received a message that told me to reinstall the application so I did. But when I was running the app, it came up with this message

  • Architecture J2EE

    Hi, Im building a simple application and are planning on doing soo in J2EE (Im a complete newbie on the topic). Therefore Im doing some self-study. The application Im trying to build is the foolowing: 1. There are 2 objects, user and result. Where th

  • (Workflow) Send emails to Multiple Domains

    hi, my requirement is that after i trigger my Workflow, mails should be sent to Internal users (ie Outlook) and to external vendors who have ids in different domains (ie yahoo, gnail etc). Is it possible to configure all these domains in SMTP MailHos

  • Printerfout HPEnvy 5530 (Blue Screen)

    Sinds 29-7-2015 Knipperen alle lichtjes op het display. Ik zie kort een blauw screen met daarin de code B8156CEO. De printer is  4 maanden  en 8 dagen jong. Ik heb de Help functie gebruikt. Als ik de printer UIT en vervolgens AAN zet, dan kan ik de p