Regarding Decision Point

Hi All,
We have a tab called 'Phases and Decisions' in an item screen. There a table is getting displayed with decision point name, ID, Status and few more fields. I need to find out the corresponding webdynpro for that screen. When i right click and click on more field help, it is giving the component name as SALV_WD_TABLE. But this component can be used for any ALV, now i need to know how the data is getting populated into these fields and possibly how the screen is getting generated. Can anyone help me?
Many Thanks,
Haritha

Hello Haritha,
There is generic WD component for all Dashboards,which is identified by the context and the object type. For 'Phase and Decision Point' Dashboard Object Type is PDP and the Parent Object can be RIH (Item) or IPO (Initiative). The WD Component for the same is /RPM/UI_DASHBOARD.
Thanks and Regards,
Piyusha

Similar Messages

  • Status Sync between Specification Header Status (PLM) and Decision Point Status (PPM)

    This is what I'd like to achieve. Thanks in advance.
    Status of Decision Point in PPM of the Portfolio Item updated to “QA Clear” when the Product Specification is “Retail-Ready."

    Hi Shi,
    Can you please elaborate the issue with some more details.
    Regards,
    Nishit Jani

  • Mapping of item decision points to PS Network/WBS

    Hi,
             In PPM 5.0, one of the new features introduced is the mapping of decision points to a PS Network or WBS element. In the configuration map item template to PS, we have the option of choosing the item type and a project definition. The first question that arise is, what are the pre-requisites. I press new entries, enter the item type. In the F1 for PS project it says to enter the field PSPR from the table PROJ. The project system module is in a different system. I have created the RFC destination for the system and in the definition of object links, I have mapped that system for both account assignment WBS element and Network. But the system is unable to fetch the project system project for mapping. Could someone explain the procedure for doing this, as it is not clear from the IMG help?
    Regards,
    swami

    I checked the configuration guide.
    In the IMG
    Portfolio Independent settings -> Item template to PS project, under sub menu
    Item template to PS project
    Create new entries
    Item template ID (chosen item template)
    Object type : By default it shows 0INMPSPD 
    As per the configuration guide, "You must determine the SAP ERP system to be used for integration into PS by choosing an entry in the object type column". I do not see an appropriate entry for sAP ERP system even though I have created the logical system and RFC destination for the SAP ERP system in which PS resides.
    Could some one help me out by guiding how to get the above setting done?
    Regards,
    Swami

  • Item search based on decision point status

    hi,
    i am trying add items to a review.  i want to add only those items which are in a particular status of a decision point.  Currently, i could not find any option in Add-> search when i am in review screen.  Can there be any configuration through which i can get this or is this going to be a development.
    Pls suggest.

    I don't think there is any configuration to achieve this. Alternatively you can create a custom search help and configure it.
    Regards,
    Ravikanth

  • Initiative Item Decision Point

    Hi PPM Guru,
    Is any way can we use Decision points on Initiative or Item approval process either similar to cProject Phase approval process or regardless of Decision point status management process?
    Thank You.
    Regards, Diana

    Hi Diana,
      Yes. You can approve (change the status) a Decision Point, similar to the Phase approval process. This can be done by DFM - Decision Flow Management. Once this is switched on for 'Status Synchronization' , each and every status change in the Phase can in turn trigger the corresponding status change in the Decision Point.
    Regards,
    Mohan Kumar D.

  • Questionnaire in Decision Point

    Hi,
    Is it possible to maintain Questionnaire in Decision Point? If so can someone help me in providing the process to maintain the same.

    Hi Sasi,
    Yes, It is possible to assign the questionairre to decision point field. Follow the steps as below.
    1) In Define Services, assign questionairre service (000000000000006) to object type EPO (Decision Point)
    2) Assign questionairre service to the field via SAP Custom or SAP Field Configuration whichever applicable in Field Configuration.
    3) Create the questionairre
    4) Assign the questionairre to the particular field at bucket level for decsion pont fields.
    The questionairre will appear in the decsion point field.
    Regards
    Amit

  • Enable a checkbox to create version in 'Report Vision' decision point

    Hi,
    I need to enable "Earmarked" checkbox to create a version when the item is in decision point called "Report Vision". Could anyone suggest how it can be achieved ?
    I would like to know how and where this is defined
    Regards,
    Dhanu

    closed

  • Decision Point change status

    Dear Experts,
    I'm trying to develop a report to modify the status of a decision point.
    I have tried to use the standard function /RPM/DECISION_POINT_MODIFY  and I've tried the method set_attributes of the standard class CL_RPM_DECISION.
    In both cases, the return code is OK and apparently the status changed (looking the variables in debug mode) but once the report ends, the old status remains in the database (table /RMP/DECISION).
    I  paste the both ABAP code through I'm trying to change the DP status.
    Please, could you tell me if I missed something or if there is something wrong?
    thanks a lot.
    Aupa.
    ABAP Code:
    When I'm calling the function /RPM/DECISION_POINT_MODIFY  , I do:
    ls_context-object_guid = wa_decision-guid.
    ls_context-portfolio_guid = lv_porf_guid.
      ls_context-parent_guid = wa_decision-guid.
      CALL FUNCTION '/RPM/DECISION_POINT_MODIFY'
        EXPORTING
          is_context     = ls_context
          iv_language    = lv_lang
          iv_change_mode = lv_chg_mode
          it_comments    = it_item_desc_comments
        IMPORTING
          ev_rc          = lv_rc
        TABLES
          it_attributes  = it_item_desc_attr_ins
          et_msg         = lt_msg.
    and when I've tried to use the standard class, I do:
    DATA:   lr_decision     TYPE REF TO cl_rpm_decision,
              ls_attributes   TYPE rpm_ts_decision_int,
              ls_decision_int TYPE rpm_ts_decision_int,
              lv_rc           TYPE i.
      DATA: lr_object_manager TYPE REF TO cl_rpm_obj_manager,
            lr_common         TYPE REF TO if_rpm_common.
      lr_object_manager = cl_rpm_obj_manager=>get_instance( ).
      CALL METHOD lr_object_manager->get_appl_object
        EXPORTING
          iv_project_guid  = i_item_guid
          iv_appl_obj_id   = i_decision_id
        iv_appl_obj_guid = i_decision_guid
          iv_appl_obj_ot   = 'EPO'
        RECEIVING
          rr_object        = lr_common.
      lr_decision ?= lr_common.
      CALL METHOD lr_decision->get_attributes
        IMPORTING
          es_attributes = ls_attributes.
    Make sure that decision point is in edit mode
      lv_rc = lr_decision->if_rpm_entity~set_edit_mode(
                         cl_rpm_co=>sc_edit_mode_change ).
      IF lv_rc IS NOT INITIAL.
        RAISE error.
      ENDIF.
    Update status
      ls_decision_int = ls_attributes.
      ls_decision_int-status = i_status.
      ls_decision_int-active = 'X'.
    Set the DP attributes
      lr_decision->set_attributes( ls_decision_int ).
    Read new atrributes
      clear ls_decision_int.
      CALL METHOD lr_decision->get_attributes
        IMPORTING
          es_attributes = ls_decision_int.
      e_status = ls_decision_int-status.

    When you are using function module to change the decision point status, you must use /RPM/SAVE_CHANGES function module after /RPM/DECISION_POINT_MODIFY function module otherwise the changes will not be committed to database.
    When you are using the classes , then you should use object manager ( cl_rpm_obj_manager) instance method do_save.

  • Decision point that will atomatically distribute the shopping cart

    Hello,
    We intend to work with Extended classic scenario.
    In the EBP system we should have a decision point that will atomatically distribute each
    shopping cart to the next step according.
    the parameters: according the product category, value and organizational structure.
    We want the system to decide what should be the next step for the shopping cart:
    Transferred to the R/3 as a requisition
    Transferred to the R/3 as a purchase order
    Transferred to a purchase order in the SRM system
    Wait for a purchasing group to be transferred to a purchase order in the SRM system
    What is your recommendation?
    Thanks
    Zion Yazdi ++972-523-655895

    Zion,
    yes it sounds logic to use Purch Group assignment.
    But then you could control PO access by purch group authorization object, instead of using BADI BBP_WF_LIST.
    If you have the correct purch group in your PFCG profile, you can access or modify the PO.
    You would then have to maintain as many PFCG purchaser profiles than you have purch groups...
    If this represent to much workload, then use BADI BBP_WF_LIST to check PO purch group against connected user's purch group.
    You could also implement directly all your logic in BADI BBP_WF_LIST (control access to PO doc if employee/proc dep/contract user) but this would be really time and performance consumming. So it is better to compute a PO header "key" to control acces, that could be the purch group.
    PS: if you use purch group to control PO access, this requires that each employee is defined in a purch group ! So you may have to combine purch group and other criteria in BADI BBP_WF_LIST.
    Rgds
    Christophe

  • DFM Setup - Project Phase to Item Decision Point

    Hi Folks,
    I am trying to setup a one way status sync from Project Phase to Item DP (i.e. status is only managed in cProjects and should sync to Item DP).
    I have done the following config.
    1. Defined Portfolio Item Types and mapped Item DP to Template Phases
    2. Maintained Phase to DFM business transaction in IMG Map Project / Initiative Business Transaction to DFM Business Transaction
    3. Maintained DFM to Item DP mapping in IMG Map DFM Business Transaction to Portfolio Management Status
    4. Under IMG Map Business Transactions for Synchronization I added a couple additional business transactions that I needed for Source PPCP and Target PPODP.
    Examples entries of the above config for are as follows. This is to change the mapped DP status to 'For Approval' when clicking "Begin Approval" in cProjects phase
    Map Project / Initiative Business Transaction to DFM Business Transaction
    Source Grouping - PPCP Project Phase
    Target Grouping - PPODP Portfolio Item Decision Point
    Source Bus Transacction - DX11 Begin Approval of Phase
    DFM Bus Transaction - IX05 Set 'To Be Approved'
    Map DFM Business Transaction to Portfolio Management Status
    Target Grouping - PPODP Portfolio Item Decision Point
    Source Grouping - PPCP  Phase (Project Management)
    DFM Bus Transaction - IX05 Set 'To Be Approved'
    Portf Mgmt Status - Z0006 For Approval (custom status that I created for Item DP)
    With the above config when I begin the approval in cProjects, the mapped item DP is not updated. I have ensure that the next status of the DP is configured accordingly.
    Appreciate any ideas on how to get this working.
    Thanks,
    Lashan

    It looks like the issue is because when "beginning approval" cProjects status is "For Approval - Released",which means 2 status are active and the DFM business transaction does not trigger.
    Wondering if anybody has the issue where cProjects has 2 active status and the subsequent statuses does not trigger DFM transaction.
    Appreciate any help.
    Thanks

  • Decision Points on ibooks

    Does anybody know if Decision Points is available on ibooks. I can't find it through my search but when I googled it, I found an article that said it would be available. Thanks.

    The iPad is W's favorite gadget (per CNN), so it is ironic his book is not sold through iBooks. The Kindle app is not bad, but I just prefer the iBooks interface, the in-App bookstore, and the ability to get samples (saved me from some highly rated, poorly written books). I've got another book to finish first, then I'll check again on iBooks, just in case.
    Best.

  • Regarding decimal points in QATR

    Hi ,
    I am having an issue regarding the decimal points descrepancy in QATR (Quality Assurance test report).
    The settings for decimal points for some of the inspection characteristics are not matching with the QATR report. Please help me in sorting out this issue.
    Regards
    vivek

    Hi ,
    I was just trying to change the decimal point values in the inspection characteristics for this material inspection plan & tried to run the report again to see the certificate.The is no change in the report.
    So please tell that whether is there is any connection here??
    Regards,
    Vivek

  • Regarding reorder point planning.

    Hi experts,
    I have entered safety stock as 40 pcs., reorder point 50 and created requirement for
    may 09 - 30 pcs.
    jun-09 - 30 pcs.
    After executing MRP run it is showing planned order for 50 pcs. only.
    But the requirements are not covered I mean to say at last the available qty should be zero.
    Please help me on this immediately.
    Rgds,
    Parul.

    In Consumption based planning(re-order point planning), planned independent requirements or dependent requirement will not be considered in the net requirements calculation. Instead, it is triggered when stock levels fall below a predefined reorder point .So, all the planned independent or dependent requirements in a certain period of time should have been considered before setting the reorder point
    Therefore, these planning procedures are used in areas  for planning both B- and C-parts and operating supplies.(low value materials, but consumption is more)
    In reorder point planning, SAP checks whether the available stocks are below the reorder point that has been set for the material. If they are, SAP will create procurement proposal.
    We can determine the reorder point manually (u201CVB-Manual reorder point planningu201D MRP Type in standard SAP R/3) or, it can also be calculated automatically using the material forecast (u201CVM-Automatic reorder point planningu201D MRP Type in standard SAP R/3).
    In standard SAP R/3 system, besides u201CVB u2013 Manual Reorder Pointu201D and u201CVM u2013 Automatic Reorder Pointu201D MRP Types, there are also other MRP Types that have reorder point as its basis to calculate requirement with additional procedure which count external requirement (sales order and manual reservation) as a requirement. The MRP Type are: u201CV1-Manual reorder point with external requirementsu201D and u201CV2-Automatic reorder point with external requirementsu201D.
    If you want to include requirements in the reorder point calculation in addition to the customer requirements and manual reservations,
    go to SPRO ->Materials management ->consumption based planning ->master data -> MRP Types
    Select the mrp type v1 and
    select the following fields:
    o     Requirements for materials to be provided in subcontracting
    o     Dependent order reservations on the basis of production orders
    o     Dependent order reservations on the basis of maintenance orders or networks
    o     Release orders
    o     Purchase requisition releases
    o     Forecast delivery schedules
    regards,
    sikkandar basha

  • Regarding ALE POINTER  in generic extraction

    hi guyz ,
       i have one doubt about generic data source for the following queastions.
        1) what is ALE pointer? when we have to use in generic data source?.explain with  one realtime so that i can understand easily.
       2)what are the tickets?.when we use this.explain with one seneroio .
       3)what is SLA?.

    Hi,
    This may help u,
    goto SQ03 and create an User Group If U want to create Ur Own.
    Goto SQ02 to create Ur Infoset by Giving Logical database name or Simple Database table
    Then Choose What ever data U need to be included in The Qurey in field Groups.
    Then Generate the Infoset
    Now Assign the infoset to user group
    Now goto SQ01 and Click on Other user group Button and choose Ur user Group.
    Then in the USer group select Ur Infoset and then create Ur own Query and save this.
    Now select the infoset query and goto More functions under Query menu and Generate report name.
    Now Create a transaction code for the report name generated.
    Now use the Tcode.
    Award points if helpful,
    Thanks & Regards,
       Sunil

  • Regarding watch points in ABAP debugger

    Hi,
    Could u explain , why we use watch points, what is the use of it
    and how to use it.
    Thanks & regards,
    [email protected]

    Watch points
    http://help.sap.com/saphelp_nw04/helpdata/en/c6/617cdce68c11d2b2ab080009b43351/content.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/14/6d1c370c468b7be10000009b38f936/frameset.htm
    Like a breakpoint, a watchpoint is an indicator in a program that tells the ABAP runtime processor to interrupt the program at a particular point. Unlike breakpoints, however, watchpoints are not activated until the contents of a specified field change. Watchpoints, like dynamic breakpoints, are user-specific, and so do not affect other users running the same program. You can only define watchpoints in the Debugger.
    Use
    You set watchpoints in the Debugger to monitor the contents of specific fields. They inform you when the value of a field changes. When the value changes, the Debugger interrupts the program.
    Features
    You can set up to five watchpoints in a program.
    See also Setting Watchpoints.
    You can also specify the conditions on which a watchpoint is to become active.
    You can specify logical conditions between up to five conditional watchpoints.
    See Specifying a Logical Expression.
    You can define watchpoints as either local or global. If you define a global watchpoint, it is active in all called programs. Local watchpoints are only active in the specified program.
    You can change and delete watchpoints.
    See Changing Watchpoints.
    You can use watchpoints to display changes to the references of strings, data and object references, and internal tables.
    See Memory Monitoring with Watchpoints
    If you want to interrupt a program when the contents of a field or structure change, use a watchpoint. You can set up to five watchpoints, including watchpoints for strings.
    A watchpoint can be either local or global. Local watchpoints are only valid in the specified program. Global watchpoints are valid in the specified program, and also in all the other programs it calls.
    Procedure
    To set a watchpoint, start the Debugger and proceed as follows:
    Choose Breakpoint ® Create watchpoint or the corresponding pushbutton. The Create Watchpoint dialog box appears:
    ashish
    Message was edited by:
            Ashish Gundawar

Maybe you are looking for