Error While creating CA project. Reason: Null

Hi Experts,
I am new to CAF. While trying to create a new CAF project in NWDS CE 7.2  I am getting error:"Error While creating CA project. Reason: Null". This happens once I click finish in Project Bundle window.
Can anyone please help me on this?
Regards,
Unni

Was a Plugin issue.
Regards,
Unni

Similar Messages

  • Error While creating new project

    Hi,
       I am getting the following error while creating and saving  the new Project in the customized project types. If I create any project in the standard project type 'Development Projects' , I could save the project(No error). I checked all the customisation. But I could not understand the problem.
    Error type:
    Error when processing your request
    What has happened?
    The URL http://xxxxxxx.com:8000/sap/bc/webdynpro/sap/cprojects/ was not called due to an error.
    Note
    The following error text was processed in the system QAR :
    Access via 'NULL' object reference not possible.
    The error occurred on the application server jkeccdq_QAR_01 and in the work process 3 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    What can I do?
    If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system QAR in transaction ST22.
    If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server jkeccdq_QAR_01 in transaction SM21.
    If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 3 in transaction ST11 on the application server jkeccdq_QAR_01 . In some situations, you may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http -c: 200 -u: -l: E -s: QAR -i: j_QAR_01 -w: 3 -d: 20080630 -t: 150706 -v: RABAX_STATE -e: OBJECTS_OBJREF_NOT_ASSIGNED
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    Pls Help me to solve this issue.
      Thanking you
    Regards,
    N.Ramesh.
    +91-9958755695

    Have you checked if you assigned in the project type the project category?
    There is a simple check to see if there is something wrong on the customizing of the project types:
    Copy a standard project type and change only the project type ID. Check if you can create a project from this new project type
    Hope this helps
    Neil

  • Error while creating new projects using api

    Hello,
    I am having error while creating projects using standard api, PA_PROJECT_PUB.CREATE_PROJECTS. The error I am having is as follow.
    Source template ID is invalid.
    ===
    My code is as follow:
    SET SERVEROUTPUT ON SIZE 1000000
    SET VERIFY OFF
    define no=&amg_number
    DECLARE
    -- Variables used to initialize the session
    l_user_id NUMBER;
    l_responsibility_id NUMBER;
    cursor get_key_members is
    select person_id, project_role_type, rownum
    from pa_project_players
    where project_id = 1;
    -- Counter variables
    a NUMBER := 0;
    m NUMBER := 0;
    -- Variables needed for API standard parameters
    l_commit VARCHAR2(1) := 'F';
    l_init_msg_list VARCHAR2(1) := 'T';
    l_api_version_number NUMBER :=1.0;
    l_return_status VARCHAR2(1);
    l_msg_count NUMBER;
    l_msg_data VARCHAR2(2000);
    -- Variables used specifically in error message retrieval
    l_encoded VARCHAR2(1) := 'F';
    l_data VARCHAR2(2000);
    l_msg_index NUMBER;
    l_msg_index_out NUMBER;
    -- Variables needed for Oracle Project specific parameters
    -- Input variables
    l_pm_product_code VARCHAR2(30);
    l_project_in pa_project_pub.project_in_rec_type;
    l_key_members pa_project_pub.project_role_tbl_type;
    l_class_categories pa_project_pub.class_category_tbl_type;
    l_tasks_in pa_project_pub.task_in_tbl_type;
    -- Record variables for loading table variables above
    l_key_member_rec pa_project_pub.project_role_rec_type;
    l_class_category_rec pa_project_pub.class_category_rec_type;
    l_task_rec pa_project_pub.task_in_rec_type;
    -- Output variables
    l_workflow_started VARCHAR2(100);
    l_project_out pa_project_pub.project_out_rec_type;
    l_tasks_out pa_project_pub.task_out_tbl_type;
    -- Exception to call messag handlers if API returns an error.
    API_ERROR EXCEPTION;
    BEGIN
    -- Initialize the session with my user id and Projects, Vision Serves (USA0
    -- responsibility:
    select user_id into l_user_id
    from fnd_user
    where user_name = 'SSHAH';
    select responsibility_id into l_responsibility_id
    from fnd_responsibility_tl
    where responsibility_name = 'Projects Implementation Superuser';
    pa_interface_utils_pub.set_global_info(
    p_api_version_number => l_api_version_number,
    p_responsibility_id => l_responsibility_id,
    p_user_id => l_user_id,
    p_msg_count => l_msg_count,
    p_msg_data => l_msg_data,
    p_return_status => l_return_status);
    if l_return_status != 'S' then
    raise API_ERROR;
    end if;
    -- Provide values for input variables
    -- L_PM_PRODUCT_CODE: These are stored in pa_lookups and can be defined
    -- by the user. In this case we select a pre-defined one.
    select lookup_code into l_pm_product_code
    from pa_lookups
    where lookup_type = 'PM_PRODUCT_CODE'
    and meaning = 'Conversion';
    -- L_PROJECT_IN: We have to provide values for all required elements
    -- of this record (see p 5-13, 5-14 for the definition of the record).
    -- Customers will normally select this information from some external
    -- source
    l_project_in.pm_project_reference := 'AGL-AMG Project &no';
    l_project_in.project_name := 'AGL-AMG Project &no';
    l_project_in.created_from_project_id := 1;
    l_project_in.carrying_out_organization_id := 2864; /*Cons. West*/
    l_project_in.project_status_code := 'UNAPPROVED';
    l_project_in.start_date := '01-JAN-11';
    l_project_in.completion_date := '31-DEC-11';
    l_project_in.description := 'Trying Hard';
    l_project_in.project_relationship_code := 'Primary';
    -- L_KEY_MEMBERS: To load the key member table we load individual
    -- key member records and assign them to the key member table. In
    -- the example below I am selecting all of the key member setup
    -- from an existing project with 4 key members ('EE-Proj-01'):
    for km in get_key_members loop
    -- Get the next record and load into key members record:
    l_key_member_rec.person_id := km.person_id;
    l_key_member_rec.project_role_type := km.project_role_type;
    -- Assign this record to the table (array)
    l_key_members(km.rownum) := l_key_member_rec;
    end loop;
    -- L_CLASS_CATEGORIES: commented out below should fix the error we get
    -- because the template does not have an assigment for the mandatory class
    -- 'BAS Test'
    l_class_category_rec.class_category := 'Product';
    l_class_category_rec.class_code := 'Non-classified';
    -- Assign the record to the table (array)
    l_class_categories(1) := l_class_category_rec;
    -- L_TASKS_IN: We will load in a single task and a subtask providing only
    -- the basic fields (see pp. 5-16,5-17,5-18 for the definition of
    -- the task record)
    l_task_rec.pm_task_reference := '1';
    l_task_rec.pa_task_number := '1';
    l_task_rec.task_name := 'Construction';
    l_task_rec.pm_parent_task_reference := '' ;
    l_task_rec.task_description := 'Plant function';
    -- Assign the top task to the table.
    l_taskS_in(1) := l_task_rec;
    -- Assign values for the sub task
    l_task_rec.pm_task_reference := '1.1';
    l_task_rec.pa_task_number := '1.1';
    l_task_rec.task_name := 'Brick laying';
    l_task_rec.pm_parent_task_reference := '1' ;
    l_task_rec.task_description := 'Plant building';
    -- Assign the subtask to the task table.
    l_tasks_in(2) := l_task_rec;
    -- All inputs are assigned, so call the API:
    pa_project_pub.create_project
    (p_api_version_number => l_api_version_number,
    p_commit => l_commit,
    p_init_msg_list => l_init_msg_list,
    p_msg_count => l_msg_count,
    p_msg_data => l_msg_data,
    p_return_status => l_return_status,
    p_workflow_started => l_workflow_started,
    p_pm_product_code => l_pm_product_code,
    p_project_in => l_project_in,
    p_project_out => l_project_out,
    p_key_members => l_key_members,
    p_class_categories => l_class_categories,
    p_tasks_in => l_tasks_in,
    p_tasks_out => l_tasks_out);
    -- Check the return status, if it is not success, then raise message handling
    -- exception.
    IF l_return_status != 'S' THEN
    dbms_output.put_line('Msg_count: '||to_char(l_msg_count));
    dbms_output.put_line('Error: ret status: '||l_return_status);
    RAISE API_ERROR;
    END IF;
    -- perform manual commit since p_commit was set to False.
    COMMIT;
    --HANDLE EXCEPTIONS
    EXCEPTION
    WHEN API_ERROR THEN
    FOR i IN 1..l_msg_count LOOP
    pa_interface_utils_pub.get_messages(
    p_msg_count => l_msg_count,
    p_encoded => l_encoded,
    p_msg_index => i,
    p_msg_data => l_msg_data,
    p_data => l_data,
    p_msg_index_out => l_msg_index_out);
    dbms_output.put_line('ERROR: '||to_char(l_msg_index_out)||': '||l_data);
    END LOOP;
    rollback;
    WHEN OTHERS THEN
    dbms_output.put_line('Error: '||sqlerrm);
    FOR i IN 1..l_msg_count LOOP
    pa_interface_utils_pub.get_messages(
    p_msg_count => l_msg_count,
    p_encoded => l_encoded,
    p_msg_index => i,
    p_msg_data => l_msg_data,
    p_data => l_data,
    p_msg_index_out => l_msg_index_out);
    dbms_output.put_line('ERROR: '||to_char(l_msg_index_out)||': '||l_data);
    END LOOP;
    rollback;
    END;
    ===
    Msg_count: 1
    Error: ret status: E
    ERROR: 1: Project: 'AGL-AMG Project 1123'
    Source template ID is invalid.
    PL/SQL procedure successfully completed.

    I was using a custom Application, which had a id other then 275 (which belongs to Oracle projects)

  • Error while creating new project number

    Hi Folks,
    I am getting the below error while creating a new project number.
    "Oracle Projects failed to generate unique project number. Please contact your system administrator to setup the next number field for automatic project numbering in implementation options window.
    Can any expert help me out in this issue?
    Thanks in advance.
    SPR

    Hi,
    What u can do is to navigate to setup>>system>> implemention options and project TAB look for the next project number sequence and just increase the next number by 1.
    This problem may have come coz there is some project which already have that project number which is next in sequence.
    Thanks
    -Shivdeep Singh

  • Error while Creating Charm Project

    Hi
    I am configuring CHARM Sol 7.1 SP11.
    TMS landscape is as follows
    DEV100-->QAS200-->PRD300 (QAS & PRD as Virtual systems). we have created virtual systems and flagged as a virtual system in smsy.
    I have created the project in SOLAR_PROJECT_ADMIN and assigned the  logical components.
    While performing the CHECK under Change Management tab in Check TMS domains "RFC destination Cannot be determined"
    Any pointers on how to resolve this?
    Regard

    Before you start with activating CHARM it is important that you create a transport link from the Solution Manager to the ABAP managed system domain controller. Once this is done, your Solution Manager is able to retrieve the TMS information from the transport domain controller.
    To create a trasport link, open transaction STMS on the Solution Manager and link with the ABAP target system via a trusted RFC.
    You will then not receive the error messages in TMS anymore.
    I hope this helps

  • Error while creating a project in NWDI

    Hi All,
    I created a Project from the DC for ESS. But im getting the following errors:
    falied to resolve reference"sap.com/tc/col/api" for DC "sap.com_SAP_ESS_1:sap.com/ess/lea":Cannot find compartment of used component:sap.com/tc/col/api
    failed to resolve reference "sap.com/tc/cmi" for DC "sap.com_SAP_ESS_1:sap.com/ess/lea":Cannot find compartment of used component: sap.com:tc/cmi
    failed to resolve reference "sap.com/tc/ddic/ddicruntime" for DC "sap.com_SAP_ESS_1:sap.com/ess/lea":Cannot find compartment of used component: sap.com:tc/ddic/ddicruntime
    failed to resolve reference "sap.com/tc/wd/webdynpro" for DC "sap.com_SAP_ESS_1:sap.com/ess/lea":Cannot find compartment of used component: sap.com:tc/wd/webdynpro
    Can anyone tell me why iam getting these errors?
    Please suggest me what to do to avoid these errors.
    Regards,
    Padmalatha.K

    Hi
    Thank you for the response.
    As you suggested, I checked for the required components :
    I could find PCUI_GP, but could not find the component SAP_BUILDT.
    How do i import this component into the track?
    I tried the option of Rebuild, Repair and Reopen NWDS - But this did not resolve the errors
    I tried to create projects for other DCs - No errors for other DCs.
    Please suggest.
    Regards,
    Padmalatha.K

  • Error while creating a project from DTR.

    When i am creating a dc locally from DTR,
    It is giving an error message as follows;-
    generic VFS error
    com.sap.tc.devconf.SyncException: Unable to sync file or folder.: Sync request not
    at com.sap.tc.devconf.impl.DTRClientErrorMapper.toSyncException(DTRClientErrorMapper.java:73)
    at com.sap.tc.devconf.impl.VFSHandler.syncLocalPath(VFSHandler.java:359)
    at com.sap.tc.devconf.impl.DCProxy.syncSources(DCProxy.java:579)
    at com.sap.tc.devconf.impl.DCProxy.syncAsSources(DCProxy.java:461)
    at com.sap.tc.devconf.impl.DevelopmentConfiguration.syncAsSources(DevelopmentConfiguration.java:4895) at com.sap.tc.devconf.impl.DevelopmentComponentNode.syncAsSources(DevelopmentComponentNode.java:903) at com.sap.ide.eclipse.component.provider.actions.dc.DcCreateProjectAction$1.syncSelectedDCs(DcCreateProjectAction.java:441) at com.sap.ide.eclipse.component.provider.actions.dc.DcCreateProjectAction$1.execute(DcCreateProjectAction.java:235) at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run(WorkspaceModifyOperation.java:71) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1595)
    at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:85)
    at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:101) Caused by: com.tssap.dtr.client.lib.vfs.VfsException: Sync request not
    at com.tssap.dtr.client.lib.vfs.impl.SyncRemoveFeatureMget.syncMountedFolder(SyncRemoveFeatureMget.java:213)
         at com.tssap.dtr.client.lib.vfs.impl.SyncRemoveFeature.sync(SyncRemoveFeature.java:530)
         at com.tssap.dtr.client.lib.vfs.impl.VfsFolder.sync(VfsFolder.java:1290)
         at com.sap.tc.devconf.impl.VFSHandler.syncLocalPath(VFSHandler.java:349)
         ... 10 more
    Caused by:
    [VFS version: 6.40 630_VAL_REL 0010 (2005-05-08 21:54:38 CEST)] com.tssap.dtr.client.lib.vfs.VfsException: Sync request not
        at com.tssap.dtr.client.lib.vfs.impl.SyncRemoveFeatureMget.syncMountedFolder(SyncRemoveFeatureMget.java:213)
        at com.tssap.dtr.client.lib.vfs.impl.SyncRemoveFeature.sync(SyncRemoveFeature.java:530)
        at com.tssap.dtr.client.lib.vfs.impl.VfsFolder.sync(VfsFolder.java:1290)
        at com.sap.tc.devconf.impl.VFSHandler.syncLocalPath(VFSHandler.java:349)
        at com.sap.tc.devconf.impl.DCProxy.syncSources(DCProxy.java:579)
        at com.sap.tc.devconf.impl.DCProxy.syncAsSources(DCProxy.java:461)
        at com.sap.tc.devconf.impl.DevelopmentConfiguration.syncAsSources(DevelopmentConfiguration.java:4895)
        at com.sap.tc.devconf.impl.DevelopmentComponentNode.syncAsSources(DevelopmentComponentNode.java:903)
        at com.sap.ide.eclipse.component.provider.actions.dc.DcCreateProjectAction$1.syncSelectedDCs(DcCreateProjectAction.java:441)
        at com.sap.ide.eclipse.component.provider.actions.dc.DcCreateProjectAction$1.execute(DcCreateProjectAction.java:235)
        at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run(WorkspaceModifyOperation.java:71)
        at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1595)
        at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:85)
        at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:101)
    what will be the reason. how to get rid of this?
    helpful answer will be rewarded.Its urgent.

    Hi,
       You can try the following:
    1. Give the fully qualified domain name of the DTR server host in NWDS Preferences->Development Configuration.
    2. Check if your WAS and JDI are on a higher SP level. If yes then use the corresponding NWDS.
    Regards,
    Satyajit.

  • Error while creating IMG project in solar_project_admin for the CHARM maint

    Dear Experts,
       I  am integrating the r3 system to the charm process.
    I have created the maintainenace project in SOLAR_PROJECT_ADMIN
                                               gave tha logiccal component(TMS is configured ( DEV--> QA --> PRD) .
    Now when i create teh img project for this it is throwing the error as below.
    *S:No authorization to:000 on as a trusted system (Trusted RC=1).
    Message no. No authorization to000
    \I have all the roles to my user id mapped
    Trusted rfc's
    S_RFC
    S_RFCacl
    etc......
    What might be the error................??
    my need to be create in the clients 000 for which i am omplementing the charm..........??
    What are the roles should be given in 000 client.
    Regards,
    Umesh
    jsumesh85  at  gmail

    Hi Umesh,
    Please confirm your problem by as issue with the trusted system, check the link below
    [Trouble trusted system|http://help.sap.com/saphelp_nw04/helpdata/en/8b/0010519daef443ab06d38d7ade26f4/content.htm]
    No authorization to log on as a trusted system (trusted RC = <0 1 2 3>).                                                                               
    Here, the trusted return codes ( = 0, 1, 2 or 3 ) have the following meanings:                                                                               
    1   Calling system is not a trusted system, or security                         
         ID for the system is invalid.                             
         Solution: Create (again) the trusted system (see above).
    as of in trusted system, you supposed to get the same user in both the systemm witht the respected access like S_RFCACL.
    complete explanation of trusted RFCs is in note 128447.Please follow the note
    Thanks
    Jansi

  • Error while creating IMG Project in Solman

    Hi Folks,
    As i'm in the process of implementing Charm process in solution manager. After importing the logical components into my project ( implemention / Maintenance ) .when i'm creating the IMG project for Dev system in project administration i'm getting following error ...
    S:NUMBER_GET_NEXT AEND:000 G INTERVAL_MISSING
    Message no. NUMBER_GET_NEXT AEND000
    But where as i'm able to create it for others like Quality and production systems.
    Please let me know if any one can thorough some lights on it.
    Praveen

    Hi Umesh,
    Please confirm your problem by as issue with the trusted system, check the link below
    [Trouble trusted system|http://help.sap.com/saphelp_nw04/helpdata/en/8b/0010519daef443ab06d38d7ade26f4/content.htm]
    No authorization to log on as a trusted system (trusted RC = <0 1 2 3>).                                                                               
    Here, the trusted return codes ( = 0, 1, 2 or 3 ) have the following meanings:                                                                               
    1   Calling system is not a trusted system, or security                         
         ID for the system is invalid.                             
         Solution: Create (again) the trusted system (see above).
    as of in trusted system, you supposed to get the same user in both the systemm witht the respected access like S_RFCACL.
    complete explanation of trusted RFCs is in note 128447.Please follow the note
    Thanks
    Jansi

  • BPEL PM Designer: Error while create new Project

    Hello.
    I have a problem with BPEL PM Designer.
    I installed eclipse 3.2, BPEl PM Designer and BPEL Process Manager 2.2.
    When I create a new project a skript-error occurs and I can't see the visual designer.
    The Error:
    Script error in the page
    Line 131
    char 5
    error object required
    code 0
    url :file://D:\Programme\eclipse-SDK-3.2\plugins\com.oracle.bpel.designer_0.9.13\html\bpel.html
    Can anybody help me to solve this problem?
    Thank you for any answer

    Hello Clemens,
    thanks for your answer. I installed msxml 6.0 Parser und I tried to install the BPEL Designer in eclips 3.0, 3.0.1, 3.0.2 and 3.1. But I don't see the BPEL designer and still get the same error-message:
    Script error in the page
    Line 131
    char 5
    error object required
    code 0
    url:file://D:\Programme\eclipse-SDK-3.2\plugins\com.oracle.bpel.designer_0.9.13\html\bpel.html
    In the console window at the bottom of the designer window I get 2 error-messages:
    1. bpelz.html trapped at 1331: object expected - plugin: com.oracle.bpel.designer
    2. Part already exists in page layout: org.eclipse.ui.cheatsheet.views.CheatSheetView.
    I installed Internet Explorer 6.0, Java 2 SDK Se 1.4.2_08, Java 2 Runtime Environment SE 1.4.2_08 and Windows XP Professional as it is described in the document "Oracle BPEL Process Manager 2.0 - Quick Start Tutorial".
    What configuration (sdk, msxml...) do you have and is there an special
    installation-order I have to attend? Is it better to use MSXML 4.0 SP2, what I can download from microsoft.com?
    regards ramona
    Message was edited by:
    user518182

  • Getting Error while creating Project through API:PA_PROJECT_PUB.CREATE_PROJ

    Hi Gurus,
    I'm getting an error while creating a New project.
    My code looks like this:
    APPS.PA_PROJECT_PUB.CREATE_PROJECT
    (p_api_version_number => l_object_version_number --IN Parameter
    ,p_commit => l_commit --IN Parameter
    ,p_init_msg_list => l_init_msg_list --IN Parameter
    ,p_msg_count => l_msg_count --OUT Parameter
    ,p_msg_data => l_msg_data --OUT Parameter
    ,p_return_status => l_return_status --OUT Parameter
    ,p_workflow_started => l_workflow_started --OUT Parameter
    ,p_pm_product_code => g_pm_product_code --IN Parameter
    ,p_op_validate_flag => l_op_validate_flag --IN Parameter
    ,p_project_in => g_project_in --IN Parameter
    ,p_project_out => g_project_out --OUT Parameter
    ,p_tasks_in => g_task_in --IN Parameter
    ,p_tasks_out => g_task_out --OUT Parameter
    The out put params are: p_msg_count => 1
    p_return_status => E
    p_workflow_started => N
    g_project_out.pa_project_id => 170000000000000000000
    g_project_out.pa_project_number => ^
    g_task_out_rec.pa_task_id => 170000000000000000000
    End process record p_proj_insert => 1
    Resetting the task count variable
    when I checked the API code I found this:
    PA_INTERFACE_UTILS_PUB.G_PROJECt_ID := null; --bug 2471668 ( not in the project context )
    PA_PM_FUNCTION_SECURITY_PUB.check_function_security
    (p_api_version_number => p_api_version_number,
    p_responsibility_id => l_resp_id,
    p_function_name => 'PA_PM_CREATE_PROJECT',
    p_msg_count => l_msg_count,
    p_msg_data => l_msg_data,
    p_return_status => l_return_status,
    p_function_allowed => l_function_allowed
    . I think I am getting the error because of this.
    Now, question.
    Do I need to run the Create Project from a specific Responsibility?
    because when I ran the underlined query, I fpound the final status as 'N'.
    I'm a HR guy and PA is a new world for me. Any help will be appreciated.
    Thanks!!
    Viky

    You need to find any responsibility and userid that lets you create a project using the screen.
    And then in your code, you need to set your context to that resp/userid.
    Hope this helps
    Sandeep Gandhi

  • Error while creating project through import.wdl

    Hi
    We are having issues creating project using the import.wdl.
    We are able to create content administration and merchandising projects though.
    We are getting the following error while creating a programatic import project through import.wdl
    [12/8/13 23:26:27:259 CST] 00000021 SystemErr     R atg.workflow.WorkflowException: The inner project was not created. Check that your project workflow has been initialized by the workflow engine.
    [12/8/13 23:26:27:260 CST] 00000021 SystemErr     R  at atg.epub.project.ProcessHomeMethods.initializeProcess(ProcessHomeMethods.java:450)
    [12/8/13 23:26:27:260 CST] 00000021 SystemErr     R  at atg.epub.project._ProcessHome_Impl.initializeProcess(_ProcessHome_Impl.java:53)
    [12/8/13 23:26:27:260 CST] 00000021 SystemErr     R  at atg.epub.project._ProcessHome_ReposImpl.initializeProcess(_ProcessHome_ReposImpl.java:3)
    [12/8/13 23:26:27:260 CST] 00000021 SystemErr     R  at atg.epub.servlet.CreateProcessFormHandler.handleCreateProcess(CreateProcessFormHandler.java:380)
    We have checked all the workflow manager settings. The workflowProcessManager.xml is properly pointing to the system name and drp port.
    We had delete entries from
    epub_wf_server_id
    epub_coll_workflow
    epub_workflow_info
    dss_server_id
    dsi_server_id
    upon enabling the logdebugs of WorkFlowProcesManager, we are seeing the following debugs.
    [12/8/13 23:31:08:101 CST] 00000020 SystemOut     O /atg/epub/workflow/process/WorkflowProcessManager received message on port IndividualEvents message: ObjectMessage()
    [12/8/13 23:31:08:101 CST] 00000020 SystemOut     O /atg/epub/workflow/process/WorkflowProcessManager [message]: received an individual event message StartWorkflowMessage[messageId=96000003subjectId=prc272003,subjectType=process,processName=/Commerce/import.wdl,segmentName=main,user=user : admin null] of type atg.workflow.StartWorkflow
    [12/8/13 23:31:08:101 CST] 00000020 SystemOut     O /atg/epub/workflow/process/WorkflowProcessManager [message]: created individual execution context ProcessExecutionContextImpl[individual,subject=process:prc272003,messageType=atg.workflow.StartWorkflow,message=StartWorkflowMessage[messageId=96000003subjectId=prc272003,subjectType=process,processName=/Commerce/import.wdl,segmentName=main,user=user : admin null],sessionId=Tw-Yr5CQqqkADS3q8MadASz,parentSessionId=Tw-Yr5CQqqkADS3q8MadASz,request=atg.servlet.DynamoHttpServletRequest@1009990707,response=atg.servlet.DynamoHttpServletResponse@3c9e3c9e]
    [12/8/13 23:31:08:103 CST] 00000020 SystemOut     O /atg/epub/workflow/process/WorkflowProcessManager [message]: 0 individual instances found for subject process:prc272003
    [12/8/13 23:31:08:103 CST] 00000020 SystemOut     O /atg/epub/workflow/process/WorkflowProcessManager [message]: going through process segments registered for type atg.workflow.StartWorkflow for subject process:prc272003

    If you have a support contract with Orcale you can find out hoe to fix this error by checking out Knowledge Article 1038072.1 How to troubleshoot "atg.workflow.WorkflowException: The inner project was not created. Check that your project workflow has been initialized by the workflow engine."
    The article says you should:
    1.
    delete from epub_wf_server_id
    delete from epub_coll_workflow
    delete from epub_workflow_info
    restart server and retest
    2. If problem exists check that you have configured the Workflow Process Editor Server correctly.
    The problem is that probably the workflow has not been not been initialized correctly by the Workflow Editor Server.

  • Error while creating web dynpro project from DTR

    Hello,
    I am getting following error while creating Web Dynpro project from DTR,
    org.eclipse.jdt.core.JavaModelException: File /<track name><DC><package>/.classpath is read-only.
    Still project gets created but evenif I check out view , it does not allow me to edit it.
    Also I have checked in and activated some changes but active copy in DTR is not reflecting those changes.
    I tried Add subtree option in DTR perspective for folders in this project. Is it result of that?
    Please help me in this regard.
    Thank You
    Beena

    Hi Beena,
            .classpath file should not checked in to DTR(uncheck the Read only properties). It is local file it contains class path for local system.
             Generally in webdynpro project only src folder should be checked in DTR.
    Regards
    Suresh

  • An error occured while creating a project Visual Studio 2010 & CVI 2012

    While creating a project from VS2010, with CVI 2012 install. I get this error after attempt to convert or create a CVI project. Also the CVI dialog has no details.
    Solved!
    Go to Solution.

    I did installed Labwindows 3 weeks ago. I installed visual studio yesterday. I updated labwindows for Visual Studio supprt. I was tried to create anew project from Visual Studio using CVI app wizards. Both wizards end with same results
    Thanks for posting reply

  • Error while creating a new entity row for LoginPageEO.jbo.RowCreateExceptio

    hi all, i am new to OAF i have created a login page and trying to validate to a custom table which had two columns username and password, i am calling function from controller class which is in AM and from AM in turn i am calling function in VOimpl.java file where i am executing my query with whereClause, i am passing two parametere username and password to this function.
    if ((uname != null) && (!("".equals(uname.trim()))))
    whereClause.append(" UNAME = :");
    whereClause.append(bindCount++);
    parameters.addElement(uname);
    clauseCount++;
    if ((pass!= null) && (!("".equals(pass.trim()))))
    if (clauseCount > 0)
    whereClause.append(" AND ");
    whereClause.append(" PASSWORD = :");
    whereClause.append(bindCount++);
    parameters.addElement(pass);
    clauseCount++;
    setWhereClause(whereClause.toString());
    if (bindCount > 0)
    Object[] params = new Object[bindCount];
    // the copyInto() is 1.1.8 compliant which is required by ARU
    parameters.copyInto(params);
    setWhereClauseParams(params);
    //System.out.println(getQuery());
    executeQuery();
    //System.out.println(getRowCount())
    when i call this from login page i am getting
    Error - oracle.jbo.RowCreateException: JBO-25017: Error while creating a new entity row for LoginPageEO.
    Can any one help me out.

    If your requirement is not to update any DB Table then don't use an EO. I would suggest the following for your requirement of validating the username and password.
    - Create a VO that has the following query. Do not select any EO during the VO creation.
              SELECT 'x'
              FROM  <CUSTOM TABLE>
              WHERE <USERNAME COL> = :1
                  AND  <PASSWORD COL> = :2
            - Have the initQuery(..) Method in your VOImpl, that takes the username and password. Binds them to the VO and executes the query.
    - Have a method in your AM to take the username and password as parameters. Make a call to the above VO::initQuery(..)
    - In your controller's processFormRequest(..) call this AM Method upon the submit button action.
    This should work smoothly.
    The following is just for triaging the error that you have. The above steps, should help you achieve your requirement by itself, the below steps would not be required.
    Coming back to your issue. Any custom table should have the standard WHO Columns.
    - Modify the custom table to have these who columns.
    - In the EO Wizard, synchronize the EO to reflect the DB Structure.
    - Make sure the EO Attributes are marked updatable.
    Cause of your issue: Through you are not creating EO rows programatically, whenever a VO is based on an EO, upon execution of the VO query, EO's are automatically created, based on the number of rows returned by the VO Query. So internally its failing to created the EO Rows. On of the common reason would be that it creates the EO row, but cannot set the attributes from the VO, because the EO Attribute is readonly.
    Hope this clarifies.

Maybe you are looking for

  • OFM 11.1.2 installation issue on HP-UX 11.31

    Hello all. Been trying to install OFM 11.1.2 on HP-UX for a few hours, but I am facing a problem at the linking phase of the installation. It throws an exception which reads "Error invoking target 'frmweb_install_frmcmp_install frmcmpb_install frmctr

  • Reopened last closed window is greyed out

    Hi there, I recently bought my first Apple notebook - a 15 inch Macbook Pro running OS-X Mavericks. I am running Safari 7.0.2 and am new to Safari. I find that the "Reopened Last Closed Window" option is greyed out. I have searched online communities

  • CALL FUNCTION STARTING NEW TASK Debug

    Hi, How can you debug a function module which is called with an add on 'STARTING NEW TASK' ? Thank you.

  • Camera Does not open, Camera Does not open

    Suddenly My  i pad camera has stopped opening. When. i tap ,camera, The screen goes black

  • Where we authorized the assigne work permits

    Dear Experts, how i can authorized the assigned work permits? while creating the maintenance order i assigned the work permit and saved it , now order status was created status. i select the condition as if permit not authorized dont release the orde