From PS to cProjects

Hi expertcs,
we need to replicate R/3 PS Project in cProject project. As process : when, in R/3 PS, a project is created by the user, automatically a cProject is created with a phase and task structure similary to the R/3 PS WBS structure. From the SAP documentation I can understand that the reverse is possible (from cProject to PS) but not this. Please someone can help me ?

Hi Thorsten Schneider,
You said : "In the old release (3.1) there is a replication of cProjects to PS via CRM middleware as well as an automatic creation of an internal order (not a WBS) without CRM middleware."
<b>Can you confirm that we <u>don't have</u> the functionality to create an automatic internal order <u>with CRM middleware</u>?</b>
ID: [email protected]
Thanks,
Alex

Similar Messages

  • Is there any way to use copy from function in cProject Project creation.

    Hi,
    Kinldy suggest if any one have idea to use copy from function in cProject while creating Project in cProject.
    We have copy from function in our material creation and BOM, Is there any way to copy the old project and we can take the same for new project as a Paste entire structure.
    Please share with me if you have any ideas for the same.
    Thanls in advance for your help.
    Thanks & Regards.
    Raj

    Hi,
    please see
    [http://help.sap.com/saphelp_ppm50/helpdata/en/4a/6431a343946ba2e10000000a421937/frameset.htm|http://help.sap.com/saphelp_ppm50/helpdata/en/4a/6431a343946ba2e10000000a421937/frameset.htm]
    there the third case ("Based on an operational project ...")
    Kind regards,
       Florian

  • Updation of leaves from HR to Cprojects through BADI HRPAD00INFTY

    Hi Experts,
    I want to update the leaves from HR to Cprojects.
    For that i am using BADI HRPAD00INFTY  
    mplement the method IN_UPDATE from the BADI - HRPAD00INFTY. I am not able to figure out what the parameters IPSPAR, OLD_IMAGE, NEW_IMAGE, OLD_PREF_IMAGE, NEW_PREF_IMAGE are for and how they can be used in coding (am looking for info in addition to what is in the documentation).
    According to the requirement I need to update the ENDDA, BEGDA and AVLUNIT fields in RPM_BUPA_AVL table.
    I can see in the table NEW_IMAGE having the  fields ENDDA and  BEGDA. Here Data1 field having encrypted values.Any sample code for implementing this method would be very helpful.
    Regards
    Subhaskar

    Have you checked what's in the Subtype field of table T777D for infotype 0002?
      IF t777d-namst ne space.                                  "QNOK025939
        MOVE <namst> TO <subty>.
      ENDIF.
    Usually this sentence won't be executed unless there is something in that field. Usually we don't have subtypes for IT0002.
    Also make sure that the infotype that gives the dump is 0002 and not 0105.
    Regards.

  • Creation of C project from xRPM item and automatic creation of proj in PS

    Hi all,
    My requirement is to create a cproject from xRPM, once the status of the item is "Approved" and a BAdI is there(RPM_PROJ_CUST_WF) which will trigger, when the status is changed to "Approved".
    My problem is how to create a cproject from xRPM item, any FM or BAPI available? If cproject is created, then automatically a project needs to be created in PS (ECC).
    Also how to create a project in PS from cproject, any config? Please help in this regard. How I can proceed?. I need to make any config. for acheiving the same?
    Regards,
    V Kumar
    Edited by: V Kumar on Sep 18, 2009 3:06 PM
    Edited by: V Kumar on Sep 18, 2009 3:09 PM

    Hi,
    I don't know how to create PS upon approval of item but I have done auto creation of cProject upon approval of item. Use FM
    DFM_DO_CREATE_PROCESSING.
    Here is sample code for this. In this code you have to create a cProject from a template.
    FUNCTION Z_RPM_ITEM_CPROJECT_LINK2.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(I_ITEM_GUID) TYPE  /RPM/TV_GUID OPTIONAL
    *"     VALUE(I_BUCKET_ID) TYPE  /RPM/TV_BUCKET_ID OPTIONAL
    *"  EXPORTING
    *"     VALUE(EV_RC) TYPE  I
    Data declaration
    Data:
          lt_rpm_messages        TYPE /rpm/tt_messages,
          ls_source_context      TYPE inm_object_context,
          ls_operation_context   TYPE inm_operation_context,
          IT_TARGET_TEMPLATES TYPE  INM_TT_GROUP_TEMPLATE_ASSOC,
          ls_target_templates TYPE INM_TS_GROUP_TEMPLATE_ASSOC,
          lt_triggering_objects  TYPE inm_tt_object_context,
          ls_triggering_object   TYPE inm_object_context,
          lt_params              TYPE inm_of_tt_field_names_values,
          ls_params              TYPE inm_of_ts_field_name_value,
          lv_object_id           TYPE  INM_OF_TV_OBJECT_KEY,
          lv_templateId           TYPE  INM_OF_TV_OBJECT_KEY,
          lv_parent_guid        TYPE  /RPM/TV_GUID,
          lv_portfolio_guid      TYPE  /RPM/TV_GUID,
          lv_parent_guid1        TYPE  INM_OF_TV_FIELD_VALUE,
          lv_portfolio_guid1      TYPE  INM_OF_TV_FIELD_VALUE,
          ET_Messages    TYPE INM_OF_TT_MESSAGES,
          ls_ilink_db      TYPE /rpm/item_il.
    Data:  lv_cproject_template  TYPE  ZTEMPLATE1-CPROJECT_TEMP,
           lv_cproject_template2  TYPE  DPR_TV_PROJECT_ID,
           lv_temp_guid  TYPE  DPR_TV_ENTITY_GUID,
           lv_log_sys  TYPE  string.
    lv_object_id = I_ITEM_GUID.
    Get the cproject template guid
    select single CPROJECT_TEMP into lv_cproject_template
    from ZTEMPLATE1
    where EXTERNAL_ID = I_BUCKET_ID.
    lv_cproject_template2 = lv_cproject_template.
    select single GUID into lv_temp_guid
    from DPR_PROJECT
    where  PROJECT_ID = lv_cproject_template2.
    lv_templateId = lv_temp_guid.
    Get Parent & Portfolio guid
    Select single PORTFOLIO_GUID PARENT_GUID into
    (lv_portfolio_guid, lv_parent_guid)
    from /rpm/item_d
    where guid = i_item_guid.
    lv_portfolio_guid1 = lv_portfolio_guid.
    lv_parent_guid1 = lv_parent_guid.
    Get logistic system
    concatenate SY-SYSID 'CLNT' SY-MANDT into lv_log_sys.
    condense lv_log_sys.
    Assigning more data
    ls_source_context-OBJECT_ID = lv_object_id.
    *ls_source_context-LOGSYS = 'DY1CLNT200'.
    ls_source_context-LOGSYS = lv_log_sys.
    ls_source_context-GROUPING = 'PPO'.
    ls_source_context-OBJECT_LINK_TYPE = '0INMITEM'.
    ls_source_context-CREATE_TEMPLATE_TYPE = '1'.
    ls_source_context-TEMPLATE_ID = lv_templateId.
    ls_source_context-TARGET_OBJECT_GROUPING = 'PDCP'.
    ls_operation_context-OPERATION = 'C'.
    ls_target_templates-GROUPING = 'PDCP'.
    *ls_target_templates-LOGSYS = 'DY1CLNT200'.
    ls_target_templates-LOGSYS = lv_log_sys.
    ls_target_templates-TEMPLATE_ID = lv_templateId.
    ls_target_templates-TYPE = '1'.
    append ls_target_templates to IT_TARGET_TEMPLATES.
    ls_params-EXT_FIELD_NAME = 'PARENT_GUID'.
    ls_params-EXT_FIELD_VALUE = lv_parent_guid1.
    append ls_params to lt_params.
    ls_params-EXT_FIELD_NAME = 'PORTFOLIO_GUID'.
    ls_params-EXT_FIELD_VALUE = lv_portfolio_guid1.
    append ls_params to lt_params.
    Calling FM to create cproject & linking to item
    CALL FUNCTION 'DFM_DO_CREATE_PROCESSING'
      EXPORTING
        IS_SOURCE_OBJECT_CONTEXT = ls_source_context
        IS_OPERATION_CONTEXT     = ls_operation_context
        IT_TARGET_TEMPLATES      = it_target_templates
        IT_PARAMS                = lt_params
        IT_TRIGGERING_OBJECTS    = lt_triggering_objects
      IMPORTING
        ET_MESSAGES              = ET_Messages
        EV_RC                    = EV_RC.
    commit changes
    ENDFUNCTION.
    Please let me know if you find a way to create PS from xRPM or cProject.
    Regards
    Mohinder

  • CProjects & Project System

    Hello Friends,
    I want to use the projects that created in Projects Systems(PS) in cProjects and also the vice-versa.
    Could you tell me the procedure to do this?
    Thanks & Regards,
    Senthil.

    For creating project from PS to cproject use the following method
    What you can do is Create a cProjects Project usinga Badi in PS on save.
    where you can use FM BAPI_BUS2172_CREATE to create Project.
    Also when you make changes to PS project use Badi on save to transfer the changes to cProjects projects.
    You can use Function modules like:
    BAPI_BUS2172_CHANGE
    BAPI_BUS2173_CHANGE
    BAPI_BUS2174_CHANGE
    BAPI_BUS2175_CHANGE
    and so on
    vetrivelan.

  • Disabling cprojects alerts for certain users only

    Hi
    I need that no email alerts are sent to certain roles/people who have authorizations in cprojects. There are numerous alerts sent as email for any change of dates, thresholds etc. I need to disbale any email being sent in this for certain users.
    How can it be done?
    Regards
    Senthil

    Hi Senthil,
    Would you please check the following
    Evaluations -> Business Add-Ins (BAdIs) -> Change Alerts from Severities in cProjects
    related method is CHANGE_ALERTS_OF_PROJECT, which has a change parameter:
    CT_LANGUAGE_OF_RECIPIENT. You can apply your own logic to remove some recipient of the table, so that they do not get the e-mail.
    Never tested, please check it out.
    Kind regards,
    Zhenbo

  • HR integration - central person validity

    Hi experts,
    I've configured HR integration to transfer org-management and hr master from ERP to cprojects and create BP. In transaction PFAL I'm using INSERT mode and evaluation period TODAY which meas that org-management is completely rebuilt in cProjects.
    As i found out, every BP is based on a central person which contains infotype 5580 (hr master data). If action 'Leaving' is set for a hr master, the validity of infotype 5580 is delimited and executing report HRALXSYNC sets mark 'central block' for the corresponding BP. Unfortunately, i found out that infotype 5580 is not delimited in every case!
    What could be the reason for this?
    Thanks in advance!
    Regards
    Wolfgang

    Hi,
    Pls check out OSS Note 1052449 - HRALX: Employee is linked with BP without role "Employee".
    Regards
    Sejo

  • IDoc Status "& & & &" in IDoc posting in BD87 - ALE

    hi,
    I am integrating two R3 servers and posting the datas from HR to cProjects server.
    In Outbound I can send the IDocs and In Inbound IDocs are getting into destinations (cProjects) servers along with status "& & & &" in BD87.
    Can anyone help me to know..Where the cause of problem..
    Thanks in advance
    Regards,
    Srinivasan.R

    Hi.,
    In we02 its OK..
    Its showing ...
    Status Message for Selected IDoc                                                               
    Status Text:   IDoc: 0000000000036306 Status: IDoc ready to be transferred to application       
    T100 Text:     No filters , No conversion , No version change .                                 
    But., in place of BD87 I am getting status only "& &, &, &".
    Regards,
    Srinivasan.R

  • Erros while staffing with WFD

    Hi guys,
    I'm trying to use WFD for resource staffing but I always get the following error messages:
    Error icon - Error in cProjects; Maximum allowed required capac ity was exceeded
    Warning icon - cProject warning; Time was converted from 5,00 MIN to 0,01 FTE - rounding errors are possible
    Warning icon - Required/Planned capacity of Demand Developer does not match
    In the above case I was staffing a person for 5 minutes (to be sure that I wasn't overstaffing), while the required capacity of the Demand in WFD shows me 4 FTE's (consulting days of 8 hours each day). I tried that with two persons, one that has 10:29 hours of availability and one that has 0:00 hours of availability, and in both cases I get the same messages.
    In cProjects I had set the "Required Capacity" of role Developer to "4,0 Con.Day" (which was reflected to WFD). And I assigned the role a task with 3 FTE's of work, so the "Total Work" of that role shows me "3,0 Con.Day".
    Does anyone know what's wrong? Required capacity of the demand is 4 FTE, and I was trying to staff someone for 5 minutes, which was converted to 0,01 FTE and is way smaller than 4 FTE. So I didn't understand why I got the first error message in this case. And looking at the third error message, what does it mean?
    Thanks!

    Hi!
    Check SAP Note 866776:
    <h6>The time units that can be transferred from RPA to cProjects must be defined as allowed time units in cProjects. You must specify at least those time units in cProjects that are marked as primary units of measurement for the ISO code.
    Checking primary units of measurement and ISO code:
    Transaction cuni:
    On the detail screen under ALE/EDI, check the primary source code selection for each time unit.
    Allowed time units in cProjects:
    Customizing:
    Collaboration Projects > Basic Settings > Define Time Units</h6>
    We have such problem, when we used time unit "H - Hour". After we have set "Hr - Hours" the issue have solved.
    Regards,
    Konstantin Melnik

  • BADI DPR_FIN_GECCO_CALC

    Hi All,
    I'm using the BADI DIP_FIN_GECCO_CALC. I want to update the COSS table based on the OBJNR and the fields WKFXXX as per the month in which role is asigned for.
    The basic work that i'm performing in this badi is that i'm calculating period wise cost rates of diffrent role.
    At the end of this the data should be updated in the COSS table. Please help me in providing a FM which can do the same.

    thanks matthis,
       There is one more problem after doing all my calculation i have to update me COSS table. This is happening from the std cProjects application but I'm not able to find out how is it done. Which structure or what parameter is been modified that it gets reflected in the COSS table.
    Your reply will be of great help.

  • Error while creating projects in SAP-PS from cProjects

    Hi,
    Need suggestion on creating projects in SAP-PS from cProjects. There is cProjects & SAP-PS interface.The requirment is to create project in SAP-PS from cProjects. All the configuration has done in cProjects & PS module also. While saving the projects & checking the accouting the following error & project is n't creating.
    1.Combination company / CO area is invalid Message no. KO124
    2.Acct assignment determination is not poss.in the account assgnmnt manager
    Message no. IAOM220
    3.Only one error message is transferred from the log to the cockpit
    Message no. IAOM_CPROJECTS029
    I would like to request all to suggest in fixing the issue.
    Thank you for your coopearation.
    Regards,
    Ranjan

    Hi Ranjan,
    If the companay code does not belong to the Co area,  the system will certainly raise an error message. The question is, where do the values come from.
    Woud you please check the customizing in ERP system, if you can find the inconsistence:
    1. Customizing of the Proj.Profile under 'Create Project Profile' , SAP standard delivered is CPR0001, may be replaced by customer,
    Which Co-area & company code are used. In Tab 'organization'
    2. Which responsible Org.unit is maitained at involved cProject, to which co-area or company codes is this org.unit assigned.
    3. If the Badi under the
    Integration with Other mySAP.com Components ->
    Collaboration Projects -> Controlling ->  Business Add-Ins (BAdIs),
    which set the org. information hardly via Badi method.
    Kind regards,
    Zhenbo

  • Error while creating project automatically from cProjects

    Hi,
    Need suggestion on creating projects in SAP-PS from cProjects. There is cProjects & SAP-PS interface.The requirment is to create project in SAP-PS from cProjects. All the configuration has done in cProjects & PS module also. While saving the projects & checking the accouting the following error & project is n't creating.
    1.Combination company / CO area is invalid Message no. KO124
    2.Acct assignment determination is not poss.in the account assgnmnt manager
    Message no. IAOM220
    3.Only one error message is transferred from the log to the cockpit
    Message no. IAOM_CPROJECTS029
    I would like to request all to suggest in fixing the issue.
    Thank you for your coopearation.
    Regards,
    Ranjan

    Hi,
    The neccesary configuration for cProjects & SAP-PS interface are as follows.
    1. Project Types in cProjects, Object types, Organisation unit with Org structure in line with project profile
    2. Activate Accounting integration
    3. Object types for object link (WBSE in this case)
    4. Accounting integration using cost collector
    5. Easy cost planing settings both in R/3 systems & cProjects
    6. Project profile configuration in R/3 (cProjects standard)
    7. CO Scenario maintainance view determination (Multi level controlling-Project role, automatic)
    All the enterprise structure assignments should be same in cProjects & R/3.
    Hope this may help you.
    Regards,
    Rakesh Pradhan

  • Replication of roles from cProject to R/3 PS

    Hi
      I want to know the procedure to replicate the roles from the cProjects to project system. If any one know pl help me.
    Regards
    Nanthu

    Hi Zhenbo
    I have received the Conf. guide and i have configured as per the guide.
    The project definition,phases and tasks are replicated to R/3 PS but if i assign role in the project it is not replicating  to R/3 PS. It is showing the following error
    1.R/3 PS Network object could not be created.
    2.R/3 PS Error occurred during processing.
    Replicated incorrectly
    Settings:
    Account integration scenario : Replication to R/3 PS using CRM MW
    Replication type : From release of project - Automatic
    Project Elemt conf: 'Blank'
    Please suggest me what should i do to replicate the roles to R/3 PS as activity.
    Regards
    Nanthu

  • Creation of WBSE in SAP-PS from all Phase of Project from cProjects

    Hi,
    Need suggestion for the automatic creation of WBSE in SAP-PS from each phase of Projects from cProjects i.e. multi level controlling scenario
    I have done the required configuration of Define Controlling Scenario where for the project type, controlling method has given (Multilevel Controlling (Structure Element, Automatic).
    But in my case only one WBSE is getting created for all phse s & project defintion of project in cProjects.
    Request you to suggest me on this issue.
    Regards,
    Ranjan

    Hi Vetrivel,
    Thanks for your prompt response. These are settings made for multi level controlling scenarios.
    1. Project Type:
    Accounting Intergation-accounting integration in my SAP ERP, as of relese of the project
    2. Define Object Links for Accounting Integration
    - 0FIN_INT_ERP_PS Single-Obj. Controlling on WBS Elements
    - Search Fields OLR3_TS_PRPS_SHLP
    - Proxy Class CL_DPR_OLR3_WBSELEMENT
    - 0FRAME9 frame has considered
    3. Controlling
    - Controlling Scenarios: PS01 Costing Variant
    - Then Costing Model has assigned to Controlling Scenarios
    - Assignment of Cost Elements to Cost / Revenue rate
    Please suggest me if i have missed some things. I am checking the planed cost in CN41 transaction of the PS module. Morever in Project in cProjects costing button is disabled & while doing calculate no planned cost os updating in Projects.
    I am following role based costing process. Project Role has defined & employee assiged to Projects.
    Thank you in advance.
    Regards,
    Ranjan

  • DMS: entering document from cProjects

    Hi,
    When I try to view documents from cProjects the file type is unknown. This goes for e.g. excel. For word it is okay. I think I may not have the correct entries in the customizing activity: Define application, but I do not know what to enter. I specially think of the activity Define application for workstation in network. When I open the documents from Easy DMS it is no problem.
    In advance thanks for answering.
    Regards Camilla

    Hi
    Can you explain in more detailed manner.
    You can try to have a Workstation application XLS for excel files in DC30
    For display(1) enter %auto%
    Niranjan
    Let me know if it helps

Maybe you are looking for

  • Data Mismatch between extractor RSA3 and PSA

    Hi I am usig GDS based on view. When I am checking data in RSA3 it is showing me correct data against campaign ID But when I had replicated the same to BW side campaign ID is showing GUID (GUID is that field from which compaign ID is derived). Howcom

  • What is the lifetime of a session?

    Hi all, I am writing a .NET application that queries an Oracle Database. I am altering the Session variable current_schema in order to execute commands with a different default schema than that of the logged in user. The change to current_schema shou

  • Multiple device simulation

    This topic has been addressed several times in the past, but I have not seen a satisfying answer yet. The problem is that multiple devices need to be simulated on a GPIB bus by a single PC or workstation. This requires listening to multiple addresses

  • Latest boot camp + wireless mighty mouse

    Hi, I was using boot camp 1.01, I just upgraded to the latest version of boot camp. Now, my wireless mighty mouse scroll doesn't work on the WinXP side. Does anyone know how to get it working again? In the bluetooth area in WinXP, it doesn't show the

  • Voting disk and OCR creation

    dear all, Am installing 11gr2 on solaris 10 update 6. We are planning to have ASM also. So I created 3 users oraasm-ASM OWNER oracrs-clusterware owner oracle-oracle database owner. Now the question is : Do I have to configure SSH for all the 3 users