Pagination of XML

Here is my scenario:
My XML Data Source is generated dynamically via PHP, where
the results could be 1-500 depending on search criteria.
I've setup Spry Pagination of the data set which works great
however the user still has to load the XML file in ite entirety
which could be rather large when there are 500 results. Thefore is
there a way to paginate the XML data source and the results
displayed using Spry? E.g. XML data source shows results 1-20 of
500, then the next and previous buttons in my spry document could
dynamically update the XML data source?
Thanks

Hi,
The way you described reminded me of another thread, where the index was not straightforward: Saving finished Form duplicates some subForms
You can post your form to Acrobat.com, hit the Share and Publish buttons when prompted and then copy / paste the link here.
Niall

Similar Messages

  • Duplex Printing options in Livecycle Designer ES

    Hi all,
    I am new to using Adobe Livecycle Designer ES 8.2.
    Issues 1:
    What are options available to print “Duplex Flip Long Edge” and “Duplex Flip Short Edge”.
    I have tried the following options
    File + Form Properties + PDF print options + “Selected Duplex Flip Short Edge. It has worked fine if I print from Designer itself to the particular printer.
    Through the program I have created XDP to PS file. It won’t print in “Duplex Short Edge option”.
    It has always printed in “Duplex Flip Long Edge”.
    Any one can help me… Thanks in advance….
    Regards,
    Jayakumar S

    Hello all
    The problem is still actual. There are some ideas on this forum about solution for LiveCycle Desginer 6.x and 7.x via JavaScript and via settings (Form Properties->PDF print options). The both don't work in LiveCycle Designer 8.2. Is it a bug of 8.2 version?
    I have noticed that property <pagination> in XML source has always value duplexLongEdge. It doesn't depend on value you entered in Form Properties->PDF print options. May be it's a reason? However I cannot change this value to duplexShortEdge.
    Regards,
    Andrey

  • Duplex print issues

    How can I get my Mac to print duplex pdfs?

    Hello all
    The problem is still actual. There are some ideas on this forum about solution for LiveCycle Desginer 6.x and 7.x via JavaScript and via settings (Form Properties->PDF print options). The both don't work in LiveCycle Designer 8.2. Is it a bug of 8.2 version?
    I have noticed that property <pagination> in XML source has always value duplexLongEdge. It doesn't depend on value you entered in Form Properties->PDF print options. May be it's a reason? However I cannot change this value to duplexShortEdge.
    Regards,
    Andrey

  • Cat[alog Software for InDesign]

    Hello,
    I hope this is the right place  to post this question
    I'm looking for a solution to make catalogues for  my company. We are planning on using InDesign together with a plugin of  some kind that allows for data import from our database and automated  layout based on templates/snippets. Currently, we are looking at Cacidi  Extreme and EasyCatalog with ODBC-, pagination- and xml-modules. Can  anybody give me some pros/cons and comparisons between the two? Why pay  more for Cacidi, which features do I get that I'll be missing in  EasyCatalog with the above mentioned plugins?
    Message was edited by: Peter Spier

    I edited your title to make it more likely to get some responses.

  • InDesign and XML Automatic pagination

    Hi Scripters,
    I am trying to create "Automatic pagination" system for four to six page journals,
    XML--->INDD--->PDF
    I am comfort with creating and applying styles I am done. I just don’t have Idea how to place the images and tables automatically after their citations? And how to make my facing pages base align automatically?
    Anyone done this before? Kindly give me some suggestions
    thanks
    regards
    a r u l

    I'm not sure I'm totally following your question but, I'm very interested in automating via the same process you described so I'll try to get the discussion going.
    I
    just don’t have Idea how to place the images and tables automatically
    after their citations?
    the images are called out in your XML, right? you should be able to flow them in based on a template doc. I believe the tables will have to be formatted in such a way that 'convert text to table' can convert them easily, if you want them to stream into a longer story.
    And how to make my facing pages base align
    automatically?
    are you looking for a  baseline grid alignment (a simple function of the paragraph style)? or getting all the columns to end at the same depth (a not so simple quandry)?

  • Nested XML & Pagination

    Hi,
    Just wondering if anyone has implemented pagination for
    nested XML. Our XML structure is as following:
    <items>
    <item id="0001" type="donut">
    <name>Cake</name>
    <ppu>0.55</ppu>
    <batters>
    <batter id="1001">Regular</batter>
    <batter id="1002">Chocolate</batter>
    <batter id="1003">Blueberry</batter>
    </batters>
    <topping id="5001">None</topping>
    <topping id="5002">Glazed</topping>
    <topping id="5005">Sugar</topping>
    <topping id="5006">Sprinkles</topping>
    <topping id="5003">Chocolate</topping>
    <topping id="5004">Maple</topping>
    </item>
    </items>
    We are trying to achieve the following display:
    * Cake
    o None
    o Glazed
    o Sugar
    o Powdered Sugar
    o Chocolate with Sprinkles
    o Chocolate
    o Maple
    * Raised
    o None
    o Glazed
    o Sugar
    o Chocolate
    o Maple
    * Buttermilk
    * Bar
    o Chocolate
    o Maple
    * Twist
    o Glazed
    o Sugar
    * Filled
    o Glazed
    o Powdered Sugar
    o Chocolate
    o Maple
    The Spry code for it as following:
    <script language="JavaScript" type="text/javascript"
    src="../../includes/xpath.js"></script>
    <script language="JavaScript" type="text/javascript"
    src="../../includes/SpryData.js"></script>
    <script language="JavaScript" type="text/javascript"
    src="../../includes/SpryNestedXMLDataSet.js"></script>
    <script type="text/javascript">
    // Setup a parent data set:
    var dsItems1 = new
    Spry.Data.XMLDataSet("../../data/donuts.xml", "/items/item");
    // Setup a couple of nested data sets:
    var dsBatters = new Spry.Data.NestedXMLDataSet(dsItems1,
    "batters/batter");
    var dsToppings = new Spry.Data.NestedXMLDataSet(dsItems1,
    "topping");
    </script>
    <div spry:region="dsItems1 dsToppings">
    <ul>
    <li spry:repeat="dsItems1">{dsItems1::name}
    <ul>
    <li
    spry:repeat="dsToppings">{dsToppings::topping}</li>
    </ul>
    </li>
    </ul>
    </div>
    We want to implement pagination on dsItems1::name. Any help
    on how to implement pagination on it would be greatly appreciated.
    Many thanks.
    Cheers,
    D.

    Hi DharmenderY,
    The PagedView data set doesn't work very well with Nested
    Data Sets. This is something I want to fix in the next version. The
    work around is to make nested data sets based on the paged view:
    // Setup a parent data set:
    var dsItems1 = new
    Spry.Data.XMLDataSet("../../data/donuts.xml", "/items/item");
    var pvItems1 = new Spry.Data.PagedView(dsItems1);
    // Setup a couple of nested data sets:
    var dsBatters = new Spry.Data.NestedXMLDataSet(pvItems1,
    "batters/batter");
    var dsToppings = new Spry.Data.NestedXMLDataSet(pvItems1,
    "topping");
    That should get things rendering properly.
    --== Kin ==--

  • XML pagination help

    I would like to use one single query to get all the data from a database.
    which would in turn be in an xml file. I would like to display this xml file with more than 100 entries by applying pagination. so that say I could display 10 entries per page.
    Could any one suggest a method for doing this.

    Anyway, assuming you are using 10g, here you go:
    I am sure you can do it using table(xmlsequence(extract))) construct, but, XMLTable is recommended if it exists.
    RAHUL@d > col name for a10
    RAHUL@d > col dept for a10
    RAHUL@d > col workphone for a12
    RAHUL@d > col cellphone for a12
    RAHUL@d > col homephone for a12
    RAHUL@d > select n1 name, n2 dept, n3 workphone, n4 homephone, n5 cellphone
      2    from xmltbl t,
      3         xmltable('Emp' passing value(t) columns n1 varchar2(32) path
      4                  '/Emp/Ename',
      5                  n2 varchar2(32) path '/Emp/dept',
      6                  n3 varchar2(32) path '/Emp/phones/workphone',
      7                  n4 varchar2(32) path '/Emp/phones/homephone',
      8                  n5 varchar2(32) path '/Emp/phones/cellphone')
      9  /
    NAME       DEPT       WORKPHONE    HOMEPHONE    CELLPHONE
    John       orange     5552221212   5551112222   4442223333
    Mary       orange     5552221212   5551112222
    Bill       blue
    Elapsed: 00:00:00.06
    RAHUL@d > disc
    Disconnected from Oracle Database 10g Release 10.2.0.1.0 - Productionedit: showed the version too.
    Message was edited by:
    RPuttagunta

  • Exporting a INDD file into a paginated xml file ?

    What is a best way to export my indd publication with a automated pagination and all the other tags I need for the titles, subtitles, etc. ?
    The goal is to upload the final file into a CMS, in order to generate paginated html pages with a CSS treatment for each tag.

    MA:
    1. "... all the other tags I need for the titles, subtitles" -- if you consistently used paragraph styles for these, you can use the "Map Styles to Tags" command in the XML panel dropdown menu. That is, create tags for all styles you need to transfer, then use this command to have InDesign automatically apply them to the correct styles.
    If you did not use paragraph styles (or were not consistent), you will need to manually add a tag to each title. Still doable but way more work.
    2. "pagination", as Mike already stated, is a slippery concept in XML. If you indeed want each original page surrounded by tags, you can try the SplitStory script in Scripts > Application > Javascript. Since every single text frame (not continuously threaded) can be assigned a tag, that may already be enough.
    If you don't like the idea of messing up your document, you can inquire in the Scripting forum for a script that adds a tag around the text in the text frames you have right now. Not sure how (or if) that would work; but it sounds do-able.

  • XML page & report template

    Hi There,
    I'm trying to make a default xml report that displays my sql query.
    I do not want to use the exportXML template, since no pagination is possible that way. (at least, I think it is)
    Now, i've made a XML page (only a xml header, nothing else) and a xml report (generic column template).
    Everything works as expected, but at the end of the xml, there is a javascript section :
    <script type="text/javascript">
    <!--
    //-->
    </script>
    When logged in as a developer it displays :
    <script type="text/javascript">
    <!--
    //-->
    </script><!-- Code generated for user with developer privileges. -->
    <script type="text/javascript">
    function popupInfo()
    ....snip....
    </script>
    <table cellpadding="0" border="0" cellspacing="0" summary="Developer Toolbar" align="center">
    ....snip....
    </table>
    <script type="text/javascript">
    if(GetCookie('ORA_WWV_QUICK_EDIT') != null){
    if(GetCookie('ORA_WWV_QUICK_EDIT') == 'SHOW')
    quickLinks('SHOW');
    </script>
    My question : is there a way to not get these things in my output ?
    Thanks in advance.

    nobody an idea ?

  • Factura Electronica.- Sello "Invalido" al momento de validar el xml en SAT

    Buen dia!!
    Se  configuro en un ambiente de  pruebas la  factura electronica   , se realizó la validación del  xml en la  pagina del SAT  y no hubo problemas,  pero al momento de  pasar al ambiente productivo  todos los xml que se validan  marcan que  el sello NO es valido;  tanto la base de pruebas como la de productivo estan configuradas de la misma  manera y contienen la misma  información, con un cliente se resolvio cambiando  información del detalle de sociedad,  pero en esta empresa  no  ha  funcionado espero me puedan ayudar.
    Saludos,

    Hola!
    ¿Puedes por favor revise los pasos sugeridos en la nota SAP 1542753?
    Puede haber algunas diferencias en el XML debido al uso incorrecto de los certificados, las diferentes implementaciones de BADI o customizing.
    REgards,
    Renan Correa

  • Consulta de Status do XML na SEFAZ.

    Boa tarde a todos,
    Estou implementando um cenario de entrada de XML e estou com problemas na parte de (GOOD Receipt), o primeiro passo que é a recepção da NFE por e-mail do fornecedor já esta configurada com sucesso, o problema agora é o recebimento do material. Quando a mercadoria chegar, no destino teremos um leitor de codigo de barras que executa a leitura da DANFE e valida se possuimos esse XML armazenado no GRC se sim executa a validação no SEFAZ do status da Nota.
    Meu problema esta no passo de consultar o WebService da SEFAZ de consulta, pois a entrada da chave DANFE vai ser disponibilizada pela RFC que sera executada apos o coletor de codigo de Barras.
    Analisando o método Standard de check do status da nota percebi que ele é executado atraves da pagina WebDynpro do monitor.
    Tem algum jeito de aproveitar o metodo standard de consulta do status do XML para utiliza-lo com a entrada da RFC e a resposta eu devolver para a mesma RFC?
    Se algum ponto não ficou claro posso detalhar melhor,
    Obrigado

    Henrique,
    Obrigado pelo Help, mas estou com uma duvida, só conseguirei fazer o check do status na SEFAZ atraves do coletor "RFC" após o XML estar na tabela /XNFE/XMLIN?
    E no caso de o fornecedor ainda não ter me enviado o XML pela InboundB2B como farei para checar o STATUS do XML?
    Será que neste caso não deveria deixar a mercadoria entrar se não tiver o XML na tabela do GRC?
    E outra pergunta o processo de B2B já faz no standard o check do XML correto? Pois estou olhando o monitor e para as duas notas que fiz de teste as duas ultimas colunas  estão vazias e na tabela /XNFE/XMLIN o campo CHECKSTATUS está em branco.
    Obrigado mais uma vez.

  • UCCX 8 - Dramatic change in the Create File Document step that is used by the Create XML Document step in order to read an XML file

    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-qformat:yes;
    mso-style-parent:"";
    mso-padding-alt:0in 5.4pt 0in 5.4pt;
    mso-para-margin:0in;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-fareast-font-family:"Times New Roman";
    mso-fareast-theme-font:minor-fareast;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;
    mso-bidi-font-family:"Times New Roman";
    mso-bidi-theme-font:minor-bidi;}
    For the last 5 years (and in IPCC3.x/4.x,UCCX/5.x/7.x) I've used the same basic subflow to read a XML document that contains holiday dates where the queue should be closed.  I've re-used this script on 20+ client installs and it's always worked.  The structure of the script allows you to pass the path and filename of the XML document as parameters to the subflow. (The document is in the repository)
    I loaded this script in UCCX 8.0.2 recently and it crashed with a Java.IO error.  It looked like it was trying to read the file system directly and not the repository. (In the Linux appliance model this kind of makes sense but why is the step trying to read the file system directly?)
    So I open a TAC case (SR# 615243125) and TAC tells me that the method of using the Create File Document step is not supported anymore and that I should specify the filename directly in the Create XML Document step
    The problem that I see (aside from having to edit all my scripts that use XML files) is that the Create XML Document step is looking for the input to be a type DOCUMENT and not a type STRING.  This seems to imply that I have to hardcode the document in each script that I deploy for a customer.  When it was a string it was easy to construct the full file path from parameters and pass to the subflow.
    Questions to the group
    #1 Am I missing something here?
    #2  Do you assume that you'll be able to load a script that worked fine in UCCX 7 into UCCX 8 and that it should completely function when you're doing everything according to the step reference documentation.
    #3 Cisco didn’t document this in any way that I can find.
    #4 How can you use the Create XML Document step in a fashion that would let you construct the path of the file and the filename previously in the script so you could pass it to a subflow ?  It would seem this functionality has been killed in UCCX 8
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-qformat:yes;
    mso-style-parent:"";
    mso-padding-alt:0in 5.4pt 0in 5.4pt;
    mso-para-margin:0in;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-fareast-font-family:"Times New Roman";
    mso-fareast-theme-font:minor-fareast;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;
    mso-bidi-font-family:"Times New Roman";
    mso-bidi-theme-font:minor-bidi;}
    (Background)
    Create File Document Step
    The input filename is a STRING, could be an explicit path and filename in the repository or a variable that represents that path and string
    The output of this step is a DOCUMENT to be used in the Create XML Document step
    The string FILE_FullPathHolidayFiles references  en_us\folderName\documentName.xml
    The document was properly uploaded into the repository only, NOT trying to directly read c:\foo\blah…
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-qformat:yes;
    mso-style-parent:"";
    mso-padding-alt:0in 5.4pt 0in 5.4pt;
    mso-para-margin:0in;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-fareast-font-family:"Times New Roman";
    mso-fareast-theme-font:minor-fareast;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;
    mso-bidi-font-family:"Times New Roman";
    mso-bidi-theme-font:minor-bidi;}
    The create XML document input can only be a type DOCUMENT

    #1 Am I missing something here?
    You are mixing two different issues together here.
    The Create File Document step is indeed not needed or supported for creating an XML document. That is why there is a unique step; to trigger XML parsing within the MIVR subsystem.
    Accessing the file system is restricted to a single folder within the VOS model (i.e. 8.0+). This folder is not backed up, replicated, or cleaned up automatically. It was intended to give developers some FS access as a temporary swap location only.
    #2  Do you assume that you'll be able to load a script that
    worked fine in UCCX 7 into UCCX 8 and that it should completely
    function when you're doing everything according to the step reference
    documentation.
    Assume nothing; read the documentation and attend one of the dozens of partner training sessions that CCBU put on advising of the upcoming changes.
    #3 Cisco didn’t document this in any way that I can find.
    You're right, I guess, on the Create File vs. XML Document step. AFAIK Cisco never wrote a notice into the Step Reference Guide explicitly stating that you cannot use the Create File Document although the documentation seemed pretty clear to me without it. File system restrictions are documented in the 8.0 release notes.
    Scripting and Development Series: Volume 2, Editor Step ReferenceUse the Create XML Document step to create a logical document that maps a document to another document variable (where the document has already been pre-parsed as an XML document and is ready to be accessed by the Get XML Document Data step).Use this step before the Get XML Document Data step to obtain data from a document formatted using the Extensible Markup Language (XML).
    #4 How can you use the Create XML Document step in a fashion that would
    let you construct the path of the file and the filename previously in
    the script so you could pass it to a subflow ?  It would seem this functionality has been killed in UCCX 8
    No it hasn't; just concatinate a string to build the Source Document parameter the step needs. Example:  "DOC[" + myFilePath + "]"

  • XML Loader Exception

    I get the following exception whenever I run the XMLLoader class.
    Error loading stylesheet file:/C:/Documents and Settings/mfortner/jbproject/MedlineXMLLoader/medline.xslt
    oracle.xml.parser.v2.XSLException: XSL-1009: Attribute 'xsl:version' not found in 'INSERT'.
    at oracle.xml.parser.v2.XSLStylesheet.error(XSLStylesheet.java:1403)
    at oracle.xml.parser.v2.XSLStylesheet.processResult(XSLStylesheet.java:615)
    at oracle.xml.parser.v2.XSLStylesheet.initStylesheet(XSLStylesheet.java:421)
    at oracle.xml.parser.v2.XSLStylesheet.<init>(XSLStylesheet.java:217)
    at XMLLoader.main(XMLLoader.java:21)
    00001: Inserted.
    Processed 1Documents
    I've tried moving the xsl:version attribute, putting it in it's own <?xsl-stylesheet ?> tag didn't work either. I've tried removing it, same problem. I've tried switching xmlparserv2.jar files (there are two files with different file sizes that come in the xdk) -- that didn't work either.
    I'm running the XMLLoader with the following parameters:
    -file sampmed2.xml -connName medline -transform medline.xslt -docTag MedlineCitationSet
    Any suggestions????
    The XSLT I'm using looks like this.
    <?xml version="1.0"?>
    <INSERT xsl:version="1.0" xmlns:xsl="http://www.w3.org/XSL/Transform">
    <!-- Process Medline Records -->
    <ROWSET table="medline_records">
    <xsl:for-each select="MedlineCitation">
    <ROW>
    <MedlineID><xsl:value-of select="MedlineID"/></MedlineID>
    <PMID><xsl:value-of select="PMID"/></PMID>
    <DateCreated><xsl:apply-templates select="DateCreated" mode="processDateCreated"/></DateCreated>
    <DateCompleted><xsl:apply-templates select="DateCompleted" mode="processDateCompleted"/></DateCompleted>
    <DateRevised><xsl:apply-templates select="DateRevised" mode="processDateRevised"/></DateRevised>
    <Journal><xsl:apply-templates select="Journal" mode="processJournal"/></Journal>
    <ArticleTitle><xsl:value-of select="ArticleTitle"/></ArticleTitle>
    <AuthorList><xsl:value-of select="AuthorList"/></AuthorList>
    <Country><xsl:value-of select="MedlineJournalInfo"/></Country>
    <MedlineTA><xsl:value-of select="MedlineJournalInfo/MedlineTA"/></MedlineTA>
    <MedlineCode><xsl:value-of select="MedlineJournalInfo/MedlineCode"/></MedlineCode>
    <NlmUniqueID><xsl:value-of select="MedlineJournalInfo/NlmUniqueID"/></NlmUniqueID>
    <CitationSubset><xsl:value-of select="CitationSubset"/></CitationSubset>
    </ROW>
    </xsl:for-each>
    </ROWSET>
    <!-- Process Date Elements (DateCreated, DateCompleted, and DateRevised -->
    <xsl:template select="DateCreated" mode="processDateCreated">
    <xsl:value-of select="YEAR"/>-<xsl:value-of select="MONTH"/>-<xsl:value-of select="DAY"/>
    </xsl:template>
    <xsl:template select="DateCompleted" mode="processDateCompleted">
    <xsl:value-of select="YEAR"/>-<xsl:value-of select="MONTH"/>-<xsl:value-of select="DAY"/>
    </xsl:template>
    <xsl:template select="DateRevised" mode="processDateRevised">
    <xsl:value-of select="YEAR"/>-<xsl:value-of select="MONTH"/>-<xsl:value-of select="DAY"/>
    </xsl:template>
    <!-- Process Journal Elements -->
    <xsl:template select="JOURNAL" mode="processJournal">
    ISSN<xsl:value-of select="ISSN"/> VOLUME<xsl:value-of select="Volume"/> PAGES<xsl:value-of select=""/>
    </xsl:template>
    <!-- Process Medline Abstract Records -->
    <ROWSET table="medline_abstracts">
    <xsl:for-each select="MedlineCitation">
    <MedlineID><xsl:value-of select="MedlineID"/></MedlineID>
    <Abstract><xsl:value-of select="AbstractText"/></Abstract>
    </xsl:for-each>
    </ROWSET>
    </INSERT>
    And the XML I'm loading looks like this:
    <MedlineCitationSet>
    <MedlineCitation>
    <MedlineID>96264942</MedlineID>
    <PMID>8655018</PMID>
    <DateCreated>
    <Year>1996</Year>
    <Month>07</Month>
    <Day>30</Day>
    </DateCreated>
    <DateCompleted>
    <Year>1996</Year>
    <Month>07</Month>
    <Day>30</Day>
    </DateCompleted>
    <DateRevised>
    <Year>2000</Year>
    <Month>12</Month>
    <Day>18</Day>
    </DateRevised>
    <Article>
    <Journal>
    <ISSN>0017-0011</ISSN>
    <JournalIssue>
    <Volume>67</Volume>
    <Issue>1</Issue>
    <PubDate>
    <Year>1996</Year>
    <Month>Jan</Month>
    </PubDate>
    </JournalIssue>
    </Journal>
    <ArticleTitle>[Effect of fetal and neonatal growth on the occurrence of some diseases in adults]</ArticleTitle>
    <Pagination>
    <MedlinePgn>34-6</MedlinePgn>
    </Pagination>
    <Abstract>
    <AbstractText>The findings of many authors show that reduced fetal growth is followed by increased mortality from cardiovascular disease in adult life. They are further evidence that cardiovascular disease originates, among other risk factors, through programming of the bodies structure and metabolism during fetal and early post-natal life. Wrong maternal nutrition may have an important influence on programming.</AbstractText>
    </Abstract>
    <Affiliation>Katedry i ZakEadu Chemii i Analizy LekC3w, AM w Katowicach.</Affiliation>
    <AuthorList>
    <Author>
    <LastName>Jendryczko</LastName>
    <FirstName>A</FirstName>
    <Initials>A</Initials>
    </Author>
    <Author>
    <LastName>Poreba</LastName>
    <FirstName>R</FirstName>
    <Initials>R</Initials>
    </Author>
    </AuthorList>
    <Language>pol</Language>
    <PublicationTypeList>
    <PublicationType>Journal Article</PublicationType>
    <PublicationType>Retracted Publication</PublicationType>
    <PublicationType>Review</PublicationType>
    <PublicationType>Review, Tutorial</PublicationType>
    </PublicationTypeList>
    <VernacularTitle>WpEyw przebiegu rozwoju pEodu i noworodka na ujawnienie sie niektC3rych chorC3b okresu dorosEego.</VernacularTitle>
    </Article>
    <MedlineJournalInfo>
    <Country>POLAND</Country>
    <MedlineTA>Ginekol Pol</MedlineTA>
    <MedlineCode>FR3</MedlineCode>
    <NlmUniqueID>0374641</NlmUniqueID>
    </MedlineJournalInfo>
    <CitationSubset>IM</CitationSubset>
    <CommentsCorrections>
    <CommentIn>
    <RefSource>Ginekol Pol. 1998 Jul;69(7):561</RefSource>
    </CommentIn>
    <RetractionIn>
    <RefSource>Ginekol Pol 1998 Jul;69(7):559-60</RefSource>
    </RetractionIn>
    </CommentsCorrections>
    <MeshHeadingList>
    <MeshHeading>
    <Descriptor>Adult</Descriptor>
    </MeshHeading>
    <MeshHeading>
    <Descriptor>Cardiovascular Diseases</Descriptor>
    <SubHeading>etiology</SubHeading>
    <SubHeading MajorTopicYN="Y">mortality</SubHeading>
    </MeshHeading>
    <MeshHeading>
    <Descriptor>Child Development</Descriptor>
    <SubHeading MajorTopicYN="Y">physiology</SubHeading>
    </MeshHeading>
    <MeshHeading>
    <Descriptor>English Abstract</Descriptor>
    </MeshHeading>
    <MeshHeading>
    <Descriptor>Fetal Development</Descriptor>
    <SubHeading MajorTopicYN="Y">physiology</SubHeading>
    </MeshHeading>
    <MeshHeading>
    <Descriptor>Fetal Growth Retardation</Descriptor>
    <SubHeading>complications</SubHeading>
    <SubHeading MajorTopicYN="Y">physiopathology</SubHeading>
    </MeshHeading>
    <MeshHeading>
    <Descriptor>Human</Descri ptor>
    </MeshHeading>
    <MeshHeading>
    <Descriptor>Infant, Newborn</Descriptor>
    </MeshHeading>
    <MeshHeading>
    <Descriptor>Nutrition</Descriptor>
    </MeshHeading>
    <MeshHeading>
    <Descriptor>Risk Factors</Descriptor>
    </MeshHeading>
    <MeshHeading>
    <Descriptor>Survival Rate</Descriptor>
    </MeshHeading>
    </MeshHeadingList>
    <NumberOfReferences>11</NumberOfReferences>
    </MedlineCitation>
    <MedlineCitation>...</MedlineCitation>
    </MedlineCitationSet>

    You have a typo in your namespace declaration:
    xmlns:xsl="http://www.w3.org/XSL/Transform"
    should be
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  • Pagination problem, help needed to finish it

    Hi friends,
    I am in need to use pagination in my Web Application, since i have a tons of values to display as a report. I develop a pagination logic, tested it seperately and it works fine.When i try to implement it to current project it works, but no result was displayed as it displayed in testing..
    Here is the file i tested seperately..
    <%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="" %>
    <%@ page import="com.rajk.javacode.servlets.dbmodel"%>
    <%
    int count=0;
    int userid = 0;
    String g = null;
    dbmodel db=new dbmodel();
    Statement ps = null;
    ResultSet rs = null;
    db.connect();
    String SQL = "select * from tbl_rmadetails";
    ps=db.con.createStatement();
    rs=ps.executeQuery(SQL);
    rs.last();
    count= rs.getRow();
    rs.beforeFirst();
    int currentrs;
    int pagecount=(count/2);
    if((pagecount*2)+1>=count)
    pagecount++;
    out.println("<table width=363 height=20 align=center border=0 cellpadding=0 cellspacing=0><tr><td>");
    for(int i=1;i<pagecount;i++)
    out.println("<font face=verdana size=1><a href=pagination.jsp?pagenum="+ i +"&userid="+ userid +">["+ i +"]</a></font>");
    String pagenum=request.getParameter("pagenum");
    if(pagenum==null)
    out.println("<br><strong><font face=verdana size=1 color=white>Page 1 of " + (pagecount-1) +"</font></strong>");
    currentrs=0;
    else
    out.println("<br><strong><font face=verdana size=1 color=white>Page " + pagenum + " of " + (pagecount-1) + "</font></strong>");
    pagecount=Integer.parseInt(pagenum);
    currentrs=(2*(pagecount-1));
    out.println("</td></tr></table>");
    //messageboard
    String sql="select * from tbl_rmadetails order by date LIMIT " + currentrs + ",2";
    rs=ps.executeQuery(sql);
    while(rs.next())
    %>
    <br>
    <table width="363" height="64" border="1" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
    <tr>
    </td>
    <td width="126" height="19" align="center" valign="top"><font face="verdana" size="1"><strong><%=rs.getString("serial_no")%></strong></font></td>
    <td width="126" height="19" align="center" valign="top"><font face="verdana" size="1"><strong><%=rs.getString("status")%></strong></font></td>
    </tr>
    </table></td>
    </tr>
    </table>
    <%
    rs.close();
    %> And here is the file in which i want to implement the pagination..
    <%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="" %>
    <%@ page import="com.rajk.javacode.servlets.dbmodel"%>
    <%
    int x1=0;
    int userid = 0;
    int count = 0;
    String raj=request.getParameter("q");
    String temp=null;
    String SQL = null;
    String SQLX = null;
    int currentrs;
    try
    dbmodel db=new dbmodel();
    Statement ps = null;
    ResultSet rs = null;
    db.connect();
    if(raj.equals("All Vendor"))
    SQL = "SELECT * FROM tbl_rmadetails,tbl_customer,tbl_item,tbl_vendor WHERE tbl_rmadetails.customer_id=tbl_customer.customer_id AND tbl_rmadetails.item_id=tbl_item.item_id AND tbl_rmadetails.vendor_id=tbl_vendor.vendor_id AND tbl_rmadetails.status='STS'";
    else
    SQL = "SELECT * FROM tbl_rmadetails,tbl_customer,tbl_item,tbl_vendor WHERE tbl_rmadetails.customer_id=tbl_customer.customer_id AND tbl_rmadetails.item_id=tbl_item.item_id AND tbl_rmadetails.status='STS' AND tbl_rmadetails.vendor_id=tbl_vendor.vendor_id AND tbl_rmadetails.vendor_id='"+raj+"'";
    ps=db.con.createStatement();
    rs=ps.executeQuery(SQL);
    rs.last();
    count= rs.getRow();
    rs.beforeFirst();
    rs.close();
    int pagecount=(count/6)+1;
    if((pagecount*6)+1>=count)
      pagecount++;
    //out.print(count);
    %>
    <%
    for(int i=1;i<pagecount;i++)
    out.println("<font face=verdana size=1><a href=http://localhost:8080/rmanew/sendtovendor.jsp?pagenum="+ i +"&userid="+ userid +">["+ i +"]</a></font>");
    String pagenum=request.getParameter("pagenum");
    if(pagenum==null)
    out.println("<br><strong><font face=verdana size=1 color=white>Page 1 of " + (pagecount-1) +"</font></strong>");
    currentrs=0;
    else
    out.println("<br><strong><font face=verdana size=1 color=white>Page " + pagenum + " of " + (pagecount-1) + "</font></strong>");
    pagecount=Integer.parseInt(pagenum);
    currentrs=(6*(pagecount-1));
    if(raj.equals("All Vendor"))
    SQLX = "SELECT * FROM tbl_rmadetails,tbl_customer,tbl_item,tbl_vendor WHERE tbl_rmadetails.customer_id=tbl_customer.customer_id AND tbl_rmadetails.item_id=tbl_item.item_id AND tbl_rmadetails.vendor_id=tbl_vendor.vendor_id AND tbl_rmadetails.status='STS' LIMIT"+currentrs+",6";
    else
    SQLX = "SELECT * FROM tbl_rmadetails,tbl_customer,tbl_item,tbl_vendor WHERE tbl_rmadetails.customer_id=tbl_customer.customer_id AND tbl_rmadetails.item_id=tbl_item.item_id AND tbl_rmadetails.status='STS' AND tbl_rmadetails.vendor_id=tbl_vendor.vendor_id AND tbl_rmadetails.vendor_id='"+raj+"' LIMIT"+currentrs+",6";
    rs=ps.executeQuery(SQLX);
    if(rs!=null)
    while(rs.next())
    %>
    <link rel="stylesheet" type="text/css" href="chromejs/stvcss.css" />
    <table width="100%" border="0">
    <tr bgcolor="#0066CC">
    <td align="center"><span class="style2">Date</span></td>
    <td align="center" class="style2">Product Details</td>
    <td align="center" class="style2">Serial No</td>
    <td align="center" class="style2">Fault Desc</td>
    <td align="center" class="style2">Customer Name</td>
    <td align="center" class="style2">Vendor Name</td>
    <tr>
    <tr bgcolor="#CCCCCC">
    <td align="center"><%=rs.getDate("date")%></td>
    <td align="center"><%=rs.getString("item_description")%></td>
    <td align="center"><%=rs.getString("serial_no")%></td>
    <td align="center"><%=rs.getString("fault_desc")%></td>
    <td align="center"><%=rs.getString("customer_name")%></td>
    <td align="center"><%=rs.getString("vendor_name")%></td>
    </tr>
    </table>
    <%
    else
    out.println("Result Set is empty");
    catch(Exception e)
    System.out.println("Error: " + e);
    response.setContentType("text/xml");
    response.setHeader("Cache-Control", "no-cache");
    %>The output i got when i ran this page is..
    [1]
    And no records displayed matching the query, but there is a lot of datas in DB as a result of the queries i mentioned here..
    Please help me friends...

    Debug your code. Check what happens and what happens not.
    You could make it much easier if you wrote Java code in Java classes rather than JSP files. Now it's one big heap of mingled -and thus hard to maintain/test/reuse- code.

  • Adobe Livecycle Designer ES 2 - Adobe Dynamic XML Forms?

    How can you convert a dynamic XML form design in a static PDF Form design? I tried to save a dynamic XML Form as a static PDF Form, and then tried to preview it in Designer but the layout change scripts were working which should work only for dynamic xml forms and not for the static pdf forms. Please suggest another way to do it. Thanks in advance.

    You use Master Pages to set layout that you want to use on multiple pages.
    Design what you want in a Master Page and then assign it to the pages you want in Object>Pagination>Place: and choose On Page> whatever you called your Master Page.

Maybe you are looking for

  • My G-Technology External Drive is no longer recognised by my MacBook Pro. How do i repair this?

    Following months of straightforward backing-up (using Time Machine) my 1TB G-Technology External Drive no longer appears on my screen when powered up and connected to my machine. I have read that this can happen after updates are downloaded onto the

  • How am I supposed to connect my iPad,  iPhone and iPod to the iMac?

    I know so little about this iMac that I called my brother to tell him that they didn't put the computer in the box he gave me.  I didn't know that the stuff from the box is now in the screen. I can't figure out how to connect my various other merchan

  • DIsplaying WRBTR (AMOUNT FIELD)WITHOUT  DECIMAL PLACES

    Dear all, I am facing a problem in displaying amount field  in alv report. I have two currency keys (US dollar and Japan yen). if it is japan yen I should not have to show decimal places and if it is US dollar I should show decimal places. How can I

  • Configuration for Process order for Forms

    Hi, I want to develop a layout for Process Order. Where we will do configure Print Program & Layout for Process Order like what we do in NACE for SD&MM related layouts! Will this Process Order supports both SAP Script & SMART Forms! Can anybody clari

  • Upgrading to Itunes 10 problem

    Everytime I try to install Itunes 10 I get a message that says "service 'bonjour service' (Bonjour Service) failed to start. Verify that you have sufficient privileges to start system services." I have no idea what to do. Can anyone help? pls