How to list all data elements

Hi,
I'm trying to write a rtf template for debugging purposes that simply lists all fields in the input data.
I wouldn't mind seeing the raw xml structure passed into the fo processor.
Is there a simple way doing that with xsl template?
Thanks a lot!

Hi,
You could use the following in an XSL-XML template. This will return the whole XML document:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="xml" encoding="UTF-8"/>
  <xsl:template match="/">
    <xsl:for-each select=".">
        <xsl:copy-of select="."/>
    </xsl:for-each>
  </xsl:template>
</xsl:stylesheet>Regards,
Cj

Similar Messages

  • How to list all the rows from the table VBAK

    Friends ,
    How to list all the rows from the table VBAK.select query and the output list is appreciated.

    Hi,
    IF you want to select all the rows for VBAK-
    Write-
    Data:itab type table of VBAK,
           wa like line of itab.
    SELECT * FROM VBAK into table itab.
    Itab is the internal table with type VBAK.
    Loop at itab into wa.
    Write: wa-field1,
    endloop.

  • How to get all data from nokia to i5s

    how to get all data from nokia E71 to i5s???

    if you can put those data in your computer then add it in iTunes. your iPhone 5s should get it thru syncing.

  • Me and my partner are currently using the same apple id and have no space left on our devices. We are currently waiting on the iphone 6 plus to arrive and don't know how to transfer all data to the new phones.

    Me and my partner are currently using the same apple id and have no space left on our devices. We are currently waiting on the iphone 6 plus to arrive and don't know how to transfer all data to the new phones.?

    I don't know if I'm asking this all in a way that can be understood? Thanks ED3K, however that part I do understand (in the link you provided!)
    What I need to know is "how" I can separate or rather create another Apple ID for my son-who is currently using "my Apple ID?" If there is a way to let him keep "all" his info on his phone (eg-contacts, music, app's, etc.) without doing a "reset?') Somehow I need to go into his phone's setting-create a new Apple ID and possibly a new password so he can still use our combined iCloud & Itunes account?
    Also then letting me take back my Apple ID & password, but again allowing us (my son and I) to use the same iCloud & Itunes account? Does that make more sense??? I'm sincerely trying to get this cleared up once and for all----just need guidance from someone who has a true understanding of the whole Apple iCloud/Itunes system!
    Thanks again for "anyone" that can help me!!!

  • How to erase all data on macbook pro and reinstall operating system

    how to erase all data on macbook pro and reinstall operating system

    OS X Snow Leopard
    https://support.apple.com/en-us/HT3910
    http://www.thesafemac.com/how-to-reinstall-mac-os-x-from-scratch/
    OS X Yosemite
    https://support.apple.com/kb/PH18869?locale=en_US&viewlocale=en_US
    Best.

  • How to retrieve all datas that lost when i update my iphone4 to that 6.10 ios. i tried to look at may i tunes in my computer but it seems that i forgot to perform back ups since i purchased this phone 2yirs ago.. pls send me an advice..thank u.

    how to retrieve all datas that lost when i update my iphone4 to that 6.10 ios. i tried to look at may i tunes in my computer but it seems that i forgot to perform back ups since i purchased this phone 2yirs ago.. pls send me an advice..thank u.

    All of the data should be on your computer, simply sync it back.
    If the update was done via iTunes on the computer, the first step in the process is a backup of the device.

  • How to list all properties in the default Toolkit

    I would like to know what kinds of properties are stored in the default Toolkit (Toolkit.getDefaultToolkit()). I don't know how to list all of them. Toolkit class has a method getProperty(String key, String defaultValue), but without knowing a list of valid keys, this method is useless.
    Any idea would be appreciated.

    Here is a little utility that I wrote to display all the UIDefaults that are returned from UIManager.getDefaults(). Perhaps this is what you are looking for?
    import javax.swing.*;
    import java.util.*;
    public class DefaultsTable extends JTable {
        public static void main(String args[]) {
            JTable t = new DefaultsTable();
        public DefaultsTable() {
            super();
            setModel(new MyTableModel());
            JFrame jf = new JFrame("UI Defaults");
            jf.addWindowListener(new WindowCloser());
            jf.getContentPane().add(new JScrollPane(this));
            jf.pack();
            jf.show();
        class MyTableModel extends javax.swing.table.AbstractTableModel {
            UIDefaults uid;
            Vector keys;
            public MyTableModel() {
                uid = UIManager.getDefaults();
                keys = new Vector();
                for (Enumeration e=uid.keys() ; e.hasMoreElements(); ) {
                    Object o = e.nextElement();
                    if (o instanceof String) {
                        keys.add(o);
                Collections.sort(keys);
            public int getRowCount() {
                return keys.size();
            public int getColumnCount() {
                return 2;
            public String getColumnName(int column) {
                if (column == 0) {
                    return "KEY";
                } else {
                    return "VALUE";
            public Object getValueAt(int row, int column) {
                Object key = keys.get(row);
                if (column == 0) {
                    return key;
                } else {
                    return uid.get(key);
        class WindowCloser extends java.awt.event.WindowAdapter {
            public void windowClosing(java.awt.event.WindowEvent we) {
                System.exit(0);
    }

  • How to list all files in a given directory?

    How to list all the files in a given directory?

    A possible recursive algorithm for printing all the files in a directory and its subdirectories is:
    Print the name of the directory
    for each file in the directory:
    if the file is a directory:
    Print its contents recursively
    else
    Print the name of the file.
    Directory "games"
    blackbox
    Directory "CardGames"
    cribbage
    euchre
    tetris
    The Solution
    This program lists the contents of a directory specified by
    the user. The contents of subdirectories are also listed,
    up to any level of nesting. Indentation is used to show
    the level of nesting.
    The user is asked to type in a directory name.
    If the name entered by the user is not a directory, a
    message is printed and the program ends.
    import java.io.*;
    public class RecursiveDirectoryList {
    public static void main(String[] args) {
    String directoryName; // Directory name entered by the user.
    File directory; // File object referring to the directory.
    TextIO.put("Enter a directory name: ");
    directoryName = TextIO.getln().trim();
    directory = new File(directoryName);
    if (directory.isDirectory() == false) {
    // Program needs a directory name. Print an error message.
    if (directory.exists() == false)
    TextIO.putln("There is no such directory!");
    else
    TextIO.putln("That file is not a directory.");
    else {
    // List the contents of directory, with no indentation
    // at the top level.
    listContents( directory, "" );
    } // end main()
    static void listContents(File dir, String indent) {
    // A recursive subroutine that lists the contents of
    // the directory dir, including the contents of its
    // subdirectories to any level of nesting. It is assumed
    // that dir is in fact a directory. The indent parameter
    // is a string of blanks that is prepended to each item in
    // the listing. It grows in length with each increase in
    // the level of directory nesting.
    String[] files; // List of names of files in the directory.
    TextIO.putln(indent + "Directory \"" + dir.getName() + "\":");
    indent += " "; // Increase the indentation for listing the contents.
    files = dir.list();
    for (int i = 0; i < files.length; i++) {
    // If the file is a directory, list its contents
    // recursively. Otherwise, just print its name.
    File f = new File(dir, files);
    if (f.isDirectory())
    listContents(f, indent);
    else
    TextIO.putln(indent + files[i]);
    } // end listContents()
    } // end class RecursiveDirectoryList
    Cheers,
    Kosh!

  • Urgent: How to list all alias for a server throw DNS query?

    Hi
    Is there anyone know how to list all alias for a server by asking the network DNS. Is that possible?
    It doesn't work with InetAddress it return a single result.
    Best regard

    InetAddress will not get you the aliases, but you can certainly find all the different IP addresses for a specific host name using the getAllByName() method.
    You won't be able to get the aliases since those IP addresses (assuming there are more than 1) will all be cached as mapping to the name you passed to the getAllByName() method and you can't clear the map cache until the JVM exits.
    So your best hope is to get a list of IP's and either exit your app and restart with a new mode, or save them to a file for another app to read.

  • Need Loop - All data elements in one section

    Guys,
    Below is the XML file I have with one section "Payment_History_Vendor" and all data elements present under it. The mailing name, address line 1 and addressline2 are changing. I need the output as below.
    Mailing_Name_ID6
    Address_Line_1_ID8
    Address_Line_2_ID9
    =========================================================================
    <R4425>
    <Payment_History_Vendor>
    <AddressNumber_ID3>518255</AddressNumber_ID3>
    <Address_Number_._._ID4>Address Number . .</Address_Number_._._ID4>
    <Mailing_Name_ID6>BROTHERS MASONRY INC</Mailing_Name_ID6>
    <Mailing_Address_._._ID7>Mailing Address . .</Mailing_Address_._._ID7>
    <Address_Line_1_ID8> RAYMERT DRIVE</Address_Line_1_ID8>
    <Phone_Number_._._.__ID11>Phone Number . . .</Phone_Number_._._.__ID11>
    <Phone_Number_Entry_ID13>( ) -</Phone_Number_Entry_ID13>
    <Address_Line_2_ID9> VEGAS, NV 0000</Address_Line_2_ID9>
    <Fax_Number_._._._._._._ID12>Fax Number . . . . . .</Fax_Number_._._._._._._ID12>
    <Letter_Date_ID16>Letter Date</Letter_Date_ID16>
    <LetterDate_ID17>September 30, 2009</LetterDate_ID17>
    <Date_Phrase_ID18>Date Phrase</Date_Phrase_ID18>
    <DatePhrase_ID19>2008 and/or January 2009</DatePhrase_ID19>
    <Start_Year_ID20>Start Year</Start_Year_ID20>
    <StartYear_ID21>2009</StartYear_ID21>
    <AddressNumber_ID3>517468</AddressNumber_ID3>
    <Address_Number_._._ID4>Address Number . .</Address_Number_._._ID4>
    <Mailing_Name_ID6> FIRE PROTECTION, INC.</Mailing_Name_ID6>
    <Mailing_Address_._._ID7>Mailing Address . .</Mailing_Address_._._ID7>
    <Address_Line_1_ID8>PO BOX 33409</Address_Line_1_ID8>
    <Phone_Number_._._.__ID11>Phone Number . . .</Phone_Number_._._.__ID11>
    <Phone_Number_Entry_ID13>( ) -</Phone_Number_Entry_ID13>
    <Address_Line_2_ID9>VENTURA 93007-0000</Address_Line_2_ID9>
    <Fax_Number_._._._._._._ID12>Fax Number . . . . . .</Fax_Number_._._._._._._ID12>
    <Letter_Date_ID16>Letter Date</Letter_Date_ID16>
    <LetterDate_ID17>September 30, 2009</LetterDate_ID17>
    <Date_Phrase_ID18>Date Phrase</Date_Phrase_ID18>
    <DatePhrase_ID19>2008 and/or January 2009</DatePhrase_ID19>
    <Start_Year_ID20>Start Year</Start_Year_ID20>
    <StartYear_ID21>2009</StartYear_ID21>
    <AddressNumber_ID3>518263</AddressNumber_ID3>
    <Address_Number_._._ID4>Address Number . .</Address_Number_._._ID4>
    <Mailing_Name_ID6> LINE MECHANICAL </Mailing_Name_ID6>
    <Mailing_Address_._._ID7>Mailing Address . .</Mailing_Address_._._ID7>
    <Address_Line_1_ID8> VALLEY VIEW BLVD., SUITE</Address_Line_1_ID8>
    <Phone_Number_._._.__ID11>Phone Number . . .</Phone_Number_._._.__ID11>
    <Phone_Number_Entry_ID13>( ) -</Phone_Number_Entry_ID13>
    <Address_Line_2_ID9> VEGAS, NV 102-0000</Address_Line_2_ID9>
    <Fax_Number_._._._._._._ID12>Fax Number . . . . . .</Fax_Number_._._._._._._ID12>
    <Letter_Date_ID16>Letter Date</Letter_Date_ID16>
    <LetterDate_ID17>September 30, 2009</LetterDate_ID17>
    <Date_Phrase_ID18>Date Phrase</Date_Phrase_ID18>
    <DatePhrase_ID19>2008 and/or January 2009</DatePhrase_ID19>
    <Start_Year_ID20>Start Year</Start_Year_ID20>
    <StartYear_ID21>2009</StartYear_ID21>
    </Payment_History_Vendor>
    </R4425>
    ========================================================================
    Thanks,
    Vijay Vattiprolu

    IMHO the best way is to change logic of program which generate xml
    it's better because
    - in package (as example of program which generate xml) you can contain full logic
    - in template you will have only loop by tags
    - simple maintain
    for your case
    - simple package (as example of program which generate xml)
    - in template complex logic which depend on many factors as example version of bip
    - very complex logic in template which imply hard maintain
    btw
    above structure
    >
    Mailing_Name_ID6
    Address_Line_1_ID8
    Address_Line_2_ID9
    >
    more simple then in Sections on Same Hierarchy, Regroup the data
    and it can be realized by cycle

  • How to erase all datas and reset default

    How to erase all datas and factory reset in iMac

    Boot into the Recovery HD (restart holding down Command+r). Launch Disk Utility and erase the drive (all data will be gone forever so make sure you have a reliable copy of any valuable data). Quit out of Disk Utility when formatting is complete and select re-install OS X (you'll need an Internet connection).
    Fuller details here: http://support.apple.com/kb/ph11273

  • Where can I find a list of data elements available in the Cisco AW?

    Good afternoon - I am just wondering where can I find a list of data elements available in the Cisco AW?
    I am also wondering if anyone has a real-time solution related to agent stats?  What I am looking for here is agent 1's running total of today's metric in a  real-time report updated everyone 20 seconds or so.
    I appreciate any feed back and hopefully I have posted this in the correct community - if not please direct me to where I should have posted my question.
    Thank you,
    Michael

    doubtful that apps store their serialnumbers in keychain.. Like "kappy" said : you must keep track of such important stuff on your own. Those unlock/activation numbers for software are like the key to your car. In the case of a app like comiclife it might be only terrible if you loose it and must re-purchase the app, but imagine that would happen to owners of the full adobe cs suite, which is several thousand Dollars ..

  • How many type of data element exist

    How many type of data element exist.
    Saurabh

    Hi,
    Data Element Types
    Introduction
    The following tables identify and describe the valid data element types that may be specified for the -type option. The first table covers some general data element types. The remaining tables cover data element types specific to each diagram type identified in the Diagram Types table above.
    General Data Element Types
    The following table covers some general data element types.
    Data Element Type  Description 
    Actor  Actors on CCDs and DFDs 
    Class  Classes on CDs, CCDs, and STDs 
    Event  Events on SDs and STDs 
    External  Actors on CCDs and DFDs 
    Flow  Control Flows, Data Flows, Result Flows, and Update Flows 
    Interface  Communication Messages, Control Flows, Data Flows, Event Messages, Result Flows, and Update Flows 
    Message  Communication Messages and Event Messages 
    AD Data Element Types
    The following table identifies and describes the data element types for the Activity Diagram (AD).
    Data Element Type  Description 
    ADAction  Actions on ADs 
    ADEvent  Events on ADs 
    ADState  States on ADs 
    ActionState  Action States 
    ObjectInState  Objects In States 
    CD Data Element Types
    The following table identifies and describes the data element types for the Class Diagram (CD).
    Data Element Type  Description 
    ActualType  Actual Types 
    AssocClass  Association Classes 
    CDAggregation  Aggregations on CDs 
    CDAssociation  Associations on CDs 
    CDClass  Classes on CDs 
    CDComposition  Compositions on CDs 
    CDContainer  Containers on CDs 
    CDGeneralization  Generalizations on CDs 
    CDInterface  Interfaces on CDs 
    Package  Packages 
    Propagation  Propagations 
    TemplateClass  Template Classes 
    CCD Data Element Types
    The following table identifies and describes the data element types for the Class Communication Diagram (CCD).
    Data Element Type  Description 
    CCDActor  Actors on CCDs 
    CCDClass  Classes on CCDs 
    CCDContainer  Containers on CCDs 
    ComMessage  Communication Messages 
    Subject  Subjects 
    COD Data Element Types
    The following table identifies and describes the data element types for the Collaboration Diagram (COD).
    Data Element Type  Description 
    CODActiveObject  Active Objects on CODs 
    CODActor  Actors on CODs 
    CODMessage  MEssages on CODs 
    MultiObject  MultiObjects 
    NaryLink  N-ary Links 
    RoleEnd  RoleEnds 
    RoleStart  RoleStarts 
    CPD Data Element Types
    The following table identifies and describes the data element types for the Component Diagram (CPD).
    Data Element Type  Description 
    CPDComponent  Components on CPDs 
    CPDInterface  Interfaces on CPDs 
    DFD Data Element Types
    The following table identifies and describes the data element types for the Data Flow Diagram (DFD).
    Data Element Type  Description 
    ControlFlow  Control Flows 
    DataFlow  Data Flows 
    DataProcess  Data Processes 
    DataStore  Data Stores 
    DFDActor  Actors on DFDs 
    ResultFlow  Result Flows 
    UpdateFlow  Update Flows 
    DPD Data Element Types
    The following table identifies and describes the data element types for the DeploymentDiagram (DPD).
    Data Element Type  Description 
    ActiveObject  ActiveObjects 
    Connection  Connections 
    DPDActiveObject  Active Objects on DPDs 
    DPDComponent  Components on DPDs 
    DPDObject  Objects on DPDs 
    Node  Nodes 
    NodeInstance  Node Instances 
    MGD Data Element Types
    The following table identifies and describes the data element types for the Message Generalization Diagram (MGD).
    Data Element Type  Description 
    MessageDef  Message Definitions 
    SD Data Element Types
    The following table identifies and describes the data element types for the Sequence Diagram (SD).
    Data Element Type  Description 
    Object  Objects 
    SDInitiator  Initiators on SDs 
    SDMessage  Messages on SDs 
    SDObject  Objects on SDs 
    STD Data Element Types
    The following table identifies and describes the data element types for the State Transition Diagram (STD).
    Data Element Type  Description 
    CDClass  Classes on CDs associated with the STD 
    EventMessage  Event Messages 
    STDAction  Actions on STDs 
    STDClass  Classes on STDs 
    STDEvent  Events on STDs 
    STDState  States on STDs 
    UCD Data Element Types
    The following table identifies and describes the data element types for the Use Case Diagram (UCD)
    Data Element Type  Description 
    DirectedComm  Directed Communication Association 
    UCDActor  Actors on UCDs 
    UndirectedComm  Undirected Communication Association 
    UseCase  Use Cases 
    Reward If Helpful
    Regards Madhu

  • How to download all data (music.contacts,apps) from iPhone to a new PC ?

    How to download all data (music.contacts,apps) from iPhone to a new PC ?
    I mean to say that I downloaded mp3 songs from websites (not from iTunes) which I synced in my iPhone 4 using ''Manaually Manage Music''.
    Now I am in my homecountry for vacations and don't have the laptop in which my iTune library is synced and I need to add more songs to my iPhone but when I put more songs to my iPhone it tells me that all current data from iPhone will be deleted.
    Please help!

    The iphone is not a backup device.  The music sync is one way - computer to iphone.  The only exception is itunes purchases.  Without syncing:  File>Transfer Purchases.
    " I need to add more songs to my iPhone but when I put more songs to my iPhone it tells me that all current data from iPhone will be deleted."
    That is correct.

  • Sunone Messaging Server 6.1--How to list all mail user's last login time

    hi,i want to know how to list all the mail user's last login time.
    There are more than 100000 mailbox accounts on our mail server,
    i want to know which account is not used for more than 2 or 3 years.
    thanks.

    http://wikis.sun.com/display/CommSuite/imsconnutil
    Somchai.

Maybe you are looking for