Cprojects - Collaborations

Hi
Can someone explain more clearly maybe with screenshots the following. I could not understand the following functionalities from SAP documentation.
1. Assign Collaboration or Folder via Search Help Collaboration: How to use Search Help? It does not fetch any results.
2. 'Folder' option below is disbaled. When does this get enabled and what is this used for?
3. Link collaboration or folder via URL - Which link should be provided here?
Regards
Senthil

Hi Senthil,
Some basic things before getting on to your queastions:
i. I hope configuration for cFolder Integration is in place before proceeding with this.
ii. You can have multiple collaborations in cFolders for one project in cProjects.
iii. One collaboration in cFolders can be assigned to multiple projects in cProjects
Now to your questions:
1. Assign Collaboration or Folder via Search Help Collaboration:
In order to be able to assign a collaboration to a project, atleast one collaboration created from cProjects (in any project) should exist.
If no collaboration has yet been created from any project in cProjects, the search will not give any result.
Solution: Create a collaboration and then try assigning that collaboration to other objects (phases/tasks/project defintion)  of the same or different project.
2. 'Folder' option below is disbaled:
Select a collaboration and press Enter key, the input for Folder will then be enabled
3. Link collaboration or folder via URL:
In case you dont want to create a collaboration from cProjects, instead use a collaboration that was created in cFolders, use the URL of the collaboration/folder.
Hope your questions are answered.
Regards,
Reema.
<i>Pl award if useful.</i>

Similar Messages

  • Cproject - PS replication. Problem

    I have the following task: create a structure of the existing cProject project in the PS.
    New project type is defined for automatic (on save event) WBS elements integration. I have checked the multilevel automatic controlling either for project element or for project structure in controlling scenario, but after I push "Save" button in cProject at Accounting bookmark WBS elements aren't created automatically, I may do this only manually using the existing PS project.
    If I selected internal orders instead of WBS - everything was OK. 
    Do you have any idea what is the reason?

    Above problem can have several causes.
    1. Field Control in PS WBS.
       If some fields in PS WBS is "REQUIRED", WBS cannot be created automatically.
    2. Pls check the IMG of cProject
        Collaboration Projects > Connection to External Systems > Accounting Integration.
        Even though you do not use c-Project Accounting functionalities, all the IMG shall be setted properly, because such IMG item can cause error for WBS integration.
    Pls check COCPCPR - Controlling Cockpit, it can be helpful for you to solve the issue.
    B.regards,
    Hyo-min.kim

  • To know the actual date & time for created versions in cprojects

    HI ABAPers,
    Am working on cproject version 3.1,  wanted to know where the  exact date & time  is getting captured when a version i.e
    con H & base  versions is created in cprojects ( collaboration projects ).
        Already i have checked in  dpr_project table where versions are getting stored with the same project created date & time. But not with the actual date & time when the versions were created. 
    is there any BAPI or table where we can know the actual date & time of the created versions.
    Thank you!!!
    Abdul

    Hi,
    According to your post, my understanding is that you want to change date format for ‘Created’ field in the getVersions web service.
    Per my knowledge, you can get the date format for ‘Created’ field as “MM/dd/yyyy HH:mm a”.
    For more information, you can refer to:
    Versions.GetVersions Method (Versions)
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Transfering cFolders Docs to DMS via Collaboration tab in cProjects 4.5

    Hi Experts,
    I am trying to move documents between cFolders and DMS using the the "collaboration" tab in cProjects.
    The steps I am following are as follows.
    1. Created a link to a DMS document structure from "SAP DMS" tab in cProjects
    2. Assigned a collaboration from the "collaborations" tab
    3. Selected transfer documents.
    4. Transfered the needed documents to a folder in DMS from cFolders
    5. Clicked save documents button
    6. When I check the doc structure from the SAP DMS tab I see the document but there is no document number or type.
    7. When I select refresh the transfered document dissapears. I have also tried saving between steps to no avail.
    I have done the needed configuration for object links and default doc types under "Integration with Other mySAP.com Components -->Collaboration Projects -->SAP DMS Integration --> Specify Default Document Types per cProjects System". Also I am able to transfer a document which is stored in cProjects documents tab. I am only having an issue when trying to transfer from cFolders.
    I have seen several threads on this forum on similar issues but no clear solution. Appreciate any thoughts on this. Hope I have explained the issue clearly, but do let me know if any further information is needed from me.
    Thanks,
    Lashan

    Hi Lashan,
    Did you try with T Code CFI01(ECC ) - Import Documents from cFolders?
    If no then try you will get sucess
    Regards
    Ravindra

  • CProjects - cFolder collaboration folder creation

    HI Gurus,
    I am completely new to cProjects.
    My Query:
    I need to create a cFolder for the project at the time it is Released.
    So, i used the BADi <b>DPR_EVENTS</b> on method <b>ON_DPO_RELEASED</b>.
    for cFolder creation i used the FM: <b>CFX_API_COLLABORATION_CREATE</b> it creates a folder in cFolder but not in respective cProjects for the project i created. Is there any other FM or is there any solution so when user release project it creates a cFolder in both cProjects and cFolder ( Design collaboration scenario) which is interconnected with a link.
    If need more information then please let me know.
    Regards
    Giri

    Hi,
    Here is your code:
    DATA:
      o_project type ref to cl_dpr_project_o,
      ES_PROJECT_INT type DPR_TS_PROJECT_INT,
      collab_id type SYSUUID_C,
      name type string.
      o_project ?= ir_sender.
      o_project->get_data_ext(
        IMPORTING
         ES_PROJECT_INT = ES_PROJECT_INT
    name = es_project_int-project_id.
    CALL FUNCTION 'CFX_API_COLLABORATION_CREATE'
      EXPORTING
      I_TEMPLATE_ID            =
        I_NAME                   = name
       I_DESCRIPTION            = 'Test'
       I_IS_SYNDICATE           = 'no'
      I_DEADLINE               =
       I_SCENARIO               = 'collaboration'
       I_IS_TEMPLATE            = 'no'
    IMPORTING
       E_COLLABORATION_ID       = collab_id
    <b>The Field type for project definition GUID that the bapi accepts and one that you are passing donot match.
    One that you are apssing is of type RAW 16 and bapi accepts CHAR 32.
    Simply do this:
    data: lv_proj_guid type DPR_TV_BAPI_GUID_PROJECT.
    lv_proj_guid = es_project_int-guid.</b>
    CALL FUNCTION 'BAPI_BUS2172_COLLAB_ADD'
      EXPORTING
        PROJECT_DEFINITION_GUID       = <b>lv_proj_guid</b>
       IV_COLLABORATION_GUID         = collab_id
       IV_CFOLDERS_DESTINATION       = 'UFD400_TRUST'
    Hope this works
    Regards,
    Reema
    Message was edited by: Reema
            Reema Shahbazkar

  • Cproject - assign collaboration--error in search

    Hi
    Im facing 1 unsual error
    When we try to assign Collaboration thru Cproject, we only get one collaboration in search result.
    for the same Id actually all collaboration admin rights have been extended in Cfolder.
    still when we try to assign the document we get only 1 collaboration in search. is there any object type which needs to add to role.
    help...
    Niranjan

    Hi Niranjan,
    I am facing a similar error. When i am trying to assign a Collaboration Folder to the Collaboration Project, the search option gives results showing as Blank title. Hence when i select one of the results shown which has a blank title the system gives an error saying enter the name of the Collaboration Folder.
    This is some unusual error.
    Please guide me on this.
    Regards,
    Amit Sawant

  • Error while clicking the phase in Standard collaboration link of Cprojects

    Hi,
    We are facing a problem in SAP Cproject Tool. When ever we are clicking on a phase,the following error text was processed in the system:
    'An exception with the type CX_SY_CONVERSION_OVERFLOW occurred, but was neither handled locally, nor declared in a RAISING clause'. Please let me know how to proceed.
    Thanks.

    See Error display in Room Administration

  • Fields for creation of BP in cProjects front-end are read-only

    Hi everyone,
    I'm a beginner in SAP-Development/Customizing so I hope this question isn't too easy
    I can't create a Business Partner using the cProjects front-end (Ressources > Staffing) because the necessary fields and buttons are read-only... (> web-Dynpro Component: DPR_ROL_STAFF; View-Info: VI_SEARCH_CREATE)
    I'm using CPRXRPM 450_700 patch 0006
    The field-control is standard-SAP (0SAP).
    My user-account has all cProject-roles + SAP-ALL
    I assume i can change the behaviour of these fields in the Field Control but I can't identify which is the corresponding Object Category to apply the changes.
    - Is there a documentation which field belongs to which Object Category in Field Control?
    - Or can somebody tell me a procedure to find it out on my own?
    Thanks in advance

    Hi,
    generally it is recommended to use transaction BP or ALE distribution to get the business partner be created.
    If you would like to create the BP in web UI directly, the user must have the Structural Authorization, see customizing path:
    Collaboration Projects -> Resource Management -> Organizational Management.
    It is very HR related topic, you may contact a HR consultant to know more details about it.
    Kind regard,
    Zhenbo

  • Error while saving project in cProjects

    Hello,
    I am getting following error while saving a project in cProjects-
    Access via 'NULL' object reference not possible.
    Details of the error are given below-
    Can somebody please help me resolve this error?
    Thanks and regards,
    Milind Dumbre
    Error analysis
         An exception occurred that is explained in detail below.
         The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not
          caught in    procedure "FINALIZE_OBJECT_BEFORE_SAVE" "(METHOD)", nor was it propagated by a
         RAISING clause.
        Since the caller of the procedure could not have anticipated that the
        exception would occur, the current program is terminated.
        The reason for the exception is:
        You attempted to use a 'NULL' object reference (points to 'nothing')
        access a component (variable: "LR_CALC").
        An object reference must point to an object (an instance of a class)
        before it can be used to access components.
        Either the reference was never set or it was set to 'NULL' using the
        CLEAR statement.

    Hi Milind,
    You may check the settings by navigating to the following path
    IMG --> Collaboration Projects --> Connection to external systems --> Accounting Integration
    -->  Define Object Links for Accounting Integration.
    Check if the RFC destination has been correctly maintained. You may check the correctness of the RFC settings via SM59.
    Let me know if  this helps.
    Regards,
    Vivek Pandey

  • 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 importing MS project into cProject

    Hi
    I am getting the below error while importing MS project client file or XML file into cProjects.
    dpr_shared087
    Logon language becomes original language
    Message no. DPR_SHARED087
    Diagnosis
    The logon language is defined as a possible text language in Customizing for Collaboration Projects under Specify Text Languages. Therefore, it is valid.
    System Response
    The logon language becomes the original language of the new object that was created.
    Kindly suggest what configuration data if any is missing.
    Regards
    Srikrishna

    Hi
    I am getting the below error while importing MS project into cProject.
    Error occurred when importing from Microsoft Project
    Message no. DPR_UI_BSP116
    Diagnosis
    When a project is imported from Microsoft Project, the system generates an XML string during internal processing. A project is then created in cProjects from this string.
    The XML string contains errors because the values from Microsoft Project were transferred without verification.
    Procedure for System Administration
    Notify SAP or call the cProjects application with the "DebugMode=X" query string and carry out the import again.
    The XML string that was generated temporarily is then validated against the cProjects XML schema. The error message from the XML parser is then displayed in the popup.
    Kindly suggest, if the below steps for importing MS project is ok or not?
    step 1: Create project in MS project with tasks.
    step 2: Maintain maping fields of MSP in cProject configurat
    step 3: Import MPP file into cProject using "Import" button.
    step 4: I am getting the above error while importing the MPP file.
    Regards
    Srikrishna

  • CProjects 4.0 - SAP R/3 4.7 - Accounting Integration problem.

    Dear all,
    I have performed all steps necesaary for accounting integration in cProjects and SAP R/3 FI System.
    I can even see and assign the cost rate that I have created in cProjects to a project role.
    System also calculates the  cost for the role multiplyin the cost rate with the number of hours the resource has been assigned.
    However, it also displays the following warning messages:
    1. An error occurred in Accounting (system QASCLNT777) 
    2. Function module "IAOM_CPRO_MISC_RFC_CPDEF_CHECK" not found. 
    3. No cost center could be determined for organizational unit 00000000 
    4. Maintain a revenue element for cost/revenue rate ZZ_000001 
    5. Error occurred in accounting - check the costing in the ERP system
    When I execute the transaction COCPCPR in R/3 system, I cannot see the internal order, but see the project name under "Internal Orders not created"
    Regards,
    Reema.

    Hi reema, if we refer to the documentation pertaining to accounting integration for cProjects 4.0, we see that the prerequisities is ECC 6.0
    Please see below from the help documentation
    Integration
    To be able to use the functions of accounting integration, you have to implement the Internal Orders (CO-OM-OPA) application component and Project System (PS) in SAP ECC 6.0.
    Prerequisites
    You need to make a number of Customizing settings in both the Collaboration Projects and SAP ECC Implementation Guides (IMG):
    Settings in the Collaboration Projects IMG
    You selected the Controlling in mySAP ERP setting in Customizing for Collaboration Projects under Connection to External Systems ® Accounting Integration ® Activate Integration as the Accounting Integration Scenario.
    I feel the error messages are thrown because you are using SAP R/3 4.7.  I see from the SAP notes, for CATS integration with cProjects 4.0 and SAP R/3, SAP consulting is available, but nothing is mentioned for accounting integration.

  • Additional field in cProjects

    Dear All,
    How can i bring customer field in cProjects 4.0.
    My users want four extras field which is not available in cProjects.
    We have done following things
    1.                   As per SAP  Note : 947936 in PLM server
    2                  Go to SPRO->SAP Customizing Implementation Guide -> Collaboration Projects -> Collaboration Projects -> Define Field Groups for customer fields
    3.                   Object Type: DPO (Project Definition)
    4.                   Field Group ID: (ID) eg ZTAB_DPO
    5                   Field Group Name: This will appear as the text on the TAB & make sure active check box is checked.
    6                  Select the entry made above and double click on u201CCustomer Fields for Field Groupu201D.
    7               Customer Field will be the additional fields that you have added in the customer include in the table DPR_TS_PROJECT_EXTENDED_ATTR / dpr_projects
    8              Select Mode and Field Type & make sure active check box is checked.
    9               Double click on the folder u201CField Group as per Project Typeu201D & click on new entries.
    10               Select the project Type for which you want the tab to be displayed
    Object Type: DPO (Project definition)
    Field Group ID (ZTAB_DPO) & make sure active check box is checked.
    Please do needful
    Regards
    Ravindra

    Hi Ravindra,
    there is one more step that needs to be done in the customizing:
    You have to set up a field control for your customer fields (IMG activity 'Set Up Field Control'). Here you define the conditions when these fields are displayed, hidden etc...
    If you have no field control, these fields will be always hidden.
    Please do not change the standard field control 0SAP but rather copy it to your own and adapt it according to your needs. Please refer also to the available IMG documentation.
    Afterwards, this field control needs to be assigned to your project type (IMG 'Define Project Types').
    Regards,
    Silvia

  • Show additional tab in Cprojects

    Hi,
        I have created a custom Webdypro ABAP component to add a new tab in cProject Component(DPR_MAINFRAME).
        In my webdynpro component i have implemented the standard interface DPR_CUST_EXT_INTF.
        In view i have created a tab and inside the tab i have created some 5 input field and created a ztable to store the values  
        entered in the input fields on click of 'Save' button in the view.
        In SPRO I have made the below mentioned configuration to inculde my tab inside the View of DRP_MAINFRAME.
        Collobaration Projects->Global Enhancements to Projects Elements->Show Additional Tab page in cPRojects.
        Clicked on  'NewEntry' button to create a new entery
        Project Element Type : Project Definition
        Project Type:  blank
        Tab Active: Checked
        Tab Page Title: Custom Tab
        Webdynpro Component: ztabs
    After having done this when i execute the DPR_MAINFRAME Application i am able to view my tab inside the view of the standard application.
    When i enter details inside the input fields and when i click on Save the data is also getting saved in my ztable.
    When we execute the DRP_MAINFRAME Component we can find a Save button provided in the Standard component.
    My requirement is On click of the Standard SAve button the data entered in the input field must get inserted in the ztable.
    When i implemented the interface DPR_CUST_EXT_INTF , method ON_AFTER_SAVE got created in my component controller .
    I even tried placing my code in the method but data didn't get updated in the ztable.
    Regards,
    Bala Baskaran.S

    Hi,
    Can you guide me to add a new tab in the C projects, I tried creating a new wda component with DPR_CUST_EXT_INTF as implemented interface.
    The view in this component has a tabstrip having a single tab in it, Then i went to spro as mentioned:Collaboration Projects->Global Enhancements to Project Elements->Show Additional Tab Page in cProjects.
    I added a new entry here
    Project Elements: Project Definition
    Proj Type : Blank
    Tab Page Active: checked
    Tab Page title: Additional Tab
    Web Dynpro Component: zcomponent
    Still The tab is not displayed, Can you let me know if I am missing something?
    Regards,
    Shitanshu Sahai

  • Error while linking DMS document in cProject

    Hi,
         When I link the document of DMS in cProject an error  message
    `` Link Not Possible: The SAP R/3 DMS document info record contains orig( Message number 26 000)``
    is appearing. I could search the list of documents . I am facing this issue only selecting and clicking the continue button under SAP DMS tab in cProject. RFC is doing well. Pls help me to solve the issue.
    Regards,
    Ramesh

    Hi,
    Please check after using following steps.
    Goto - SPRO -
    > Collaboration Projects---->Structure---> Define Project Type
    Please select the your project type and check SAP DMS is selected under tab Active Function.
    Regards

Maybe you are looking for