How to migrate the concurrent managers definations from one instance to another

How to migrate the concurrent managers definitions from one instance to another instance by using FNDLOAD in R12.1.3
Greatly appreciate any help on this.
Thanks!

Concurrent managers can't be migrated using FNDLOAD -- Tips and Examples Using FNDLOAD (Doc ID 735338.1)
What are you trying to achieve here? Why migrating CMs from one node to another?
Thanks,
Hussein

Similar Messages

  • How to migrate position heirarchy in purchasing from one instance to anothe

    Hi ,
    We have a test instance which has position heirarchy setup . we want to move this to another instance .
    can you let me know what is the procedure for this ? . we dont want to do the setup manually on another instance and would like to do using any supported oracle apps tool
    Thanks in advance

    Hi,
    Use iSetup -- See the links/docs referenced in this thread.
    how to move Oracle APPS 12 setup data to new APPS 12 production environment
    Re: how to move Oracle APPS 12 setup data to new APPS 12 production environment
    Regards,
    Hussein

  • How to move the pages and reports from one dashboard to another

    hi all
    can please any one tel me hw to copy the reports along with pages from one dashboard to another
    Thanks

    Hi,
    Go to Administrator->Manage Presentation Catalg->Click on Group folder under which the dashboard and reports are present
    1)Create one folder and copy the reports which are present in the dashboard pages you want(reports will be under some specific folder,open and copy one after the other to the newly created folder).Do this if you want other set of same reports for new dashboard that you are creating
    2)Click on _portal and create a new folder(new dashboard)
    3)Click on dashboad that is to be copied
    4)copy the pages one after the other into new dashboard folder
    If you are not keeping new set of reports then no need to point reports in pages,if reports are placed under new folder then go to each page and pull those reports from newly created folder.
    Regards,
    Srikanth

  • How to migrate html file (workspace homepage) from one server to another

    Hi,
    Does any one know how to move a html file that is attached as homepage for Workspace from one server to another server?
    When I try using Export option, I dont see this file to select.
    Thanks in advance,
    PM

    You can use LCM functionality.
    Thx

  • How to move worksheet saved on database from one instance to another?

    Hi Every one,
    How to move worksheet or workbook saved on database from Discoverer plus from one instance to other instance?
    Is there any way to save a workbook or work sheet on to local drive from discoverer plus.?
    Thanks
    santhosh

    Hi,
    You have 2 options: use Discoverer Administrator to export/import the workbook; or use Discoverer Desktop to save the workbook to the local drive.
    You cannot save a workbook to the local drive using Discoverer Plus.
    Rod West

  • How to copy a Specific Font Style from one instance to another?

    I am using RoboHelp HTML V.7.
    I need to change multiple instances of one style to another. Is there a way to assign a specific font style from one instance of the style to another location (like MS Word style painter), or add the specific style to a shortcut key, or add the specific style the toolbar, or any other suggestions which may expedite my plight?

    Identify the "class=MyStyle" string in the MTML code, and use the Multi-File Find and Replace feature to step through each topic and change the specific instances to "class=MyOtherStyle." (I doubt that you'll want to "Replace All".)
    Sorry, there's no silver bullet!
    Good luck,
    Leon

  • How to migrate the whole Oracle Applications from one Server  to New IBM eS

    We are on 11.5.10.2 with IBM/p670 servers.
    We want to migrate the whole oracle Applications 11.5.10.2 to new IBM eServer p5 590.
    what is the best approach to migrate the whole Application.
    Best Regards
    Zia

    Rapid clone is there
    Manually also you can do
    Copy all tops
    Ensure tns connectivity to oracle home by tnsnames.ora entry change
    make changes in context.xml
    remove entries in FND_NODES for old servers
    run AC
    (Above steps do for DB tier then CM and then AdminTier - supposing admin and DB are diff nodes)
    Start services
    This should do the work
    Sunil Choudhary
    http://www.onelife.in
    Message was edited by:
    Sunil Choudhary

  • How to keep the filter when jump from one report to another report?

    Hi experts,
    How to use the "Link" or "Button Group" Web Item in BEx Web Application Designer to jump from one report A to another report B, both the filter of report A and report B could be kept and not missing.
    When I use jump from report A to report B, the filter of Report B disappears.
    But I need the filter of Report B to stay there and could be used.
    Thanks
    Alex

    Hi..
    I tried Your approached but I got an error as the field are connected to Entity Object and they are mandatory.
    I achieved it using another way. Using " setForwardURL " method only.
    As I am calling this method to delegate back to first page. This method takes 8 input parameters.
    The 6 no parameter is about to retain AM or not. It a boolean type. Initially it was TRUE as soon as I changed it to False it worked as I needed. :)
    Thanks and Regards,
    Ajay

  • How to pass the check box values from one view to another view

    Hi Experts,
    I have a selection screen view which consists of check boxes.
    WBS System status.
    Release                      Completed                  Closed as 3 check boxes.
    Note : The above ones are check boxes.
    Based on the selection made by the user, those values needs to be passed to second view which retrieves the data and
    displays the data accordingly.
    At the same time if the user does not make any selection, then WBS System status should contain Released, Completed and Closed values and that needs to be sent to Second view.
    Kindly advise.
    Regards,
    Chitrasen

    hi ,
    make a attribute of type WDY_BOOLEAN to achieve this functionality
    u need to follow these steps :
    1 in side ur component controller , under the ATTRIBUTES tab , make 3 attributes say attr1 , attr2 and attr3 of type WDY_BOOLEAN
    2 create a context node , cn_check and 3 context attribute ca_check1 , ca_check2 and ca_check3 in ur first view for
    release , complete and close check boxes
    3 inside the DOINIT of ur 1st view , set the attributes attr1 , attr2 and attr3 to blank
    wd_comp_controller->attr1 = ' '
    wd_comp_controller->attr2 = ' '
    wd_comp_controller->attr3 = ' '
    4 inside the method , where u r validating , if the check boxes are checked or not , read the attributes ca_check1 , ca_check2 and
    ca_check3
      DATA lo_nd_cn_check TYPE REF TO if_wd_context_node.
        DATA lo_el_cn_check TYPE REF TO if_wd_context_element.
        DATA ls_cn_check TYPE wd_this->element_cn_check.
        DATA lv_ca_check1 LIKE ls_cn_check-ca_check1.
    *   navigate from <CONTEXT> to <CN_CHECK> via lead selection
        lo_nd_cn_check = wd_context->get_child_node( name = wd_this->wdctx_cn_check ).
    *   get element via lead selection
        lo_el_cn_check = lo_nd_cn_check->get_element(  ).
    *   get single attribute
        lo_el_cn_check->get_attribute(
          EXPORTING
            name =  `CA_CHECK`
          IMPORTING
            value = lv_ca_check1 ).
    IF lv_ca_check1 EQ 'X' .
    wd_comp_controller->attr1 = ' X'
    wd_comp_controller->attr2 = 'X '
    wd_comp_controller->attr3 = ' X'

  • How to transfer the whole address book from one no...

    Dear friend,
    Could you please advise me "how to transfer the whole address book from one nokia to another nokia phone via blue tooth connectivity. (move one by one is not convenience for my hundreds of contact.
    Thank and waiting for advice...
    victor

    If your phones have the built-in "Transfer" (sometimes called "Switch") application, try it.
    Otherwise, depending on the model(s) you can also copy all contacts to/from the memory card, and get them over that way.
    And you can also synchronize both programs to the same service (e.g., Outlook on a Windows PC using Nokia PC Suite).
    And newer versions of Nokia PC Suite can also be used to make a backup of one phone, and then restore to another.
    PC Suite you can find here: http://www.nokia.com/pcsuite

  • How do I make my banner flash from one photograph to another?

    Good day.
    I am using Dreamweaver CS5.
    My banner of 968px X 280px is a JPG image (photograph) with a logo.
    I would like to learn how to make the banner photograph flash from one photograph to another.
    Can anyone help me with how to do this or guide me to where I can find a tutorial on this?
    Can this be done in Dreamweaver with code, or do I have to do this in another application first?
    I have Flash, Fireworks and Photoshop.
    I will appreciate help.

    Leah Adams wrote:
    Hi. Thanks!
    Yes, that is what I am looking for, if I can keep the same dimensions of my banner.
    Will jQuery allow me to specify my own dimensions?
    It's not jquery that determines the dimensions of your container for your images, you do. The dimensions can be any size. jquery is just a script which alternates the images within the container:
    Go to the link below and look at the source code.
    http://jquery.malsup.com/cycle/basic.html
    These are the two jquery scripts you will need to download:
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
    <script type="text/javascript" src="http://cloud.github.com/downloads/malsup/cycle/jquery.cycle.all.latest.js"></script>
    plus you'll need to include this small snippet in the 'head' section of the page. Change .slideshow to the class name of your container.
    <script type="text/javascript">
    $(document).ready(function() {
        $('.slideshow').cycle({
    fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
    </script>

  • How to migrate Template from one instance to another

    I am using BI publisher installed in EBS
    Please do let me know
    1.the std practise where the templates as well as xsl-fo are stored in EBS
    2.how to migrate from one instance to another instance -any utility like fndload
    3. when the concurrent program uses xml publisher where does it keep the pdf after generation. we can see xml payload in $APPLCSF/out

    Hope you didnt find this doc,
    http://blogs.oracle.com/xmlpublisher/discuss/msgReader$207#621

  • How to EXPORT a concurrent program from one instance to another

    Hi,
    I am new to EBS.
    How to EXPORT a concurrent program from one instance to another. I dont want to use FNDLOAD.
    Is there any other way from where we can export the concurrent program to anothere instance from CLIENT connection server.
    Thanks
    Asis

    Hi;
    What is EBS version? Why you dont use FNDLOAD?
    Pelase see below thread
    Move concurrent program to prod
    Move concurrent program to prod
    Regard
    Helios

  • How to Maintain the MM Master Data from one company code to other co code

    Hi Experts,
    Can any one pls tell me how to Maintain the MM Master Data from one company code to other co code.
    Presently we created New plants,New Purchase Orgs under different company code.
    1) Material Master data
    2) Vendor MAster data
    3) PIR
    4) Source List
    Is there any standard Transactions...??
    Please reply.
    Brgds,
    KK

    Hi
    Check out the link -
    http://wiki.sdn.sap.com/wiki/display/ABAP/StepstocreateasimpleLSMWusingbatchinput+recording
    lsmw for data migration for  xk01 transaction
    http://www.sap-img.com/general/lsmw-steps-for-data-migration.htm
    Regards
    Anand

  • How to migrate configurator models from one instance to another in R12

    Hi
    I want to migrate models from one instance to another using the Migrate models Program .For this do we need to create a Database link between the two configurator instances .Can anybody detail the steps to be followed

    Sumit,
    I am trying to figure out how to implement copying a quote line from one quote to another. Could you please let me know waht you found out regarding the usage of package. As of now I am only trying it in R11 but I will also need to know how to do it in R12 for future. So could you please tell me how you accomplished it in both releases with probably some sample code.
    Thanks in advance,
    Vinodh Ramadoss

Maybe you are looking for

  • Error InfoObjeto 0COMPANY

    I'm having a problem when performing full load, giving this error. Look at the error message: Diagnosis                                                                                It has been verified if the value of InfoObjeto is charged accordin

  • Smartforms Routine ENTRY Error

    Hi, I have a problem in the vf03 for edit an invoice. I have the message : La routine de traitement ENTRY n'existe pas dans le programme ZRLB_INVOICE  Traduction : The routine ENTRY not exist in the program ZRLB_INVOICE. But in the program ZRLB_INVOI

  • What are the sap scripts

    plz tell me any tutorials abt the sap scripts

  • Convert quicktime to avi or mpeg 2

    I have made a short movie with FCE. The client wants it on disc in either AVI or MPEG 1 or 2. Have tried exporting to quicktime and then saving as AVI, but it saves as .mov What am I doing wrong? Any help much appreciated

  • After installing the new Lion OSX, I get "power PC applications no longer supported" on things. How to fix?

    After installing the new Lion OSX, I get "power PC applications no longer supported" on things. How to fix?