Block Planning Display block options eg Percent of block utilised and Qtys?

Any hints how to display block quantities and percent utilised in PPDS area?
I have managed so far to get the following for blocks that cross between months.
1. Resource table. (/SAPAPO/RPT - Resource Planning Table )Can highlight both columns that the specific block is in, click "show operations", get the operations to show in the bottome screen, and the FILTER on the specfic dates to get the block quantities.
This works to get a block quantity but would need to do a slow manual process for every block!
2. Receipts View (/SAPAPO/RRP4). Can set up a visualisation profile which shows my characteristic in a column in the report, and then I can select a SINGLE resource from the front selection and get a listing of the quantities from that single resource, and then with filters on dates and/or characteristic, I can get the quantities.
But this is slow and manual per resource.
3. Detailed scheduling board shows VISUALLY whether blocks look full or not, but I cant find any way of getting any block quantities or percent complete from this view.
Ideally, I want a way I can download all resource quantities and block quantities and then determine percent utilized in the blocks and put alerts on this to show which blocks are under-utilised.
Any ideas????

Aha. Found it.
in the DS Planning board.
click an order on block and then EDIT/SELECT/ALL FOR SAME BLOCK
then
EXTRAS / EVALUATION / EXTENDED OPERATIONS LIST - this gives all the quantities for selected block
then
EXTRAS / EVALUATION / RESOURCE UTILIZATION - select blocks and get percent utilisation for blocks

Similar Messages

  • How to block planned order when there is a credit block in sales order

    Hi Experts,
    Planned order should not be created when there is a credit block at sales order level. Can someone help me in solving this?
    Expecting for your valuable comments.
    Regards,
    JANA

    Go to t.code OVB8 and add routine 101 under routine column and routine 1 under system routine column and then create new document and test.
    Regards,

  • OWA will not display Options Display All Options

    We upgraded Exchange 2010 to SP3 the other day.
    OWA Users are not able to select OPTIONS > Display All options.
    The browser just reloads and displays no additional options.
    Thi shas been tested with Chrome, IE , Mac, Win 7 and Win 8. 
    All with the same outcome!
    Any ideas would be greatly appreciated?
    Many thanks in advance

    Hi,
    Have you tried to recreate the OWA virtual directory?
    If you haven't, please try to recreate the OWA virtual directory to check result.
    If the issue persists, please check the application log to see if there is any related error message.
    Please check if  Outlook Web App is running in the Light Version.
    Besides, please check the setup log and make sure you upgrade to SP3 successfully.
    Best regards,
    Belinda Ma
    TechNet Community Support

  • Sequence dependent lot-size planning as a basis for PP/DS blocks?

    Hi ,
    I consider the following system setup for a Mill Products planning implementation .
    1) In SNP one performs SOP planning with common goals to adjust sales plan, establish equipment maintenance plan, transportation plan, etc. The first month of the SNP plan is supposed to be in daily buckets. Using the SNP optimizer is a good option since the business goal is to use equipment more efficiently, let's say to minimize setup costs, and there are warehouse limitations for semifinished products as well.
    2) In PP/DS we are going to use CDP and block planning since it is the best practice.
    3) SNP planned orders can be used as a basis for PP/DS blocks on the resource, upon the condition that the configuration of SNP product - kmat variant and block requirements match.
    In SNP i  see that the SNP PDS has a duration of 1 day (that's fine), but the sequence dependent lot-size planning requires a bucket of at least 1 week long (1 month in my case) since the SNP orders are sequence-optimized only inside of one bucket. The result of such an optimization are additional counters assigned to SNP orders according to their sequence  minimizing setup costs. However, orders are not scheduled according to the sequence.
    So far it looks like such a combination is not useful as
    - Orders in monthly buckets are not scheduled on days and cannot serve as a basis for block dates proposal for PP/DS block planning.
    - If a product production volume is less than 1 day, SNP cannot create any more detailed block in principle since the minimal time bucket is daily bucket.
    I searched over forums on these or similar topics, however no definitive answer so far for the question in the subj.
    Could anyone bring more  light on this ? Maybe I am missing something in the setup or sequence dependent lot size planning was designed for other purposes/industries?
    Best regards
    Vladimir

    Hello Asim,
    Issue one
    in product selection for propagation range you can set your selection criteria which selects the products dynamically. You just have to change your report variants for planning run. Do I misunderstand your concerns?
    Issue two
    Changing to planning procedure 1 will not delete the PFE but will prevent APO to create a new entry after any MRP-relevant changes happen or heuristic SAP_PP_020 (which creates the initial entry and does the low level code determination) is run.
    In some cases procedure 1 will still create a PFE. Please check customizing for details. Thats why I would recommend to create a new planning procedure with "no reactions".
    As soon as you prevent APO from creating new PFEs you can just once delete the PFEs in /SAPAPO/NETCH by just setting the first column for these materials blank (select your materials, mark column, delete indicator).
    Corresponding table to MDVM is /SAPAPO/PEGKEY. Indicator for PP/DS is NETCH_RRP.
    If material is not planned in APO you do not need a PFE in APO.
    Issue 3
    Maybe utilize table /SAPAP/PEGKEY
    As I said if you prevent creating the entry you just have to delete (set indicator blank) once.
    Hope that helps.
    Regards,
    Uli

  • Header and Footer in Block ALV Display

    Hi All,
    My requirement includes to ALV Block List Display with header and footer.
    I have made two forms TOP_OF_PAGE and END_OF_PAGE . I have pass the form and name of event to an internal table it_events.
    This it_events[] is then passed to FM ' REUSE_ALV_BLOCK_LIST_APPEND' . But only Top of Page is working.
    Am I missing any thing in the code? or I have to use something else.
    Pls Help
    Regards,
    Nibha

    Hi,
    For end_of_page you need to use Events as follows:
    *TO CAPTURE EVENTS AND HANDLE
    DATA : it_event TYPE slis_t_event,
           wa_event TYPE slis_alv_event.
    *&      Form  BUILD_EVENTCAT
    FORM build_eventcat .
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type     = 0
        IMPORTING
          et_events       = it_event
        EXCEPTIONS
          list_type_wrong = 1
          OTHERS          = 2.
      READ TABLE it_event INTO wa_event WITH KEY name = 'END_OF_LIST'.
      wa_event-form = 'END_OF_PAGE'.                          " Sub-routine that will be used to write
      MODIFY it_event FROM wa_event INDEX sy-tabix.           " Modify it_event
      CLEAR wa_event.
    ENDFORM. " F_BUILD_EVENTCAT
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program          = sy-repid
          i_callback_top_of_page      = 'TOP_OF_PAGE'
          is_layout                   = g_t_alv_layout2
          it_fieldcat                 = g_t_fieldcat2[]
          it_events                   = it_event[]
        TABLES
          t_outtab                    = <fs_final_itab>.
    Regards,
    Mansi.

  • Block Plan Order and Purchase Requisition in Sales order creation.

    Please tell me, how to block Plan Order and Purchase Requisition while creating Sales Order. When we create a sales order, plan order and purchase requisitions are also created by their own, please tell me, how can we block them while creating sales order. Please do let me know as soon as possible.

    hi,
    generally thy wil not be created automatically.
    may be som configuration or exit is used in ur system.
    check in debugging mode while saving ur salesorder.

  • How to Block Planning for PIR related Dependend Requirements of a BOM Comp?

    Hi All,
    We have a scenario which has a FERT Material "XY" has a BOM with ROH Materials "C1", "C2" & "C3".
    Material "XY" has a PIR for 100 pc and on MRP Run it generates Dep Reqmnt for C1, C2 & C3. When MRP Runs, we want to BLOCK generation of Purchase Requisition for C1 only (because of its high Value, the Buyer does not want to buy it for the PIR Planning).
    At the same time there is a Sales Order for "XY" for 50 pc and on MRP Run it creates Dep Reqmnt for C1, C2 & C3 and also Purchase Requisitions.
    This time, Buyer wants to have the Purchase Requistion for C1 as a result of Planning Run.
    Both "XY" & C1, C2 & C3 are all in Planning Strategy 40 and MRP Type PD
    I tried to BLOCK the Pur Req generation by putting the MRP Dep Reqmnts as "1" but it is blocking all the PRs.
    Requirement is to block Pur Req generation for PIR Dep Reqmnts and Not-Blocking generation of PR based on Dep Reqmnts from Sales Orders.
    How can this be achieved?
    Any suggestion is most welcome!
    Thanks!
    Edited by: Jing Tulio on Apr 23, 2009 2:45 AM

    Hi,
    A Suggestion:
    Create an additional alternative BOM for your "XY".
    In this remove the Component C1. Only C2 and C3 will exist.
    Create 2 Production Versions.
    The 1st PV will have the BOM alternative with all the components.
    The 2nd PV will have the BOM alternative with the Components with C2 & C3 only.
    Now in MD62/61 for "XY", specify the Production as PV2, so that every time for PIR, system will consider PV2 and in this the component C1 is not included.
    For all the other purposes (sales order --> Pl. Order --> dependent req.), System will pick the PV1 by default.
    Pl. create the PVs for the same date and same lot size.
    in MRP4 view, BOM selection method, select - 2 Selection by production version.
    Try this and revert for further discussion..
    Regards,
    Siva

  • How to display total in a block without total showing up in relevant detail block

    Hi there,
              I create a worksheet, including two block, one of which have detail information with multiple characts and one key figure, another block only have sumerization information takes one cell, which is summarized key figure for that detail information block.
             I implement this summary cell with formula 'GETDATA', but it is only effective after I show total for detail block.
            such as for detail block:
                         employee_no,  wage type,  earning_amount.
                         overall result                        total for earning_amount
            for summary block:
                         summary of earning_amount for all employees in the detail block.
    please tell me how to display summary block without pulling in overall result for detail block.
    Many Thanks,

    Hi bo zhang,
    This can be a work around
    As Michael Tocik suggested
    goto components tab, right click on data source and select copy
    do not insert cross tab
    then use the formula for DS_2 like
    =SAPGetData("DS_2","earning_amount","employee_no=TOTAL")
    this should work.
    and if you do any drill down for DS_1, the above total will not chnage because that is dependent on DS_2
    Hope it helps
    Best Regards,
    Subhash

  • Sapscript: How to combine two elements into a block when display ?

    /E  ITEM_CONDITIONS
    /:   PROTECT
    ZC &KOMVD-VTEXT&,,&KOMVD-KWERT&
    /:   ENDPROTECT
    /E  TOTAL_AMOUNT_ITEMS
    /:   PROTECT
    ZC &KOMK-SUPOS&
    /:   ENDPROTECT
    Hi, all. May i know how to combine the two elements into a same block when displaying?
    That's mean this two element content will not be split into two part between two pages when there is insufficient space in the front page.
    Thanks.
    Edited by: Jiansi Lim on Oct 8, 2008 12:24 AM

    You can evoke the PROTECT..ENDPROTECT in the print program before the call of the text elements.
          CALL FUNCTION 'CONTROL_FORM'
            EXPORTING
              command = 'PROTECT'.
          CALL FUNCTION 'CONTROL_FORM'
            EXPORTING
              command = 'ENDPROTECT'.

  • BLOCK LIST DISPLAY IN ALV

    Moderator message: Please do not use ALL CAPITALS in your message subjects
    I am facing a peculiar situation with respect to a report with 2 block lists.
    STEP 1:
    I first use REUSE_ALV_BLOCK_LIST_INIT with EXPORTING parameter as
    i_callback_program = SY-REPID.
    This works fine with return code of sy-subrc = 0.
    STEP 2:
    I build the field catalog and internal table - in debug I also check the sequence of fields of both the internal tables and field calatogs - perfect - no issues.
    Then I call REUSE_ALV_BLOCK_LIST_APPEND with exporting parameters as layout, field catalog, table name & event and tables parameter as internal table and exception handling, I repeat this call for the two internal tables.
    This works fine with return code of sy-subrc = 0
    STEP 3:
    I use REUSE_ALV_BLOCK_LIST_DISPLAY to display the two lists one after the other, and I have coded for error message if sy-subrc is non zero.
    This works fine with return code of sy-subrc = 0
    ISSUE :
    Internal table 1 and internal table 2 both have say 4 records, then I see the two lists with heading(s) perfec and col width also optimized and zebra (alternate steipes also in place), and 4 rows for each internal table on output, however the rows are BLANK - NO DATA, whereas I have checked both internal tables before the call and they seem to have the data perfectly and in the same sequence as the field catalog - however the rows are BLANK.
    I checked in debugging but was just not able to find out why if the internal tables and field catalog is perfect, no data is passed to output.
    Please help !!
    Edited by: M N on Nov 14, 2008 5:22 AM
    Edited by: Matt on Nov 14, 2008 10:23 AM

    *& Report  Y_ALV_BLOCKLIST_
    REPORT  Y_ALV_BLOCKLIST_16131.
    TYPE-POOLS : SLIS.
    DATA: X_LAYOUT TYPE SLIS_LAYOUT_ALV.
    Events
    DATA: GT_XEVENTS TYPE SLIS_T_EVENT.
    DATA: GT_YEVENTS TYPE SLIS_T_EVENT.
    data : XS_EVENT  TYPE SLIS_ALV_EVENT.
    DATA: XFIELD TYPE SLIS_T_FIELDCAT_ALV.
    DATA: YFIELD TYPE SLIS_T_FIELDCAT_ALV.
    DATA: AFIELD TYPE SLIS_FIELDCAT_ALV.
    DATA: GT_PRINT TYPE SLIS_PRINT_ALV.
    TYPES : BEGIN OF TY_MARA ,
              MATNR TYPE MATNR,
              MTART TYPE MTART,
             END OF TY_MARA.
    TYPES: BEGIN OF TY_MAKT ,
           MATNR TYPE MATNR,
           MAKTX TYPE MAKTX,
          END OF TY_MAKT.
    DATA : ITAB TYPE TABLE OF TY_MARA,
           PTAB TYPE TABLE OF TY_MAKT.
    START-OF-SELECTION.
    SELECT DATA
      SELECT MATNR MAKTX FROM MAKT INTO TABLE PTAB UP TO 10 ROWS.
      SELECT  MATNR MTART FROM MARA INTO TABLE ITAB UP TO 10 ROWS.
    *eVENT FOR Heading
      PERFORM F_EVENTS.
    FIELD CATALOG
      PERFORM F_FIELDCAT.
    INIT BLOCK ALV
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
        EXPORTING
          I_CALLBACK_PROGRAM = SY-REPID.
    ADD INTERNAL TABLE ITAB
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          IS_LAYOUT                  = X_LAYOUT
          IT_FIELDCAT                = XFIELD "ALVFC
          I_TABNAME                  = 'ITAB'
          IT_EVENTS                  = GT_XEVENTS
        TABLES
          T_OUTTAB                   = ITAB
        EXCEPTIONS
          PROGRAM_ERROR              = 1
          MAXIMUM_OF_APPENDS_REACHED = 2
          OTHERS                     = 3.
    ADD INTERNAL TABLE PTAB
    REFRESH ALVFC[].
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          IS_LAYOUT                  = X_LAYOUT
          IT_FIELDCAT                = YFIELD "ALVFC
          I_TABNAME                  = 'PTAB'
          IT_EVENTS                  = GT_YEVENTS
        TABLES
          T_OUTTAB                   = PTAB
        EXCEPTIONS
          PROGRAM_ERROR              = 1
          MAXIMUM_OF_APPENDS_REACHED = 2
          OTHERS                     = 3.
    DISPLAY
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
        EXCEPTIONS
          PROGRAM_ERROR = 1
          OTHERS        = 2.
    *GT_PRINT-RESERVE_LINES = 2.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
          EXPORTING
               IS_PRINT = GT_PRINT.
    *&      Form  F_FIELDCAT
          text
    -->  p1        text
    <--  p2        text
    FORM F_FIELDCAT .
      DATA: L_COUNT TYPE I.
      CLEAR AFIELD.
      L_COUNT = L_COUNT + 1.
      AFIELD-COL_POS = L_COUNT.
      AFIELD-FIELDNAME = 'MATNR'.
      AFIELD-REF_TABNAME = 'MARA'.
      AFIELD-KEY = 'X'.                    "define field as key
    AFIELD-DO_SUM = 'X'.
      APPEND AFIELD TO XFIELD.
      CLEAR AFIELD.
      L_COUNT = L_COUNT + 1.
      AFIELD-COL_POS = L_COUNT.
      AFIELD-FIELDNAME = 'MTART'.
      AFIELD-REF_TABNAME = 'MARA'.
      AFIELD-KEY = 'X'.                    "define field as key
      APPEND AFIELD TO XFIELD.
      L_COUNT = 0.
      CLEAR AFIELD.
      L_COUNT = L_COUNT + 1.
      AFIELD-COL_POS = L_COUNT.
      AFIELD-FIELDNAME = 'MATNR'.
      AFIELD-REF_TABNAME = 'MAKT'.
      AFIELD-KEY = 'X'.                    "define field as key
      APPEND AFIELD TO YFIELD.
      CLEAR AFIELD.
      L_COUNT = L_COUNT + 1.
      AFIELD-COL_POS = L_COUNT.
      AFIELD-FIELDNAME = 'MAKTX'.
      AFIELD-REF_TABNAME = 'MAKT'.
      AFIELD-KEY = 'X'.                    "define field as key
      APPEND AFIELD TO YFIELD.
    ENDFORM.                    " F_FIELDCAT
    *&      Form  F_EVENTS
          text
    -->  p1        text
    <--  p2        text
    FORM F_EVENTS .
    CLEAR XS_EVENT.
      XS_EVENT-NAME = SLIS_EV_TOP_OF_PAGE.
      XS_EVENT-FORM = 'TOP1'.
      APPEND XS_EVENT TO GT_XEVENTS.
    CLEAR XS_EVENT.
      XS_EVENT-NAME = SLIS_EV_TOP_OF_PAGE.
      XS_EVENT-FORM = 'TOP2'.
      APPEND XS_EVENT TO GT_YEVENTS.
    ENDFORM.                    " F_EVENTS
    FORM TOP1.
    WRITE : 'MARA TABLE'.
    ENDFORM.
    FORM TOP2.
    WRITE : 'MAKT TABLE'.
    ENDFORM.

  • Configurated sales orders and block planning

    Hello
    We plan to implement ECC configurated sales orders and APo DP and block planning.
    We is the preferable process :
    - create the production orders in ECC at time of sales orders creation and run heuristics in apo to cover forecast with planned orders
    - send sales orders in Apo run heuristic and convert planned orders to production orders to cover sales orders?
    thanks in advance for your help
    Patrice

    Hi Patrice,
    The second process that you have mentioned,
    send sales orders in Apo run heuristic and convert planned orders to production orders to cover sales orders?
    is the effective and business advantageous process in which you can get optimised plan output planned through APO.
    Regards
    R. Senthil Mareeswaran.

  • Block Planning High level process flow and configuration - PPDS

    Dear Experts,
    I am trying to understand more about Block planning
    from my understanding
    Block Planning is a  pre-assignment of resource and capacities for a limited duration of time which mean  dedicated resource for a particular operation
    correct me if i am wrong
    which mean I am able to hold a Resource A for a particular date like say march 20 and march 21 for a particular production version of operation like say 10
    if my understanding is correct what are the basic configuration setting and the process flow
    I am sure you need to explain loads , i am sorry about that
    Thanks in advance
    Regards
    Raj

    Hello,
    Finally we found a partial solution to work with Adjust & Reschedule Block limits.
    The overloaded blocks are extended inside to the cycle limits. Unfortunately the blocks with free capacity are not shortened.
    Does anybody have an idea why the heuristic is working for the extend but not for the shortened?
    Thanks, Marius   

  • Why does the pop up blocker bar not always give you the option to view a blocked pop up?

    Usually when Firefox notifies you that a pop up has been blocked it gives you the option to view the blocked pop up. However, sometimes that option is not there. Typically this isn't a problem at all but once in a while there will be a pop up that I wish to view but there is no option to view it. Does anyone know why the pop up blocker will sometimes give you the fourth option to "Show 'www.blockedwebsite.com'" and sometimes will only give you the three options of "Allow pop-ups for the site", "Edit Pop-Up Blocker Options", and "Don't show this message when pop-ups are blocked"? How can I view a blocked pop-up when it only provides the first three options and not the fourth option to view it? I hope my question was clear enough. Thanks in advance!

    It is possible that you run into this maximum (the default value is 20):
    * http://kb.mozillazine.org/dom.popup_maximum
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    *Use the Filter bar at to top of the about:config page to locate a preference more easily.
    *Preferences that have been modified show as bold(user set).
    *Preferences can be reset to the default or changed via the right-click context menu.

  • How display top 3 revenues in one block and remaining in another block

    How display top 3 revenues in one block and remaining in another block.

    create a variable as
    v_Rank =Rank([Revenue])
    then create a block level filter on the 2nd block as v_Rank Greater than 3.
    you may need to modify the variable formula as per requirement to get the rank of the row.

  • How we can display two list if not using blocked alv ,not scr painter

    how we can display two list if not using blocked alv ,not scr painter

    1. Once the cell number/service on the 3GS is transfered to the 5, the 3S will become basically an iPod touch until a new sim is in place, correct? We can still use wi-fi and the apps on the phone, and still be able to sync to iTunes, correct? iOS has been upgraded to 6.
    1a. With a new Sim, any issue with losing any data/apps on the phone? I dont' think so.
    1. Yes. without a sim it has no service, but all other features should be useable normally.
    1.a Nope, Data and Apps are independent of the Sim.
    2. Once the 5 is activated on the new carrier, how do I share the apps within iTunes? Is it as easy as using iCloud (which we haven't "activated" yet) and/or plugging both phones into iTunes and transferring between devices (authorizing both)? Photos? There are photos on the 3S that we will need on the 5.
    2. As long as both Phones use the same Apple ID, the applications can be synced to each through iTunes. Also any downloads on one phone should appear in the other. Again as long as both phones are using the same Apple ID.
    3. Reverse order for new apps purchased (understand that not all the iphone 5 apps will work on the 3GS)?
    3. If they can be run on the iPhone3GS they should be synced automatically.
    4. My husband also has a new iPad, any complications there with three devices? To date, he has not "shared" apps between his 3S and the iPad. He does not have iCloud set up, but plugs into his computer to backup and transfer photos. 
    4. If all 3 Devices share the same Apple ID all should be synced. 
    As a word of warning, if all 3 devices use the same Apple ID, messages recieved using iMessage will appear on all 3 devices.
    And Conctacts may get overwritten if synced to iCloud (thogh you say he doesn't have one), or merged together.

Maybe you are looking for

  • Step should not be executed in PO approval workflow..

    Hi Guys, The PO approval workflow has a sub-workflow for the series of approval levels to be approved. Now the very first step is "Get DeadLine Dates" where we calculate three deadline lines date to send reminders to approver on 2, 7,14th day. Now wh

  • Purchase orders created by buyer only can be viewed

    Dear All, Can it possible that Purchase orders created by buyer only can be viewed by him not the ones created by other created under same operating unit. Regards

  • Deficit of BA Stck.in qual.insp 1 EA : 270/MAP101 AB01 0001 0000069184

    Hi , in transaction MB11 we are doing a movement 331 on warehouse 001 of 1 pieces material. we receave the following error : Deficit of BA Stck.in qual.insp 1 EA : 270/MAP101 AB01 0001 0000069184 We check also MMBE and the goods are avalaible. Wath C

  • Can I submit form using app.launchURL

    I want to submit a pdf form without replacing my page. I need it open in new tab. The script below is work, but it replaces my old page this.submitForm({ cURL: "http://localhost:8080/project/TestServlet", cSubmitAs: "PDF", cCharset: "utf-8" This scri

  • Copy pictures to e mail

    When I copy a picture to an e mail, the picture as an attachment changes to a word format.