How to rename the emptybpelprocess

Hi Guys,
I have ReadFile Empty template process (  not synch or asynchronous process) it is working fine but , i want to change the file name.
Please any one can provide solution.
Regards
Janardhan

There are 2 approaches I have used to rename a process:
1) A very useful blog entry for how to Change A BPEL process name after it has been created can be found at: http://oraclesoa.blogspot.com/2008/05/copy-bpel-project-with-different-name.html
This uses custom ANT Tasks to rename the project including process name, namespaces etc
2) An alternative an more manual approach is to use jDevelopers templates. Mark your process as a Template using jDeveloper, give it a name. Then create a new process based on this template. This will create a new process with all the code from the previous one. To tidy up the project you may want to search and replace for namespaces with the .bpel and .wsdl files to match the new process name (if the defaukt were used)
Hope this proves useful
David
Edited by: David Gaskell, GW on Jan 26, 2009 4:30 PM

Similar Messages

  • How to rename the column name in oracle 8i?

    hi,
    Does anyone know how to rename the column name in oracle 8i?My method was drop the relationship key first then delete the old column,finally add the new column.
    Thanks for your replay.
    jing

    There is no facilty to rename a column name in Oracle 8i. This is possible from Oracle 9.2 version onwards.
    For you task one example given below.
    Example:-
    Already existed table is ITEMS
    columns in ITEMS are ITID, ITEMNAME.
    But instead of ITID I want ITEMID.
    Solution:-
    step 1 :- create table items_dup
    as select itid itemid, itemname from items;
    step 2 :- drop table items;
    step 3 :- rename items_dup to items;
    Result:-
    ITEMS table contains columns ITEMID, ITEMNAME

  • How to rename the SharePoint Document Library existing file name using Web service

    Hi,
    How to rename the SharePoint Document Library existing file name using SharePoint Web service.
    Is it possible. How could i do it?
    Thanks & Regards
    Poomani Sankaran

    Hi,
    Lists.UpdateListItems Method
    would be helpful for your requirement.
    Here is a blog with code demo for your reference:
    http://blogs.msdn.com/b/knowledgecast/archive/2009/05/20/moss-using-the-list-web-service-to-rename-a-file.aspx
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • How to rename the existing project in NetWeaver

    Hi All,
    Please let me know the process of how to rename the existing project in NetWeaver.

    Hi,
        If you want to rename Development Component (DC) project, here is the procedure..
    How to rename local Development Component Projects in Netweaver Developer Studio
    Regards,
    Uday.

  • How to Rename the technical name and description of an infocube?

    Hi,
    How to Rename the technical name and description of an infocube?
    Thanx in advance,
    Ravi.

    Ravi,
    You cant change the Technical name of the cube but you can change the description of the Cube. If you want to have a Cube with the same properties and with different Techname and Description better you do copy from the base cube and rename as per your requirement.
    Regards,
    Gattu.

  • 10g -  how to rename the dashboard

    hi, experts, how to rename the dashboard?
    do we need to reset security after the rename?

    Hi,
    1) Log into presentation service with Administrator, go to Settings > Administration > Manage Presentation Catalog.
    2) It opens a window; in this window you find option Show Hidden Items. Select this check box.
    3) Now you will be able to Navigate to the Shared Folders and the group folder under which you have created the dashboard.
    4) Select _Portal folder (this will only appear when you select Show Hidden Items options)
    5) It displays the list of dashboards under this folder. Now select Rename option corresponding to the dashboard that you want to rename.

  • How to Rename the file in the application server?

    Hi friends.
    How to Rename the file in the application server? via abap program so pls kindly let me know thr any function module is there.
    Thanks
    With Regards
    I.Muthukumar.

    Dont think there is any quick fix way of doin this, however you can use the following sequence of dataset ops to get what you need:
    READ DATASET - retrieve contents of current AS file
    TRANSFER DATASET - create a new file on AS with the contents read in READ
    DELETE DATASET - delete the original file on AS (if TRANSFER above is successful)
    Hope this approach helps.
    Cheers,
    Aditya

  • How to rename the button "Give FInal Ratings" in appraisal.

    Hi,
    How to rename the button "Give FInal Ratings" in appraisal. (In Manager Appraisal the manager finally clicks on "Give Final Ratings" button. I want to rename this button.)
    I tried through personalization but could not locate the button name in the personalization structure , so that I can rename it.
    regards
    Edited by: Maya on Nov 24, 2012 11:23 PM

    Hi Maya,
    In personalization, find the item with simiilar word pattern . For Example : "%Final%Rating" or something like this.
    You will get the item as well as block name.
    As per my understanding , If you want to change the button label , then set the property : LABEL for that item.
    Apply and Save the personalization.
    Switch over responsibility and retest the case.
    HTH
    Sanjay

  • How to rename the folder in KM

    Hi Experts,
    How to change the name of the folder in KM server.
    For ex : I have a Folder called <b>Trail</b> Now i wnat to change the folder name in Training ....I have tried with right click and all......
    Can anyone pls throw some light on this issue........
    Thanks in Advance,
    Dharani

    Hello Dharani,
    Changing the name of a folder at the root level of KM (the name of a repository) is very different than changing the name of a folder within a repository.  To change the name of a repository, Ravinder's previous post explains the steps to take.  However, a repository is typically something that a normal end user wouldn't be able to create, so I'm assuming this won't come up much.
    To change the name of a folder within a repository, you can simply select 'Rename' from the context menu of the folder.  Do you see this option when clicking on the context menu?  If the user created the folder, they should have the permissions needed to see this option.
    Please let me know if I've misunderstood your question.  Hope this helps.
    Best regards,
    Fallon

  • How to rename the Target filename.

    Hi...
           I n file to file sceanrio, i need to rename the  existing target file name...
    I have searched in SDN. i have found like we can achive it by batch program.
    can you please help how to do this...?
    Regards,
    Leela

    > We need to chjeck the target directory and filename is present or not.Then we need to rename the target filename with the loctaion.
    Do you mean there will be always only one file at any time?
    You have to write the UDF for Dynamic Configuration in order to rename the file with your location.
    UDF Code
    You have to pass you location name to this UDF in your mapping.
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters()
    .get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File","FileName");
    String SourceFileName =  location;
    conf.put(key, SourceFileName);
    return "";
    Note: You have to set the ASMA settings under Advanced Tab in both the adapters.
    Now you second requirement is to first check if target directory and filename is present or not.
    So this UDF has no control to check if file is present or not. The UDF will always write the filename with location.
    Probably to perform this check before writing the file name you can try with
    "Run operationg system command before message processing", otherwise you may have to write an adapter module for this.
    Regards,
    Sarvesh

  • How to Rename the Dashboard name

    Hi,
    How to change/rename the dashboard name.
    Thanks,
    Malli

    Hi,
    Go to setting>administration>Manage Presentation Catalog>Presentation_catalog_name>portal(Check show hidden items checkbox otherwise it wont be visible)>Dashboardname
    Click on second icon from left .You can update the dashboard name there.
    Regards,
    Sandeep

  • How to RENAME the file in UNIX-Appl. server, after READING it?

    Hi Experts,
    Following is my requirement,
    What we are wanting here is the functionality added to this program that once the UNIX file is processed, that it can be closed and then renamed on the Application server with the yyyymmdd extension.  For example, the program reads and processes the My_file.csv file today.  Once it's finished, it then closes the file and renames it as My_file20080610.csv.  By doing this, it will prevent the same file from being run the next day in case the new file is not sent. 
    So, pls. let me know that, How to RENAME is file in the UNIX - Appl. server, after reading it? obviuosly I closes it at the end.
    thanq

    Hi Srinivas,
    You can create a My_file20080610.csv. Write the content from My_file.csv into My_file20080610.csv. Then using DELETE DATASET delete the file My_file.csv.
    Thanks
    Romit

  • How do rename the lvStorage.dll when creating an applcation?

    When using the Open Storage(TDMS)VI  an lvStorage.dll is created in the data folder when building an application. I would like to rename the dll. How would I go about doing this? or how do i build the applicaion so i don't get the dll? When I create an application, I just want the Application.exe,Aliases file and configuration.ini
    I using Labview 8.5
    Thanks

    Your application will stop working if you rename this file. The DLL is located based on it's file name, so your application would no longer be able to load it.
    An application built in LabVIEW is more than just an EXE, for example it needs the LabVIEW Runtime Engine to be installed. In your case, it will also need the USI component installed. Both of them will go into \Program Files\National Instruments\Shared. You might be able to move lvStorage.dll by assigning it a different destination folder in your installer configuration, but you will need to make sure that it ends up in a folder that LabVIEW applications use when they look for dependencies. These folders are not the same on all machines, so that is a very error-prone thing to do.
    What problem are you trying to solve by removing lvStorage.dll from your application folder?
    Herbert

  • How to rename the desktop?

    Hello all.  I just went into Time Machine to retrieve a large file that was in my desktop, and I chose to bring the entire desktop onto my computer.  So basically, I moved the file into my actual desktop, and I deleted the one that I just copied into my computer.  Now, my desktop is called Desktop (original), and it's driving me NUTS.  Can you guys

    Try restarting your Mac. While checking something related to your issue, I somehow managed to rename the Desktop (but can't repeat it so don't ask me how I managed to do that). On restart & login a new, empty Desktop folder was created, but the renamed one was also visible in the Finder. I could then drag its contents out onto the Desktop & trash the now empty renamed one.
    I hope that works for you too!

  • How to rename the hard drive

    How do I rename the hard drive?

    Rename the hard drive by control-clicking on the hard drive name in the Finder sidebar:
    Rename the computer, go to system prefs > sharing and type in a new name in the text box 'Computer Name:'

Maybe you are looking for