How to take back up of my XI scenraios ( namespaces and Objects )

Hi
I have done some scenarios on XI sytem which has been crashed. Present it is not working . J2ee Engine is not starting.
Now we have installed new XI system. I want to take backup of my old scenarios and i need to import it into new XI system. How to take backup  from old XI system which is not working now and import it into new one.
Could you please help me.....
Regards
- Ravi Shankar B

Hi,
You could not able to recover the data from crashed system i.e old XI system.
For that now you have to develop all as new one in the current new XI system.
But whatever development that you will be doing that you could create backup.
I.e follow below steps..
1. After development and testing select the software component and right click on it --> Export or Tools -->Export Design Objects.
2. select transport as file system, for CMS again it will go on Java Engine that will be not as backup and give the name of file.
2. Select the namespaces or individual object to be taken as backup.
3. Process it and finish the wizard.
4. This will lead you to download it to local PC that you could keep it as backup
For Importing goto
Tools---> Import design object.
Similarly you can export and import Integration directory objects also
thanks
Swarup

Similar Messages

  • Please tell me how to go back to a long text I wrote and then i must have accidentally swiped the screen one way or another.  How do I go back to the screen so I don't have to re-write the whole text?

    Please tell me how to go back to a long text I wrote and then i must have accidentally swiped the screen one way or another.  How do I go back to the screen so I don't have to re-write the whole text?

    Cloud takes over https://forums.adobe.com/thread/1584746 may help

  • I want to reinstall my operating system,How can I back up all my add ons, extensions and personas for reinstallation when Im done?

    I want to reinstall my operating system,How can I back up all my add ons, extensions and personas for reinstallation when Im done?
    Im using fire ftp,downthem all,wot , antiporn pro,and various personas.
    I dont want to renstall them all one at a time, rather I would like to ireinstall a back up like I do with my bookmarks,
    Is this possible??

    See this support article. <br />
    https://support.mozilla.com/en-US/kb/Backing+up+your+information

  • I want to know what I need and then how to take a pdf form I created in word and add the blue boxes so that anyone can type into my form

    I want to know what I need and then how to take a pdf form I created in word and add the blue boxes so that anyone can type into my form

    Hey john@adobe,
    Could you please specify how exactly have you created your form.
    You might need to have Acrobat installed on your computer to convert a word document to PDF.
    Do you have Acrobat installed? If yes, what version? If no, then please try using the trial version of Acrobat DC (latest version) and access its features:
    Download Adobe Acrobat free trial | Acrobat Pro DC
    Also, let me know what kind of blue boxes are you talking about.
    If you want others to edit your PDF form, then you need to make it a fillable form by choosing 'Form Editing' option from Tools pane.
    Let me know more on this so that I can help you out.
    Regards,
    Anubha

  • How do I back up my MacBook Pro to icloud, and do I need a separate device

    How do I back up my MacBook Pro to icloud, and do I need a separate device

    Your Mac can't be backed up to iCloud.
    If you have an external disk drive, you can set  up Time Machine to backup your MBP to it.

  • How to take back or sale the scrap From Production

    Hello
    Suppose we have Issue some materials to Production say 1000 qty, for production, then here some scrap remains,we want to sell this scrap how to do?
    we have created the one material code for this scrap , How to take this material back and sale to out side how to to do this ? which is the best option, what is the use of movement type 531 here?
    Regards
    sapman

    Dear,
    At the time of production confirmation, the by-product that is produced gets transferred to the respective location. In this case the SCRAP, the goods movement takes place with the movement type ‘531 – Receipt of by-product into unrestricted use’ which is assigned already in co11n, goods movements.
    Once the Scrap is the respective storage location, it is ready for sale.
    Create a pricing procedure for selling scrap.
    It consists of Excise, education cess & higher secondary cess. And also you have conditions for CST & VAT, & TCS, Surcharge on TCS, education cess & higher secondary cess.
    Once you are done with pricing procedure, create condition records, create sales order, deliver and invoice, which is your normal sales process.
    Cheers!!

  • How to take a value of the first record/occurrence and the last record?

    Hi experts
    Can anyone help me to tell me:
    How to make IP can take a value of the first record/occurrence and the last record in CSV file?
    I need to take the first and last to put StarTime of first record y StopTime of last record in the target file
    This is my Original CSV File
    20110820,220DNE0220,140.13 ,0.000 ,E01,0
    20110820,240FGC4280,103.80 ,0.000 ,E01,0
    20110821,220DNE0220,142.58 ,0.000 ,E01,0
    20110821,240FGC4280,88.70 ,0.000 ,E01,0
    20110822,220DNE0220,151.92 ,0.000 ,E01,0
    20110822,240FGC4280,91.47 ,0.000 ,E01,0
    Where:
    The firts field is date.
    I require it so my Target File
    20110820,20110822,140.13 ,0.000 ,E01,0
    20110820,20110822,103.80 ,0.000 ,E01,0
    20110820,20110822,142.58 ,0.000 ,E01,0
    20110820,20110822,88.70 ,0.000 ,E01,0
    20110820,20110822,151.92 ,0.000 ,E01,0
    20110820,20110822,91.47 ,0.000 ,E01,0
    Thaks..

    Hi lizcam,
    A. Use FCC at sender side, it will convert CSV to XML like this
    Input XML
    <documentName>
    <recordset>
    <record>
      <Time>20110820</Time>
      <ID>220DNE0220</ID>
      <Quan>140.13</Quan>
      <Volume>0.000</Volume>
      <Auc>E01</Auc>
      <No>0</No>
    </record>
    </recordset>
    </documentName>
    Create a target DT like this
    Output XML
    <recordset>
    <record>
      <StartTime>20110820</StartTime>
      <EndTime>20110822</EndTime>
      <Quan>140.13</Quan>
      <Volume>0.000</Volume>
      <Auc>E01</Auc>
      <No>0</No>
    </record>
    </recordset>
    In MM,
    1.Time -> CopyValue[0] -> StartTime
    2.Time -> below UDF -> EndTime
    3.Quan -> Quan
    4.Volume -> Volume
    5.Auc -> Auc
    6.No -> No
    UDF u2013 Execution type u2013 All values of Queue
    public void getLastTimeValue(String[] inputEndTime, ResultList result, Container container) throws StreamTransformationException{
    result.addValue(inputEndTime[inputEndTime.length-1]);
    B. At receiver use again FCC to convert XML to CSV.
    FYI. If you want to optimize more, you can use
    1.globalContainer concept OR
    2.u201CAttributes and Methodsu201D, declare are String. Store the EndTime using one UDF and write another UDF to retrieve it.
    Regards,
    Raghu_Vamsee

  • Iwill be replacing my HD and loading Win 7. Once done I will install Firefox. How doe I back up my bookmarks, toolbars, add-ons and reinstall them. I want my Firefox to be identical on W7 and it is now on XP Pro.

    I have PC w/ XP Pro. HD going bad. Will replace and load Win 7 32bit. How can I back up my current Firefox so when I install on new HD the Firefox is identical to my currrent set up and all add-on, bookmarks, etc?

    There are some add-ons and utilities that can be used to copy the profile folder (location where user data is stored). The first one is the FEBE add-on ([https://addons.mozilla.org/firefox/addon/febe/]) which can be used to copy a profile. Another option is the free MozBackup utility ([http://mozbackup.jasnapaka.com/])

  • How to take back up of messages from iphone

    Hello,
    I tried taking a back up from my iphone 3g to iphone 5s, but however on doing that only my contacts and my photographs got transferred but not my messages. Can anyone please let me know how I can take backup of my messages from my previous old iphone to my new iphone.
    Thanks

    hi 3360, i found the following example;
    for back up:
    rman target sys/*** nocatalog
    run {
    allocate channel t1 type disk;
    backup
    format '/app/oracle/backup/%d_t%t_s%s_p%p'
    (database);
    release channel t1;
    i couldn't undertsand this,actually i want the databse which has the
    username:scott
    password:jetora
    host string:jetora
    i want to take the database backup in c:/databasebackup.
    here databasebackup is one folder which is in c:(c directory)
    wil the above mentioned exapmle work? what are the things i have to modify in that examploe to accomplich my need.please help me and please modify that example and show me please

  • How to take back resources from speech engine

    i make an application in swing in which i use jsapi text to speech which read and speak the selected file.
    but when synthesizer starts speaking it takes all resources back from jframe hence buttons not worked till speech completed thats why i am unable to use stop button .
    and if possible also give me detail how to read pdf's doc,.... files ..
    Thanx

    Sam_from_India wrote:
    by freetts and jsapi i am reading files by io and spoken by jsapi and it worked . but when i select pdf or doc file java.io cant read doc or pdf normaly because these files are encoded hence unable to speak right ....There is no simple general method to extract the 'text' from all file types since most file types such as 'doc' files and 'pdf' files have markup that indicates how they should be formatted. For each different file type you will need to find a library that can read and interpret the file. PDF can be read using iText and 'doc' files can be read using Apache POI but in both there are limitations as to what they can accept.
    P.S. I have used FreeTTS for one project. Works great except when the text contains abbreviations or slang.

  • How to take back the control from RFC function module to calling program

    Hi,
    In our system landscape, more than 200 child systems are connected to Solution manager(SMP). I have copied a RFC enabled function module into all the child systems and calling that FM from Sol Man in sychronous mode.
    Here goes my code in SolMan.
    LOOP AT it_dest INTO wa_dest.
      CALL FUNCTION 'Z_GET_LOGIN_DETAILS' DESTINATION wa_dest-rfcdest
        EXPORTING
          date_fr               = s_date-low
          date_to               = s_date-high
        TABLES
          tab_data              = it_val
        EXCEPTIONS
          communication_failure = 1
          system_failure        = 2
          OTHERS                = 3.
      IF sy-subrc EQ 0.
    *     Updates zuserlogon
          MODIFY zt_logon_det FROM TABLE it_val.
          COMMIT WORK.
          WRITE:/'RFC for Destination', wa_dest-rfcdest, 'succesfully updated.'.
      ELSE.
          WRITE:/'RFC for Destination', wa_dest-rfcdest, ' failed.'.
      ENDIF.
    ENDLOOP.
    Few child systems are very slow & takes more than 20 minutes(Many of the times system hangs) to return the result. But I should not wait for so long. Even if the child system doesn't return any values in 5 minutes I shoud continue with other system ignoring the current one.
    I tried calling the FM in asynchronous mode(STARTING NEW TASK) but no success because only 6 DIA processes possible but as I said I have more than 200 systems connected to SolMan.
    Please help me resolving this problem.
    Thanks,
    Prathap

    If there are only few child systems with bad response time, use asynchronous call using a CALL FUNCTION func STARTING NEW TASK task DESTINATION dest PERFORMING subr or CALLING meth ON END OF TASK. Count asynchronous calls still running/waiting (increment a counter when creating a task (not the one used for task id). In the form/method performed at end of a call decrement the counter. When counter is lower than a limit, 4-5 if 6 processes (*), perform an asynchronous call else perform a synchronous call or wait until the counter falls below the limit.
    Regards,
    Raymond
    (*) Use SPBT_INITIALIZE at start of program to get actual number of free/available processes.

  • How to restore backed up files after I used Rescue and Recovery

    Hi there lenovo community,
    so I'm struggling to find a solution on how to open these files right here:
    Link to image
    First of all, the program I used to back up my hard drive was the Rescue and Recovery that my lenovo desktop came with. I used an external hard drive (WD My Passport, specifically) to back up my old hard drive. The problem that I'm facing right now is how I can open these files, they seem to be not working with any of the option programs the "open with" thingy offers me. If anyone knows  an easy solution for this please please respond to me immediately.. I would really really appreciate it.  I have important documents there.  
    Thanks,
    Enrico
    Moderator note: large image(s) converted to link(s):  About Posting Pictures In The Forums

    Hello CP101, It seems this file extention is a priority file format.
    Here  is a link that has some information on how to resolve the issue.
    I would suggest reading all the suggestions, as some have different methods for resolving this issue.
    Please click the White Kudos star on the left, to say thanks.
    Please mark Accept As Solution if it solves your problem.

  • Is there any way to take backed up files from an old OS and get them onto a new phone?  They are backed up as txt files.

    I have a six year old lap top with an old OS and itunes 10.  I backed up my i phone 4 on it.  I got an I phone 5 and the version of Itunes compatible is not supported by the laptop.  I installed itunes on a different computer and when trying to sync the iphone 4 to the desktop, updated the iphone 4 software.  Now my iphone 4 is no longer compatible with my laptop.  I am interested in getting my contacts and photos from my old laptop to either iphone at this point.  I have the backed up files but they are txt files in the Mobile Sync Back ups.  Any suggestions would be appreciated!

    Generally when moving from one phone to another, individuals will make a backup of the one device and then restore to the second device. However, it seems you are no longer using the computer you made the backup on, so that can be a problem. There is no way for you to take information out of the backup and insert it in the iPhone. It is an all or none proposition. But, just moving the backup folder from one computer to another doesn't work either.
    Did you sync the contacts to a supported application on the computer? Also, if you are referring to the photos in the camera roll, you can import them to the computer by connecting the phone to the computer. You do not need iTunes to do that. Just plug in and let the computer photo import utility take the pictures and put them on the computer. Then you would sync the photos back to the photo library on the new phone,
    Contacts you can look at a 3rd party app that might help. MCBackup is in the app store and converts your contacts to a file you can email to yourself and then click on it and open it. Suggest syncing contacts/calendar to a supported application on the computer, or to iCloud so you can recover a lot easier.

  • How to change back Std Hierarchy layout in OKEON after using object mgr?

    Hi guyz,
    I was using object manager in OKEON to find a certain cost center.
    However, the layout only displaying one sub group instead of overall view of the Standard Hierarchy the way it was (before I use Object Manager function).
    I need to change back the layout to overall view of the Standard Hierarchy consisting of all subgroups and all cost centers.
    How to change it back?
    Need your answers asap...Thanking you

    Solved by clicking cost center group in Object Manager and fill with Standard Hierarchy's name (Top node of the standard hierarchy)

  • How to take one apple ID that has been shared and create a new one for my daughter.

    When I first got my daughter an ipod years ago, I had it registered with my apple ID. She just got a macbook and all of my contacts, text, etc have downloaded to her computer.  She obviously needs her own apple ID but I don't know how to start the process.  She can have all the music but I still want my pics and contacts.  HELP!

    New Apple IDs can be made at http://appleid.apple.com.

Maybe you are looking for

  • About reversal of Outbound delivery generated from Project system due to sale return

    Hi SAP Expert , We have made delivery from project system using t.code CNS0 and billing document is generated with reference of sales order. Now Goods is return by customer due to some technical reason, We created return sales order with reference of

  • Will iMac bluetooth keyboard work with apple tv?

    iMac is 4 months old before fusion drive came out thx

  • In the future time lets say a month will apple let us go back to ios 6?

    A question to apple HQ. Do you want your apple customers to be happy and not disapointed with the new updates. Or maybe they just want their old version that they liked back on there iphone. If you like to keep loyal and satisfide customers would you

  • Upgrading to Oracle release 11i

    Hi, our company is trying do an upgrade from Oracle 10.7 to 11i, and I have the following questions. 1. How long does it take to perform the upgrade? 2. How long is the average planned project duration? If anyone can answer these for me, that'll be g

  • Can not get Internet

    Alright so I got both network cables plugged into my computer and modem into the router since my computer has no adapter. When I try cisco connect it says : Internet lost , even though on my modem and router both say the Internet is going and my comp