Timing Issue - Running sqlplus for each script in a list of scripts

I have a large number of folders with sql scripts that I need to run from windows with sqlplus. The problem is the scripts must be run in order. When I loop through the scripts and run sqlplus for each one, they sometimes fail because things in the prior script are not yet available.
So I added a jdbc client that checks a table for when the data is available from the prior sqlplus script. It says yes the data is visible in the table so the script can launch the next SQLPlus process but it fails unless I put a 2 second sleep in.
Because sqlplus doesn't have a "CD" command and there are limitations with SQL_PATH and relative imported child scripts, I'm afraid I'm stuck with running multiple sqlplus sessions.

I should clarify that I'm looking for a way to run scripts in sequence with sqlplus. There is an issue where one sqlplus session commits and exits and the next starts but the commit is not yet available to the new sqlplus session. To me this is a bug with sqlplus but maybe someone can explain how this is a "feature".

Similar Messages

  • Reset page number to '1 ' for each box of packing list in sap script

    hi Gurus,
    I am running a packing list for delivery note . Many boxes spread across more than one page. I Need to print page number in Packing list for each box like 1 of 2 , 2 of 2. In the new page for next box , I need to print 1 of 1, 2 of 2. and goes on.
    can you suggest a method to achieve this in script.
    thanks,
    manoj

    Hi,
    Could you give me the reply for following question?
    1. Are the boxes changing depends on the data? or static size? How many boxes would be displayed in a page?
    2. Is it your own driver program / standard one?
    3. Suppose if you have 5 pages and having 10 boxes, 2 boxes for each page, then do you need to display like,
    >1 of 1 on 1st box on 1st page
    >2 of 1 on 2nd box on 1st page
    >1 of 2 on 1st box on 2nd page
    >2 of 2 on 2nd box on 2nd page
    >....
    Is it so?
    Once i get these details then I will let u know the way....:)

  • Issue with XSLT For each loop in B2B Mapping

    Hi All,
    I am trying to map the inbound 997 Payload into Headers and Lines Table. I am using the For Each XSLT Construct to map the Loop AK2 of 997 into the 997 Lines Collection.
    Issue I am facing is that if the Loop AK2 is repeated for 33 times then for all the 33 times only its first element's value is getting passed into the target of mapping file.
    in coming payload
    <Loop-AK2>
    <Segment-AK2>
    <Element-143>810</Element-143>
    <Element-329>0001</Element-329>
    </Segment-AK2>
    <Segment-AK5>
    <Element-717>A</Element-717>
    </Segment-AK5>
    </Loop-AK2>
    <Loop-AK2>
    <Segment-AK2>
    <Element-143>810</Element-143>
    <Element-329>0002</Element-329>
    </Segment-AK2>
    <Segment-AK5>
    <Element-717>A</Element-717>
    </Segment-AK5>
    </Loop-AK2>
    <Loop-AK2>
    <Segment-AK2>
    <Element-143>810</Element-143>
    <Element-329>0003</Element-329>
    </Segment-AK2>
    <Segment-AK5>After transformation using XSLT file the payload looks like as follows
    <ns0:XxmfiEdi997_AckLines>
    <ns0:lineId>33</ns0:lineId>
    <ns0:trxSetIdentCode>810</ns0:trxSetIdentCode>
    <ns0:trxSetControlNumber>0001</ns0:trxSetControlNumber>
    <ns0:segmentCode/>
    <ns0:segmentPosition/>
    <ns0:segmentError/>
    <ns0:trxSetAckCode>A</ns0:trxSetAckCode>
    </ns0:XxmfiEdi997_AckLines>
    <ns0:XxmfiEdi997_AckLines>
    <ns0:lineId>34</ns0:lineId>
    <ns0:trxSetIdentCode>810</ns0:trxSetIdentCode>
    <ns0:trxSetControlNumber>0001</ns0:trxSetControlNumber>
    <ns0:segmentCode/>
    <ns0:segmentPosition/>
    <ns0:segmentError/>
    <ns0:trxSetAckCode>A</ns0:trxSetAckCode>
    </ns0:XxmfiEdi997_AckLines>
    <ns0:XxmfiEdi997_AckLines>
    <ns0:lineId>35</ns0:lineId>
    <ns0:trxSetIdentCode>810</ns0:trxSetIdentCode>
    <ns0:trxSetControlNumber>0001</ns0:trxSetControlNumber>
    <ns0:segmentCode/>
    <ns0:segmentPosition/>
    <ns0:segmentError/>
    <ns0:trxSetAckCode>A</ns0:trxSetAckCode>
    </ns0:XxmfiEdi997_AckLines>
    <ns0:XxmfiEdi997_AckLines>
    <ns0:lineId>36</ns0:lineId>
    <ns0:trxSetIdentCode>810</ns0:trxSetIdentCode>
    <ns0:trxSetControlNumber>0001</ns0:trxSetControlNumber>
    <ns0:segmentCode/>
    <ns0:segmentPosition/>
    <ns0:segmentError/>
    <ns0:trxSetAckCode>A</ns0:trxSetAckCode>
    </ns0:XxmfiEdi997_AckLines>
    <ns0:XxmfiEdi997_AckLines>
    <ns0:lineId>37</ns0:lineId>
    <ns0:trxSetIdentCode>810</ns0:trxSetIdentCode>
    <ns0:trxSetControlNumber>0001</ns0:trxSetControlNumber>
    <ns0:segmentCode/>
    <ns0:segmentPosition/>the Element-329 of incoming source payload is mapped to trxSetControlNumber of target payload, the issue is obvious from the above XML data that trxSetControlNumber is always having the value 0001 for every occurence where as its expected to fetch the value of the element of its corresponding occurence not the first elements value.
    Please find below the xslt file code i used for mapping
    <ns0:XxmfiEdi997_AckHeadersCollection>
          <ns0:XxmfiEdi997_AckHeaders>
            <ns0:headerId>
              <xsl:value-of select='oraext:sequence-next-val("XXMFI_EDI_997_ACK_HEADERS_S","jdbc/MTSI-apps")'/>
            </ns0:headerId>
            <ns0:processFlag>
              <xsl:text disable-output-escaping="no">I</xsl:text>
            </ns0:processFlag>
             <ns0:xxmfiEdi997_AckLinesCollection>
              <xsl:for-each select="/ns1:Transaction-997/ns1:Loop-AK2">
                <ns0:XxmfiEdi997_AckLines>
                  <ns0:lineId>
                    <xsl:value-of select='oraext:sequence-next-val("XXMFI_EDI_997_ACK_LINES_S","jdbc/MTSI-apps")'/>
                  </ns0:lineId>
                  <ns0:trxSetIdentCode>
                    <xsl:value-of select="/ns1:Transaction-997/ns1:Loop-AK2/ns1:Segment-AK2/ns1:Element-143"/>
                  </ns0:trxSetIdentCode>
                  <ns0:trxSetControlNumber>
                    <xsl:value-of select="ns1:Segment-AK2/ns1:Element-329"/>
                  </ns0:trxSetControlNumber>
                  <ns0:segmentError>
                    <xsl:value-of select="/ns1:Transaction-997/ns1:Loop-AK2/ns1:Loop-AK3/ns1:Segment-AK3/ns1:Element-720"/>
                  </ns0:segmentError>
                  <ns0:trxSetAckCode>
                    <xsl:value-of select="/ns1:Transaction-997/ns1:Loop-AK2/ns1:Segment-AK5/ns1:Element-717"/>
                  </ns0:trxSetAckCode>
                </ns0:XxmfiEdi997_AckLines>
              </xsl:for-each>
            </ns0:xxmfiEdi997_AckLinesCollection>
          </ns0:XxmfiEdi997_AckHeaders>Is there something I am doing wrong in mapping or am I missing something here. Please suggest .
    Thanks in advance
    ~TK.

    Hi,
    In your xslt code within the for loop, for the trxSetIdentCode why are you using the xpath "/ns1:Transaction-997/ns1:Loop-AK2/ns1:Segment-AK2/ns1:Element-143"? It should be just "ns1:Segment-AK2/ns1:Element-143". Similar changes for segmentError and trxSetAckCode also should be done. Remove the '/ns1:Transaction-997/ns1:Loop-AK2/' part from your xpath expressions inside the for loop and try it.
    Sahay

  • Mapping issue: FCC: Idoc for each record in file

    Hi,
    I have file to Idoc scenario.
    I receive csv file with multiple records.
    The requirement is to create an Idoc for each record.
    For eg.
    source file
    A1,B1,C1
    A2,B2,C2
    A3,B3,C3
    After FCC
    <MT>
    <TRANS>
    <ROW>
    <A>A1</A>
    <B>B1</B>
    <C>C1</C>
    </ROW>
    <ROW>
    <A>A2</A>
    <B>B2</B>
    <C>C2</C>
    </ROW>
    <ROW>
    <A>A3</A>
    <B>B3</B>
    <C>C3</C>
    </ROW>
    </TRANS>
    <MT>
    I have first tested it with only 1 record to test end to end connectivity. It works as expected and Idoc is posted to target system.
    Now when I am trying to send multiple records, I am getting some issues.
    Below are the steps that I have taken to process multiple records:
    1. Changed the cardinality of ROW (child of RecordSet) from 1 to Unbounded.
    2. Changed the occurance of Idoc to Unbounded.
    3. Mapped ROW to Idoc root.
    I have tested the mapping in IR and it generates multiple IDOCs.
    When I send the test file, it fails with error Tag found instead of tag IDOC BEGIN=
    I can see the xml message created with multiple ROWs in XI by File adapter in sxmb_moni.
    When I do Test Configuration in ID, with the XML message extracted from sxmbmoni, the result that I got was:_
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge"><ns0:Message1></ns0:Message1></ns0:Messages>
    This means that idoc was not created while mapping.
    But the same sample message works OK in IR!
    Pls help where I have missed.
    Regards,
    Anirudh.

    Sudhir,
    Thanks for your response.
    FCC is working fine. I have taken the XML message in XI created after FCC from csv sample message.
    I have tested this message in IR by placing it between
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
       <ns0:Message1>
    </ns0:Message1>
    </ns0:Message>
    It is working fine and Idocs are created in mapping in IR.
    But the same sample message is creating below output ID!
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge"><ns0:Message1></ns0:Message1></ns0:Messages>
    Regards,
    Anirudh.

  • Run-Times for each podcast episode not showing

    the iTunes store page url is this:
    http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=318613641
    my feed is this:
    http://feeds.feedburner.com/TheTransmigrationOfMiguelSanchez
    everything else seems to be working great but for whatever reason the lengths of each episode aren't showing up. Please help.
    thanks in advance!

    Your feed is missing the <itunes:duration> tag for each 'item' which should carry the duaration in the format hh:mm:ss (e.g. 01:12:32). If you are submitting a manually written feed to Feedburner you should be able to just add it to the feed; if you are using Feedburner to create the feed from scratch you will need to look for a place to enter this information.

  • How to create a background image for each item in a List object

    Hello.
    I am trying to create a background image that displays whenever a user posts something to a list.  For example when a user posts text it would appear in a list.  The new item in the list would contain a specific background image with the users text appearing on top of the background image.  I do not want a background image for the entire list, rather each item within the list.
    I am not sure how clear this is so I added an image below.  When a user enters text in and clicks the "post-it" button their text would appear below with the sticky note background. 
    I am not sure which list type would be best for this problem or how to create insert the image, so I am open to suggestions. 
    Thank you for your help.  Any advice or guidance will be greatly appreciated!

    Hi
    the easiest way would be with itemRenderer.
    You have to do two things:
    1. In your list declaration use a item renderer: <mx:List itemRenderer="myRenderer"/>
    2. create a flex component myRenderer that will be the single item. This can be a canvas with a background image and a text field on it.
    When you add a new item to the list, a new myRenderer item will be created and the data property will be passed to it. So you have to put "data" in your textField.
    If you need more help try looking at Tour de Flex samples, they're pretty easy.
    Andrei

  • Yone Tooltip for each item of select-list

    Could an

    To set the tooltip for each value selected from Drop Down list - means value is selected in drop down list and the mouse over on the field (i thought this way, if its not correct ignore the same.
    For the above case check the selected drop down value on change event and set the desired text as tooltip.
    For example
    if(xfa.event.newText == "One")
    this.assist.toolTip.value = "You Selected Choice " +xfa.event.newText;
    Thanks,
    Raghu.

  • Can B1 groups 50 SOs in one BOL then issue separate invoice for each SO

    Customer wants to use Grouping feature for 40-50 sales orders in one Delivery Note and print the BOL (bill of lading) display all their order numbers, but they want to issue each invoice against each sales order.  Can B1 do this?

    Off Course Dear........
                 Actully when i read your question I first got it confirmed whether its happening or not. Anyways.
                 You just follow the steps.
    1) Create 50 SOs of same customer.
    2) Open Delivery Note and put the same customer in the customer code field.
    3) The in Delivery note doc. press Copy From button and select all the 50 SOs. This way you can create only one delivery again 50 SO. Right?
    4) Now again Open AR Invoice and select the same customer code which u selected in delivery and SOs.
    5) Now press copy from button and it will show you the delivery record.
    6) The moment you select and go next then it will pop up anothe window of wizard automatically.
    7) There you have to choose cutomize option button.
    8) Then again click next and you will get all the row details of delivery. So selec the perticular row against which you want to create invoice.
    Regards,
    Rahul.

  • How to run trigger for each affected row in delete query

    Hello every body, can anyone help me ?
    I will describe my problem. First, i have 2 table name tbStock and
    tbSalesDetail. Column in tbStock and tbSalesDetail is like this :
    CREATE TABLE tbStock (
    idStock INT PRIMARY KEY,
    nameStock VARCHAR(250) NOT NULL,
    qtyStock FLOAT NOT NULL
    GO
    INSERT INTO tbStock (idStock, nameStock, qtyStock) VALUES (0, 'Apple', 100);
    INSERT INTO tbStock (idStock, nameStock, qtyStock) VALUES (1, 'Banana', 80);
    GO
    CREATE TABLE tbSalesDetail (
    idData BIGINT IDENTITY(0,1) PRIMARY KEY,
    invoiceNumber VARCHAR(20) NOT NULL,
    idStock INT NOT NULL,
    qtySales FLOAT NOT NULL
    GO
    INSERT INTO tbSalesDetail (invoiceNumber,idStock,qtySales) VALUES ('JL001',0,10);
    INSERT INTO tbSalesDetail (invoiceNumber,idStock,qtySales) VALUES ('JL001',1,5);
    GO
    Then, i want to update qtyStock in tbStock when data insert into tbSalesDetail or delete from tbSalesDetail with trigger. (In this case, i use delete from tbSalesDetail). So, i create trigger like this :
    CREATE TRIGGER tbSalesDetail_Trigger_Delete ON tbSalesDetail
    FOR DELETE
    AS
    BEGIN
    DECLARE @idStockX INT, @qtySalesX FLOAT;
    SELECT @idStockX=idStock, @qtySalesX=qtySales FROM deleted;
    UPDATE tbStock SET qtyStock=qtyStock+@qtySalesX WHERE idStock=@idStockX;
    END
    GO
    The trigger is run. I hope if i run delete command like :
    DELETE FROM tbSalesDetail WHERE invoiceNumber='JL001';
    will make the quantity of stock become like this :
    Product Apple (idStock=0) = 100+10=110
    Product Banana (idStock=1) = 80+5=85
    But in the fact, Quantity Apple is True (110) and Quantity Banana is
    False (still 80).
    I know this problem because trigger only run for first row. So how can i update each data in affected row with trigger ? (I use Windows 7 SP1 32 bit and SQL Server 2012 SP1 Express Edition)

    Your DDL violates ISO-11179 rules and needs to be fixed. You even use camelCase (look up the research; it does not work because of eye movement to the Uppercase letters). The prefix “tb-” is a design flaw caller “tbling” in the literature (Google some
    of Phil Factor's columns at Red Gate). 
    Why did you use FLOAT for a quantity? Do you really have 3.141592653 bananas so you can make banana pie? 
    Why is the stock id a numeric? What math do you do on it? It should be an industry standard, like UPC, EAN or GTIN. 
    Why is there no reference in the weak entity (Sales_Details) to it's strong entity (Stock)? 
    Why do you think that IDENTITY is a key?? It is the count of physical insertion attempt to a table in one schema! It has no place in DBMS. Why don't you use the current ANSI Standard INSERT statements? 
    Let's fix this mess:
    CREATE TABLE Stock 
    (gtin CHAR(15) NOT NULL PRIMARY KEY, 
     item_name VARCHAR(250) NOT NULL, 
     onhand_qty INTEGER NOT NULL);
    INSERT INTO Stock (gtin, item_name, onhand_qty)
     VALUES ('000000000000000', 'Apple', 100), 
            ('111111111111111', 'Banana', 80);
    If there is a Sales detail table, there has to be a Sales table in a valid design. This is the strong-weak entity rule. 
    While IDENTITY is fundamentally wrong, using BIGINT is an error made worse. Then looking at the data, this is a table of purchase invoices, not sales details. 
    CREATE TABLE Purchase_Orders 
    (po_nbr CHAR(20) NOT NULL PRIMARY KEY, 
     gtin CHAR(15) NOT NULL
        REFERENCES Stock(gtin)
        ON UPDATE CASCADE, 
     purchase_qty INTEGER NOT NULL);
    INSERT INTO Purchase_Orders (po_nbr, gtin, sale_qty)
     VALUES ('JL001', '000000000000000', 10),
            ('JL001', '111111111111111', 5);
    >> I want to update onhand_qty in Stock when data is insert into Invoices or delete from Invoices with trigger. (In this case, I use delete from Invoices). So, I created trigger like this : <<
    Why? A trigger is procedural code and SQL is a declarative language. An SQL Programmer might use a stored procedure to update stock levels instead.
    The simple one item purchase would be:
    CREATE PROCEDURE Apply_Purchase_Orders
    (@in_gtin CHAR(15),
     @in_purchase_qty INTEGER) 
    AS
    UPDATE Stock 
       SET onhand_qty = onhand_qty + @in_purchase_qty
     WHERE gtin = @in_gtin;
    But if you want to apply a table of purchase orders:
    CREATE PROCEDURE Apply_Purchase_Orders ()
    AS
    MERGE INTO Stock AS S
    USING Purchase_Orders AS P
    ON S.gtin = P.gtin
    WHEN MATCHED 
    THEN UPDATE 
         SET onhand_qty = onhand_qty + @in_purchase_qty;
    Your problem is that you have not gotten education or training, so instead of writing RDBMS and good SQL, you are mimicking your old procedural language and a file system. This is more than we can do in a Forum. What you will get is advice to “help” you kludge
    a cripple system. 
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • Issues running MedRec for Patient

    I am using WebLogic Server 10. I am running on Linux. I have built and deployed the MedRec application. When I try to login as a patient, I get the following error on the screen:
    A problem has occurred.
    System error: value 'null' unacceptable. Please contact customer service.
    I see the following in the terminal window from which I started the MedRec Server:
    Caused by: java.rmi.RemoteException: Error during setSessionContext; nested exception is:
    javax.ejb.EJBException: nested exception is: javax.naming.LinkException: [Root exception is javax.naming.NameNotFoundException: While trying to lookup 'jms.REGISTRATION_MDB_QUEUE' didn't find subcontext 'jms'. Resolved ''; remaining name 'jms/REGISTRATION_MDB_QUEUE']; Link Remaining Name: 'jms/REGISTRATION_MDB_QUEUE'
    Do you know what is wrong here and how I can fix this?
    Thanks.
    ---Karen

    I've had similar problem. What happens is that teh SMC addresses to the host name and NOT to the fully qualified name, so if you configured your system with FQN like abc.xyz.com, than if your DNS server does not have a valid entry for this host, the SMC won't apply any changes. There are two possible solutions:
    1. Create an entry in the DNS server for the host
    2. Edit your /etc/hosts file to add a host entry like this
    127.0.0.1 localhost
    192.168.1.10 abc.xyz.com
    192.168.1.10 abc
    where you will have both host name and FQN resolved.

  • Issues running SMC for the first time on Sol 10

    I just installed solaris 10, and when I launch the SMC to add a new user I get this error:
    May 18 12:26:24 kahoali.dyndns.org WBEM_Logging_Service[610]: The management domain file:/kahoali/kahoali does not exist or cannot be managed on server kahoali.
    I can't seem to figure out what it's talking about, I have been through quite a few of the settings and files trying to find what it is complaining about.
    Any help would be appreciated.

    I've had similar problem. What happens is that teh SMC addresses to the host name and NOT to the fully qualified name, so if you configured your system with FQN like abc.xyz.com, than if your DNS server does not have a valid entry for this host, the SMC won't apply any changes. There are two possible solutions:
    1. Create an entry in the DNS server for the host
    2. Edit your /etc/hosts file to add a host entry like this
    127.0.0.1 localhost
    192.168.1.10 abc.xyz.com
    192.168.1.10 abc
    where you will have both host name and FQN resolved.

  • Depreciation run for each business area

    Hi all,
    In case all business areas are belong to 1 company code.
    So how to run depreciation for each business area separately?
    I mean business area A can run depreciation for itself, and not affect other business areas in the same company code.
    Any suggestion would be highly appreciate!
    Thanks in advance any help!
    HuyenTT

    no, this is not possible, as the depreciation run needs to be executed for the whole company code.
    Blaz

  • Run time for a Report

    Hi All,
    I have a requirement, where in i want to know whether my report has run for 8 mins or not. If it has run for 8 mins then i have to give an information message saying that the report is taking more than 8 mins so schedule the program in back ground.
    Is this possible ?
    Please let me know how to know during run time the time taken by a report.
    Regards
    Rakesh.

    Hi Dominic,
    The code you mentioned can be put to know what is the time taken by a select statement or the time taken by a particular piece of code. In my program there are several select queries and complex logics.. So i dont think that it is feesible to calculate the run time for each select and then if its increasing 8 mins then to show error !!!!
    My report will be called from an external application. If the program is taking much time it will get timed out. So for a precaution we have to tell them that the way you have given the selection screen filter values its going to take more than 8 mins so better schedule a back ground job.

  • Folder for each cd instead of each artist

    My iTunes library contains over 60GB of 256 kb/s AAC songs. When I started to use iTunes I choose to let iTunes manage the Music Folder. This resulted in a separate folder for each artist, but all I really wanted is a separate folder for each cd!
    Is there a script that can organize my current iTunes Music Folder into folders for each cd instead of folders for each artist? This would save me a tremendous amount of time. Thanks.

    Thank you all for responding!
    The reason for having iTunes organize all music by cd rather then by artist, is that I want to add and remove cd's already converted to aac in a convenient way to the iTunes folder (because the hdd of my PB is as good as full).
    Some of the compilations cd's are placed in the compilation folder but most aren't. So what has happened is that I have an artist folder with several sub folders in it with songs that belong to compilations. In order to remove an entire compilation I will have to find each track belonging to that compilation by hand. Now if every track from a certain compilation would be placed in a folder with the name of the cd, I could easily cut and past that folder to a backup drive and replace it with another folder.
    Hence my request for a way to place all files belonging to a compilation in one folder with the name of that compilation. That's my objective. But something tells me that I do not know iTunes as well as I thought!

  • Need to access parent elements in nested for-each loop

    Hi All,
    I have a xslt mapping requirement in which I am completely stuck. The details are as listed below. Please help!
    Schema structure is as follows:
    Root
    Payload
    Transaction-123
    Loop-LINE
    Loop-SDPP
    Segment-FSTT
    Element-111
    Required xslt file structure is:
    <xsl:for-each Loop-LINE>
    <tns:Item>
    <Line-1000>
    <Line-2000>
    <Line-3000>
    <Line-8000>
    <xsl:for-each Loop-SDPP>
    <xsl:for-each Segment-FSTT[ns0:Element-111 != "A"]>
    <SDetails>
    </SDetails>
    <xsl:for-each Loop-LINE> --------- How to access Loop-LINE element from this for loop????
    <tns:Item>
    <2000>
    <2020>
    <2070>
    <2150>
    </tns:Item>
    </xsl:for-each>
    </for-each>
    </for-each>
    </tns:item>
    </for-each>
    Need help in understanding how can I run a for-each loop for Loop-LINE which is two levels up in the schema tree structure.
    Thanks..

    Thanks for this answer but I can't obtain the right output with my test case; the multi column must be in the loop as that :
    ALPHABETICAL INDEX C1
    Alternator .......................................... Feed Pump
    Belt Details / Engine Gaskets Sets ..... Flywheel Housing
    < NEW PAGE>
    INDEX ALPHABETIQUE C2
    Alternateur......................................... Culbuteurs
    Bloc-Cylindres.................................... Demarreur
    Denis

Maybe you are looking for

  • What's wrong with my iPhone

    Okay so I was at my home screen (unlocked) and I was gunna use Siri because I always talk to him so anyways I holded the home button to activate him and he made the beep noice to tell you that has been activated then suddenly my iPhone just immedient

  • Will old iSight camera work with new Mac mini?

    will an old isight camera work with a late 2014 Mac mini? If so what adapters will I need?

  • Placing Photoshop file in Illustrator CS5 - why doesn't it work?

    I frequently place Photoshop files into Illustrator CS3 without issue.... the PS file places right into the file with transparent surroundings. I just upgraded to CS5 and for some reason, I "Place" the Photoshop file, but nothing shows up in Illustra

  • How do i get new imac to work with windows

    I'm new to the imac world, how do I get it to work with windows

  • How to link to a Topic's Bookmark from code

    Our developers program in Visual Objects, and when creating the F1 link between our applications and my CHM files, use the topic's htm file number (e.g. 1234.htm) to call the CHM file and open the appropriate topic. Is it possible for them to call th