Structure information from xstring

Hi,
How can I retrieve structure information,of data stored in a xstring variable ?

Hi Rotem,
for which table you need this information?
Regards,
Atish

Similar Messages

  • How can I extract structure information from registered XSDs ?

    Hello,
    I am trying to extract hierarchy and type information from registered XML schemas which include other XML Schemas, in a single SQL query.
    In essence I would love to be able to write a query of the form
    SELECT *
      FROM XMLTABLE('//xs:element'
                    PASSING <the root schema object goes here>
                    COLUMNS   ELEM_NAME       VARCHAR2(63) PATH '@name'
                            , ELEM_REF        VARCHAR2(62) PATH '@ref'
                            , ELEM_TYPE       VARCHAR2(63) PATH '@type'
                            , MIN_OCCUR       VARCHAR2(15) PATH '@minOccurs'
                            , MAX_OCCUR       VARCHAR2(15) PATH '@maxOccurs'
                            , ANNOTATIONS     SYS.XMLTYPE  PATH 'xs:annotation'
                            , FXD_LENGTH      VARCHAR2(10) PATH '/xs:length/@value'
                            , MAX_LENGTH      VARCHAR2(10) PATH '/xs:maxLength/@value'
                            , MIN_INCLUSIVE   VARCHAR2(10) PATH '/xs:minInclusive/@value'
                            , MAX_INCLUSIVE   VARCHAR2(10) PATH '/xs:maxInclusive/@value'
                            , MIN_EXCLUSIVE   VARCHAR2(10) PATH '/xs:minExclusive/@value'
                            , MAX_EXCLUSIVE   VARCHAR2(10) PATH '/xs:minExclusive/@value'
                            , TOTAL_DIGITS    VARCHAR2(10) PATH '/xs:totalDigits/@value'
                            , FRACTION_DIGITS VARCHAR2(10) PATH '/xs:fractionDigits/@value'
                   )together with an indicator if each element is a leaf or not as well as its level and position information, by suitably expanding the appropriate type information from the (possibly) included XML Schemas (via schemaLocation).
    Does anybody know if there is a way to do this ?
    I will provide my sample XSD files if needs be ...
    Best Regards
    Filippos

    Have a look at the xdbutilities.zip packages... Probably all the info needed can be found in the code used there:
    http://www.oracle.com/technology/tech/xml/xmldb/Current/xdbutilities.zip

  • How to get information from edit box

    Hi,
    I have to modfy user-exit EXIT_SAPMM07M_004
    For me necceassry is field GOHEAD-LFSNR but it is
    edit box and when customer fill this field i need to get
    the information from this field.
    There is question how to in module EXIT_SAPMM07M_004
    I can read infromation from structure GOHEAD ?
    Any suggestions ?
    Please help.
    Regards,
    Greg.

    Hi,
    You can read data and modify it from another program using assign.
    Here's an example of modifying in internal table from another program in CRM
      FIELD-SYMBOLS : <fieldcat> TYPE slis_fieldcat_alv,
                      <links>    TYPE crmt_kw_document_change.
      ASSIGN ('(SAPLCRM_KW_SERVICE)gt_link[]') TO <links>.
    With the above assign you can alter the data
    Kind regards, Rob Dielemans

  • Remote exception while fetching information from ALI collaboration 4.5

    We have seen a remote exception recurring from IDK api while accessing collaboration service.
    It says :
    “java.rmi.RemoteException: Unexpected fault was returned by the server (faultcode: Server.userException, faultstring: org.xml.sax.SAXParseException: XML document structures must start and end within the same entity.).
    at com.plumtree.remote.prc.collaboration.project.ProjectManagerWrapper.queryProjects(ProjectManagerWrapper.java:177)”
    we are using idk api 6.0 to fetch information from ali collaboration 4.5 concurrently.
    Please guide us

    First and foremost question....do you think is this THE ONLY & BEST possible way to implement your business logic ? To me it seems this can be achieved using much less code...more the code, more the chances of errors, difficult to debug and difficult to maintain...
    Anyways, it is quite difficult to pinpoint the error without the knowledge of underlying table structure and data. Here are some observations...
    In your outermost loop, you are doing this:
    FETCH cur_accdetail BULK COLLECT INTO vl_t_LogDate; If this step yields data, you are populating vl_t_ModStEnDate collection.
    However, if FETCH results into an exception (maybe NO_DATA_FOUND), you are writing the error to a file and program CONTINUES.
    In next logic, you are directly refereing to vl_t_ModStEnDate collection, without verifying whether it is populated. THAT MAY BE THE CULPRIT. NO CLAIMS...JUST GUESSES....
    BUT, I sincerely request you to revisit your requirement and see if you really need to have this much code to address the same.
    p.s. If you feel you don't have that much time (close deadlines etc...), take my word, it will be worth doing it now.

  • Access transaction information from a GOS

    Hello,
    I am creating a new generic object service for a transaction. I have no problems with the creation but I would like to know if once the user has clicked in the service and the new screen pop ups, is it possible to access the information from the original transaction?
    I know you have the business object associated with most of the information, but my question is if, for example you can access elements of the transaction layout, i.e. access internal tables or data structures. Is that possible? I understand that these information has to be somewhere because once you close the service you return to the original transaction.
    Best regards,

    Deepti,
    Search this forum for <b>WDProtocolAdapter</b> if you are on NW04s or for term <b>WDWebContextAdapter</b> otherwise (NW04). In later case do not use Requerst object and internal methods to get reference, use standard API methods instead.
    Valery Silaev
    SaM Solutions
    http://www.sam-solutions.net

  • Colleting related information from related tables

    Hi,
    I have a requirement that i have to collected all related information from all related tables and store into text file.
    Table_A - Table_B,Table_B - Table_C, Table_B - Table_D
    if this is the relation
    for each record in Table_A i have to collected the details from Table_B and from all the related tables. The structure is not definded and it can varry.
    present approach is
    we have designed a table with parent,child,reference and the relation we are mentioning it in the table and using this we are trying to represent in tree structure.
    we have also writen recursive procedure to traverse through the nodes and flushing the record to the file.
    Is that there is any better way to do?

    Thanks a lot for your interest
    the table structure is like this
    case
    |----act_entry
    |....|--------gbst_elm
    |....|--------participant
    |....|--------user
    |----close_case
    .....|------act_entry
    .................|----- gbst_elm
    .................|----- participant
    .................|----- user
    so i want to collect the related records of a particular
    case ( let it be 100) in all act_entry (let it be 200,300) and then i have to go to gbst_elm and collect all records of gbst_elm(let it be 400,500) related to fetched act_entry based on the case.
    so the result in the text file shoule be like this
    100, , , , ,
    200, , , , ,
    300, , , , ,
    400, , , , ,
    500, , , , ,
    then for next case
    relation of the table structured in a table
    case_table_rel
    parent........child............relation
    case........act_entry.....case2act_entry
    act_entry...gbst_elm......act_entry2gbst_elm
    act_entry...participant...act_entry2participant
    act_entry...user..........act_entry2user
    case........close_case....case2close_case
    close_case..act_entry.....close_case2act_entry
    act_entry...gbst_elm......act_entry2gbst_elm
    act_entry...participant...act_entry2participant
    act_entry...user..........act_entry2user
    Hope now it would be clear if not kindly reply.
    Thanks     

  • Polymorphism - retrieving type information from thedatabase

     

    Daniel,
    Yes I have always thought, that modeling the real world can lead to objects
    that are unnecessary or overly complex relationships that do exist in the
    real world but may not have to in a computing environment. Many times,
    business models could be greatly simplified if the modelers factored out
    interfaces from objects so that these interfaces could be applied based on
    need of behavior without having to always construct class hierarchies in a
    particular behavioral structure. Or they could benefit greatly by applying
    design patterns to enhance delegation. But the problem with both of these
    pieces of advice is that they assume the modeler is well versed and
    understands how to apply these concepts. Many application developments I
    come across are being done by a group of people that have never used an OO
    tool before. With an audience such as this, how are they supposed to get
    started?
    Usually they will look and analyze the real-world. This will give them a
    starting point in which to conduct dialog for building an object model. I
    think I do know how these advanced strategies I described above are applied,
    yet I always ask a customer to explain the real-world example of something
    before I attempt at understanding their model and make any attempts at
    advising changes. This assures that I and they have a better physical
    understanding of an interaction before we attempt to describe an abstract
    model of the same interaction.
    As far as sharing of business objects, it is quite routine for a company to
    have one group of IT application developers create a subsystem with business
    objects that must be SHARED by another group of IT application developers.
    The different subsystems have points of interconnect. These points can be
    at the architectural level or business object level. So I don't think this
    situation is as rare as you state. Further, I can see that the marketplace
    is pushing more for run-time object sharing and collaboration so that this
    will be the norm and not the exception.
    I agree on the importance of custom routing for performance. I think it is
    complex enough that I would stop short of telling people to spend time
    building such a scheme. I would hate to see an application miss delivery
    because the developers got too entangled in technical problems like custom
    routing. But I do happen to know of a Framework product that has this as
    one of its features. :)
    I agree 100% with you the complexity of Forte is the marrying of object and
    distributed technologies. I don't agree that frameworks cannot provide the
    answer. I look at a framework as more than just a technical solution. We
    use our framework to help divide the responsibilities between Business
    Analyst, GUI Architect, Back-end Architect, GUI Developers and Back-End
    developers. At many customers, some people play all of these roles. At
    some customers, a developer may play just the GUI Developer role until he
    can come up to speed on how to build simple views that are used to build
    more complex windows. In this way, a large problem can be broken down into
    a set of much smaller problems to help the architects manage work load and
    education of the team. Without a framework that supports this sort of
    approach, the architects of the application would have to delay development
    until boundaries could be put in place. This can be very time consuming and
    cause application rewrites if the boundaries were guessed wrong. In the
    Forte marketplace today, there are products to help people set up those
    architectural boundaries. It simply is more cost effective to buy one of
    these solutions then it is to have your team spend time on this and add risk
    to your project. In other words, architecture for a Forte development can
    be bought much more cheaply than it can be created.
    Mark Perreira
    Sage IT Partners.
    -----Original Message-----
    From: Daniel Nguyen [mailto:[email protected]]
    Sent: Sunday, June 21, 1998 7:35 AM
    To: Mark Perreira
    Cc: [email protected]
    Subject: Re: Polymorphism - retrieving type information from the
    database
    Mark,
    The battle question was only a little provocation : it seems that Forte
    people and yours don't have exactly the same point of view about the way
    that distribution should be made.
    The problem I see on modeling the real world is that the hypothesis
    seems to
    be wrong : the world will never be as static as the modeling in my point
    of
    view. The fact is that when you try to model real world you will add
    many
    concepts you don't really need for the application. Those concepts may
    change
    with time. In my own experience I have seen that if you don't have a
    real
    concrete objective, it is very easy to imagine many things which won't
    be
    usefull when the real aim will come. That's why I think that in a
    pragmatic
    point of view it is better (in a cost view that's right) to focus on a
    good
    modeling of the system you have to build. For instance, in an exotic
    currencies options system, you can imagine modeling for the Front a
    system
    without the product concepts, but only rules, because it is the real
    world.
    But when you come to the Back Office, you realize that all is managed
    through
    product concept. Then you come back to the Front modeling and break a
    lot
    of work. In the real world, the product concept does not exist, that's
    right.
    But it is a way to manage operations.
    We all speak about Business Objects (and rules) share and re-use. I
    imagine
    that it is only applicable on some specific domains where the concepts
    are
    already shared as Insurance, Banking or Risk management on shares. This
    is
    because we have common rules for all companies : some financial markets
    are
    organized with public rules and constraints for instance. So the
    difference
    between companies is only on the service and not really in the business
    foundations. But, in most cases, the differences between competitors are
    on their business, their know how.
    I have some difficulties to imagine companies with specific know how
    sharing
    it with competitors! So I imagine that shared business objects will be
    very poor.
    The problem may be that Business components will be provided by editors
    like
    Microsoft or may be Forte (with Express evolutions may be). But, the
    business of their clients is not in the job of those providers : they
    may
    have a wrong view of the business of their customers, because they don't
    have their know how.
    On routage capabilities of manager, I agree on the technical point of
    view.
    This should be inherited from a service definition from Forte or a
    technical
    component. But, I have seen (on financial markets) that you also need
    business
    routage for scalability and performance. This is unfortunatly not in
    Forte and
    may be not really in technical frameworks on the market. Just an example
    You have a financial market which is managed on several physical sites
    (let's
    take 2 sites). When everything is ok, you have one instance of a service
    on each
    site, first one managing some kind of instances (futures for instance)
    and the
    second one managing other kinds of instances (options for instance). But
    when the
    first site falls, you need (at run-time and if possible without stopping
    the market)
    to reconfigure the second service to manage all the instances (futures
    and options).
    So this is linked to business really. That's right, I base the
    reflection on a very
    specific (and experienced) case where the cost of the IT system is very
    low compared
    to the money exchanged on the system : you can imagine very specific
    solutions.
    The main problem I see today is that people have real difficulties to
    integrate
    object and distribution concepts and that Forte is to hard for Cobol or
    Visual
    Basic developpers. So those kinds of product should be more encapsulated
    and
    packaged on a push button way. The solution of making frameworks may be
    very
    short term solution, because of the cost and limitations about coverage
    of the
    clients specific objectives. Those problems come from Client/server
    architectures
    and needs, in my opinion, and NOT specifically from Forte or other
    competitors.
    Daniel Nguyen
    Freelance Forte Consultant
    Mark Perreira wrote:
    Daniel,
    I hope not. For SCAFFOLDS works only because of Forte and when I make
    someone a happy SCAFFOLDS customer then they are also a happy Forte
    customer. So if we sell more SCAFFOLDS, Forte sells moreForte. If there
    is a battle between us, I certainly don't understand why,because we are on
    the same team with the same goal.
    I have always found customer have a different role than you have pointed
    out. While I agree with the objectives, I have found most clients do
    actually try to model the real world. They do it because it is an easy
    starting point. They also do it because most OO books on the subject of
    modeling point people in that direction. So they do indeedplay the role of
    God with the business object model. But I have found thesesame customers
    unwilling to play the role of God with the architecture. Theyare either
    new to Forte and distributed object systems or they feelcomfortable with
    the architecture to be documented and supported beyond thetenure of a set
    of consultants that could come in and build such a system. In this case
    they buy a pre-defined and built architecture.
    I also agree that a Forte Service Object in and of itself can be
    problematic. But I depart where you say a manager can dothings like custom
    routing. This is exactly why I think Forte can be too difficult for too
    many people. Any custom routing scheme is not to be takenlightly in its
    impact of the overall performance and makeup of a running system. The
    manager pattern does not describe a run-time environment withthe checks and
    balances needed to make sure a custom router can perform. I have talked
    with you Daniel and have complete faith in your ability todevelop such a
    system. I would be very concerned in having just anyone try toimplement
    custom routing in manager objects without a run-time environment that
    simplifies and protects the participants from the mountain of technical
    problems that would follow.
    Mark Perreira
    Sage IT Partners.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • RE: Polymorphism - retrieving type information from thedatabase

    I would disagree with your statement that either the object or data model
    must be wrong. The problem is more fundamental-trying to store objects in a
    relational database. The object and relational paradigms can be made to
    work together, but usually only by compromising tenets of one or the other
    (or both). Now granted, there are many ways of making them work
    together-and some are definitely better than others.
    CJ
    Chris Johnson
    612-594-2535 (direct)
    612-510-4077 (pager)
    -----Original Message-----
    From: Rottier, Pascal [SMTP:[email protected]]
    Sent: Monday, June 15, 1998 8:17 AM
    To: Forte Users Mailing list
    Subject: RE: Polymorphism - retrieving type information from
    the database
    > ----------
    > From: Rottier, Pascal[SMTP:[email protected]]
    > Sent: Monday, June 15, 1998 8:17:16 AM
    > To: Forte Users Mailing list
    > Subject: RE: Polymorphism - retrieving type information from
    the database
    > Auto forwarded by a Rule
    >
    This issue has already passed this mailing list a couple of
    times in the past. To put it in more general terms, you have
    different classes which you store in the same DB table.
    This is always tricky. Nine out of ten times, this means
    either your Object model or your DataBase model is wrong.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    This issue has already passed this mailing list a couple of
    times in the past. To put it in more general terms, you have
    different classes which you store in the same DB table.
    This is always tricky. Nine out of ten times, this means
    either your Object model or your DataBase model is wrong.
    If you can differentiate between different classes, this
    means you're dealing with different entities, which should
    be stored in different tables. What if one class has an
    attribute the other one doesn't. This would mean you have
    to add a column to the database which is filled it the row
    represends one class and is NULL if the row represends
    another class. This is not good database practice!
    Differentiating between different classes by means of
    a "type" attribute is the classic procedural approach.
    The OO approach would be to create subclasses. How-
    ever, a relational database doesn't support subclasses.
    The best way, would be to have a different table for
    each subclass. If this gives you problems with norma-
    lizing your database, you can create a table with all
    the attributes generic to vehicle, and a table for each
    subclass with only the attributes relevant to this sub-
    class and a foreign key relation to the main table. If all
    of this is not feasable, you're left with the need to find
    some mechanism to identify what kind of class a cer-
    tain row represends and then instantiate this class. The
    tree solutions you suggested all work. It doesn't really
    matter which one you chose, they're all equally dirty.
    Hope this helps,
    Pascal.
    -----Original Message-----
    From: General [SMTP:[email protected]]
    Sent: Monday 15 June 1998 12:20
    To: [email protected]
    Subject: Polymorphism - retrieving type information from the
    database
    Suppose I have a class structure containing one base class with
    several specialisations. Say, "Vehicle", with specialisations of
    "Car", "Van" and "Truck". All vehicles are persisted in the database,
    in a rolled-up table, and I want a generic retrieval mechanism, which
    fetches a vehicle based on the license plate number. (It will probably
    be a service object, which I will call a Persistent Object Manager).
    I wish to retrieve ALL vehicles, and calculate the road tax for each.
    However, cars, vans and trucks are all subject to different tax rules,
    and require a different method to calculate their road tax. To put it
    another way, there is a polymorphic method 'CalculateRoadTax' on the
    "Vehicle" class.
    Q: As each vehicle is extracted from the database, how does the rest
    of the Forte application know what type of vehicle it is?
    I am sure that others must have solved this problem before, but it is
    new to us. We have come up with the following solutions:
    (1)  Add a "sub-type" column to the "Vehicle" table. Use the type
    information to instantiate a Forte object of the correct type
    (2)  Maintain a completely separate table linking the vehicle licence
    plate to its sub-type.
    (3)  Deduce the type of the object from the pattern of null columns in
    the row.
    I think (1) is the best solution, but I'm interested to know what the
    experts say!
    Incidentally, if Express can help or hinder in this situation, I would
    be interested in that as well.
    regards,
    Tim Kimber
    EDS (UK)
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • How to extract information from client security certificates and display it

    Hi guys,
    just wanted to know is it possible to extract information from an digital security certificate and get that displayed on top level navigation of the portal. So for ex. I want to extract the clients name and code and area from where they come from to be displayed on top level.
    thanks
    anton

    RoopeshV wrote:
    Hi,
    The below code shows how to read from txt file and display in the perticular fields.
    Why have you used waveform?
    Regards,
    Roopesh
    There are so many things wrong with this VI, I'm not even sure where to start.
    Hard-coding paths that point to your user folder on the block diagram. What if somebody else tries to run it? They'll get an error. What if somebody tries to run this on Windows 7? They'll get an error. What if somebody tries to run this on a Mac or Linux? They'll get an error.
    Not using Read From Spreadsheet File.
    Use of local variables to populate an array.
    Cannot insert values into an empty array.
    What if there's a line missing from the text file? Now your data will not line up. Your case structure does handle this.
    Also, how does this answer the poster's question?

  • Query with collective information from MD04 in detail

    Hello gurus. I have a question about Infosets.
    Iu2019ve being asked to create a query that shows the information from transaction MD04, but for multiple materials. It should be a list that essentially lists every MD04 record for material in our plant, one after the other.
    I found a Function called MD_STOCK_REQUIREMENTS_LIST_API which contains this information. The problem is, this function exports the detailed data to a structure called MDEZ and the header data to a separate one called MDKP.
    I created an Infoset using u201CData Retrieval by programu201D and I typed MDEZ as the structure. I then coded the retrieval of data under the u201CData Reading Programu201D tab.
    The problem is, the MDEZ structure inside Function MD_STOCK_REQUIREMENTS_LIST_API doesnu2019t have the material number; this is exported to a separate one called E_MDKP.
    My question is; how can I also have the contents of MDKP added to this Infoset? When I create it, it only lets me use one single structure, I cannot also add MDKP.
    I tried creating an additional field just for the MATNR, but those extra fields cannot read what I coded under the u201CData Reading Programu201D tab. I tried to use a second internal table to drop the values of E_MDKP, and then loop it to fetch the MATNR, but I canu2019t add it to the additional field nor can I add it to a second structure.
    I made a query and it shows the MDEZ data correctly; I get one line per item found in MD04 for the materials I imported from our Plant, but I donu2019t know which material is which because that info is in the other structure MDKP.

    Thanks for your reply. if you don't mind me asking, how can I create my own structure to add it to the Infoset?
    When I create the infoset, I can either make from a Table Join, a Logical Database or data Retrieval. In the Table Join I cannot use structures, and under Data Retrieval, I can only use one of them.
    Is there a way to create a temporary (or permanent) structure that would contain MDEZ and the extra field MATNR that I need?
    Please advise.

  • Get live information from Safari webpage

    I would like to know how to get information from a website (using Safari) onto a Numbers spreadsheet. Is this possible? If so, can I have Numbers automatically update that information? This would make my life a ton better for I have a lot of info from the web I currently manually enter into Numbers. Thanks!

    This depends on the website. Some websites have data in tables that can be copied and pasted into Numbers. Others don't work as well.  Numbers does not have built-in capability to do this automatically. But, depending on the structure of the web page, AppleScript may be able to able to output data in a format that Numbers can accept. What does the website look like?
    SG

  • Passing information from an iView to SAP - ESS Related

    Hi,
    How do you pass information from an iView to SAP?
    For example, in my task the User will log into ESS.
    Then they will click on the iView link and be prompted with a dialog for their service number (how is that done)?
    Now, on SAP's side (backend), I need to take that service number and their user id and pass it to the transaction.
    For the service number, I will have to add leading zero's.
    How is this done?
    What is the ESS cookbook and does anyone have it?
    Thanks,
    John

    Thank you for the response - it gives me a better idea of how this system works.
    But how would you modify the information that is being passed? Would it be passed to a structure, which can be accessed from within SAP? For example, the medical service number would be entered as 15. It would be stored and then my program would extract that number, add leading zero's and call the relevant transaction.
    Please help.

  • Passing information from webdynpro to CATS system

    Hi all,
    I have a webdynpro application, and i'd like to pass on information from my application to the CATS system.
    Can anyone throw some light on how to go ahead with this?
    Kindly respond at the earliest.
    Regards,
    lisha

    Hi Lisha.
    I'm working on that, and y use the following bapis to manage catsdb data:
    - BAPI_CATIMESHEETMGR_CHANGE
    - BAPI_CATIMESHEETMGR_DELETE
    - BAPI_CATIMESHEETMGR_INSERT
    Change and insert bapis have a table 'CATSRECORDS_IN' that i'm filling from webdynpro before execute the bapis. In this structure are the fields of catsdb that can be inserted or changed. The delete bapi has 'CATSRECORDS' table that only need the 'COUNTERS' which is the key field of catsdb.
    And i'm using the CATS_READ_TIMESHEET_DATA bapi to consult the data in catsdb.
    This bapi has E_CATSD structure, in this structure is the data organized like in CAT2 transaction.
    I hope it help u.
    Regards.
    Gregory.

  • How can I transfer information from one ipad to another?

    how can I transfer information from one ipad to another ?

    What kind of information? You can sync things like Contacts and Calendars by using iCloud. You can backup one iPad to iTunes on a computer and then sync the backup to the other iPad. You can configure your iTunes content and sync the same content to both iPads.
    It is based on what you want to do. Or are you looking for a way to send files from one iPad to another wirelessly? There are apps to do things like that, as well as cloud services, such as DropBox.

  • How can I move information from one icloud account to a brand new one?

    I've shared an icloud account with my sister for years and I want to get one with just my information. However, I'm not sure how to move or copy all of my information from my old icloud account into a brand new one and not lose any. Making a brand new one for my sister and keeping the old one isn't an option because she doesn't want to lose anything either. Help???

    To migrate to a new account, start by saving any photo stream photos that you want to keep to your camera roll (unless already there) by opening your my photo stream album, tapping Select, tapping the photos, tap the share icon (box with upward facing arrow), then tapping Save to Camera Roll.  If you are syncing notes with iCloud that you want to keep, you'll need to open each of your notes and email them to yourself so you can later copy and paste the text into new notes created in your new account.  Then go to Settings>iCloud, tap Delete Account (which only deletes it from this device, not from iCloud), provide the password to turn off Find My iPhone and choose Keep on My iDevice when prompted.  Then sign back in with a different Apple ID to create your new account and choose Merge to upload your data.
    Once you are on separate accounts, you can each go to iCloud.com and delete the other person's data from your account.

Maybe you are looking for

  • JScrollPane's scroll

    i have a jpalel onto JScrollPane, how can I know from program this jcrollpane's vertical scroll is shown or not ( this panel needs scroll or not ). Has a JScrollpane object or variable , which messages me this . I dont wont solve this problem with si

  • Needs help in developing project in java

    hello sir, i'm the fianl year student.i have got a computing related fields project. our project Director told told us make any type of project that has a worth in market.so i'm confusing to take decision please suggest me better it's question of my

  • Have update waiting to download?

    I have an update waiting to download but when i try to do so the Adobe Application manager(updater) won't accept my password and allow changes( update) to take place. I have tried resetting password but this has not helped. Has anyone any suggestions

  • Focus jumps every few seconds

    I have a macbook pro and about every 5 seconds, the focus flashes and will switch to another application.  I've run disk utility and rebooted, but continues to happen.  Thoughts?

  • Officejet j6480 sometimes not printing entire image: printer or software problem or conflict?

    Dell Inspiron, windows xp-pro, version 5.1 sp 3, software: microsoft digital image 2006 I've been using digital image (DI) for several years and have never encountered this issue before now, but my printer is new and has some features I may not entir