SUPPLIER WISE DELIVERY PLAN

hi ABAPers,
Plz help me to make this report whose
Input Fields are :
1. Delivery Date
2. Supplier
Output Fields are :
1. Item Group
2. Item Description
3. Item Code
4. Planned Qty. as per PO for every day
5. Actual Qty. as per delivered GRN ( Goods Reciept Number ) for every day
6. Total Qty. and Total Value of Planned Qty. and Actual Qty. and total value according to per item price and qty.
plz provide me required tables and fields and any report similar to this report.
Thanks to All
Message was edited by:
        DEEPAK SOLANKI

Check with the table.
LIKP  SD Document: Delivery Header Data
LIPS  SD document: Delivery: Item data
Regards,
Maha

Similar Messages

  • BOM WISE DELIVERY PLAN

    hi ABAPers,
                         Plz help me to make this report whose
    Input Fields are :
    1. Delivery Date
    2. Cylinder No.
    Output Fields are :
    1. BOM/PR Bought Out Parts
    2. Item Description
    3. Item Code
    4. Vendor/Supplier
    5. Planned Qty. as per M.R.P.-Run (Purchase Requistion Qty.) for every day
    6. Actual Qty. as per PO Qty./Delivery Date for every day
    7. Total Qty. and Total Value of Planned Qty. and Actual Qty. and total value according to per item price and qty.
    plz provide me required tables and fields and any report similar to this report.
    Thanks to All
    Message was edited by:
            DEEPAK SOLANKI

    Hi,
    Check these tables.
    RESB --->Reservation/dependent requirements
    AFKO -
    >Order header data PP orders
    AFPO -
    >Order item
    MAST---->Material to BOM Link
    STKO -
    >BOM Header
    STPO----->BOM item
    Reward points if found helpful…..
    Cheers,
    Chandra Sekhar.

  • GRN wise delivery cost in MIRO

    Hi
    I have created a Purchase order for a raw material along with freight charges (this is paid to different Vendor) which is  maintained in the PO Level. I have done multiple GRN's for the same Purchase Order.
    When I am doing the invoice  verification for the same PO. I was trying to book the Planned delivery cost for this PO. I am able to see only single line item but where as i am unable to see it based on GRN. The GRN number is also not appearing in the reference field
    Requirement is: Based on number of GRN's the Planned delivery cost should be seen in MIRO. but where as i can see only one line. System is calculating on Po Level.
    If i am booking for goods and service i am able to see multiple line items
    pls help

    Planned delivery costs always appear as a single line item and not GRN wise.  
    Is your client Passing the delivery cost bills per GRN?
    If yes ,then One way to Get GRN wise details in MIRO , is by using the "Bill of Lading " number field that you see in MIGO. 
    If you capture the Bill of lading number in MIGO for each GR , then you can also do MIRO w.r.t Bill of lading number instead of the Purchase order. 
    Apart from the above, Im not aware of any other way to get GRN wise delivery cost details in MIRO.

  • Asset balance report Vendor/supplier wise

    Dear All,
    I want to take asset balances report vendor/ supplier wise.
    Is any report avaliable like this?
    Thanks & Regards,
    Pritam

    Hi,
    you can use sort variants which contain the vendor information. You can find some information in SAP notes 98739 and 546856.
    Regards,
    Markus

  • Sales Analysis Report based on Supplier-wise

    Hi Experts,
    My client requirement is ,We are into trading so , we want a Sales analysis report based on Supplier-wise. like,
    Selection critieria is
    1)Supllier name
    2)From and To date.
    Heading are
    Item name     Sales UoM    Jan(quantity)   Feb(quanitity)   mar(quantity)   April(quanitiy).........
    here, i need only the sum of the quantity for the items for that particular month based on the date giving in selection criteria.
    Regards,
    Dwarak
    Edited by: Dwarak@SMS on Aug 23, 2010 4:29 PM

    Hi experts,
    For my clients requirement,
    I could able to alter my previous query(find below).
    My object is
    1)To get sales report based on Manufacturer.
    2)To get the TOTAL SALES QUANTITY OF THE MONTHS in the report. I go that in the below query, and only thing is that is have to minus the total Credit note for items to get the ACTUAL TOTAL SALES OF THE MONTHS. so , can anyone help me to alter the query to get me the ACTUAL TOTAL SALES OF THE MONTHS.
    the query is
    SELECT T0.ITEMCODE,T0.ItemName,T0.OnHand,
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with
    (NOLOCK) WHERE MONTH(T1.DOCDATE) = 1 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())-0) AS 'JAN ',
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with
    (NOLOCK) WHERE MONTH(T1.DOCDATE) = 2 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())-0)  AS 'FEB ',
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with
    (NOLOCK) WHERE MONTH(T1.DOCDATE) = 3 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())-0)  AS 'MAR ',
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with
    (NOLOCK) WHERE MONTH(T1.DOCDATE) = 4 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())-0)  AS 'APR ',
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with
    (NOLOCK) WHERE MONTH(T1.DOCDATE) = 5 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())-0)  AS 'MAY ',
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with
    (NOLOCK) WHERE MONTH(T1.DOCDATE) = 6 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())-0)  AS 'JUN ',
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with
    (NOLOCK) WHERE MONTH(T1.DOCDATE) = 7 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())-0)  AS 'JUL ',
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with
    (NOLOCK) WHERE MONTH(T1.DOCDATE) = 8 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())-0)  AS 'AUG ',
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with
    (NOLOCK) WHERE MONTH(T1.DOCDATE) = 9 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())-0)  AS 'SEP ',
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with
    (NOLOCK) WHERE MONTH(T1.DOCDATE) = 10 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())-0)  AS 'OCT ',
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with
    (NOLOCK) WHERE MONTH(T1.DOCDATE) = 11 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())-0)  AS 'NOV ',
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with
    (NOLOCK) WHERE MONTH(T1.DOCDATE) = 12 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())-0)  AS 'DEC '
    FROM dbo.OITM T0
    LEFT JOIN dbo.INV1 T1 ON T1.ItemCode = T0.ItemCode WHERE T0.SellItem = 'Y' and T0.[FirmCode] =[%0]
    GROUP BY T0.ItemCode,T0.Itemname,T0.OnHand,YEAR(T1.DOCDATE) HAVING YEAR(T1.DOCDATE) =
    YEAR(GETDATE())-0
    ORDER BY T0. ITEMCODE

  • Supplier Wise Booked Sale Order/Dealer Orde Report

    hello all,
    i have to take 6 monthly or Yearly based supplier wise Dealer Order/Sale Order report, so can anyone please let us know is there any standard t-code? if i go for Z report then from which tables i can get the details?
    Regards saurabh.

    supplier wise Dealer Order/Sale Order report
    If Supplier in above means Vendor and the report requirement is to link Vendor and Customer (Dealer Order / Sales order), there are no such report in Standard SAP. Standard Reports in SAP do not link procurement and sales and ideally not recommended, as it is complex to establish the logic, as to what procurement is done for which sales. Ideally Procument will be generic and not linked to single sales order.
    Please elaborate and specify what supplier wise would refer to and more descriptive requirement.
    Regards,
    Rajesh Banka

  • Delivery Schedule Number or Delivery Plan Number field

    Hi,
    In MM which field refers to Delivery Schedule number (or Delivery Plan number)
    Advance Thanks
    Aadarsh

    Hi Sanjeev,
    Sorry. That is not the one. ETENR is of NUMC 4. But the field I am seeing is atleat 8 characters (maybe 10).
    I dont have any further information than the name given :
    Delivery Schedule Number or Delivery Plan Number field.
    I can further say to you that this is being used in Vendor Decleration
    Regards
    Aadarsh

  • Supplier Wise Aging Report As of Date

    Hi,
    We are on 12.1.3
    I have wrote a query to find the Supplier Wise Aging Report .But it is not working for back date i.e if we applied Amount 1000  today, in report patameter if a pass the value from to yesterday date - report should display sum of all aging. If we gave till today.. the value should be 1000 less
    My Query:
    SELECT   yy.vendor_name, yy.vendor_id vendor_num, yy.segment1,
             yy.SUM remaining_advance_amount, yy.less30, yy.greater30,
             yy.greater60, yy.greater90, yy.greater120
    --         (SELECT COUNT (1)
    --            FROM ap_invoices_all aia
    --           WHERE aia.cancelled_date IS NULL
    --             AND aia.vendor_id = yy.vendor_id
    --             AND TRUNC (aia.invoice_date) BETWEEN :p_from_date AND :p_to_date
    --             AND aia.amount_paid <> aia.invoice_amount) out_stnd_bill,
    --         (SELECT SUM (NVL (apd.prepay_amount_remaining, 0))
    --            FROM ap_invoices_all aib,
    --                 ap_invoice_distributions_all apd
    --           WHERE aib.cancelled_date IS NULL
    --             AND aib.vendor_id = yy.vendor_id
    --             AND aib.invoice_id = apd.invoice_id
    --             AND apd.reversal_flag = 'N'
    --             AND TRUNC (aib.invoice_date) BETWEEN :p_from_date AND :p_to_date
    --             AND aib.invoice_type_lookup_code = 'PREPAYMENT') on_ac_amount
    FROM     (SELECT   xx.vendor_name, xx.vendor_id, xx.segment1,
                       SUM (NVL (xx.less_30, 0)) less30,
                       SUM (NVL (xx.greater_30, 0)) greater30,
                       SUM (NVL (xx.greater_60, 0)) greater60,
                       SUM (NVL (xx.greater_90, 0)) greater90,
                       SUM (NVL (xx.greater_120, 0)) greater120,
                       (  SUM (NVL (xx.less_30, 0))
                        + SUM (NVL (xx.greater_30, 0))
                        + SUM (NVL (xx.greater_60, 0))
                        + SUM (NVL (xx.greater_90, 0))
                        + SUM (NVL (xx.greater_120, 0))
                       ) SUM
                  FROM (SELECT   c.vendor_name, c.vendor_id, c.segment1,
                                 (CASE
                                     WHEN ((SYSDATE) - TRUNC (b.invoice_date) <=
                                                                                30
                                        THEN NVL ((  NVL (b.invoice_amount, 0)
                                                   - NVL (b.prepay_amount_applied,
                                                          0
                                                  0
                                     ELSE 0
                                  END
                                 ) less_30,
                                 (CASE
                                     WHEN ((SYSDATE) - TRUNC (b.invoice_date)
                                              BETWEEN 31
                                                  AND 60
                                        THEN NVL ((  NVL (b.invoice_amount, 0)
                                                   - NVL (b.prepay_amount_applied,
                                                          0
                                                  0
                                     ELSE 0
                                  END
                                 ) greater_30,
                                 (CASE
                                     WHEN ((SYSDATE) - TRUNC (b.invoice_date)
                                              BETWEEN 61
                                                  AND 90
                                        THEN NVL ((  NVL (b.invoice_amount, 0)
                                                   - NVL (b.prepay_amount_applied,
                                                          0
                                                  0
                                     ELSE 0
                                  END
                                 ) greater_60,
                                 (CASE
                                     WHEN ((SYSDATE) - TRUNC (b.invoice_date)
                                              BETWEEN 91
                                                  AND 120
                                        THEN NVL ((  NVL (b.invoice_amount, 0)
                                                   - NVL (b.prepay_amount_applied,
                                                          0
                                                  0
                                     ELSE 0
                                  END
                                 ) greater_90,
                                 (CASE
                                     WHEN ((SYSDATE) - TRUNC (b.invoice_date) >
                                                                               120
                                        THEN NVL ((  NVL (b.invoice_amount, 0)
                                                   - NVL (b.prepay_amount_applied,
                                                          0
                                                  0
                                     ELSE 0
                                  END
                                 ) greater_120
                            FROM ap_payment_schedules_all a,
                                 ap_invoices_v b,
                                 po_vendors c
                           WHERE a.invoice_id = b.invoice_id
                             AND b.vendor_id = c.vendor_id
                             AND b.invoice_type_lookup_code = 'PREPAYMENT'
                             -- AND a.amount_remaining <> 0
                             AND TRUNC (b.invoice_date) BETWEEN :p_from_date
                                                            AND :p_to_date
                             AND b.cancelled_date IS NULL
                        --AND c.segment1 = 837
                        ORDER BY c.vendor_name) xx
              GROUP BY xx.vendor_name, xx.vendor_id, xx.segment1) yy
    ORDER BY yy.vendor_name;

    Hi Octavio,
    As per this note 1290116.1.
    There is no replacement for this table
    Thanks
    Vishwa

  • Re Supplier wise Quality Analysis Report

    Hi Gurus,
    In my project for QM module we have one report "Supplier wise Quality Analysis". For this inspection lot is restricted with 01 type. Now the issue is in the report it is showing rejected material (i.e Code Group- GR, UD Code - 005 ) l.... I have restricted the code group wirh GR and code with accepted UD Code (001,002,003,004) at query level . But still i am getting rejected lot in my report.. So please explain me what to do to stop the Rejected material in Supplier(Vendor) wise qulaity analysis report...
    Thanks in Advance
    Srinivas.M

    Hi,
    Instead of including UD codes 01,02, 03, 04 try to exclude the code 05 might help you

  • Supplier wise budgeting

    can make budget supplier wise in 11i. or is there any module which supports to Supplier wise budgeting
    please reply at earliest.
    Thanks

    Hi Dear,
    Supplier wise budgeting is not a standard functionality of oracle applications,if you required so you may need to create additional field(DFF) on supplier/site named as "Budget Amount" then enter budget for supplier and compare this field with actuals by customized reports.
    Is it your official reuqirement to report supplier wise budget ?
    Regards,
    Ali
    Edited by: Ali Syed on Dec 11, 2009 2:20 AM
    Edited by: Ali Syed on Dec 11, 2009 2:41 AM

  • How to enable end users to escalate requests outside of newScale - end user view of delivery plan

    How do you communicate to end users in a large organization, the procedures for escalation a request that is late or urgent. The views of the delivery plan available to users don't give them muche detail about who is doing the work.
    I'm curious how other people communicate the escalation procedures - per service - to the end users that submit them?  for instance, our unix admin team is pretty swamped and not meeting their OLAs reliably.  They want to provide a way for the Appdev/IT users to know how to escalate requests that are late and urgent/important. 
    When a user submits a unix admin service on a req, if the user knows where to look in myservices, they can see the delivery plan, but enough detail to know who is doing the work. (we submitted an enhancement request a while ago to provide an options for a "full disclosure" view of the delivery plan).   Even if they have enough access to service manager to find the req number and see the service manager view of the delivery plan, they still only see the service team/queue name, which might not be enough info for them to make a call or send an email.
    We are discussing a few options and was curious what others are doing:
    1.  Update the Service description to include a contact distribution list for the fulfillment team (for requests with simple plans) or the service owner team for complex delivery plans.
    2.  Create a custom email template to be sent at start of delivery plan.  Ccurrently we have a generic email that covers most requests, but are thinking of creating emails that provides service-specific escalation information. 
    3.  Create an intranet page with escalation information by service, and perhaps including this as a link off the myservice home page or the service description.  
     The scope of this question is more around infrastructure requests that are fulfilled by centralized groups, not how end users escalate phone or computer requests.  Our service-desk generally not involved in support of infrastructure requests, although they woudl probably be the escalation point for end-user requests
    -Brian
    running 2009.sp2

    create a CSI program (from ITIL) that will be empovered to fix the issues with Unix admins, ie hire more people.
    Dont fix process issues with technology, fix the process itself

  • How to create a Master delivery plan

    Hello,
    my question is how to create a Master delivery plan to my customers manuelly and how to setup up it for to be able to create automatically the production planning orders.
    Thank you kindly for you answers.

    Thank you so much, it is great.
    Just one more question, which requirements type i have to set up in requirements parameters if I want to plan it directly to customer (I want to see the customer in MD04)
    Thank you kindly for your answer

  • Get the supply source of planned order and process order.

    Hi experts,
    I would like to display production version (supply source) on prduct view.
    But, I don't know that how to get supply source of planned order and process order.
    APO  table is complax.
    Do you know that?
    Regards,
    Satoru

    Hello Tushar,
    Are components also plan in APO with MRP type X0?
    Does PDS or PPM contain all the components?
    Verify if the component is maintained properly in the PDS.
    Check whether there is an active integration model for the components, also execute the RAPOKZFX report for all the materials in question.
    When you convert the PPDS order to process order then conversion happens in ECC/R/3 system. This is the place BOM has to be reexploded in ECC. Please check if you have any enhancement which restrict BOM explosion. 
    Also check OSS note 1576703 suggested by an expert Caetano.
    Best Regards,
    R.Brahmankar

  • Submitting another request from a delivery plan

    At the end of a service delivery, I have a need to submit a different service request, copying across some field values etc.
    Sounds like using the API is only way, and I need to first call the getServiceDefinition to get service definition info such as version etc., and then call submitRequisition to submit the request.
    Has anyone done this before as part of a delivery plan of a service, and can you share what approach you took and any system/technical challenges? Do all within Service Link? Or have an external automation tool submit the new request?
    Any plans for product team to add some built in function to have a task to submit a new request?
    Thanks.

    Thanks Lim.
    I have tested the AuthenticationService API by providing my credentials and it was working fine by populating a part of my details in the person document as the response.
    So, I have provided my credentials as it is in the RequisitionService API which didn't work. The link which you have shared to me to generate the encrypted password didn't return any value. So, I will be checking with Cisco TAC Support for this as I am working with them already for the below response which I am getting though the directory integration is ON.
    I thought that I need to use this WebService in a ServiceLink agent. Since you have mentioned this as an API, I am assuming that I dont need to have a WSListener for a response using the RequisitionService API. Am I correct?
    The response error message I am getting while accessing the WS using SoapUI tool:
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
       <soap:Body>
          <soap:Fault>
             <faultcode>soap:Server</faultcode>
             <faultstring>The user name header is invalid. It is either not present or empty!. Please send a valid header.</faultstring>
             <detail>
                <RequisitionFault xmlns="http://requisition.api.newscale.com">
                   <errorCode>AUTH_0005</errorCode>
                   <errorMessage>The user name header is invalid. It is either not present or empty!. Please send a valid header.</errorMessage>
                </RequisitionFault>
             </detail>
          </soap:Fault>
       </soap:Body>
    </soap:Envelope>

  • Relevance of Maximum Plan Value for Cost Center wise SKF plan Data

    Hi,
    Will you please tell me the relevence of data entered as Maximum Plan Value for the Cost center wise SKF data plan i.e. data entered through T Code KP46 using planning layout 1-301 with planning profile SAPALL.
    Regards,
    Partha B.

    Hi,
    Try 0CO_OM_CCA_1.

Maybe you are looking for

  • How do I set my Ricoh Aficio SP C220N to Default to print only Black and White?

    HI Guys can you help?   How do I set my Ricoh Aficio SP C220N to Default to print only Black and White? When I check print Grey Scale box it uses the other colours to create the black instead of using the black toner cartridge. doing this from a PC w

  • What happened to all the images in the Organizer?

    I posted a similar question in the Photoshop Elements forum and got no answer that solved the problem. The reason I'm now posting it here is that I suspect copying the lessons from the Premiere Elements 11 Classroom in a Book may have caused the prob

  • Exception in FLASH.OCX using Windows 8.1, latest Flash Version

    I have many problems using the latest Flash Version 13.0.0.182. My applications use an embedded version of IExplorer 11 and use OSMF to display P2P Streams. If buffering starts, an exception is thrown and my app crashes with the message "Exception 00

  • PSE 9 Organize, edit/preferences locks up the program

    I just loaded PSE9 on a core i7 with 12GB RAM and 800 GB HD.  In Organize, the memu bar doesn't display, and I guess that has to do with the size of the font which can be sort of fixed by selecting "use system fonts" under "Edit/preferences, general"

  • How to install usb to serial emulation driver

    HI all!    I am trying to develop one application which communicate to embedded system via USB. I would to get your thought about how to install third part USB to Serial emulator in PC when the application is installed in the PC. ( Normally it is don