Service oriented architecture option missing while creating new project

I m using Java Studio Enterprise 8.1 n facing problem while creating a new project (not getting the option for SOA).........

SOA modules are not part of Sun Java Studio Enterprise 8.1 but are part of the enterprise pack for NetBeans 5.5.
JSE8.1 is a companion product to Java System Enterprise stack of servers.
For SOA development,
- please download NetBeans 5.5 from http://www.netbeans.org/
- Download enterprise pack from http://www.netbeans.org/products/enterprise/ and install it on top of NetBeans 5.5. (On netbeans.org you will also notice other packs that are avialbale as add-ons to NetBeans 5.5).
- check out the learning trails at http://www.netbeans.org/kb/trails/soa.html and the documentation set at http://www.netbeans.org/kb/55/entpack-index.html.

Similar Messages

  • 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 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)

  • Exception starting workflow while creating new project

    We created a new SharePoint Designer based workflow and published it to Project Online.
    Later we created new EPT and associated the above mentioned workflow to it.
    Now whenever we tried creating a new project based on this EPT, it fails with an error as mentioned below:
    "Your new EPT has been created successfully, but failed to publish and will not be listed in the Project Error".
    Looking at the queue jobs, I see below errors. Does anyone how to solve this issue?
    General
    Exception Starting Workflow: Workflow _c78ab50f-a884-47d0-98bb-a9e6e5eab058_, for scope _/spo/b2645c43-2431-4498-aa01-367736a9461e/822d4328-2ebd-41fd-b9df-51a1cc138781/88697637-7217-40cc-b4db-be9e0cf8582e_, was not found. HTTP headers received from
    the server - ActivityId: 959408f6-002a-4b62-8368-997e74f55174. NodeId: . Scope: . Client ActivityId : d84a129c-99cc-6054-2a55-5ec692cb26fe.. Trace: at Microsoft.Workflow.Client.ClientHelpers.SendRequest[T](HttpWebRequest request, T content) at Microsoft.Workflow.Client.WorkflowManager.StartInternal(String
    workflowName, WorkflowStartParameters startParameters) at Microsoft.SharePoint.WorkflowServices.FabricWorkflowManagementClient.StartInstance(String serviceGroupName, String workflowName, String monitoringParam, String activationKey, IDictionary`2 payload)
    at Microsoft.SharePoint.WorkflowServices.FabricWorkflowInstanceProvider.StartWorkflow(WorkflowSubscription subscription, IDictionary`2 payload) at Microsoft.Office.Project.Server.BusinessLayer.Workflow.StartWorkflow(Guid projectGuid, Guid enterpriseProjectTypeUid,
    Boolean isNewProject, Guid previousEntepriseProjectTypeUid, Boolean skipStage, Guid stageToSkipTo):
    WorkflowExceptionStartingWorkflow (35115). Details: id='35115' name='WorkflowExceptionStartingWorkflow' uid='925896db-84a6-e211-915a-00155d855c0e'.
    Error:
    WorkflowCannotStartWorkflow (35100). Details: id='35100' name='WorkflowCannotStartWorkflow' uid='935896db-84a6-e211-915a-00155d855c0e'.
    Queue:
    GeneralQueueJobFailed (26000) - WorkflowStartWorkflow.WorkflowStartWorkflowMessage. Details: id='26000' name='GeneralQueueJobFailed'
    uid='945896db-84a6-e211-915a-00155d855c0e' JobUID='9f1a80d7-84a6-e211-9b9d-00155d85170c' ComputerName='b5274f0d-31e4-406a-9540-8bc9ee3f62f1' GroupType='WorkflowStartWorkflow' MessageType='WorkflowStartWorkflowMessage' MessageId='1' Stage='' CorrelationUID='d84a129c-99cc-6054-2a55-5ec692cb26fe'.
    For more details, check the ULS logs on machine b5274f0d-31e4-406a-9540-8bc9ee3f62f1 for entries with JobUID 9f1a80d7-84a6-e211-9b9d-00155d85170c.
    <input accesskey="c" id="CancelButton" style="padding:7px 10px;border:1px solid rgb(171, 171, 171);color:#444444;font-family:'Segoe UI', Segoe, Tahoma, Helvetica, Arial, sans-serif;font-size:11px;margin-left:10px;vertical-align:middle;min-width:6em;background-color:#fdfdfd;"
    type="button" value="Close" />

    Has there been any update on this? Since today I have it too. I was able to create projects with simple workflows yesterday, but not today?
    I get this:
    General
    Exception Starting Workflow: Workflow _ee038ab6-e3e1-4103-9c9f-eb1e34051e03_, for scope _/spo/68c4496a-d2a8-44af-9ff1-cbe0128a80a2/9c9ff6c2-baac-4268-9698-15f0e991bd2a/82440e58-df26-4089-ade6-6f1bc4644c3b_, was not found. HTTP headers received from
    the server - ActivityId: 07317e81-c57d-4eb2-888c-0d17451a35f9. NodeId: . Scope: . Client ActivityId : 08a8209c-7064-f0ac-d588-023a72c8ddd0.. Trace:    at Microsoft.Workflow.Client.ClientHelpers.SendRequest[T](HttpWebRequest request, T content)  
    at Microsoft.Workflow.Client.WorkflowManager.StartInternal(String workflowName, WorkflowStartParameters startParameters)   at Microsoft.SharePoint.WorkflowServices.FabricWorkflowManagementClient.StartInstance(String serviceGroupName, String workflowName,
    String monitoringParam, String activationKey, IDictionary`2 payload)   at Microsoft.SharePoint.WorkflowServices.FabricWorkflowInstanceProvider.StartWorkflow(WorkflowSubscription subscription, IDictionary`2 payload)   at Microsoft.Office.Project.Server.BusinessLayer.Workflow.StartWorkflow(Guid
    projectGuid, Guid enterpriseProjectTypeUid, Boolean isNewProject, Guid previousEntepriseProjectTypeUid, Boolean skipStage, Guid stageToSkipTo):
    WorkflowExceptionStartingWorkflow (35115). Details: id='35115' name='WorkflowExceptionStartingWorkflow' uid='6a415759-96c9-e211-8076-00155d987b12'.
    Error:
    WorkflowCannotStartWorkflow (35100). Details: id='35100' name='WorkflowCannotStartWorkflow' uid='6b415759-96c9-e211-8076-00155d987b12'.
    Queue:
    GeneralQueueJobFailed (26000) - WorkflowStartWorkflow.WorkflowStartWorkflowMessage. Details: id='26000' name='GeneralQueueJobFailed' uid='6c415759-96c9-e211-8076-00155d987b12' JobUID='b2af9253-96c9-e211-b137-00155d987314'
    ComputerName='09c6345c-04e8-4611-9fe7-b45e66936f28' GroupType='WorkflowStartWorkflow' MessageType='WorkflowStartWorkflowMessage' MessageId='1' Stage='' CorrelationUID='08a8209c-7064-f0ac-d588-023a72c8ddd0'. For more details, check the ULS logs on machine
    09c6345c-04e8-4611-9fe7-b45e66936f28 for entries with JobUID
    b2af9253-96c9-e211-b137-00155d987314.
                 <input accesskey="o" id="ctl00_ctl00_PlaceHolderMain_idOkButton" name="ctl00$ctl00$PlaceHolderMain$idOkButton" style="display:none;" type="button" value="OK" />            
    <input accesskey="c" id="CancelButton" type="button" value="Close" />          

  • 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

  • Unable to find Business Rules in the JDeveloper while creating new project

    Hi All,
    I am going through the chapter 9 Creating a Rule-enabled Non-SOA Java EE Application for JDevloper 11g. I am following the instruction given in the chapter.
    However I am unable to find a Business Rules category for creating a Business rules directory.
    Probably it has to be activated from somewhere.
    I tried searching its significance with JDev installation but haven't got anything.
    It seems very basic level problem, however...Please let me know if anybody knows how to solve it
    Thanks,
    Makarand.
    Edited by: user11223806 on Aug 12, 2009 7:48 AM

    Did you install the SOA extension for JDeveloper from the help->check for updates?

  • Various Account Assignment options while creating new Bid Invitation

    Dear Guru's,
    It seems while creating fresh Bid Invitation there is no option to define the Cost assignment like Cost Center, Asset, Order, Project, Network.
    System creates Bid Invitation only for Cost Assignment "CC - Cost Center". Is my understanding correct?
    Can any one confirm that Bid Invitation can only be created only for Materials/Services wtih Cost Assignment CC and Direct Material Option?
    Regards,
    Sandeep Parab.

    Thanks Vijay,
    We tried that scenarios also, we maintained alternate Account Assignment in Org Structure like AS, CC, NET, OR. These various Cost assignment options are also visible while creating Shopping Cart.
    But while creating new Bid Invitation system does not have any provision in Item details to enter the Cost Assignment details like shopping cart.
    That is why this question?
    We would like to invite bids for Asset, Project, Order and WBS element materials. So that system creates purchase order with respective Account assignment in backend as follow-on documents.
    Regards,
    Sandeep Parab.

  • How to customize Category and Category items list while creating New Model

    Hi,
    what the most convenient way to customize the Category and Category items list while creating New Model?
    This is standard:
    Now, what we want to achieve, is to customize this menu, to:
    1. Display in the Category window only f.e. two categories:
    - EA Diagrams
    - BPM Diagrams
    2. In the EA Diagrams, we want to have f.e. four copies of City Planning diagram, each of them should have different elements available, f.e. in the first copy, only Architecture Areas shall be made available, in the second one Architecture Areas and Business Functions, in the third on f.e. only Business Functions shall be made available. Additionally, it should behave like a hierarchy ... meaning you can create the second diagram, only as child (related diagram) of the first diagram etc.
    I know, excluding the particular diagrams/diagram elements can be configured using the right/profile settings, but how to:
    1. Customize the standard New Model menu window
    2. Create copies of City Planning Diagrams with different set-ups
    3. Set the relationship between diagrams
    Is such a configuration change possible?
    Thanks a lot for your help!
    Regards,
    Rafal

    Now, what we want to achieve, is to customize this menu, to:
    Question #1. Display in the Category window only f.e. two categories:
    - EA Diagrams
    - BPM Diagrams
    Click on Tools => General Options=> Model Creation
    Click on Properties => at right of Default category set
    Note : Model template does not work as Category. We can't set. An enchancement request has been open to SAP
    In the following example I defined a new default (MyNewDefault.mcc). As you can see only BPMN models are available.
    To create a new category set with BPMN choice
    a) Copy default.mcc in MyNewDefault.mcc file.
        Go to Tools=>General Options=>Model Creation : Select your new category
        Go to Tools=>General Options=>Model Creation : Edit properties and remove all things you does not want keep
    or
    b) Go to Tools=>General options=>Model Creation : Edit properties and click on Save as button and specify the file name "MyNewDefault".
        Quit the window.
        Select you new category : Go to Tools=>General Options=>Model Creation : "MyNewDefault"
        Edit properties and remove all things you does not want keep.
        Save you new category
    Question #2. How to define copies/replicas of existing diagrams
         Wrote an extension
    Question #3. How to make sure, particular diagrams can be used (created) only on predefined "levels" and how to set the parent-child relationship, so that PD enforced it directly when creating a new diagram.
         Specify yours conditons in your extension attached to your model
         Example : When the user want create a child diagram :  You can display a list of Parent Diagrams to select from.
         You can set in your extension by VBScript parent-child relationship
    Question #4 In the EA Diagrams, we want to have f.e. four copies of City Planning diagram, each of them should have different elements available, f.e. in the first copy, only Architecture Areas shall be made available, in the second one Architecture Areas and Business Functions, in the third on f.e. only Business Functions shall be made available.
    If I understand well your question. I suggest to take a look in
    Repository=>Administration=>Objects Permission Profile
    You can specify objects to show, mask, deactivate at model level.
    You can specifiy your own metadata.
    But I'm not sure you can mask, deactivate functions following diagram selection. It seem to specific.
    Message was edited by: Benoit Le Nabec

  • Error while creating new user in Oracle 11i EBS

    I am getting following error while creating new user. How solve this issue?
    “Unable to load java class % specified profile option SIGNON_PASSWORD_CUSTOM. Please verify that the class exists and that it implements the java interface oracle.apps.fnd.security.PasswordValidation”.

    Following is the text from Note for Custom Password Validation logic:
    Customers who wish to use their own password validation logic may do
      so by writing their own Java classes that implement the
      oracle.apps.fnd.security.PasswordValidation Java interface.  The
      interface requires 3 methods to be implemented:
      1) public boolean validate(String user, String password)
        - This method takes a username and password, and then returns true
      or false, indicating whether the user's password is valid or invalid,
      respectively.
      2) public String getErrorStackMessageName()
        - This method returns the name of the message to display when the
      user's password is deemed invalid (i.e., the validate() method returns
      false).
      3) public String getErrorStackApplicationName()
        - This method returns the application shortname for the
      aforementioned error message.
      After writing the Java class to perform customized password
      validation, the customer must then set the value of the profile option
      SIGNON_PASSWORD_CUSTOM to be the full name of the class.  If, for
      example, the name of the Java class is
      oracle.apps.fnd.security.AppsPasswordValidation, then the value of the
      SIGNON_PASSWORD_CUSTOM profile option must be
      oracle.apps.fnd.security.AppsPasswordValidation.  Note that AOL/J
      will attempt to load this class dynamically.  Hence it is necessary to
      make the class accessible by AOL/J.  This means that in Forms, the
      class must first be loaded into the database using the loadjava
      command.
    You will need to apply the following patches for 11.5.1:
       1344802
       1363919
       1472974
       1351004
       1377615
    You will need to apply the following patches for 11.5.2:
       1377615

  • Error while creating new release groups in PO release strategy

    Hi All
    I was creating a release procedure for PO and after completing steps, Create Characteristic and Create class & while creating new release grp with the class created i am not able to save it and the error message is (ME492) is" Only one release class should be used within the release groups for overall release...".
    But i am able to create from an already existing CLASS and able to proceed further.( Note: I am using the training module and in the learning stage.)
    Thanks for your support.
    Illan

    Dear,
    Please follow below mention path.
    *and check any things is missing, If you can go in bellow mention hints you cans create easily purchase release streatgy.*
    *- Follow below mention path.*
    *SPRO -> Material Management -> Purchasing -> Purchase Order -> Release Procedure for Purchase Orders.*
    *Three steps involved in release process of purchase order.*
    **Edit Characteristic     Create characteristic for release purchase order. If you want to release purchase order on purchasing group base. So you can create characteristic for purchasing group. Take reference of CEKKO structure and BKGRP field for purchasing group in additional data of characteristic. E.g :- Purchasing group - BKGRP**
    **Edit Class     After creation of characteristic, create class for release purchase order. In which you can take reference of Class Type: - 032,Status: - Release,Class group: - Release strategy class,And put reference of your characteristic, which are created by you in first step.E.g: - Class - REL_PO**
    *Define Release Procedure of purchase order     In this step four processes involved.o     Release Groupso     Release Codeso     Release indicatoro     Release Strategies*
    Now see each steps of Define release procedure of purchase order in briefly: -
    Release Group     In which you can define release strategy groupExa.: - Release group : - 01,Release object: - 01, Class: - REL_PO.
    Release code     In which you can define release code. Enter value as Release group: - 01,release code: -01 - Purchase Head,Release group: -01, release code: - 02 - Auditor
    Release indicator     In this step you have to define release indicator.Like X - Blocked, I - Under process, S - Release
    *Release Strategy     *This is the final step for release strategy.Assign release code 01, 02.Click on release prerequisites, select 02 - check box and click on continue.Click on release status button, enter release indicator X, I, S and click continueClick on classification button, enter values of purchasing group for which you want to created release strategy
    Than create purchase order for purchasing group, which you assign in classification of release strategy. Enter your values of purchase order and click on check button release strategy executed in your purchase order.
    Regards,
    Mahesh Wagh

  • PDF Error while creating New PCR

    Hi All,
    i am getting belolw error while creating new PCR, it suppose to open PDF but with out opening it is giveing following error.
    The initial exception that caused the request to fail, was:
       com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: Invalid Response Code: (401) Unauthorized. The requested URL was:"http://localhost:50000/AdobeDocumentServices/Config?style=document"
    com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: Failed to  UPDATEDATAINPDF
    Request you guide me to resolve this problem
    Thanks,
    Srinivasu.Y

    Hello Srinivasu,
    It seems your Adobe configuration is not correct. Please use SAP note 944221 for troubleshooting.
    Also go through online help documentation-
    http://help.sap.com/erp2005_ehp_04/helpdata/en/2f/d7844205625551e10000000a1550b0/frameset.htm
    Configuration: Business Package for Manager Self-Service->Configuring Adobe Document Services
    Regards
    Pooja

  • While Creating New Insert Form Existing Data Display from the Table

    Hi
    I am New To Sun Java Studio Creator and New to Java Also While Creating New Insert Form Existing Data Display from the Table while i am Run the Form. Can any one help me to Solve this one

    Dear Giri,
    As per your Advise, Literally I have Search the Properties for the Components to set value Null, but I am Unable to find the Value in Properties palate. I have tried in various options like
    In the Properties Palate
    TextField1_onselect use Value null
    TextField1_text I have selected use Value option and I have manually Keyed-in null;
    In the JSP Page, I have manually keyed in the null value below said
    <ui:textField binding="#{BI.textField2}" id="textField2" style="position: absolute; left: 240px; top: 96px" text="#{BI.bDataProvider.value['ISSUENO'] = null}"/>
    <ui:textField binding="#{BI.textField2.Value = null }" id="textField2" style="position: absolute; left: 240px; top: 96px" text="#{BI.bDataProvider.value['ISSUENO'] = null}"/>
    At last I am Failure. I am ignorant of it. Can you please help me on this where I have to set null value for the components? I will be very kind of you

  • Attachment of another PO while creating New PO

    There was one Standard PO 8100000299 available with Two attachments.
    Now, when I had open Attachment List to attach document while creating new Service PO, attachments of PO 81/299 was already there and new attachments added to PO 81/299, not to newly created Service PO.
    Kindly resolve this issue.

    One standard PO 81/299 was already there with Two attachment documents.
    Now, when I am going to  attach documents while creating new service PO, attachment list of PO 81/299 opened instead of blank list and new attachements will be added to 81/299 instead of newly created Service PO.

  • MSA Activity: error while creating new activity

    Hello forum,
    I've problems while creating new actvitities for bp.
    I get error: sales divison/organ. is not filled for the logged on user
    The activity is saved, but I can see shortly this error message.
    We have customized in crm-online, that the findung is activated.
    Can we deactivate this for mobile client ?
    Thanks,
    Gerd

    Hi Patrick,
    thanks for very fast answer.
    So I think I have the problem found, but I cannot set the default flag to another
    org.unit, because of missing entries.
    I've already downloaded the org.modell by crm-report to client, but without success.
    Do you now if I have to assign the employee (loggon-msa-user) in crm-org-modell to the org-unit or isn't it necessary for this download ?
    br
    Gerd

Maybe you are looking for

  • Creation of flat file

    HI, In flat file extraction my Business Scenario is Enhancements to the BI-located GL Account Master Data Table In the NW Natural context the Unit of Measure and Statistical Key Figure Type values are GL Account-specific. In data source maintain scre

  • Wiki Permissions issue.

    I have one user who it seems has a problem with Wiki permissions. They are in the Group for the wiki but they cannot access it. I have tried various things even some command line stuff but the user stubbornly will not get added- Very odd, has anyone

  • One commercial app on several iPads

    Hi everyone, I would like to know your point of view in order to deploy a commercial app (from app store) on about thirty iPad. The problematics is : How can I deploy an app and deploy it on 30 iPad ? Do I need to purchase 30 apps ? I studied two cas

  • JAAS client access instead of JNDI

    Hi, I'm exploring using the JAAS client access instead of JNDI access on WL7. The Docs say I have to write a LoginModule. However, the following appears to work too (and of course, I'm not using a LoginModule):      Environment env = new Environment(

  • Synonym across a database link

    Hi Oracle Gurus, Heres my requirement, - a] I have two databases ('x' & 'y'). b] On x, I have two schemas ('a' & 'b'), while on 'y', I have only 1 schema ('c'). c] I have created a synonym in 'b' for all the objects in 'c' using a database link. d] N