Error in creating DTR Project

Hi All,
I am facing a problem in creating a project as suggested in the Step6 link below.
http://help.sap.com/saphelp_nw04/helpdata/en/cb/f4bc3d42f46c33e10000000a11405a/frameset.htm
While attempting to create a project, it is throwing an error saying..DESTINATION LOCATION ALREADY CONTAINS PROJECT NAMED:TAXEAR112. MOVE OR DELETE THIS PROJECT AND TRY AGAIN.
Please give me the needed pointers. I have tried deleting the folders created in my C Drive.
Thanks in advance.
Eureka.

hi,
i am not very sure about ur query..
however let me try.
If ur using JDI then when ever u create a DC then that corresponding name is being reserved at name server.
so u can try out with a different name or u have to delete that ctrated DC and following that u have to remove that namespace from the name server list
u can reach there from sld page -- Name reservation -- list of reserved name.
if u cant see ur previous DC's in DTR's list of DC's then u can try out only deleting from name server..
Hope this will solve ur problem
keep informing us..
Regads
Shobhan

Similar Messages

  • 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

  • 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 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 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 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 when create a project in newly Enabled features for Project Web App site collection in Project Server 2013

    I Enable the Project Web App site collection features in Project Server 2013 based on
    http://technet.microsoft.com/en-us/library/jj200305.aspx
    when i try to create a project i get error "GeneralUnhandledException"
    Yasser

    Also, after you provisioned PWA, are you able to get to the server settings? Did you do any configurations with PWA or using the defaults?
    Are you trying to add the project using the FarmAdmin account or did you add yourself as a resource with project manager role?
    Cheers!
    Michael Wharton, MVP, MBA, PMP, MCT, MCTS, MCSD, MCSE+I, MCDBA
    Website http://www.WhartonComputer.com
    Blog http://MyProjectExpert.com contains my field notes and SQL queries

  • 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

  • Showing GL, PA Period error when create new Project

    Hi All,
    I am facing an Issue while creating a Project through Template, though I have opened PA Periods and GL Periods of current, but still showing following error
    "Cannot copy a budget to a period which is out of the range of system defined periods (e.g. PA period or GL period)"
    Please help me in resolving this.
    Regads
    Madhu

    Hi
    I assume your template budget has periods within the range dates of the template project, between the start date and the completion date of the project.
    When you copy the template to create a new project, enter the start date of the new project as the start date of the template. If your project start date is different from the template start date, the system will try to more the end date, and may also try to move the budget periods, so those will keep the same lenght, but starting from the new project start date. In those case you might be creating budgets in other periods then the original template budget.
    Dina

  • J2EE configuration Server gives error when creating flex project

    Have eclipse integrated with Tomcat 6 and want to use blazeDS in it. Created Java Project and had setup for BlazeDS. Kept all lib files of blazeDS in it and other configuration things.. I have flex builder plugin in eclipse. Now want to create Flex Project in order to access java methods in it using remoteobject.
    File ->New Flex Project
    Clicked on Next. I am getting error here.
    Java Project location where blazeDS war files and flex folder which inlcudes remote-config file and other config files is "H:\workspace\JavaBlaxeDS\" still giving me error . Please help!!!

    Hi fahad !
    i know this is common problem when u put j2ee.jar from ee sdk to ur local jdk extension ...now wht u have to is ...remove j2ee.jar from ur jdk's extension and restart the system..then simply start jdkee again .. i m sure no error will be waiting for u :)
    Truly,
    siddiquiHashim
    smartSolutions

  • 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

  • ABAP Error When Creating IMG Project

    I have just installed Solution Manager 7.0 EHP1 in a Central Instance on Windows 2003 with MSSQL.  Using transaction SPRO_ADMIN, I am trying to create an "Initial IMG-Project" per the Solution Manager Master Guide.  But I get a runtime error.  The following is the first part of the error screen.  Searching the forums, it appears that note 638084 might fix this problem.  Since I don't yet have the service interface working, I tried local download to PC and then Note Upload.  in SNOTE, I got the error "SAP Note does not contain valid correction".  Any ideas?
    ++++++   ERROR SCREEN FOLLOWS (truncated)  ++++++++
    Runtime Errors         MESSAGE_TYPE_UNKNOWN
    Date and Time          21.09.2009 13:00:23
    Short text
    Message type " " is unknown.
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "SAPLSPROJECT_SYSTEM_LANDSCAPE" had to be terminated
    because it has
    come across a statement that unfortunately cannot be executed.
    Edited by: Jonathan Cohen on Sep 23, 2009 3:23 PM
    I uploaded and applied note #1172948.  I also tried rebooting the server.  But this error persists.
    Edited by: Jonathan Cohen on Sep 23, 2009 3:25 PM

    Anjali and Jagan,
    Thank you again for all you help.  I feel that I am making progress.  Using RZ10, I have successfully created and activated a new "Default" profile with the following parameters added per Note
    #parameter created                          by: COHENADMIN   29.09.2009 15:41:47
    icm/keep_alive_timeout = 240
    #parameter created                          by: COHENADMIN   29.09.2009 15:41:36
    icm/conn_timeout = 20000
    #parameter created                          by: COHENADMIN   29.09.2009 15:41:25
    login/no_automatic_user_sapstar = 0
    #parameter created                          by: COHENADMIN   29.09.2009 15:40:25
    icm/server_port_1 = PROT=SMTP,PORT=25000
    #parameter created                          by: COHENADMIN   29.09.2009 15:36:09
    login/accept_sso2_ticket = 1
    #parameter created                          by: COHENADMIN   29.09.2009 15:33:52
    login/create_sso2_ticket = 2
    Plus, the SID parameter is already present as : 
    SAPSYSTEMNAME = PD0
    I restarted the SAP System using Management Console (sapmmc).
    However, the Technical Configuration (step 2 of Initial Configuration in SOLMAN_SETUP) still returns the errors:
    "E::000"
    "System PD0 does not exist"
    Any other ideas?
    Thank you,
    Jonathan

  • 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

Maybe you are looking for

  • Image preview not working with 3rd party photo apps in iPhoto/Image Capture

    I haven't had a problem until recently with the iPhone 4. Pictures taken with third party photo apps such as Shake It Photo or Hipstamatic no longer generate a thumbnail preview in either iPhoto or Image Capture. It's just a generic jpg icon. All pic

  • How do I retrieve my data from external hard drive?

    I have tried to search for an answer to this, but have yet to do so and really getting freaked out... I had to take my iBook to the Genius Bar today to have everything wiped out and reinstalled due to some issues I was having. I wasn't worried becaus

  • Obtaining a OS X 10.7 Lion license now, how?

    Anyone know of a way to purchase a license of OS X 10.7 Lion now? Are any type of licenses transferable, except with hardware with preinstalls? What about volume licensing? What have you done hiding the apples some of us still need, Apple? <Edited By

  • Macbook pro retina a1502 display assembly cost in india

    My macbook pro retina a1502 screen broke. It has a small crack on the top right corner. I wanted to replace the screen only but as it is not available I want to buy the display assembly to replace the broken screen. But I don't know how much will it

  • Disabling document downloads while allowing for online editing.

    With IRM I know that you can prevent documents from being downloaded as well as printed, but whenever I do so, it disables the ability to edit the document.  Is it an integrated setting where I can only have both or neither?  I am not concerned with