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.

Similar Messages

  • 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

  • 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

  • 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

  • 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.

  • 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

  • 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

  • Test Stand File menu item entry point execution in VC++ code

    Hi,
    Can you please suggest me, how to execute a file menu item entry point pragmatically in a VC++ code.
    My process model seq inserts an item called "Select Model" into TS file menu.
    i have to programmatically execute this entrypoint from an Operator interface developed in VC++.
    Request your suggestion in this concern.

    Couln't you just use the PerformClick Method?  So basically you'll have a reference to your menu somewhere in the code.  Get the node of the item you want and then use the PerformClick method.
    From MSDN: http://msdn.microsoft.com/en-us/library/system.win​dows.forms.menuitem.performclick%28v=vs.71%29.aspx
    I recommend that vs going through the TestStand API.  It will be a lot cleaner.
    jigg
    CTA, CLA
    teststandhelp.com
    ~Will work for kudos and/or BBQ~

  • Sales Order Item Shipping point (VBAP-VSTEL) value in APO table

    Hi,
    I am looking for Sales Order Item Shipping point (VBAP-VSTEL) value in APO.Can I  get this info in APO ?
    This information is not available in table /SAPAPO/SDORD or  /SAPAPO/SDFIELD.
    Basically table /SAPAPO/SDORD is completely blank. Table /SAPAPO/SDFIELD has entry for Sales Order Item but not for VSTEL. Shipping point is there in the Catalog table in ECC and I can see that it is getting imported to APO but why it is not avaibale in SDFIELD table.Any idea ?
    I cheked table /SAPAPO/SHIPPING also for the guid (Item guid) but not found any entry .
    Please help.

    RKS,
    Most data in SCM is not stored in tables, it is stored in LC.  In general, it is not the best idea to use APO for creating custom reports against  transactional data.  You do such reporting in the OLTP, and you use the standard SAP programs to keep these systems in synch.
    Some SD auxiliary data is sometimes stored in /SAPAPO/SD_DOC.and /SAPAPO/SDFIELD.  Check here, you might find something useful.  No guarantees......
    Best regards,
    DB49

  • 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

  • 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

  • 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.

  • "1 item" and pointed finger inside message box. Is there a fix for this problem?

    When I'm in e-mail, I get a hand with the pointed finger and a message box saying "1 item". The hand and box follow my pointer around the screen but I can't open up any e-mails. The only way out of it is to go up to Hotmail on top, select it and them select "In-Box." This only occurs in Firefox. Internet Explorer works fine and I never have the problem.

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • How to attach questionnaire to initiative/item against a specific field?

    Hi All,
    How to attach a questionnaire for a specific field for an intiative/item in contxt to xRPM
    Regards
    srikanth

    Hi,
      If you have completed the activity 'Define Questionnaires' under SAP xRPM -> Global Customizing -> Process and Service Settings, you should have the questionnaires displayed in the portal. If not, do the following.
    1) Check that you have attached the questionnaire for the correct object type in the 'Define Questionnaires' activity.
    2) In the previous activity, 'Define Services', check that the questionnaire service is linked to an object type correctly.
      If these 2 activities have the correct configuration, then you should be able to see the questionnaires in the drop down.
    Best Regards,
    Prashanth

Maybe you are looking for

  • How can i transfer ALL my playlists to one usb stick

    I would like to transfer ALL my playlists to a large usb-stick (256 GB). So that ui can use the usb stick in the car like my old ipod classic that has not enough space anymore.Copying one playlist is easy but many different ones! Pls help, tks in adv

  • USE_SWUpdate popup

    Hey all. After a 'clean' install of Mac OS X Lion Server (on my Mac Mini medio 2010), the App Store now says that Mac OS X Lion Server is not installed, although it IS installed. I have al my core server functionatlities up-and-running. So when tryin

  • ELearning Suite 2.5 or Camtasia

    Hello- Previously on my technical site I used camtasia 6.1 software.  ITs ok to do what I do, record my computerscreen as I talk over.  Later I go back and add 10 seconds of music at the beginning and end with a powerpoint slide. Then I produce it in

  • How can I keep iphoto 08 from freezing?

    Every time I open iPhoto 09, I get the rainbow wheel of death and "Application Not Responding." I can't access any of the photos in iPhoto. Are they accessible without opening the program? If so, where?

  • Concurrent nodes reading from JMS topic (cluster environment)

    Hi. Need some help on this: Concurrent nodes reading from JMS topic (cluster environment) Thanks Denis