Details of XML

Hello

I'm new to the IB

I 10pages and isend printing last page appears as "end of document" she cannt display in the previous pages

What is the html tag

CTRL + *.

end of the repoprt *.

It displays only in the final pages

Tags: Business Intelligence

Similar Questions

  • couldn't produce a detail in XML format via table.

    Hi guys,.

    I have a small problem to produce xml data. Easy, I created an example to understand.

    It's my main table:
      CREATE TABLE ALLDATA
      (
        AGENCY_NO       VARCHAR2(20),
         ACENCY_NAME     VARCHAR2(500),
         SUB_AGENCY_NO   VARCHAR2(20),
         SUB_AGENCY_NAME VARCHAR2(500),
         CUST_ID         VARCHAR2(20),
         CUST_NAME       VARCHAR2(500),
         CUST_STREET     VARCHAR2(500),
         CUST_CITY       VARCHAR2(500),
         POLICY_NO       NUMBER(10),
         SUB_POLICY_NO   NUMBER,
         POLICY_DATE     DATE,
         POLICY_CURRENCY VARCHAR2(3)
      );
      
      INSERT INTO ALLDATA 
      VALUES (10, 'X AGENCY', 100, 'X SUB AGENCY 1', 1000, 'X CUSTOMER 1', 'ADRES INFO', 'A CITY', 123456, 0, SYSDATE, 'USD');
        INSERT INTO ALLDATA 
      VALUES (10, 'X AGENCY', 100, 'X SUB AGENCY 1', 1000, 'X CUSTOMER 1', 'ADRES INFO', 'A CITY', 123456, 1, SYSDATE, 'USD');
      INSERT INTO ALLDATA 
      VALUES (10, 'X AGENCY', 100, 'X SUB AGENCY 1', 1002, 'X CUSTOMER 2', 'ADRES INFO', 'A CITY', 654312, 0, SYSDATE, 'USD');
      INSERT INTO ALLDATA 
      VALUES (10, 'X AGENCY', 101, 'X SUB AGENCY 2', 1003, 'X CUSTOMER 3', 'ADRES INFO', 'A CITY', 234567, 0, SYSDATE, 'USD');
      INSERT INTO ALLDATA 
      VALUES (10, 'X AGENCY', 101, 'X SUB AGENCY 2', 1003, 'X CUSTOMER 3', 'ADRES INFO', 'A CITY', 234567, 1, SYSDATE, 'USD');
      INSERT INTO ALLDATA 
      VALUES (11, 'Y AGENCY', 102, 'Y SUB AGENCY 3', 1004, 'X CUSTOMER 4', 'ADRES INFO', 'A CITY', 345678, 0, SYSDATE, 'USD');
      INSERT INTO ALLDATA 
      VALUES (11, 'Y AGENCY', 102, 'Y SUB AGENCY 3', 1004, 'X CUSTOMER 4', 'ADRES INFO', 'A CITY', 135790, 0, SYSDATE, 'USD');
      INSERT INTO ALLDATA 
      VALUES (11, 'Y AGENCY', 104, 'X SUB AGENCY 4', 1005, 'X CUSTOMER 5', 'ADRES INFO', 'A CITY', 112233, 0, SYSDATE, 'USD');
    
    
      COMMIT;
    Here what I need and what I've done:

    This is an example xml for data
    <agency>
      <agency_info>
        <agency_no>10</agency_no>
        <agency_name>X AGENCY</agency_name>
      </agency_info>
        <sub_agency>
          <sub_agency_info>
            <sub_agency_no>100</sub_agency_no>
            <sub_agency_name>X SUB AGENCY 1</sub_agency_name>
          </sub_agency_info>
          
          <cust_policy>
            <cust_info>
              <cust_id>1000</cust_id>
              <cust_name>X CUSTOMER 1</cust_name>
            </cust_info>
        
            <policies>
              <policy_no>123456</policy_no>
              <sub_policy_no>0</sub_policy_no>
              <policy_date>2012-05-03</policy_date>
            </policies>
            <policies>
              <policy_no>123456</policy_no>
              <sub_policy_no>1</sub_policy_no>
              <policy_date>2012-05-03</policy_date>
            </policies>
          
          </cust_policy>
          
          <cust_policy>
            <cust_info>
              <cust_id>1002</cust_id>
              <cust_name>X CUSTOMER 2</cust_name>
            </cust_info>
        
            <policies>
              <policy_no>654312</policy_no>
              <sub_policy_no>0</sub_policy_no>
              <policy_date>2012-05-03</policy_date>
            </policies>
          </cust_policy>
        
        </sub_agency>
        <sub_agency>
          <sub_agency_info>
            <sub_agency_no>101</sub_agency_no>
            <sub_agency_name>X SUB AGENCY 2</sub_agency_name>
          </sub_agency_info>
           -- cust and policy
             --cust
                --policy1
                --policy2
              --cust2
                --policy3
                --policy4
        </sub_agency>
    </agency>
    
    <agency>
      <agency_info>
        <agency_no>11</agency_no>
        <agency_name>Y AGENCY</agency_name>
      </agency_info>
      ...
      ...
    </agency>
    I could not write complete example, but first part is enough I think. for each agency of political news to the client of the agency sub should be listed like this.

    I tried to group by the Agency, then the XMLELEMENT and XMLAGG functions, but could not create political information and cust. So I put info separate agency to another table, separate sub_agency of information to another table and customer information to another table and write an sql has subqueries: start by selecting info from the Agency, then a subquery select sub_agency info in this subquery, I wrote another subquery select cust info and other select sub political information, but the performance is terrible.

    is it possible to get this just average selection of this detail table?

    PS: this is not my real date due to security problems. I created an example, so there may be small errors, sorry for that.

    Thank you much for the help.

    Hello

    Thanks for the sample data, which are very useful.

    This will produce two rows in the format you need.
    If you need a single fragment of XML, you can simply add another XMLAgg.

    SELECT XMLElement("agency",
             XMLElement("agency_info",
               XMLForest(
                 agency_no as "agency_no"
               , agency_name as "agency_name"
               )
             )
           , XMLAgg(sub_agency)
           ) as agency
    FROM (
      SELECT agency_no, agency_name
           , XMLElement("sub_agency",
               XMLElement("sub_agency_info",
                 XMLForest(
                   sub_agency_no as "sub_agency_no"
                 , sub_agency_name as "sub_agency_name"
                 )
               )
             , XMLAgg(cust_policy)
             ) as sub_agency
      FROM (
        SELECT agency_no, agency_name
             , sub_agency_no, sub_agency_name
             , XMLElement("cust_policy",
                 XMLElement("cust_info",
                   XMLForest(
                     cust_id as "cust_id"
                   , cust_name as "cust_name"
                   )
                 )
               , XMLAgg(
                   XMLElement("policies",
                     XMLForest(
                       policy_no as "policy_no"
                     , sub_policy_no as "sub_policy_no"
                     , policy_date as "policy_date"
                     )
                   )
                 )
               ) as cust_policy
        FROM alldata
        GROUP BY agency_no, agency_name
               , sub_agency_no, sub_agency_name
               , cust_id, cust_name, cust_street, cust_city
      )
      GROUP BY agency_no, agency_name
             , sub_agency_no, sub_agency_name
    )
    GROUP BY agency_no, agency_name
    ;
    
  • xml.onLoad variable undefined off function

    Hi all

    I searched this problem for a while and have tried a number of solutions found on google but nothing has worked so far. I'm sure this is a common problem, but due to my lack of knowledge flash that I can't not work logically through it that I'm used to development of windows form, it makes sense to me that the function could access the variables I defined, but they disappear after the .onLoad event. Does anyone know the common solution to this problem? I want to be able to convey the details of xml in local variables, so I can pass on details in a dynamic text field when films are flown over etc.

    Thanks in advance for any help.

    var myXML:XML = new XML();

    myXML.ignoreWhite = true

    var nav1TitleText:String;

    var nav1Text:String;

    var nav2TitleText:String;

    var nav2Text:String;

    var nav3TitleText:String;

    var nav3Text:String;

    var nav4TitleText:String;

    var nav4Text:String;

    myXML.load ("navigation.xml");

    myXML.onLoad = {function (success)}

    if (success) {}

    nav1TitleText = myXML.firstChild.childNodes [0] Sublst.ChildNodes(1).ChildNodes(0) [1].firstChild.nodeValue;

    trace (nav1TitleText); ------ It displays the text of the xml file

    nav1Text = myXML.firstChild.childNodes [0] Sublst.ChildNodes(1).ChildNodes(0) [2].firstChild.nodeValue;

    nav2TitleText = myXML.firstChild.childNodes [1] Sublst.ChildNodes(1).ChildNodes(0) [1].firstChild.nodeValue;

    nav2Text = myXML.firstChild.childNodes [1] Sublst.ChildNodes(1).ChildNodes(0) [2].firstChild.nodeValue;

    nav3TitleText = myXML.firstChild.childNodes [2] Sublst.ChildNodes(1).ChildNodes(0) [1].firstChild.nodeValue;

    nav3Text = myXML.firstChild.childNodes [2] Sublst.ChildNodes(1).ChildNodes(0) [2].firstChild.nodeValue;

    nav4TitleText = myXML.firstChild.childNodes [3] Sublst.ChildNodes(1).ChildNodes(0) [1].firstChild.nodeValue;

    nav4Text = myXML.firstChild.childNodes [3] Sublst.ChildNodes(1).ChildNodes(0) [2].firstChild.nodeValue;

    }

    }

    trace (nav1TitleText);  It traces undefined

    I think that it is beacause of the script running problem.

    var myXML:XML = new XML();

    myXML.ignoreWhite = true

    var nav1TitleText:String;

    var nav1Text:String;

    var nav2TitleText:String;

    var nav2Text:String;

    var nav3TitleText:String;

    var nav3Text:String;

    var nav4TitleText:String;

    var nav4Text:String;

    myXML.load ("navigation.xml");

    myXML.onLoad = {function (success)}

    If (success) {}

    nav1TitleText = myXML.firstChild.childNodes [0] Sublst.ChildNodes(1).ChildNodes(0) [1].firstChild.nodeValue;

    trace (nav1TitleText); ------It displays the text of the xml file

    nav1Text = myXML.firstChild.childNodes [0] Sublst.ChildNodes(1).ChildNodes(0) [2].firstChild.nodeValue;

    nav2TitleText = myXML.firstChild.childNodes [1] Sublst.ChildNodes(1).ChildNodes(0) [1].firstChild.nodeValue;

    nav2Text = myXML.firstChild.childNodes [1] Sublst.ChildNodes(1).ChildNodes(0) [2].firstChild.nodeValue;

    nav3TitleText = myXML.firstChild.childNodes [2] Sublst.ChildNodes(1).ChildNodes(0) [1].firstChild.nodeValue;

    nav3Text = myXML.firstChild.childNodes [2] Sublst.ChildNodes(1).ChildNodes(0) [2].firstChild.nodeValue;

    nav4TitleText = myXML.firstChild.childNodes [3] Sublst.ChildNodes(1).ChildNodes(0) [1].firstChild.nodeValue;

    nav4Text = myXML.firstChild.childNodes [3] Sublst.ChildNodes(1).ChildNodes(0) [2].firstChild.nodeValue;

    loadedValues()

    }

    }

    trace (nav1TitleText);  It traces undefined - CE will BE RUN BEFORE THE XML IS LOAD

    Change this line with the below

    function loadedValues() {}

    trace (nav1TitleText);

    }

  • Problem XML ComboBox [type function]

    What I'm trying to do is populate a component ComboBox labels and data using a table created from an XML data source. I know that I can use this to fill ComboBox in ActionScript:
    ------------------------------------------------------------------------
    comboBox.labels = ["itemA", "itemB ', ' itemC"];
    -OR-
    var cbArray:Array = ["itemA", "itemB ', ' itemC"];
    comboBox.labels = cbArray;
    ------------------------------------------------------------------------

    However, I'm running problems when the table is created from my data source XML, like this:
    ------------------------------------------------------------------------
    for (var g:Number = 0; g < aChildren.length; g ++) {}
    var aItem:String is achildren [g].firstChild.firstChild;.
    cbArray.push (aItem);
    };

    comboBox.labels = cbArray;
    trace (cbArray);
    ------------------------------------------------------------------------

    I left the details of XML (charge, onload, etc) because I don't think that's the problem. In my example, when I test the movie, the trace(). function displays the correct information, but the comboBox component is filled only with an identical number of instances:
    [type function], [type function], [type function], [type function], [type function]...

    I couldn't find a thread anywhere with my particular problem. Any ideas?

    I am answering my own question. I hope that someone will still have to be here. Someone I work with is a type of JavaScript guru, and he worked through it with me. For some reason the aItem variable is not be seen as a string. So the solution I found was to modify the code here:
    ----------------------------------------------------------------------
    ...
    var aItem:String is aChildren [g].firstChild.firstChild.toString ();.
    ...
    ----------------------------------------------------------------------

    This fixed my issue.

  • Administrator account does not load

    Hello
    I had problems with IE 8 and wanted to uninstall/reinstall, but admin password did not work with the pop-up window when logged in as a normal user.  I went to the admin profile users but not able to connect and received the following message.

    Service user profile Service has no logon. User profile cannot be loaded

    So I go into the event viewer to see the activity and find the following:

    • The description for event ID 0 in source AtBroker is not found. Either the component that triggers this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    • If the event is on another computer, the display information had to be saved with the event.
    • The following information has been included in the event:
    • GetSessionValue has not value public session error 2

    And it requires an admin override in the details of xml:

    -
     Access is denied.
    • Windows cannot load the user's profile, but you have logged on with the default profile for the system.
    • DETAIL - access is denied.

    Because I do not have access to the security log, I pulled the above on the Application logs.

    Last TPM is used in Vista Home Premium edition?

    Could not find a TPM Module (TPM) security device works on this computer. TBS could not be started.

    Thanks for your time.

    Hey bubbles Whith,

    O your computer is on a domain?

    This behavior can occur if the user profile was deleted manually using the command prompt or by using Windows Explorer. A profile that is manually deleted does not remove the security identifier (SID) of the list of profiles in the registry.

    If the SID is present, Windows will try to load the profile by using the ProfileImagePath that points to a nonexistent path. Therefore, the profile cannot be loaded.

    Important This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base:

    322756 (http://support.microsoft.com/kb/322756/) how to back up and restore the registry in Windows

    To resolve this issue, follow these steps:

    1. Delete the profile by using the computer properties dialog box. To do this, follow these steps:

    (a) click Start, right-click computer, and then click Properties.

    (b) click on change settings.

    (c) in the System Properties dialog box, click the Advanced tab.

    (d) under user profiles, click settings.

    (e) in the user profiles dialog box, select the profile that you want to remove, click Remove, and then click OK.

    1. Click on start toreduce this includes this image, type regedit in the box Start Search and press ENTER.
    2. Search for, and then expand the following registry subkey:

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList

    1. Right-click the SID that you want to remove and then click Remove.
    2. Log on to the computer and create a new profile.

    http://support.Microsoft.com/kb/947215

    I hope this helps.

    Bindu S - Microsoft Support

    [If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message.] [Marking a post as answer, or relatively useful, you help others find the answer more quickly.]

  • Whenever I try to make my sleep of laptop, it restarts. Perhaps 'event 41, Kernel-Power '.

    If I bend my laptop [Dell Inspiron 1525, Windows Vista Basic] or manually set the computer "Sleep", I find that it always restarts * [THIS PROBLEM ONLY OCCUR WHEN YOU PERFORM a CLEAN RESTART] *.   This has been driving me crazy for a while, but after checking the event viewer, I noticed that there is an event that seems to fit with each failed attempt sleep.  It goes thus:

    ------------------------------------------

    'The event 41, Kernel-Power '.

    The last sleep transition was unsuccessful. "This error can be caused if the system unresponsive, failed, or power during the transition from sleep loss."

    ------------------------------------------

    Details in XML mode are:

    ------------------------------------------

    -< event="" xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    -< system="">
      < provider="" name="Microsoft-Windows-Kernel-Power " guid=" {331c3b3a-2005-44c2-ac5e-77220c37d6b4}">
      < eventid="">41
      < version="">0
      < level="">1
      < task="">0
      < opcode="">0
      < keywords="">0 x 8000000000000002
      < timecreated="" systemtime=" 2010-10-12T00:10:52.619Z ">
      < eventrecordid="">37329
      < correlation="">
      < execution="" processid=" 4 " threadid="8 ">
      < channel="">System
      < computer="">Mike-PC
      < security="" userid="S-1-5-18 ">
     

    -< eventdata="">
      < data="" name="BugcheckCode ">0
      < data="" name="BugcheckParameter ">0 x 0
      < data="" name="BugcheckParameter ">0 x 0
      < data="" name="BugcheckParameter ">0 x 0
      < data="" name="BugcheckParameter ">0 x 0
     

     
    ------------------------------------------

    I think that this could be the root of the problem.
    --
    But also, if it helps, I found that there is also an another very common mistake happens, and I don't know if it's related.  It is:
    ------------------------------------------
    "The event 7000, the Service Control Manager event log provider.
    The BCM42RLY service failed to start due to the following error:

    The system cannot find the specified file. »
    And details:
    -< event="" xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    -< system="">
      < provider="" name="Service Control Manager " guid="{555908D1-A6D7-4695-8E1E-26931D2012F4}" eventsourcename=" Service Control Manager">
      < eventid="" qualifiers="49152 ">7000
      < version="">0
      < level="">2
      < task="">0
      < opcode="">0
      < keywords="">0 x 80000000000000
      < timecreated="" systemtime=" 2010-10-11T23:10:01.000Z ">
      < eventrecordid="">37313
      < correlation="">
      < execution="" processid=" 0 " threadid="0 ">
      < channel="">System
      < computer="">Mike-PC
      < security="">
     

    -< eventdata="">
      < data="" name="param1 ">BCM42RLY
      < data="" name="param2 ">%%d Ko
     

     
    ---------------------------------
    Any help would be much appreciated.  And if you can't help, thanks anyway for reading and try it.

    Sorry to wast time of which it is reading this, but I thought that it out *.

     

    http://support.Microsoft.com/kb/929135

    Who did the trick!

  • InputStreams for HTTP [S] response data: confirm a minimum memory buffer/reading early?

    I need to manage data from a web service response. The format of the response data is under my control and is returned as a stream (net.rim.device.api.crypto.tls.TLSInputStream) to my BlackBerry application. The content of the feed is an XML stream that contains simple header information and then one or more 'chunks' of data. The data is compressed (gzip) and coded (Base64). BB app must decrypt, decompress, and then process the data in the stream. For the purposes of my application, I never need all of the data at a time; processing flow for real, that's what I'm looking for. I've implemented a pipe which, in pseudocode, looks like this:

    SecureConnection httpsConn; already implemented

    InputStream httpsStream = httpsConn.openInputStream ();

    InputStream compressedStream = new (Base64InputStream.decode (httpsStream));

    InputStream is = new GZIPInputStream (compressedStream);

    int aByte = is.read ();

    The goal is to put buffer in the bit data as possible so that the operation on the side of BB is not intensive memory as the data grows. The effective implementation of this pseudo code works very well.

    The question I have is: I can confirm that the httpsStream I have created from the httpsConn is completely not himself read the BB in the specific RIM code? In other words, if there are 20 MB of data in the stream, I don't want to know that the stream has read data HTTPS completely - 20 MB all - and then put at disposal. Instead, I want to know only as much data is consumed as I makes (is.read) as well as a small buffer, perhaps, for the effectiveness of the network. A third way to ask the question: I think that it is supposed to be the definition of a well implemented InputStream, but I'm having a hard time finding a definitive '' Yes, J2ME (or BB) InputStreams promise to read HTTPS data on request and not all at once.

    I expect tons of streaming audio and video apps are partial evidence that works real data on the fly on the Net.  Still, I left the details as XML processing by SAX - it's one on the behavior of the InputStream HTTP [S].  But it brings the fourth way to phrase my question: if I use SAX instead of a tool of DOM to treat my HTML because I want to monitor the pressures of large data flows, will I get cancelled by buffering I can't control in the low-level InputStream HTTP [S]?

    Before you say, ' HTTP [S] is not where you should make streaming ", this is not streaming in itself. It is instead one - possibly large - answer to a POST.  Highly 'typical' web interaction

    If changes in response based on the version of the OS, presumably 4.6 or better is the target platform.

    Thank you!

    -Del

    I don't remember the said documentation. All I remember is that I proposed of workaround to someone on this forum and they later confirmed that he has solved the problem of buffering (they were streaming audio as great answers HTTP - streaming started to work very well, without a lot of latency).

  • Unable to appoint BPEL call variable activity with other variables output

    Hi all

    I tried to assign the result to an invoke activity to an output response BPEL activity variable. However I get Exception is thrown because the spec to the line is evaluated to be empty even if the output variable is clearly demonstrated in the trace stream. I am able to assign the output set variable to the variable response but when I try to assign the child element of the element of activity called the child element of the response output variable that it will fail.

    The activity to invoke calls an external reference link http that calls a proxy OSB service and returns details in XML format. I just a few tests now so I'll be back just static values to see if I could recover and use them as variables in BPEL, regardless of the input in activity variable.

    The HTTP Binding call will return:

    < IAMDetails >

    < ApplicationID > < / ApplicationID >

    < user name > < / UserID >

    < user name > < / username >

    < / IAMDetails >

    The XSD used for entry and exit for the HTTP binding are as follows:

    Scheme of entry:

    " < xs: Schema attributeFormDefault ="unqualified"elementFormDefault ="qualified"xmlns: XS =" http://www.w3.org/2001/XMLSchema "targetNamespace =" " http://www.w3schools.COM1 ">

    < xs: element name = "IAMDetailsReq" >

    < xs: complexType >

    < xs: SEQUENCE >

    < xs: ELEMENT type = "xs: String" name = "ApplicationID" / >

    < xs: ELEMENT type = "xs: String" name = "User name" / >

    < xs: ELEMENT type = "xs: String" name = "User name" / >

    < / xs: SEQUENCE >

    < / xs: complexType >

    < / xs: element >

    < / xs: Schema >

    Output schema:

    " < xs: Schema attributeFormDefault ="unqualified"elementFormDefault ="qualified"xmlns: XS =" http://www.w3.org/2001/XMLSchema "targetNamespace =" " http://www.w3schools.COM12 ">

    < xs: element name = "IAMDetails" >

    < xs: complexType >

    < xs: SEQUENCE >

    < xs: ELEMENT type = "xs: String" name = "ApplicationID" / >

    < xs: ELEMENT type = "xs: String" name = "User name" / >

    < xs: ELEMENT type = "xs: String" name = "User name" / >

    < / xs: SEQUENCE >

    < / xs: complexType >

    < / xs: element >

    < / xs: Schema >

    The WSDL for the http binding

    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions
         name="qweerty"
         targetNamespace="http://xmlns.oracle.com/pcbpel/adapter/http/GenLetterSendEmail/Project2/qweerty"
         xmlns:msg_in="http://www.w3schools.com1"
         xmlns:tns="http://xmlns.oracle.com/pcbpel/adapter/http/GenLetterSendEmail/Project2/qweerty"
         xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
         xmlns:msg_out="http://www.w3schools.com12"
         xmlns:plt="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
        >
        <plt:partnerLinkType name="get_plt">
            <plt:role name="get_role">
                <plt:portType name="tns:get_ptt"/>
            </plt:role>
        </plt:partnerLinkType>
        <wsdl:types>
            <schema xmlns="http://www.w3.org/2001/XMLSchema">
                <import namespace="http://www.w3schools.com1" schemaLocation="xsd/IAMDetails.xsd"/>
            </schema>
            <schema xmlns="http://www.w3.org/2001/XMLSchema">
                <import namespace="http://www.w3schools.com12" schemaLocation="xsd/IAMDetails2.xsd"/>
            </schema>
        </wsdl:types>
        <wsdl:message name="IAMDetailsReq_msg_in">
            <wsdl:part name="IAMDetailsReq" element="msg_in:IAMDetailsReq"/>
        </wsdl:message>
        <wsdl:message name="IAMDetails_msg_out">
            <wsdl:part name="IAMDetails" element="msg_out:IAMDetails"/>
        </wsdl:message>
        <wsdl:portType name="get_ptt">
            <wsdl:operation name="get">
                <wsdl:input message="tns:IAMDetailsReq_msg_in"/>
                <wsdl:output message="tns:IAMDetails_msg_out"/>
            </wsdl:operation>
        </wsdl:portType>
    </wsdl:definitions>
    
    

    Here is the BPEL process

    <?xml version = "1.0" encoding = "UTF-8" ?>
    
    <process name="BPELProcess1"
                   targetNamespace="http://xmlns.oracle.com/GenLetterSendEmail/Project2/BPELProcess1"
                   xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
                   xmlns:client="http://xmlns.oracle.com/GenLetterSendEmail/Project2/BPELProcess1"
                   xmlns:ora="http://schemas.oracle.com/xpath/extension"
                   xmlns:bpel="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
             xmlns:ns1="http://xmlns.oracle.com/pcbpel/adapter/http/GenLetterSendEmail/Project2/asdasd"
             xmlns:ns2="http://xmlns.oracle.com/pcbpel/adapter/http/GenLetterSendEmail/Project2/qweerty"
             xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
             xmlns:ns4="http://www.w3schools.com123"
             xmlns:ns3="http://www.w3schools.com12">
    
    
      <!--
        ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
         ORCHESTRATION LOGIC                                              
         Set of activities coordinating the flow of messages across the   
         services integrated within this business process                 
        ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
      -->
      <partnerLinks>
        <partnerLink name="asdasd" partnerLinkType="ns1:Request_Response_plt"
                     myRole="Request-Response_role"/>
        <partnerLink name="qweerty" partnerLinkType="ns2:get_plt"
                     partnerRole="get_role"/>
      </partnerLinks>
      <variables>
        <variable name="Receive1_Request-Response_InputVariable"
                  messageType="ns1:testing_msg_in"/>
        <variable name="Reply1_Request-Response_OutputVariable"
                  messageType="ns1:testing2_msg_out"/>
        <variable name="Invoke1_get_InputVariable"
                  messageType="ns2:IAMDetailsReq_msg_in"/>
        <variable name="Invoke1_get_OutputVariable"
                  messageType="ns2:IAMDetails_msg_out"/>
      </variables>
      <sequence name="main">
        <receive name="Receive1" createInstance="yes" partnerLink="asdasd"
                 portType="ns1:Request_Response_ptt" operation="Request-Response"
                 variable="Receive1_Request-Response_InputVariable"/>
        <invoke name="Invoke1" partnerLink="qweerty"
                portType="ns2:get_ptt" operation="get"
                inputVariable="Invoke1_get_InputVariable"
                outputVariable="Invoke1_get_OutputVariable"
                bpelx:invokeAsDetail="no"/>
        <assign name="Assign1">
          <copy>
            <from>$Invoke1_get_OutputVariable.IAMDetails/ns3:ApplicationID</from>
            <to>$Reply1_Request-Response_OutputVariable.testing2/ns4:response</to>
          </copy>
        </assign>
        <reply name="Reply1" variable="Reply1_Request-Response_OutputVariable"
               partnerLink="asdasd" portType="ns1:Request_Response_ptt"
               operation="Request-Response"/>
      </sequence>
    </process>
    
    

    The error response

    <error>faultName: {{http://docs.oasis-open.org/wsbpel/2.0/process/executable}selectionFailure}
    messageType: {{http://schemas.oracle.com/bpel/extension}RuntimeFaultMessage}
    </error>
    
    

    So for now, I am trying to assign ApplicationID to the response variable but it still isn't the assign activity. I'm not sure what the problem might be that my knowledge on BPEL is quite limited. Any help would be greatly appreciated. Thank you.

    Kind regards

    Mark

    You can try removing the attributeFormDefault and elementFormDefaults of the target schema elements...

  • Cannot use mathematical operations on the settings defined in the model

    We use BI Publisher 11.1.1.6

    We have a report that contains a few settings entered by the user.  The model defines variables to parameters like this:

    <? param@begin:loadsch;5? >

    I can see the $loadsch parameter in a field very well, using this code in a domain: <? $loadsch? >

    Note that the parameter is given a default value.  When you use the preview function in Word template designer, things work fine.

    The problem arises when a mathematical operation on the variable $loadsch.

    When previewing in Model Builder, I can display a field with the following formula: <? 1 + $loadsch? >

    But, when you view the report on the BI Publisher server, I get very informative typical error: oracle.xdo.XDOException: java.lang.reflect.InvocationTargetException

    Looking at the server logs, I see the following error information:

    Message from the incomplete xslt._XDONFSEPARATORS: decimal: null, grouping separator: null

    Error XSL:

    Further details < line 74, column 367 >: XML-23002: internal xpath (error)

    @Line 74 == > < / _P > < _Q > < fo:inline XML: Space = "preserve" font-family = "Arial" height = "9.0pt" police-family-generic = "swiss" white-space-collapse = "false" color = "#000000" style-name = the size of the 'Normal' font = "9.0pt" > 3: < xsl: variable xdofo:ctx = xdofo:ctx2 '17' = 'wrapper' name = "fv3" > < xsl: Value-Select = "1 + xdoxslt:one ($loadsch)" xdofo:field - name = '1 + $loadsch' / > < / xsl : variable > < xsl: value-of select = "xdoxslt:ms_format_number ($_XDOXSLTCTX, xdoxslt:one ($fv3), ' #, ##0.0')" / > < / fo:inline >

    Message from oracle.xdo.XDOException: java.lang.reflect.InvocationTargetException

    More details at oracle.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1233)

    at oracle.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:279)

    at oracle.xdo.template.FOProcessor.createFO(FOProcessor.java:1973)

    at oracle.xdo.template.FOProcessor.generate(FOProcessor.java:1143)

    at oracle.xdo.servlet.RTFCoreProcessor.transform(RTFCoreProcessor.java:124)

    at oracle.xdo.servlet.CoreProcessor.process(CoreProcessor.java:494)

    ...

    Caused by: oracle.xdo11g.xqxp.XQException: XPTY0004

    Someone knows how to fix this?  How can I perform mathematical operations on the setting?

    the error may be in operation as (number + string)

    then you can try

    
    

    or

    
    

    Further detail : 23002-XML: xpath internal (mistake)

    @Line 74 ==> <_Q>3:

    sure what error occurred by ""?

    any other code exists in your report?

    Thanks for posting more details

  • API XML need to find details of server status

    Hello

    Can someone help me with the format XML API to find the server details status as State Admin Avail, State Assoc, etc..

    Thanks and greetings

    -David

    It seems that the UCSM uses this call to get the information in the base table of the servers tab.

    It is the view of Service profile. Following is the display of blade material:

  • Parsing xml and store the details in the hierarchical tables

    Hi all

    I'm trying to parse a xml code and store the details in the hierarchical tables, however, I am unable to analyze the child attributes of tags and store the details in relational format.

    Oracle - 11.2.0.4 version

    My XML looks like in below:

    <Root>
    <ParentTag name="JobName" attrib1="Text" attrib2="SomeOtherText">
      <ChildTag childAttrib1="SomeValue1" childAttrib2="SomeValue2" />
      <ChildTag childAttrib1="SomeValue3" childAttrib2="SomeValue4" />
      <ChildTag childAttrib1="SomeValue5" childAttrib2="SomeValue6" />
    
      <OtherChildTag childAttrib1="SomeValue1" childAttrib2="SomeValue2" />
    </ParentTag>
    </Root>
    
    

    The table structure is as follows:

    create the table parent_details
    (
    job_id number primary key,
    VARCHAR2 (100) job_name,.
    job_attrib1 varchar2 (100),
    job_attrib2 varchar2 (100)
    );

    create the table child_details
    (
    child_id number primary key,
    number of parent_job_id
    child_attrib1 varchar2 (100),
    child_attrib2 varchar2 (100),
    Constraint fk_child_details foreign key (parent_job_id) refers to parent_details (job_id)
    );

    After analysis, I would expect the data to be stored in the format below:

    Table Name:-
    parent_details
    ID Name     Attribute1  Attribute2
    1  JobName  Text        SomeOtherText
    
    
    ChildTable (Store Child Tag details)
    ID Parent ID Attribute1  Attribute2
    1  1         SomeValue1  SomeValue2
    2  1         SomeValue3  SomeValue4
    3  1         SomeValue5  SomeValue6
    
    

    I tried following SQL, but it does not work. Please suggest if the same SQL can be improved to get the details in the expected format or should I use another solution.

    select job_details.*
      from test_xml_table t,
           xmltable ('/Root/ParentTag'
                      passing t.col 
                      columns 
                        job_name varchar2(2000) path '@name',
                        attribute1 varchar2(2000) path '@attrib1',
                        attribute2 varchar2(2000) path '@attrib2',
                        childAttribute1 varchar2(2000) path '/ChildTag/@childAttrib1'
                    ) job_details;
    

    I'm not forced to have a SQL solution, but would if it can be in SQL.

    Kind regards

    Laureline.

    Post edited by: Jen K - added the SQL, I tried to build.

    Well, the XML contains hierarchical data, and SQL is a "dish" of data, so it's up to you to treat lines that are coming out of the flat style and determine how to get that in separate tables.

    Suppose that we have several nodes of ParentTag each containing several nodes of ChildTag...

    SQL > ed
    A written file afiedt.buf

    1 with t (xml) as (select xmltype ('))
    2
    3
    4
    5
    6
    7

    8
    9
    10
    11
    12

    13
    ') of double)
    14-
    15 end of test data
    16-
    17 select x.p
    18, x.name, x.attrib1, x.attrib2
    19, including
    20, y.childattrib1, y.childattrib2
    21 t
    22, xmltable ('/ Root/ParentTag ')
    23 passage t.xml
    p 24 columns for ordinalite
    25, path name varchar2 (10) '. / @name'
    26, path of varchar2 (10) of attrib1 '. / @attrib1 '


    27, way to varchar2 (10) of attrib2 '. / @attrib2 '
    28 children xmltype road '.'
    29                 ) x
    30, xmltable ('/ ParentTag/ChildTag ')
    passage 31 x.children
    c 32 columns for ordinalite
    33, path of varchar2 (10) of childattrib1 '. / @childAttrib1 '
    34 road of varchar2 (10) of childattrib2 '. / @childAttrib2 '
    35*                ) y
    SQL > /.

    P NAME ATTRIB1 ATTRIB2 C CHILDATTRI CHILDATTRI
    ---------- ---------- ---------- ---------- ---------- ---------- ----------
    1 text JobName SomeOtherT 1 SomeValue1 value2
    1 text JobName SomeOtherT 2 SomeValue3 SomeValue4
    1 text JobName SomeOtherT 3 SomeValue5 SomeValue6
    JobName2 TextX SomeOtherT 1 SomeValue6 SomeValue8 2
    JobName2 TextX SomeOtherT 2 SomeValue7 SomeValue9 2

    Using the 'ordinalite' gives us the line number for this node in the XML file, so that you can identify each parent as well as to say who is the first record of this parent (because it will have a child with the ordinalite 1).

    An INSERT ALL tuition assistance we can insert into two different tables at the same time to keep related data... for example

    SQL > create table tbl1 (pk number, name varchar2 (10), attrib1 varchar2 (10), attrib2 varchar2 (10))
    2.

    Table created.

    SQL > create table tbl2 (parent_pk number, attrib1 varchar2 (10), attrib2 varchar2 (10))
    2.

    Table created.

    SQL > insert all
    2 when c = 1 then
    3 in the tbl1 (pk, attrib1, attrib2)
    4 values (p, attrib1, attrib2)
    When 5 1 = 1 then
    6 in the tbl2 (parent_pk, attrib1, attrib2)
    7 values (p, childattrib1, childattrib2)
    8 with t (xml) as (select xmltype ('))
    9
    10
    11
    12
    13
    14

    15
    16
    17
    18
    19

    20
    ') of double)
    21 select x.p
    22, x.name, x.attrib1, x.attrib2
    23, including
    24, y.childattrib1, y.childattrib2
    25 t
    26, xmltable ('/ Root/ParentTag ')
    27 passage t.xml
    p 28 columns for ordinalite
    29, path name varchar2 (10) '. / @name'
    30, path of varchar2 (10) of attrib1 '. / @attrib1 '
    31, path of varchar2 (10) of attrib2 '. / @attrib2 '
    32 children xmltype road '.'
    33                 ) x
    34, xmltable ('/ ParentTag/ChildTag ')
    passage 35 x.children
    c 36 columns for ordinalite
    37, path of varchar2 (10) of childattrib1 '. / @childAttrib1 '
    38, path of varchar2 (10) of childattrib2 '. / @childAttrib2 '
    39                 ) y
    40.

    7 lines were created.

    SQL > select * from tbl1;

    PK ATTRIB1 ATTRIB2 NAME
    ---------- ---------- ---------- ----------
    1 text JobName SomeOtherT
    2 JobName2 TextX SomeOtherT

    SQL > select * from tbl2.

    PARENT_PK ATTRIB1 ATTRIB2
    ---------- ---------- ----------
    1 SomeValue1 value2
    1 SomeValue3 SomeValue4
    1 SomeValue5 SomeValue6
    SomeValue6 2 SomeValue8
    SomeValue7 2 SomeValue9

  • Need details (fsisys, fsiuser and afgjob) of the Configuration file for an XML in documaker 12 execution

    Hello

    I need details of the basic configuration for the execution of a simple xml in documaker 12. Details such as printer, configuration of the recipient, etc..

    Hello Sen,

    You can set below the sections of XML configuration related in addition to the configuration manager of DB and the General library which is necessary for Documaker version 12.x. The configuration of the printer may not require changes from the flat file extracted mode. Make sure the entrance of afgjob; BatchingByRecipINI; is in place too.

    < extractkeyfield="">

    Masque_recherche = 1,<>

    [RECIP_NAMES]

    ZERO = 000,

    FC = 101, COPY FULL

    < batchingbyrecip="">

    DefaultBatch = BATCH1

    Batch_Recip_def =! RecipientRecord [RecipientDescription = "Full copy"]; "' BATCH1 '; FC

    < runmode="">

    NAUNLOAD = Yes

    XMLExtract = Yes

    DownLoadFAP = Yes

    ChkDstLenExceeded = No

    LoadCordFAP = No

    CheckNextRecip = No

    CompiledFAP = No

    < trn_fields="">

    SystemInd =! TransactionRecord/TransactionKey/SystemIndicator

    TransactionNum =! TransactionRecord/TransactionKey/TransactionNumber

    LOB =! PolicyRecord/LOB

    Iteration =! TransactionRecord/TransactionKey/Iteration

  • XML 1header and n detail records

    Hi all

    AM new to the generation of XML files.
    I need a procedure that meets my business needs

    My business requirement is

    We need generate XML target based on the customer article number.and number files. The file put out should contain details of the client in the header and detail record must contain all the elements, amount that belong to this customer.

    For example, if there are 4 clients and each client has 2 items under them so the XML files should be like

    < header >
    Number 1 of the client
    < / header >
    < detail >
    Point 1
    < / details >
    < detail >
    Point 2
    < / details >

    In the above format, I need to generate 4 XML files as I have 4 clients.

    Could you please help me to write a stored procedure for this requirement.
    I thank very you much for your help in advance.

    Kind regards
    Marie Laure.

    Published by: user8595010 on August 3, 2012 01:40

    Ok
    reproduce your error

    SQL> create table t (a number, b varchar2(10), c varchar2(10));
    
    Table created
    
    SQL>
    SQL> insert into t values (1, 'qwe', 'qwe');
    
    1 row inserted
    SQL> insert into t values (1, 'asd', 'as');
    
    1 row inserted
    SQL> insert into t values (2, 'zxc', 'zxc');
    
    1 row inserted
    SQL> insert into t values (2, 'ert', 'ert');
    
    1 row inserted
    
    SQL> select * from t;
    
             A B          C
    ---------- ---------- ----------
             1 qwe        qwe
             1 asd        as
             2 zxc        zxc
             2 ert        ert
    
    SQL>
    SQL> select a, xmlserialize(document
      2                                  xmlelement("B-C-Rec",
      3                                             xmlelement("B-Rec",
      4                                                        xmlforest(b,
      5                                                                  a)),
      6                                             xmlagg(xmlelement("C-Rec",
      7                                                               xmlforest(c)))) as clob) as xmldoc
      8  from t
      9  group by b,c,a
     10  /
    
             A XMLDOC
    ---------- --------------------------------------------------------------------------------
             1 asd1as
             2 ert2ert
             1 qwe1qwe
             2 zxc2zxc
    
    SQL>
    SQL> declare
      2    doc clob;
      3  begin
      4
      5    FOR r IN (select a, xmlserialize(document
      6                                  xmlelement("B-C-Rec",
      7                                             xmlelement("B-Rec",
      8                                                        xmlforest(b,
      9                                                                  a)),
     10                                             xmlagg(xmlelement("C-Rec",
     11                                                               xmlforest(c)))) as clob) as xmldoc
     12              from t
     13              group by b,c,a) LOOP
     14
     15      dbms_xslprocessor.clob2file('' ||
     16                                    r.xmldoc,
     17                                    'MYDIR',
     18                                    'BIX_CUSTOMER_' || r.a ||
     19                                    '.xml',
     20                                    nls_charset_id('AL32UTF8'));
     21    END LOOP;
     22
     23  end;
     24  /
    
    PL/SQL procedure successfully completed
    
    SQL>
    SQL> declare
      2    doc clob;
      3  begin
      4
      5    FOR r IN (select a, xmlserialize(document
      6                                  xmlelement("B-C-Rec",
      7                                             xmlelement("B-Rec",
      8                                                        xmlforest(b,
      9                                                                  a)),
     10                                             xmlagg(xmlelement("C-Rec",
     11                                                               xmlforest(c)))) as clob) as xmldoc
     12              from tt --' ||
     16                                    r.xmldoc,
     17                                    'MYDIR',
     18                                    'BIX_CUSTOMER_' || r.a ||
     19                                    '.xml',
     20                                    nls_charset_id('AL32UTF8'));
     21    END LOOP;
     22
     23  end;
     24  /
    
    declare
      doc clob;
    begin
    
      FOR r IN (select a, xmlserialize(document
                                    xmlelement("B-C-Rec",
                                               xmlelement("B-Rec",
                                                          xmlforest(b,
                                                                    a)),
                                               xmlagg(xmlelement("C-Rec",
                                                                 xmlforest(c)))) as clob) as xmldoc
                from tt --< notexist
                group by b,c,a) LOOP
    
        dbms_xslprocessor.clob2file('' ||
                                      r.xmldoc,
                                      'MYDIR',
                                      'BIX_CUSTOMER_' || r.a ||
                                      '.xml',
                                      nls_charset_id('AL32UTF8'));
      END LOOP;
    
    end;
    
    ORA-06550: line 13, column 18:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 6, column 12:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 17, column 35:
    PLS-00364: loop index variable 'R' use is invalid
    ORA-06550: line 16, column 5:
    PL/SQL: Statement ignored
    
    SQL> 
    

    If your table agg_apo_stock is not in your db/shema or maybe you can't have permissions on it
    Check it out

  • Details on AIAInstallProperties.xml

    Hi all

    Can someone provide/point me for more details on the following sections of the file AIAInstallProperties.xml.

    < participatingapplications >
    < Ebiz >
    < Server >
    ************
    < / Server >
    < db >
    ***********
    < /dB >
    < / Ebiz >
    < / participatingapplications >
    < pips >
    *******************
    < / pips >

    When do we actually need to fill these sections, and even if we find out what are the appropriate values? For example: wouldn't the db details in particiapting request, details of the apps schema, and why they are needed?

    Thank you
    ANish.

    Anish,
    the parameters you need depends on what application you integrate and how you connect to that.

    So, for example, if use you the datasbases JCA adapter, you apparently DB details such as the host name, port, SID, schema name, and password in the case of an Oracle DB. In the case of the use of SOAP/http can use to interact with an application that provides standard web services, you would not use a JCA adapter and, therefore, would not necessary to fill in the AIAInstallProperties.xml, that your deployment plan should not have references to all parameters, it.

    So, I guess the best approach is to analyze your deployment plan so that the settings for applications you are integrating and fill them. To understand what kind of values are expected for each parameter, it would be wise to check the deployment plan that comes with the AIA Demo (samples/AIADemo/config/AIADemoDeploymentPlan.xml) as a reference and check what values it is representative of the AIAInstallProperties.xml. This should give you a good idea of what values required by the deployment instructions.

    An example is the use of the DB adapter in the demo of the AIA. In the deployment plan, which translates into the following:


    This refers to such content in the AIAInstallProperties.xml:





    JDBC:Oracle:thin:@aia11g.localdomain:1521/AIA
    AIA11G_FOD
    [C@1c32c491
    true
    sys
    [C@1c32c491
    SYSDBA
    SYSTEM
    TEMP



    Hope that helps.
    Gerhard

  • Details on the conversion of Xml?

    Hi Experts,

    I have table xx_xml_test
    who have single line input
    <logentry
       revision="3">
    <author>MA111300</author>
    <date>2012-10-03T12:42:40.562848Z</date>
    <paths>
    <path
       kind="file"
       action="A">/root.txt</path>
    <path
       kind="file"
       action="A">/sample2/test_2.txt</path>
    <path
       kind="dir"
       action="A">/sample1</path>
    <path
       kind="file"
       action="A">/sample2/sample2.1/Test_2.1.txt</path>
    <path
       kind="dir"
       action="A">/sample1/sample1.1</path>
    <path
       kind="dir"
       action="A">/sample2</path>
    <path
       kind="dir"
       action="A">/sample2/sample2.1</path>
    <path
       kind="file"
       action="A">/sample1/sample1.1/test_1.1.txt</path>
    <path
       kind="file"
       action="A">/sample1/test_1.txt</path>
    </paths>
    <msg></msg>
    </logentry>
    I want to convert the table as below
    Revision    author          date                  kind     action    path
    3           MA111300      2012-10-03 12:42:40     file        A     /root.txt
    3           MA111300      2012-10-03 12:42:40     file        A     /sample2/test_2.txt
    Iqbal

    Here are the basics to get started you...

    SQL> ed
    Wrote file afiedt.buf
    
      1  with t as (select xmltype('
      3  MA111300
      4  2012-10-03T12:42:40.562848Z
      5  
      6  /root.txt
      9  /sample2/test_2.txt
     12  /sample1
     15  /sample2/sample2.1/Test_2.1.txt
     18  /sample1/sample1.1
     21  /sample2
     24  /sample2/sample2.1
     27  /sample1/sample1.1/test_1.1.txt
     30  /sample1/test_1.txt
     33  
     34  
     35  ') as xml from dual)
     36  --
     37  -- END OF TEST DATA, USE QUERY BELOW ON YOUR OWN
     38  --
     39  select x.revision, x.author, x.dt
     40        ,y.kind, y.action, y.path_txt
     41  from   t
     42        ,xmltable('/logentry'
     43                  passing t.xml
     44                  columns revision number       path './@revision'
     45                         ,author   varchar2(10) path './author'
     46                         ,dt       varchar2(30) path './date'
     47                         ,paths    xmltype      path './paths'
     48                 ) x
     49        ,xmltable('/paths/path'
     50                  passing x.paths
     51                  columns kind     varchar2(4)  path './@kind'
     52                         ,action   varchar2(1)  path './@action'
     53                         ,path_txt varchar2(40) path '.'
     54*                ) y
    SQL> /
    
      REVISION AUTHOR     DT                             KIND A PATH_TXT
    ---------- ---------- ------------------------------ ---- - ----------------------------------------
             3 MA111300   2012-10-03T12:42:40.562848Z    file A /root.txt
             3 MA111300   2012-10-03T12:42:40.562848Z    file A /sample2/test_2.txt
             3 MA111300   2012-10-03T12:42:40.562848Z    dir  A /sample1
             3 MA111300   2012-10-03T12:42:40.562848Z    file A /sample2/sample2.1/Test_2.1.txt
             3 MA111300   2012-10-03T12:42:40.562848Z    dir  A /sample1/sample1.1
             3 MA111300   2012-10-03T12:42:40.562848Z    dir  A /sample2
             3 MA111300   2012-10-03T12:42:40.562848Z    dir  A /sample2/sample2.1
             3 MA111300   2012-10-03T12:42:40.562848Z    file A /sample1/sample1.1/test_1.1.txt
             3 MA111300   2012-10-03T12:42:40.562848Z    file A /sample1/test_1.txt
    
    9 rows selected.
    

Maybe you are looking for