CProjects 5.0: standalone usage

Is possible to use the newest version of cProjects (5.0) standalone from RPM?
I need only cProjects Suite without RPM. I installed PPM 5.0 and now I'm not able to isolate cProjects.
Help me, please.
Regards

Hi Luca,
cProjects 4.5 also wasn't freeware
The license model is basically the same for 5.0 as for 4.5, please see SAP Note 1377104
(FAQs for 5.0):
Licenses:
SAP Portfolio and Project Management 5.0 is available as
"Supplementary Product" from SAP. Depending on the use case you
might require a separate license for "SAP Portfolio and Project
Management" plus the appropriate number of application user
licenses. If you are just using the project management
capabilities of SAP Portfolio and Project Management, you do just
need to license  the appropriate number of professional or
limited professional users.  For further information, please
contact your sales personnel.
Kind regards,
   Florian

Similar Messages

  • Cprojects 4.0 Standalone

    Hi,
    I have read the Cprojects mastergude and as I understand it seems tha cproject 4.0 can run as a satdalone on NW04s. Is this possbile?
    I have configured Cprojects 3.1 from CRM before, but if it is a standalone how does the configuration work?

    yes. standalone is possible. the configuration is basically the same. more information is in the install guide. br, thorsten

  • How to use PPM 5 (standalone or integrated with portal)

    Hi,
    I would like to know which advantages and disadvantages are presented by using PPM 5.0 standalone or integrated with portal? all functionality are the same in both cases? which is the best option?
    Thanks a lot,
    CAMILO URIBE

    Hi,
    from a functionality point of view, standalone and portal usage of SAP Portfolio and Project Management 5.0 are the same (except functionality which is in general only available within a portal, e.g. KM documents, collaboration rooms, etc.).
    From a TCO perspective, for the standalone usage you'll only need the ABAP stack (except for ADS), i.e. if you don't anyway already have a portal in use in your company, this could lead to a lower TCO.
    Kind regards,
       Florian

  • How to connect database

    This is my jsp file!(
    Claims Processing: Data Entry
    Created on Apr 18, 2007
    To change the template for this generated file go to
    Window>Preferences>Java>Code Generation>Code and Comments
    package Database;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.sql.DataSource;
    @author Administrator
    To change the template for this generated type comment go to
    Window>Preferences>Java>Code Generation>Code and Comments
    public class DataRetriever {
         Connection connection = null;
         public DataRetriever(String jndiName) {
              try {
                   Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
                   connection =
                        DriverManager.getConnection(
                             "jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=HRMS;User=sa;Password=sa");
                   System.err.println("Database connection established AGAIN");
              } catch (Exception e) {
                   System.err.println("Cannot connect to database server - " + e);
         private void getConnection(String jndi) {
              try {
                   Context ctx = new InitialContext();
                   if (ctx == null) {
                        throw new Exception("Boom - No Context");
                   DataSource ds = (DataSource) ctx.lookup("java:comp/env/" +jndi);
                   System.err.println(jndi);
                   if (ds != null) {
                        connection = ds.getConnection();
              } catch (Exception e) {
                   e.printStackTrace();
                   connection = null;
         public ResultSet execSelectQuery(String sql) {
              try {
                   if (connection == null) {
                        return null;
                   Statement s = connection.createStatement();
                   return s.executeQuery(sql);
              } catch (SQLException e) {
                   e.printStackTrace();
                   return null;
         public int execUpdateQuery(String sql) {
              try {
                   if (connection == null) {
                        return -1;
                   Statement s = connection.createStatement();
                   return s.executeUpdate(sql);
              } catch (SQLException e) {
                   e.printStackTrace();
                   return -1;
         public void terminate() {
              try {
                   connection.close();
              } catch (SQLException e) {
                   e.printStackTrace();
    This is the servlet.
    package servlet;
    import java.io.IOException;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import bean.createClaimsBean;
    public class CreateClaimsServlet extends HttpServlet {
    protected void doGet(
    HttpServletRequest request,
    HttpServletResponse response)
    throws ServletException, IOException {
    processRequest(request, response);
    protected void doPost(
    HttpServletRequest request,
    HttpServletResponse response)
    throws ServletException, IOException {
    processRequest(request, response);
    private void processRequest(HttpServletRequest request,
    HttpServletResponse response) throws ServletException, IOException{
    String mySqlJndiName =
    this.getServletContext().getInitParameter("MySql JNDI");
    createClaimsBean cb = new createClaimsBean();
    String bd = request.getParameter("textfield1");
    String pl = request.getParameter("textfield2");
    String pa = request.getParameter("textfield3");
    String bn = request.getParameter("textfield3");
    String d = request.getParameter("D1");
    String ta = request.getParameter("textfield4");
    System.out.println("n");
    cb=cb.registerCreateClaims(bd, pl, pa, bn, d, ta, mySqlJndiName);
    request.getSession().setAttribute("registerCreateClaims", cb);
    request.getRequestDispatcher("/WEB-INF/pages/regsuccess.jsp").forward(request,
    response);
    Lastly it is the java file.
    Created on Apr 19, 2007
    To change the template for this generated file go to
    Window>Preferences>Java>Code Generation>Code and Comments
    package bean;
    import Database.DataRetriever;
    @author Administrator
    To change the template for this generated type comment go to
    Window>Preferences>Java>Code Generation>Code and Comments
    public class createClaimsBean {
         private String billDate;
         private String plans;
         private String panel;
         private String billNo;
         private String dependent;
         private String totalAmt;
         public createClaimsBean(String billDate,String plans,String panel,String billNo,String dependent,String totalAmt)
              this.billDate = billDate;
              this.plans = plans;
              this.panel = panel;
              this.billNo = billNo;
              this.dependent = dependent;
              this.totalAmt = totalAmt;
    @return
         public String getBillDate() {
              return billDate;
    @return
         public String getBillNo() {
              return billNo;
    @return
         public String getDependent() {
              return dependent;
    @return
         public String getPanel() {
              return panel;
    @return
         public String getPlans() {
              return plans;
    @return
         public String getTotalAmt() {
              return totalAmt;
    @param string
         public void setBillDate(String string) {
              billDate = string;
    @param string
         public void setBillNo(String string) {
              billNo = string;
    @param string
         public void setDependent(String string) {
              dependent = string;
    @param string
         public void setPanel(String string) {
              panel = string;
    @param string
         public void setPlans(String string) {
              plans = string;
    @param string
         public void setTotalAmt(String string) {
              totalAmt = string;
         public createClaimsBean{
         public void registerCreateClaims(String mysql, String billNo, String dependent, String panel, String plans, String totalAmt)
         DataRetriever data = new  DataRetriever(mysql);
        String sql= "INSERT INTO claims VALUES (billDate, billNo, dependent, panel, plans, totalAmt)";
        data.execUpdateQuery(sql);
        data.terminate();
    How to connect sql so that i m able to insert new data into the database?
    Message was edited by:
            fatimah rasheed

    Hi Fatimah,
    You are on the right way. You need a DataSource to get Connection to the DB and execute queries through it. Have a look at <a href="http://help.sap.com/saphelp_nw04/helpdata/en/15/6d56f65fb59e4db97253c89c5cfefd/frameset.htm">this</a> page for more information on setting up a reference to the DataSource from your Web application.
    The procedure for creating a custom DataSource is described <a href="http://help.sap.com/saphelp_nw04/helpdata/en/bb/69da54d8aedc419d46d9ea074e4d41/frameset.htm">here</a>. You can also <a href="http://help.sap.com/saphelp_nw04/helpdata/en/7f/d84b25d49846819d08e1c8ba03a9cd/frameset.htm">use the default DataSource</a>.
    Hope it helps!
    -Vladimir
    PS. Don't use java.sql.DriverManager directly in a J2EE environment. It is designed for standalone usage in the J2SE environment. The recommended way for J2EE is to go through a <b>javax.sql.DataSource</b> object.

  • Looking for a stand alone windowmanager

    Hello
    I currently use KDE, it works but I want something more minimalistic, like a stand alone window manager, BUT....
    The only reason I use KDE right now, is kwin, it provides opengl acceleration, and sync to blank etc which totally eliminates tearing and flickering for me, so my question is, is there any windowmanagers that is meant standalone usage which has this?

    i've tried various different things and, thus far, compton is the only thing that has completely eliminated tearing for me. as was mentioned above, just take a look at compton -h, particularly:
    --vsync vsync-method
    Set VSync method. There are up to 4 VSync methods currently available.
    none = No VSync
    drm = VSync with DRM_IOCTL_WAIT_VBLANK. May only work on some
    drivers.
    opengl = Try to VSync with SGI_video_sync OpenGL extension. Only
    work on some drivers.
    opengl-oml = Try to VSync with OML_sync_control OpenGL extension.
    Only work on some drivers. Experimental.
    opengl-swc = Try to VSync with SGI_swap_control OpenGL extension.
    Only work on some drivers. Works only with GLX backend.
    Does not actually control paint timing, only buffer swap is
    affected, so it doesn't have the effect of --sw-opti unlike
    other methods. Experimental.
    opengl-mswc = Try to VSync with MESA_swap_control OpenGL
    extension. Basically the same as opengl-swc above, except the
    extension we use.

  • Certificate key usage in standalone CA

    I have a problem with a standalone sub CA.
    Certificate must be able to sign Outlook mails, encrypt them and sign Word documents, so in certqtp.inc I've changed rgAvailReqTypes parametr for my certificate:
    rgAvailReqTypes(0,FIELD_OID)="1.3.6.1.4.1.311.10.3.12, 1.3.6.1.5.5.7.3.4, 1.3.6.1.5.5.7.3.2, 1.3.6.1.4.1.311.10.3.4"
    After that key usage field of enrolled certificates have changed to "data ecnryption (20)", but I don't know why. So with this key usage I can sign documents, can ecnrypt mails, but can't sign them (key usage must contain digital signature).
    How to change key usage field in standalone CA ??

    Hi,
    Since you are using standalone CA, certificate templates won’t be used, therefore, you need to configure .inf file to achieve your goal.
    Here are some related links below I suggest you refer to:
    How do I set the keyUsage field in my offline, stand-alone root CA certificate to Critical=Yes?
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/406ce00d-5a29-483e-9b81-7d4867139dad/how-do-i-set-the-keyusage-field-in-my-offline-standalone-root-ca-certificate-to-criticalyes?forum=winserverDS
    How to make a stand-alone certification authority that is running Windows Server 2003 with Service Pack 1 or an x64-based version of Windows Server 2003 compliant with ISIS-MTT version 1.1
    http://support.microsoft.com/kb/888180
    Certificate Services - Key Usage missing from IPSecIntermediateOffline Certificate
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/3f96b352-5542-4bb0-b5ae-3ca096d16478/certificate-services-key-usage-missing-from-ipsecintermediateoffline-certificate?forum=winserversecurity
    Best Regards,
    Amy Wang

  • Does tethering to an iMac affect data usage compared to a standalone iPhone?

    Does tethering to an iMac affect data usage compared to a standalone iPhone?

    My BB data usage is not too bad, now my Android phone, THAT is where I am getting killed!   However I can say this, my Z10 is NOT as efficient as my 9930 was at data, NOTHING compares to legacy BBs at data usage, but the Z10 is in line and/or better than your typical Android device.  At least in my experience.   Of course I have never used the iphone as a daily driver, or for anything but helping others figure out their phone.  
    Rich C (PKcable)
    From Crackberry.com
    If I have been helpful please click like! Use the Thumbs up icon below this message.

  • Report Engine SDK - Rbean usage in standalone java application

    Post Author: Berndb
    CA Forum: JAVA
    In BOXI the rebean sdk is available in the Report Engine SDK.
    I remember that in the 6.5 world one could use RBEAN interface in a standalone java application.
    Is this still possible in BOXI R2?
    If yes can you supply a sample classpath which shows all libraries that needs to be assigned.
    Thanks in advance.
    bernd

    Post Author: datahog
    CA Forum: JAVA
    Ted's right, but for fun, take what you need from:
    <installation drive>:\Program Files\Business Objects\Tomcat\webapps\businessobjects\enterprise115\desktoplaunch\WEB-INF\lib
    and de-reference what's not needed when your project's done, but be careful.
    I've actually done some standalone Swing-based webi report renderers using https://xhtmlrenderer.dev.java.net/ + docHTMLView.getStringpart + TagSoup

  • CProjects - Set-up field control - Usage of conditions

    Hello
    In cProjects, in set-up field control it is possible to adjust behavior (display, updatable, mandatory, u2026) field by field.
    My questions are:
    - Where to find the complete list of conditions available?
    - Is any condition is usable everywhere, for example C001 Object is released on a DAG Document (means the object link to this document is released)?
    - Is there a condition with a meaning like u201CThe object is in creationu201D (to have for example a phase description not updatable after creation)?
    - How to create its own conditions?
    Thanks for your help.
    Rémy
    Here you can find a list of conditions for the main objects.
    CTO (Checklist)      C001 Object is released
    ITO (Checklist Item)      C001 Object is released
    MTG (Project Participant)      C001 Object is released
    PPO (Phase)      C001 Object is released
    TTO (Task)      C001 Object is released
    MTG (Project Participant)      C002 CATS is active
    TTO (Task)      C002 CATS is active
    TTO (Task)      C004 Confirmation for task
    MTG (Project Participant)      C005 Role start and finish are specified
    ITO (Checklist Item)      C006 Object has a superior phase
    TTO (Task)      C006 Object has a superior phase
    TTO (Task)      C007 Phase without approval
    TTO (Task)      C008 Appr. is in process, granted, rejected
    CTO (Checklist)      C009 Ind. 'Changeability' to 'Cannot Be Chgd'
    ITO (Checklist Item)      C009 Ind. 'Changeability' to 'Cannot Be Chgd'
    CTO (Checklist)      C010 Ind.'Changeability' to 'Partlly Chngble'
    ITO (Checklist Item)      C010 Ind.'Changeability' to 'Partlly Chngble'
    PPO (Phase)      C011 Project Type 'Initiative'
    PPO (Phase)      C015 Constraint: As soon as possible
    TTO (Task)      C015 Constraint: As soon as possible
    ITO (Checklist Item)      C016 Constraint: As late as possible
    PPO (Phase)      C016 Constraint: As late as possible
    TTO (Task)      C016 Constraint: As late as possible
    ITO (Checklist Item)      C017 Constraint (Finish Date): None
    PPO (Phase)      C017 Constraint (Finish Date): None
    TTO (Task)      C017 Constraint (Finish Date): None
    TTO (Task)      C018 Task is a summary task
    TTO (Task)      C019 'Remaining Work Man.'indicator is active
    TTO (Task)      C020 Object is part of a project version
    ITO (Checklist Item)      C030 Access to Forecasted Dates
    PPO (Phase)      C030 Access to Forecasted Dates
    TTO (Task)      C030 Access to Forecasted Dates
    OAG (Object Link)      C100 Object has not been specified yet
    RAG (Checklist Reference)      C200 Checklist reference was created
    ATO (Approval)      C300 Approval has the status: Created
    EAG (Project Element Link to Role)      C400 Status: Staffing in Process/Complete
    MTG (Project Participant)      C500 Status: Staffing in Process/Complete
    MTG (Project Participant)      C501 Confirmation for project role
    BAG (Link to Business Partner)      C502 Distribution is active
    MTG (Project Participant)      C502 Distribution is active
    MTG (Project Participant)      C503 Status: Staffing in Process
    MTG (Project Participant)      C504 Cost/revenue rate is initial
    TTO (Task)      C504 Cost/revenue rate is initial
    MTG (Project Participant)      C505 Org. Unit (Staff. Manager) is changeable
    MTG (Project Participant)      C506 Org. Unit (Cand. Manager) is changeable
    MTG (Project Participant)      C507 Staffing Manager is changeable
    MTG (Project Participant)      C508 Candidate Manager is changeable
    SAO (Individual Approval)      C600 Approval allows decision maker change
    DAG (Document)      C700 cProjects file is checked out
    DAG (Document)      C701 Plug-in for documents is used
    DAG (Document)      C702 Document has status 'Not in Process'
    DAG (Document)      C703 Document is changeable
    DAG (Document)      C704 Link to document template
    DAG (Document)      C705 Document in projekt-/checklist template
    DAG (Document)      C706 cProj. file is checked by current user

    Hi Matthias
    I am trying to setup field control to make a bespoke field in a bespoke tab toggle between READ only and Editable. 
    I have gone through number of posts and the SAP note you mentioned. I have setup the entire configuration required and it is still not working.
    What confuses me is that, to setup a field control dynamically, is it all done via configuration?. Is some coding still required in the VIEW methods?. I am setting up a debug breakpoint in the class method that is created for the condition I created, but the program is not stopping there so I think the condition method is not being called.
    Please can you give some more details.
    Thanks
    Raj

  • XI usage in cProjects 4.0

    I am trying to integrate the shopping cart in cProjects 4.0 with SRM via XI.
    Can you let me know which communications method is used?
    If message type is used, what is the IDOC name?
    Is RFC or BAPI used for this message flowing?
    Thanks
    YK

    Refer Note 960237 for the setting involved for SRM Integration
    Regards
    Sreenivas

  • CProjects Usage in PS

    Hi everybody,
    Our client [in SMB market range] has a new product development project which involves stringent project management & quality control plans and uses Advance Product Quality Planning procedure [APQP].
    I found that for their process of manufacturing, quality checks and entire project management scenario cProjects has to be used for effective project management. I believe cProjects is a different package [correct me if am wrong] of SAP. But our client has not gone for cProjects package.
    Can u please suggest some ways to build the APQP templates, Control plan, quality checklist document uploading etc...and linking the same in PS without using cProjects. I also welcome any other suggestions from you experts.
    Thanks & Regs,
    Kabir

    Hi,
    There are certain advantages and limitations of cProject suite over PS. You need to consider all these  while selecting the appropriate one.
    Some of the advantages which cProject are- it is web based, cProjects supports flexible project management and team collaboration, cProjects provides project structuring capabilities etc.
    But when it comes to the execution part of the project, it lacks the integration with logistics and financials.
    There is a std. road map given by SAP. Please go through it and then take a call
    http://www.sap.com/solutions/businessmaps/3C4E3EE8F4DB49C3BB9015688F5D96B1/index.epx
    Regards

  • Setting up Free Goods in CRM 5.0 Standalone

    Dear Friends,
    We are trying to set up Free Goods in our CRM 5.0 standalone environment. What we want to realize is that, if customer buys product A, product B will be added to the order automatically as free of charge. So far we have no idea how to get this set up in the system.
    In R/3 you can specify 'requirement' in each condition type. In the 'requirement' section you can add a small ABAP program that might realize the functionality. However, it doesn't seem to be the case in CRM.
    Please advise. Many thanks!
    Leon

    Hi,
    While defining the Condition types in IMG system will ask the Application and Usage,select the applicatioin CRM, Usage is Free goods.
    CRM Standalone condition records maintain from the  Transaction code
    /SAPCND/GCM - Condition Maintenance, after entering this code give the Application CRM than select your Free goods condition type maintain the values.
    Relationship maintains in the condition records only, Once you select the Free godds conditin type than all required coloumns will pop up enter your product and Qty with the offered free goods product.
    Regards
    Naren..

  • How to find discoverer log files and CPU usage

    Hi,
    i have a report running very slow in prod. but runs fast in dev and qa.
    **Where/how can i find the Log files generated after the report runs?**
    **Also i wanted to see how i can find the CPU Usage**
    i searched online for CPU usage... and found this --> ""For the CPU usage of these servlets, please navigate to the Discoverer application page from the OC4J_BI_Forms home page in the EM standalone console.""
    can anyone tell me how to navigate to OC4J_BI_Forms home page in the EM standalone console?
    Thanks!
    gayatri

    Hi gayathri,
    This link would help i suppose
    http://docs.huihoo.com/oracle/docs/B14099_19/bi.1012/b13918/maint.htm#i1025807
    and http://docs.huihoo.com/oracle/docs/B14099_19/bi.1012/b13918/tshoot.htm#CHDHFJDE
    Be careful,if not done without prior knowledge it would mess up.So mostly this job should be done by DBA of your company.They can log in as sysadministrator to get to "Enterprise Manager" and do as per the link
    Best Wishes,
    Kranthi.

  • Multiple free goods for one item in standalone CRM

    Hi Gurus,
    We are trying to implement multiple free goods for one item in standalone CRM.
    As per SAP.help.com, it says that we can configure multiple free goods scenario in standalone CRM system.
    We tried to set up this in our system.  Basically we want to implement the scenario, where a user wants to  purchase item A, he should get a prompt for choosing between two free goods  B and C.
    We did the relevant IMG settings required for Free goods at  IMG ->CRM -> Basic Functions -> Free Goods.-> Set up Free Goods
    We also did the relevant item category determination where we have made an entry with
    Item Usage = " Free Goods" , Main item cat. = "TAN' , Item Category = "TANN".
    Now we went to create condition records in the path  "SAP Menu -> Master Data -> Prices and Conditions -> SAPCND/GCM - Maintain condition"
    We chose Application ="PRT", MaintenanceGrp="PRT_FGOODS", Maintenance context ="GCM"
    Then while creating conditon records , when I try to create two condition records where the Main Product is same but free good product is different, the system is not allowing to save these two condition records.
    it is giving error "Overlapping validity periods for two condition records".
    Please advice, if i am missing something. Thanks in advance for your help.
    thanks,
    Randhir
    Edited by: Randhir Soni on Feb 8, 2010 8:12 AM

    Constraints in free goods in R3 taken from SAP library
    Free goods can only be supported on a 1:1 ratio. This means that an order item can lead to a free goods item. Agreements in the following form are not supported: u2018With material 1, material 2 and material 3 are free of chargeu2018 or u2018If material 1 and material 2 are ordered at the same time, then material 3 is free of chargeu2018.
    Free goods are not supported in combinations with material structures (for example, product selection, BOM, variants with BOM explosion).
    Free goods are only supported for sales orders with document category C (for example, not quotations).
    Free goods are not supported for deliveries without reference to a sales order.
    Free goods cannot be used in make-to-order production, third-party order processing and scheduling agreements.
    If you defined a free goods for variants in a generic article (only SAP Retail), you can only process the variants in the purchase order and goods receipt individually (as single articles). In other words, you cannot process them using the generic article matrix.
    This answers your qn Not possible in R3
    If you are on Retail scenario this is possible thro bonus buy schemes
    But a lot of customizations needs to be done and you need a retail server to do that
    Regards
    Raja

  • Differences between Oracle XE and standalone HTMLDB

    Hello,
    I'm developing appllication on Oracle SE with standalone HTML DB installed - that is version 2.0.0.00.49 - while there is version 2.1.0.00.39 in Oracle Express Edition. How can I synchronize (probably upgrade the older one) versions of HTMLDB/Application Express?
    And one more general question - where can I found differences between HTMLDB usage on Oracle Express Edition and other Oracle server editions (like Apache vs. no Apache)

    Ivok - To answer your first question, each of those two versions is the latest version to run on Oracle SE/EE and Express editions, respectively. Version 2.0 does not run on Oracle Express Edition and Version 2.1 runs only on Oracle Express Edition. Applications developed in either version of Application Express can be installed and run in the other version.
    Scott

Maybe you are looking for

  • Manual accrual in Rebate

    Hi thr, I am trying to create a final settlement for a rebate and when I execute final asettlement, it takes me to a screen where it shows what amount was accrued aganist each condition etc. When I try to increase the amount, it lets me do it and the

  • Nokia N80

    When will release the new firmware for Nokia N80 for EMEA users??

  • My printer prints all my photos red. Everything else prints fine. It printed photos fine before.

    Does anyone know why this would happen?

  • CC manager fails.

    CC manager does not show apps. Download error. Reload applications fails. I followed the contact customer support link, but don't see anything that directly helps. Any suggestions? (Yes, I'm paid up.)

  • Decode or better function

    Hi I need to do select with the following logic if end_date > sysdate or null - need to display active if end_date <= sysdate - not active Thanks anna