How to move components in Structure

I'm following the tutorial - Create ADF Menus for Page Navigation. I accidentaly skipped a step, Add and Bind Bread Crumbs Component. So I went back and tried to add this in. It shows up inthe structure window but not in the diagram. And my structure looks a little mixed up; some components aren't in the right place. I'm trying to drag the items in the structure window to the correct position. I guess I should be moving these components to the right facet. Does that make sense? The ADF concepts are very cool but I am having difficulty working with JDev. Is there a relatively easy way the get the structure cleaned up? (Or a good reference?) Clicking zillions of items is not too intuitively obvious (to me). Thanks.

I don't know if there were errors in the source since I replaced the code with the sample code. Next time I will look if I have similar problems. I was trying to move components in the structure window but wasn't able to get the hierarchy right. This is a generic question about manipulating components in the structure window. Maybe I just need more practice. Thanks.

Similar Messages

  • How to move marginalnote out in Structure

    Hi Scripting guru,
    I want my all marginalnote move out in Structure. When marginalnote move in page margin my test from 11p text width. You have any script code. Please accept my sincere apology for take your golden time.
    Thanks and have a nice day!

    Hi,
    I hope you need place the marginal note has an anchored object? If yes, you can use the below JS code.
    If you post any requirements in the forum please post what you have tried in you end in Java script. Then only some one help to easily. Otherwise is so difficults. Your most of the post always simply shown the snapshots only please place the JS code in your future post.
    var mydoc = app.activeDocument;
    var rootElement = mydoc.xmlElements.item(0);
    var linkElementList = rootElement.evaluateXPathExpression("//marginalnote[@type='mn1']");
    for(var lp=0; lp=linkElementList.length; lp++){
            var myElement = linkElementList[lp];
                    var myTextframe = myElement.placeIntoInlineFrame(["21p9","5p"]);
                   //you have create the object style in you document name is "MN";
                    myTextframe.appliedObjectStyle= mydoc.objectStyles.item("MN");
    alert("Proces Completed");
    thx
    csm_phil

  • How to change the default structure when exporting data in CSV format?

    Hello,
    can some one tell us how to change the default structure in CRM when exporting lists in CSV format (with Option "Always use unformatted list format (CSV) for download" ? Because we want to add a new structure for our own -is it possible ?
    If it is possible where can we find these structure ? In the blueprint customizing ?
    Thank you very much,
    Christian

    There is a workaround to move from 1.5 version to the older 1.4 version. But this could be specific to the browser setting the JRE version.
    Excerpts from sun docs:
    However, a user can still run older versions. To do so, launch the Java Plug-in Control Panel for the older version, then (re)select the browser in the Browser tab.
    Example:
    Assume you are running on Microsoft Windows with Microsoft Internet Explorer, have first installed version 1.4.2, then version 5.0, and you want to run 1.4.2.
    Go to the j2re1.4.2\bin directory where JRE 1.4.2 was installed. On a Windows default installation, this would be here: C:\Program Files\Java\j2re1.4.2\bin
    Double-click the jpicpl32.exe file located there. It will launch the control panel for 1.4.2.
    Select the Browser tab. Microsoft Internet Explorer might still appear to be set (checked). However, when 5.0 was installed, the registration of the 1.4.2 JRE with Internet Explorer was overwritten by the 5.0 JRE.
    If Microsoft Internet Explorer is shown as checked, uncheck it and click Apply. You will see a confirmation dialog stating that browser settings have changed.
    Check Microsoft Internet Explorer and click Apply. You should see a confirmation dialog.
    Restart the browser. It should now use the 1.4.2 JRE for conventional APPLET tags.
    Details are here
    http://java.sun.com/j2se/1.5.0/docs/guide/deployment/deployment-guide/jcp.html
    My system (Windows XP) has the version 1.5_09 set as the default. However i just installed JRE 1.5_06 and would like to revert back to _06 as the default JRE..
    Will update if i find more information

  • How to move only subset of data from one database to another?

    Both source & destination are Oracle11g databases.
    The requirement details are as below,
    1) The database contains static as well as transactional data for telecom domain.
    2) We have to move region-wise data from one database to another.
    3) There are around 10 regions.
    4) The region wise data extraction from source db is based on around 40 to 50 tables. Rest of the tables contains
    static data & it will not change.
    5) The volume is around 1 million subscribers per region.
    6) The migration is required because
    a) The client is upgrading its base product which uses this database
    b) There is a change in structure of static tables
    c) Hardware upgrade
    d) The client want to start with single region on new database & rest of the regions will be operated from old
    database.
    7) Keep execution time to very minimum.
    I am thinking to have solution as below,
    1) Create destination database with upgraded db structure (as mentioned in 6b)
    2) Create database links to access source db in destination db.
    3) Write SQL queries to fetch data from all the respective tables for a specific region
    4) Write separate PL/SQL blocks for each table to fetch data from source db & insert into respective table in
    destination db
    a) Use FOR ALL & bulk collect to improve the performance
    b) Divide table data into multiple chunks & execute parallel batches (around 10) to insert the data
    5) Validate pre & post counts to verify the success of migration
    Is there any other better way?
    Regards,
    Sandeep

    How to move only subset of data from a partiular table by using transportable tablespace?
    E.g. SUB table using SMP_SUB tablespace contains subscriber data in source database.
    The indexes defined on SUB table are under SMP_IDX_SUB tablespace
    The subscribers data can be categorized by different regions, say region_id column. Then how to move data & indexes of SUB table from source db to destination db?
    any specific example would be helpful.

  • How to move data from a staging table to three entity tables #2

    Environment: SQL Server 2008 R2
    I have a few questions:
    How would I prevent duplicate records, when/ IF SSIS is executed many times?
    How would I know that all huge volume of data being loaded in the entity tables?
    In reference to "how to move data from a staging table to three entity tables ", since I am loading large volume of data, while using lookup transformation:
    which of the merge components is best suited.
    How to configure merge component correctly. (screen shot is preferred) 
    Please refer to the following link
    http://social.msdn.microsoft.com/Forums/en-US/5f2128c8-3ddd-4455-9076-05fa1902a62a/how-to-move-data-from-a-staging-table-to-three-entity-tables?forum=sqlintegrationservices

    You can use RowCount transformation in the path where you want to capture record details. Then inside rowcount transformation pass a integer variable to get count value inside
    the event handler can be configured as below
    Inside Execute SQL task add INSERT statement to add rowcount to your audit table
    Can you also show me how to Check against destination table using key columns inside a lookup task and insert only non
    matched records (No Match output)
    This is explained clearly in below link which Arthur posted
    http://www.sqlis.com/sqlis/post/Get-all-from-Table-A-that-isnt-in-Table-B.aspx
    For large data I would prefer doing this in T-SQL. So what you could do is dump data to staging table and then apply
    T-SQL MERGE between tables (or even a combination of INSERT/UPDATE statements)
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Concerns ALL Time Machine Users. HOW TO MOVE Time Machine backups. Help !

    Concerns ALL Time Machine Users :
    MOVE (or COPY) Time Machine backups from a "x"To Disk to an "y"To greater disk.
    Hello and thank you all for reading me,
    First, excuse me if I make language errors (I'm French).
    Secundo, I don't know if you'll find something interesting for you
    in what I write about Time Machine and my own problems,
    but there's a possibility also that YOU could perhaps help me.
    I'm talking about Time Machine and his **** Backups.backupdb folder,
    containing "*Name of your Mac*" folder,
    this folder containing Time Machine backups, format : YYYY-MM-DD-HHMMSS
    Time Machine doesn't recognize the backups it made *IF YOU MOVE THEM*.
    I have perhaps a solution in this message.
    You'll see below what kind of problem I (and you could) have.
    Since 12/01/10, an Apple Adviser Level Two (and me)
    are trying to understand how to move backups from TM1To Disk to, let's say, a bigger one.
    My case is TM1,5To.
    *Purpose :* Move 19 backups from Time Machine X disk to Time Machine Y disk.
    Delete TMX disk Time Machine backups after that.
    Make TMY disk the current used Time Machine Disk.
    I don't remember exactly what we did before
    (we even created a "root" account with password (dangerous to do),
    but it didn't solve the problem),
    but we finally copied :
    TM1To > Backups.backupdb > *MacBook Pro* folder (containing 19 backups) into :
    TM1,5To > Backups.backupdb folder.
    The Copy application announced *16 hours !* (without antivirus, to remove absolutely).
    So I said goodbye and thank you to my Apple Adviser. After *8 hours*, Copy failed.
    BUT it had succeeded to copy *4 backups ONLY* (why ?) in TM1,5To.
    I immediately verified and checked each of these with Get Info.
    They had EXACTLY the same size (Byte to Byte) as in TM1To.
    ➔ BUT HERE IS MY OBSERVATION :
    After designing TM1,5To as Time Machine Disk, I ordered it to Backup (now).
    And what did Time Machine do in TM1,5To > Backups.backupdb ?
    It created a *NEW folder*, named *MacBook Pro 2* !
    ➔ *I HAVE NO ACCESS* to TM1,5To > Backups.backupdb > *MacBook Pro* (4 backups copied from TM1To, remember) ;
    ➔ while I still *HAVE ACCESS* to TM1To > Backups.backupdb > *MacBook Pro* (19 backups) ;
    ➔ *AND I HAVE ACCESS* to TM1,5To > Backups.backupdb > *MacBook Pro 2*,
    where Time Machine makes actually his backups.
    *NOTE :* If you *change the name* of your computer,
    Time Machine *changes automatically the name* of the folder who is in Backups.backupdb folder.
    ➔ ① I have *never seen* such protections (Sharing and Permissions).
    You are not allowed to do anything. I've tried to change permissions,
    first : "R+W", after that : "Make (Me) the owner", I can tell you : DON'T DO IT !
    ➔ ② It's impossible to install an OS on a Time Machine disk
    (I thought it would allow better permissions).
    OS Installer detects the existence of a Backups.backupdb folder
    and refuses to install on this disk or partition.
    I have now the bad intent to install minimal OS X
    1) after deleting (how ?) this folder (but not its contents, how to move it ?)
    and 2) declare *after that* the disk as Time Machine disk.
    ➔ ③ Time Machine doesn't backup OTHER Time Machine backups
    (who are in an ancient-not-choosed-for-backups Time Machine disk) NOR backups this disk
    (detects, once again, the existence of a Backups.backupdb folder).
    AND you can't *absolutely not remove backups from the folder the're in*
    (for me, *MacBook Pro* or *MacBook Pro 2*).
    ➔ ④ I didn't have time to do it, but I think there would perhaps be a solution
    in restoring backups in partitions specially created to receive them (having the same name,
    that sort of thing) and then re-backup these partitions (vicious and complicated).
    There is a function on Mac OS X Install DVD : start with it, and then (do not install)
    choose "*restore from Time Machine backup*" from the menu bar (it's called "Utilities", I believe).
    ➔ ⑤ I *absolutely don't understand* what follows :
    — If I add (in my TM1To disk) the bytes of the 19 backups
    in Backups.backupdb > *MacBook Pro* folder, I obtain about *1,8 To*.
    — It's impossible (and not french).
    — When I check the size used with Disk Utility (NOT with Get Info),
    I find a correct (?) size : *about 750 Go*.
    — What are Time Machine backups made of ?
    It can't be aliases (because of their size, and because *aliases suppose originals,
    and where could they be ?*), or am I wrong and becoming crazy ?
    ➔ ⑥ If you refer to the numbers shown at the end of this text (*4 backups*),
    you'll see I could *delete duplicate elements* inside these 4 backups,
    to win space (but *what kind* of space *if I delete aliases* ?).
    Back-In-Time (see below) says he does it.
    BUT is it really the OLDEST items I have to destroy (see ⑤),
    when I don't know with what kind of ARTEFACT I'm acting ?
    What does Time Machine delete to create more backup space ?
    Is it REALLY the OLDEST backups it treats, or duplicates, OR ?
    *What you can do :*
    Find and go to Tri-Edre.fr or Tri-Edre.com/fr site (it's a french company
    that creates small Mac applications since fifteen years at least,
    I think I already bought them several programs in 1990) ;
    Their program *Back-In-Time 1.4.4* is free (Trial) and complete to download (with PDF docs too).
    It is *ENTIRELY DEDICATED* to Time Machine and *things you can't do* with.
    Price is about 30 €, I think it's worth.
    The TRIAL version you will obtain can only work on the LAST Time Machine backup,
    but you will see what's featured *AND :*
    You will ACCESS to ANY Time Machine backup you want
    (It has to be the last of a serie of backups, but the serie you want.
    I've bought the application and own an activation key, but you understand I can't give it to you
    (it would not be ethic) and anyway you would be obliged to disconnect AirPort, Ethernet etc.
    •➔ I have bought the application because I thought (it's said in PDF FAQs) I could IN THE END move Time Machine backup files, but it cannot, (I'm afraid).
    *BUT ANY ACCESS PROBLEM IS SOLVED.*
    •➔ Back-In-Time 1.4.4 can *delete :* duplicate backups, complete backups,
    or duplicate items inside one or several Time Machine backups,
    things that I believe impossible with Time Machine itself
    (I've seen it offers to delete ALL occurences of an item) ;
    •➔ The application can also restore anything you want, where you want
    (but I think Time Machine does it too ?)
    •➔ Believe it or not, but since I've bought it on 15/01,
    I've only worked about 2 hours (no, much more) on it
    and didn't make sufficient progresses (enhancements ?)
    to talk of it with sufficient experience (I'm a bad guy, don't you think ?)
    •➔ Tri-Edre offers on-line support, e-mail support (and so on),
    and I EVEN didn't manage to join them, because I did many other things,
    and also somewhat have been disgusted *not to be able to move* or copy
    *(accessible by Time Machine after that)* backups,
    and I also didn't succeed (*another Time Machine inconvenient*) to DESTROY an ".inProgress"
    Time Machine (package) which doesn't work anymore (several interruptions while active),
    date (and name) 2010-01-27-164345.inProgress, but is used (*with failure results*)
    by Time Machine (it's turned off till I find how to destroy its **** ".inProgress" package.
    •➔ I've asked my Apple Adviser Level 2 to wait for news from me
    before working himself on the problem, and I think I will send him this message
    to prove I haven't forgotten him.
    •➔ I'll send it to Tri-Edre too, in the same move.
    I hope those remarks to be useful for somebody, tell me if it has helped.
    I will also publish this in any Time Machine topics I find here, and in MacRumors site too.
    As you can see, I need help too … Does anybody have an idea ?
    Perhaps if I used a specific Copy software, it could work ?
    You'll see below an example of some time I've spent to study my problem
    (you will think I'm crazy).
    With my kind regards, and good luck if you have other Time Machine problems !
    Olivier Herrbach
    <Edited by Host>
    Le but du jeu est de transférer toutes les sauvegardes Time Machine
    d'un volume/partition que nous appelerons "1 To"
    sur un volume/partition que nous appelerons "1,5 To".
    *Je rappelle que les 4 sauvegardes effectuées par Time Machine sur le 1 To
    n'ont pas été reconnues comme siennes par Time Machine sur le 1,5 To,
    bien que strictement identiques en taille après leur copie.
    J'ai remarqué dans Back-In-Time des fichiers invisibles (tels que "TimeMachine.log"
    ou quelque chose de genre), et je soupçonne fort qu'ils n'ont pas été copiés et que Time Machine,
    ne les trouvant pas dans le 1,5 To, a ignoré à cause de leur absence les 4 sauvegardes décrites ici.*
    *Sauvegardes effectuées par Time Machine sur 1 To :*
    Path : MacBook Pro > Volumes > 1 To > Backups.backupdb > MacBook Pro
    MacBook Pro contient 19 items (dont un alias appelé "Latest") :
    1°) 2010-01-02-045758 Size : 913.207 B for 41.888 items comprenant :
    • Hitachi 1 To Size : 907.664 B for 41.887 items 7 folders
    Différence avec 1°) = - 5.543 B - 1 item (1 folder)
    2°) 2010-01-03-001957 Size : 982.211.325 B for 67.490 items comprenant :
    • Hitachi 1 To Size : 901.516 B for 41.886 items 6 folders
    Différence avec 1°) = - 6.148 B - 1 item - 1 folder
    • Samsung 500 Go Size : 981.302.510 B for 25.602 items 4 folders
    Total • + • = Size : 982.204.026 B for 67.488 items
    Différence avec 2°) = -7.209 B - 2 items (2 folders)
    — *Supprimer • Hitachi 1 To* dans 2010-01-03-001957. Comparer les dossiers.
    3°) 2010-01-04-222709 Size : 5.241.032.819 B for 26.509 items comprenant :
    • Samsung 500 Go Size : 5.187.330.874 B for 19.392 items 8 folders
    Différence avec 2°) = + 4.206.028.364 B - 6.210 items + 4 folders
    • StartUp Disk Size : 53.692.703 B for 7.115 items 4 folders
    Total • + • = Size : 5.241.023.577 B for 26.507 items
    Différence avec 3°) = - 9.242 B - 2 items (2 folders)
    — *Supprimer Samsung 500 Go* dans 2010-01-03-001957. Comparer les dossiers.
    4°) 2010-01-05-125449 Size : 9.428.705.396 B for 204.915 items comprenant :
    • HD 250 Go Size : 9.374.308.265 B for 181.575 items 7 folders
    • Samsung 500 Go Size : 692.898 B for 16.222 items 8 folders
    Différence avec 3°) = - 5.186.637.976 B - 3.170 items
    • StartUp Disk Size : 53.692.703 B for 7.115 items 4 folders
    Total • + • + • = Size : 9.428.693.866 B 204.912 items
    Différence avec 4°) = - 11.530 B - 3 items (3 folders)
    — Supprimer • StartUp Disk dans 2010-01-04-222709. IDENTIQUE.

    Dear James Pond,
    Thank you once again, and, don't be afraid, I will be as short as possible,
    but I need to use your last reply (I've cut all what was already said).
    JP ➔ You can copy an entire set of backups, but you cannot copy part of it successfully. See #18 etc.
    JP ➔ Read this from the first paragraph: "you cannot copy only selected backups,
    or merge two (or more) sets of backups." The structure of the backups simply will not allow it.
    I've read it, and found it regrettable. And I've also read, after that, what were the solutions under Leopard and Snow Leopard, and my conclusion is that it's a *dead end* for me. In short,
    — I can't move (by drag and drop) the 1To's Backups.backupdb folder (containing MacBook Pro, 19 backups, access) to 1,5To, because there exists already the Backups.backupdb folder created by copy on 12/01 with Apple Assistance (containing [MacBook Pro, 4 backups of 19, no access] and [MacBook Pro 2, 15 backups, access]). I don't even know if it could be deleted by the copy (and I don't wanna do that anyway) ;
    — I can't rename (and what for, I already forgot it) any Backups.backupdb folder nor delete it ;
    — I can't copy any Computer'sName folder (entire set containing backups), being in a Backups.backup.db folder, into another Backups.backupdb folder ;
    — I can't copy any (or all of an entire set) YYYY-MM-DD-HHMMSS backup(s), being in a Computer'sName folder, into another Computer'sName folder (even if it would be empty).
    — Saying NONE in Time Machine Preferences and putting it to OFF is simply no use.
    All is said. What I can try to do is :
    — Delete (not with Finder, but with Back-In-Time) all duplicate things I find in all backups and also entire duplicate backups (I have full access to all with the software) ;
    — Restore each of the reduced-to-minimum backups obtained in specially right-sized partitions wearing the YYYY-MM-DD-HHMMSS name of each restored backup. Time Machine doesn't backup his backups, but will backup these partitions.
    I'm afraid to be actually completely running out of the target, when I read what I write … It's time to go to bed !
    Reminder (OH) : Where did you find these amazing informations ?
    JP➔ Some of it is detailed here: http://www.appleinsider.com/articles/07/10/12/roadto_maco[]sx_leopard_timemachine.html
    ➤ Thank you ;
    JP➔ and here:
    http://arstechnica.com/apple/reviews/2007/10/mac-os-x-10-5.ars/14
    ➤ Thank you too ;
    JP➔ You have to understand the structure. When TM does the first backup, yes, it copies everything.
    On subsequent backups, it copies what's new or changed, but also makes "hard links" (sort of like aliases) to the copies of the things that didn't change. That's how it can only back up a few things each time, but show you a complete "snapshot" of the way your entire system looked at the time of every backup.
    ➤ I'll do my best to understand.
    JP➔ Time Machine deletes backups under two conditions. See the first part of #12 in the Frequently Asked Questions User Tip, also at the top of this forum.
    Under normal circumstances, you should not have to delete any backups. See the rest of #12.
    ➤ I understood why Time Machine didn't delete oldest backups : they were not weeklies ones.
    Reminder (OH) : How can I destroy the (corrupted ?) not working "2010-01-27-164345.inProgress" in 1,5 To, which causes Time Machine to abort any backup of any size I ask ?
    JP➔ Why do you think it's corrupted? TM is designed to "recover" a partial backup.
    ➤ I'll verify that with the little Tools/Apps I discovered in your FAQ User Tip document and downloaded immediately.
    Why didn't Apple tell me anything ? It's my fault, I'm perhaps not clear and not demanding enough more from them.
    JP➔ You cannot install OSX on a disk containing TM backups. That's because they need to be on separate disks.
    Technically, you could put them on separate partitions of the same disk, but that would not be a good idea.
    ➤ I never told you that (there would be no interest at all). I talked about the same location, to see if it would allow me more permissions, but if all works without doing it, it's really no use.
    JP➔ Sorry, I don't know what that means.
    ➤ I'm sorry, I didn't explain : "but if all works" meant : Copy Backups.backupdb, "without doing it" meant : Install OSX.
    ➤ If I install an OSX BEFORE, Time Machine will REFUSE completely to backup on it, it's understood.
    JP➔ Correct. The partition you're running from will not be an option in TM Preferences > Select Disk. That prevents TM from backing-up it's own backups!
    ➤ Would it be so absurd ? Maybe it could resolve my actual problem ?
    I think you are right, but I don't know why. I trust you.
    Reminder (OH) : "I will not bore you again except if I don't find a specific answer to an unknown-never-seen-incredible malfuction."
    JP➔ Don't worry about that -- thats what this forum is for, especially if you're still having problems.
    ➤ It's seems in fact that there is no possible solution, except what I said above and is certainly crazy/out of subject.
    Just try to be as clear and concise as you can.
    And please don't post the same things repeatedly -- it wastes your time and ours, and can confuse other folks.
    ➤ You're absolutely right and I tried to do so this time, and I'm sorry because I see it's still (far) not enough (short).
    Thank you once more. I wish you a good evening and week-end. Here it's 01:40 AM.
    With my kind regards
    Olivier Herrbach
    [email protected]

  • How to move E-Business from HP-UX to AIX

    Do you have any reference on how to move E-Business suite to different operating systems or more specifically from HP-UX to AIX? Thx.

    We have done the platform move and upgrade at the same time :
    From: To:
    RHEL 2.1 -> AIX 5.3
    DB 9.2 -> DB 10.2
    eBS 11.5.9 -> eBS 11.5.10.CU2
    High level steps where :
    1. take a copy of the 9i database to a staging area (using data guard etc)
    2. upgrade database to 10g to get datapump capabilities (we had to upgrade to 10.1 since 10.2 was not certified on RHEL 2.1)
    3. datapump export all metadata and data
    4. create fresh eBS install on target platform, then delete all database objects
    5. Create new database,
    6. datapump import (from step 3) and recreate indexes
    7. upgrade database to 10gR2
    8. upgrade apps to 11.5.10CU2
    9. re-install upgraded CEMLI components
    10. validate and reconcile data
    We are preparing presentation for AUOUG that will describe this in more details, we are happy to share this as soon as it is ready.
    If you are not doing and upgrade (of DB and eBS) at the same time as migration your process can be simplified.
    Usage of the 10g datapump export / import was essentiall part of our strategy.
    We have decided not to use Transportable tablespacess as there is no documented way how to do this with 11i DB, (System tablespace is not transportable which causes number of problems with AQ, etc ).
    If you are moving to another platform that has the same endian format (AIX and HPUX are both big endian), and you are on DB 10.2 (or ready to upgrade to 10.2) you can use Transportable Database
    Transportable Database is a new feature in Oracle Database 10g Release 2 (10.2) that is the recommended method for migrating an entire database to another platform that has the same endian format. The principal restriction on cross-platform transportable database is that the source and destination platform must share the same endian format. For example, while you can transport a database from Microsoft Windows to Linux for x86 (both little-endian), or from HP-UX to AIX (both big-endian), you cannot transport a whole database from HP_UX to Linux for x86 using this feature.
    More info on http://download.oracle.com/docs/cd/B19306_01/backup.102/b14191/dbxptrn002.htm#sthref1397
    For the 11i middle tier, safest and easiest way is to re-install it from CD, and then add you custom CEMLI bits.
    Regards,
    Radomir

  • How to move iPad from old XP to new Windows 8?

    I get how to move the music. I get how to transfer the store purchases. My fear is that I will somehow lose my Contacts and Calendar information, and my game progress. Luckily, my old XP is still working. I have an external drive. I've downloaded and installed the current iTunes to both the XP and Win 8 machines. I've created an encrypted backup of the iPad 2 (iOS 6.1.3) on the old XP. I know where that backup lives within the Application Data. I know where the iTunes Folder lives within the My Music section of My Documents. I see that it's arranged differently within the file structure ("Music" vs "Media") as compared to the Win 8 machine. I'm not using Outlook to sync Contacts or Calendars on either machine. I'm not averse to using iCloud, but again, afraid of losing Contacts. Hours of fruitless searching and contradictory and outdated advice have lead me to write to you all. If anyone can provide clear, concise, step by step instructions on how to sync my iPad 2 with my new computer so that I can get back to playing Candy Crush without losing my Contacts, I would greatly appreciate it!!!

    To move an iPhoto Library to a new machine:
    Link the two Macs together: there are several ways to do this: Wireless Network, Firewire Target Disk Mode, Ethernet, or even just copy the Library to an external HD and then on to the new machine...
    But however you do choose to link the two machines...
    Simply copy the iPhoto Library from the Pictures Folder on the old Machine to the Pictures Folder on the new Machine.
    Then launch iPhoto. That's it.
    This moves photos, events, albums, books, keywords, slideshows and everything else.

  • How to build a content structure in DAM?

    Hi,
    I am a newbee developer in CQ.
    I have an article table which contains 6 fields as title, category#, autor, dateCreated, content, and imagePath.
    How should I build this database structure in DAM?
    In CRXDE Lite, I tried to create 20 article nodes manually, and put these 6 fields as properties in each article node.
    I somehow display all the articles with its components using nodeIterator JSP method as described in CRX development guide.
    However, I cannot browse these article nodes from DAM web interface. This should be capable for editorial department to modify them.
    Is this right approach?
    How would you build the structure of this content data into DAM?

    Are you trying to migrate content from an existing system to CQ5.
    For manual content creation , this is how it can be done.
    After you follow the instruction to create the template and page components, when you need to create an article , you will have to create a page which uses the article template you create.
    So any new article will require you to create a page based on the template and then edit it to store the article content. Once you create the article page you can see the content in /content/<yoursitename>/<whateverpathforarticle>
    For example 
    Site A
       ---- Articles
          -----------Article1
          -----------Article2
          -----------Article3
    Create three Article pages using the article template
    Regards
    Kishore

  • How to move the process chain from Unassigned node to a new node in 3.5?

    Hi all,
    I have created a new process chain in the development and it is falling under the Unassigned nodes. I want to move that process chain to an another node. but i am unable to do that
    Can anyone let me know how to move the process chain from unassigned node. I have drag and dropped but still the same in BW 3.5 ?
    Thanks
    Poooja

    Hello,
    Try this....
    Double click on your process chain. Via the menu select:
    Process chain > Attributes > Display components
    Select F4 (possible entries)
    At the bottom of the window you will find a create icon
    to make your own component.
    After you created it, assign it to your process chain.
    Don't forget to save the process chain.
    Regards,
    Sivaram

  • How to create a tree structure using list items(tlist)

    HI every one,
    As we know how to create a tree structure using Hierarchy item type.
    We have a requirement to create The same tree like structure using List Item(Tlist)
    I would be so appreciated If you send with an example
    Thanks
    RangaReddy

    Hi all
    Any one help me please
    Actually our client requirement is creation of tree structure using list item,similar to what we used in oracle Application(FNDSCSGN) form.We did the tree structure using hierarchy tree using Htree and Ftree.It working excelently.For client requirement, we want to use list item.How PJC(Pluggable Java Components) is useful for using list item(Tlist).I can't understand how it is useful.
    Do you have any example please help me.
    Thanks
    RangaReddy

  • Incorrectly imported photos  - how to move?

    I have all my photos organized at the file system level, and have Aperture catalogue reference these photos (not stored into the library).
    The structure is:
    My Picture (project)
    --- Folder 1 (folder)
    ------>Album 1 (album)
    --------->photos
    ------>Album 2
    Recently I imported new set of photos under a new project at the root level (same level as My Pictures), by mistake.
    I have already done all my editing of this new set of photos.
    I would like to move these new photos in the same structure as illustated above (such as Album 3 and photos in there).
    Tried moving but Aperture does not allow. How can I correct it?

    Aha. I have figured out the problem. When I drag a version that is part of a stack to an album, the entire stack comes with it. What I want is only to drag the version. Once in the album, I can't delete the other versions in the stack and just keep the one I want. I can only keep or remove the whole stack.
    So I guess my question would now be how to move one and only one of several versions of the same master to an album without having all the others come along with it.
    Thanks for pointing out the Remove from Album command. I had not seen that before.

  • Can we move the Organisation structure from DEV to Quality to Production?

    Hi Experts,
    Can we move the Organisation structure from DEV to Quality to Production?
    If yes, I believe that we have to change  backend details at some areas.
    Please any one provide procedure and precautions for doing this, In general how we have to proceed?
    Thanks
    Reshma

    Hello Reshma,
    See program documentation from PFAL transaction (ALE distribution of HR Master Data).
    You will need:
    - an evaluation path,
    - a distribution models for sender DEV > receiver QUAL and sender QUAL > receiver PROD for correct message type.
    Regards.
    Laurent.

  • How to move BCS data from one box to other

    Hello Expert,
    Dose any one know how to move BCS data from one box to other box ?
    Thanks & Regards,

    1) The best is to do the test. In my case, my customer was just doing this transfer (in full) to perform tests on the BEX reportings. Actually, they never raised any issue regarding document number when they did additional postings in test system... I would also say that during the transfer, the number counter in Qual gets not synchronized with the one in Prod. So, I think the system will just take the next number available in Qual. Should not be an issue.
    2)  As explained in answer 1), in my case, the purpose was not to perform data migration from one system to the other one. Thus, my customer never performed a subsequent consolidation in the target system. But, basically, the transfer copies all data : posting levels 00 to 30, for all periods you have selected + Additional financial data and sequence of activities. Thus, for me, everyhting is available in the target system, including COI documents. In other words, the "picture" regarding the data should be exactly the same between both system. The only thing you need to pay attention to is the customizing : it must be the same in Qual and Prod (example : date of acquisition and divestiture, structure of the group, etc...).
    Another very important thing, is that your export data source must not be enriched due to the BCS Delta load scenario. If it is the case, the system will write the consolidation logic (i-e the consolidation group + reporting mode) when transferring the data from the source Real Time Infocube to the Target Real time infocube, which will lead to inconsistent data in the target system.

  • How to move application from one machine to another..??

    Hi All,
    I have developed a application which I want to move it to a server, but when I use export i am getting XYZ.sql. And i tried to import it on server but I am getting some Schema errors.
    Please can anybody help me to move my application to other machine with DATABASE structure and Schema.
    Is there anyway to covert my application into a installable, as we install Sample Applications which brings Database tables and schema on to our system when we install it.
    Thanks Lot
    Yogesh

    Hi,
    I'm not sure if your situation is the same as mine but here is how I move my application between computers.
    Comp1: @WORK
    Comp2: @HOME
    1. Export the database on comp1:
    At command prompt type: exp system/password file=db.dmp full=Y
    2. Export the application on comp1:
    From inside ApEx go into your application, select Import/Export and export the following:
    - Application (i use file format DOS, owner override is the application owner and Run and Build Application)
    - CSS (export all css files)
    - Images (export the image files)
    3. Create a user in comp2 to receive the application:
    Log into ApEx as SYSTEM and create a user with full privileges (I use the same username on comp1 and comp2)
    Note: If the user already exists in comp2 I will delete (including all applications) and re-create (basically to start fresh)
    4. Import the database on comp2:
    At command prompt type: imp system/password file=db.dmp fromuser=MYUSER touser=MYUSER
    Note: MYUSER is the user you have created in step3, therefore only database objects from the export file for that user will be imported.
    (Now all my tables, packages, procedures, triggers etc are in the database).
    5. Import the application on comp2:
    Log into ApEx as MYUSER. Go into applications and select Import/Export and import the 3 files that were exported earlier
    At this point everything for me is working.
    BTW - I'm using the same version of XE on both machines.
    Hope this helps.
    Richard.

Maybe you are looking for

  • Use one iTunes Library for both my MacBook and Mac Mini

    Hi, I want to make a few changes in my configuration, but before something will go terribly wrong, I want to make sure I use the correct approach. Yesterday I got a and on an older Mac Mini Model (G4 - only 40GB hard disc). It runs Leopard. It does n

  • How can I boot from USB 3.0 disc on a Mac Pro 2013

    I am just setting up a 2013 Mac Pro with a 4TB USB 3.0 external drive. I have cloned my boot disc over to it but have problems being able to boot from the USB drive. It shows up in the startup disc in system preferences, but when selected as the boot

  • Scope of PreparedStatement

    If my logic re-creates the PreparedStatement everytime, do I lose the advantage of the PreparedStatement over the Statement class ? Should I instead try to make the scope of my PreparedStatement reference such that it does not get destroyed? Or is th

  • F.50 transaction error

    Hi, I am getting the following error while executing transaction F.50: "No posting because company code was switched" Please suggest what could be the reason for the same. Thanks.

  • Excel - frequency function

    How can I calculate a frequency of train vibrations (expressed in Hz)? I used Human Vibration Analyzer to obtain RMS and Peek values of acceleration (a magnitude of vibration is expressed as acceleration - m/s2). I was trying to use Frequency functio