The use or condition in RTF model

For the following code, the value appears correctly
<? xdofx:If DR IS NULL then SEGMENT4 other end if parent_value? >

However, when I try to include steps for 0, the following error message appears
<? DR IS NULL or DR xdofx:If = 0 then SEGMENT4 other end if parent_value? >


Caused by: oracle.xdo.parser.v2.XPathException: could not convert to number.
at oracle.xdo.parser.v2.XSLStylesheet.flushErrors(XSLStylesheet.java:1534)
at oracle.xdo.parser.v2.XSLStylesheet.execute(XSLStylesheet.java:521)
at oracle.xdo.parser.v2.XSLStylesheet.execute(XSLStylesheet.java:489)
at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:271)
at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:155)
at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:192)

BI Publisher version is 10.1.3.4.2

I forwarded the model u with condition update can you please check and let me know.

Tags: Business Intelligence

Similar Questions

  • Guidelines for the use of conditional text

    I'm looking for instructions on the use of conditional text. Our company has grown, and that the range of products has increased, the number of conditional text tags has increased. We are up to 30 tags and continues to grow. I was struck my colleague to start breaking this system a bit, because I'm afraid, it becomes a House of cards. Colleague has been 20 years and grew up with the system - it's the only one that it is used. He sees nothing wrong with it. The tags are in its abbreviation. When I mentioned that everybody don't would not new understand them, his response was that they would teach them eventually. Also, it's starting to get to the point where some sentences are be mislabeled, causing many errors.

    Are there guidelines I refer who say in the use of conditional text is too large so that it's not just my word? 


    Milmacrose

    You might want to take a look at Matt Sullivan & Sarah O'Keefe book (edition Fundamentals - unstructured FrameMaker 11; Chapter 24) for some background information on the consequences of the use of the multiple conditional tags. Depending on what your choice (i.e. to hide or show content based on the condition tag), you can get in very complex situations with some items possibly requiring each combination of tags applied to prevent display (or display) as needed. Even with simple simple conditional tags, it can reach a very large number of unique tags required (mathematically, you are summing a series of combinations). For example, [as used in the Book], given a product in Light versions, Standard and Pro with specific online requirements & Print for Mac, Windows and Unix, there are 32 conditional tags applied correctly. If you have content that should appear in a few versions, it climbs easily up to 47 unique tags. You'd be better trying to herd a bunch of cats in a field of grass cat...

  • Need help with the use of conditions in the correspondence management

    Hello

    Could someone please provide me with any tutorials or tips on the use of conditions in the correspondence management.

    Thank you.

    http://help.Adobe.com/en_US/enterpriseplatform/10.0/CorrespondenceManagementSolution/WS6db 1f95d7f6c954f-27f2691012b7fafb54f - 7ffe.html

  • the use or condition in multiple-column subquery SQL

    Hi team,

    I need this accountability manual analysis between two tables in an easier way. These tables do not have a direct relationship.

    Please find below the scripts to create table, insert data with the incorrect select query, I.,

    CREATE TABLE TEST1)
    KEY_PRM VARCHAR (30),
    NOM_LISTE VARCHAR (30),
    TEL_NO VARCHAR (10),
    DATE OF CREATE_DT,
    DATE OF CEASE_DT,
    STATUS VARCHAR (20) - VALUE USED EITHER A OR C
    );

    CREATE TABLE TEST2)
    KEY_PRM1 VARCHAR (30),
    TEL_NO VARCHAR (20),
    DATE OF TRANS_DATE,
    TRANS_TYPE VARCHAR (20) / * VALUE USED ARE the INSERT, CEASE (Many others) * /.
    );

    INSERT INTO TEST1 (KEY_PRM, NOM_LISTE, TEL_NO, CREATE_DT, CEASE_DT, STATUS) VALUES ('1 ', 'SAM', '0123456789',' 01-APR-2013', NULL, 'A');
    INSERT INTO TEST1 (KEY_PRM, NOM_LISTE, TEL_NO, CREATE_DT, CEASE_DT, STATUS) VALUES('2','MARS','0123456789','10-APR-2013','12-APR-2013','C');
    INSERT INTO TEST1 (KEY_PRM, NOM_LISTE, TEL_NO, CREATE_DT, CEASE_DT, STATUS) VALUES('3','PLUTO','0123456799','05-APR-2013',,'A');
    INSERT INTO TEST1 (KEY_PRM, NOM_LISTE, TEL_NO, CREATE_DT, CEASE_DT, STATUS) VALUES ('4 ', 'MAN', '0123456999',' 06-APR-2013', NULL, 'A');
    INSERT INTO TEST1 (KEY_PRM, NOM_LISTE, TEL_NO, CREATE_DT, CEASE_DT, STATUS) VALUES('6','JIN','0123456999','06-APR-2013','08-APR-2013','C');
    INSERT INTO TEST1 (KEY_PRM, NOM_LISTE, TEL_NO, CREATE_DT, CEASE_DT, STATUS) VALUES('7','RIM','0123456789','20-APR-2013',,'A');
    INSERT INTO TEST1 (KEY_PRM, NOM_LISTE, TEL_NO, CREATE_DT, CEASE_DT, STATUS) VALUES('8','JIM','0123456789','12-APR-2013','12-APR-2013','C');
    COMMIT;

    INSERT INTO TEST2 (TEL_NO, TRANS_DATE, KEY_PRM1, TRANS_TYPE) VALUES('10','0123456789','01-APR-2013','INSERT');
    INSERT INTO TEST2 (TEL_NO, TRANS_DATE, KEY_PRM1, TRANS_TYPE) VALUES('11','0123456789','12-APR-2013','CEASE');
    INSERT INTO TEST2 (TEL_NO, TRANS_DATE, KEY_PRM1, TRANS_TYPE) VALUES('12','0123456799','12-APR-2013','INSERT');
    INSERT INTO TEST2 (TEL_NO, TRANS_DATE, KEY_PRM1, TRANS_TYPE) VALUES('13','0123456999','06-APR-2013','INSERT');
    COMMIT;

    SELECT T1. KEY_PRM, T1. STATUS, T1. CREATE_DT, T1. TEST1 T1 CEASE_DT WHERE
    (T1.TEL_NO, (T1. CREATE_DT OR T1. CEASE_DT)) IN (SELECT T2.TEL_NO, T2. TRANS_DATE of TEST2 T2 where TRANS_TYPE in ('INSERT', 'END');

    / * T1 SHOULD PRODUCE RESULTS. KEY_PRM = 1,2,4,6,8. * /


    There are two tables T1 TEST1 and TEST2 T2 having only matching column as TEL_NO but with many duplicates in both tables.

    Results of the query to produce T1. KEY_PRM of TEST1 T1 where CONDITION 1 and CONDITION 2 game

    CONDITION 1:-MATCH T1.TEL_NO WITH T2.TEL_NO
    CONDITION 2:-BE T1. CREATE_DT OR T1. CEASE_DT CORRESPONDENCE WITH T2. TRANS_DATE.


    Also kindly to me if it is not possible to create this select query?

    l

    Published by: a friend on April 11, 2013 01:21

    Published by: a friend on April 11, 2013 01:22

    This forum is dedicated to the support of the SQLDeveloper tool, to get answers more quickly for this kind of pure questions of SQL, you use the SQL and PL/SQL forum:

    SQL and PL/SQL

    Please repost it and mark this question as answered.

  • menu setting and condition in rtf model

    Hello guys,.

    I have a problem with the condition of xml .rtf for my
    setting in the menu.

    <? sum (COUNTY
    [
    (.. / P_TIME_2 = 2011)
    ]
    ) ? >


    the above does not work. I was wondering if a clause of 'IN '.
    or something is necessary, but I am not familiar with the syntax.

    As I gave in my previous example, it should be

    And xml, year_field and mySalaryCount should be at the same level.

  • Page break conditional on RTF model

    Hello

    I have a RTF template for a report of invoice in which the first page has information from invoice header and the second page has details of invoice information that can print on more than 1 page at run time.
    It is a synthesis report and so will feel both for invoices and printed on both sides of the paper.

    Question: New Bill starts on the back of the previous invoice details. Lets say Bill was printed on page 1, page 2 and page 3 and therefore the Bill B will start printing on page 4. Instead, it should display on page 5.


    Therefore, my requirement is to always start the new invoice on an odd page.


    Thank you
    Yogi

    Published by: Yogi on 4 February 2013 15:08

    Have you tried this:

    The same end or finish on odd Page
    http://docs.Oracle.com/CD/E21764_01/bi.1111/e13881/T421739T481157.htm

    Published by: 864713 on February 5, 2013 14:30

  • RTF model: If condition to test the XML tag exists only on the current XML node

    Hello

    I have a RICH model based on an XML file as follows:
    + < invoice > +.
    + < InvoiceNum >... < / InvoiceNum > +.
    + < ShipAddress >... < / ShipAddress > +.
    + < order > +.
    + < OrderNum >... < / OrderNum > +.
    + < ShipAddress >... < / ShipAddress > +.
    + < / order > +.
    + < order > +.
    + < OrderNum >... < / OrderNum > +.
    + < ShipAddress >... < / ShipAddress > +.
    + < / order > +.
    + < / invoice > +.

    As you can see, the tag * < ShipAddress > * there are two
    -Sub * < invoice > * = > global shipping address
    -Sub * < Order > * = > shipping address to you for Sales Order

    In an XML file, I can only have < ShipAddress > at a certain level, for example
    -the tag * < invoice > < ShipAddress > * appear in XML that if we have a unique address for the invoice
    -the tag * < order > < ShipAddress > * appear in XML that if we have more than one address for the invoice

    Logically, in my RTF model, I want to print the address of delivery at the level if one header tag * < invoice > < ShipAddress > * is in XML format.
    I tried a lot of syntax If but none works according to the needs:
    + <? If.: / ShipAddress? > + = > always returns FALSE
    + <? If: / / ShipAddress? > = > returns TRUE when < order > < ShipAddress > exists
    + <? If: ShipAddress? > = > returns TRUE when < order > < ShipAddress > exists

    The only syntax that seems to work is:
    + <? If: / / Bill/ShipAddress? > +.
    But I prefer not not hardocde the name of the top-level tag.

    Question:
    What si syntax to test the existence of a XML tag only in the current node (recursively)?

    Thanks in advance for helping me.
    K.Helali

    ShipAddress for the invoice

    
    

    ShipAddress order

    
    
  • Multi BI Publisher RTF model in Testing conditions

    Hi, kindly guide me, how to write a code for several conditions in RTF Model Builder

    for example

    If a = 1 and b = 2 then

    C

    on the other

    A

    END IF

    Thank you

    Example 1:

    If there is static text put your result in single quotes.

    If your result is a column value so do not use single quotes.

    Example 2:

    C

    A

    Please provide your RTF model and XML data for you the exact solution.

  • How to make a function of Division in the RTF models.

    Hi all

    How to use the function of Division in the RTF models on two fields XML.

    I have fields XML, B. I need to perform the function(A/B) in RTF models division. I did like this, but it appears no value.

    * <? xdofx:A / B? >, <? xdofx:div(A/B)? > * but is null resulting suggestions please.


    Thanks in advance.

    Published by: user1175240 on October 15, 2010 14:15

    Could you please try it in small box? I meant the part of the div

    Published by: amri on October 18, 2010 21:05

  • Convert model XSL - FO to RTF model

    The report layout I create has strict size requirements (for example, page margins, size of cells and so on).
    I created a simple model of the RTF using MS Word. RTF model meets the requirements of this size, but when I print my report using Acrobat Reader report seems different.
    I know that this happens because when executing BI Publisher report to XSL - FO automatically converts XSL - FO and only after that, he makes pdf.

    In order to meet the requirements of thissize I converted my RTF model in XSL - FO stylesheet using Model Designer and changed the appropriate cells and margins etc. manually.
    And everything works fine, but now I know that there will be a lot of changes in the presentation of this report (e.g. several complex tables will be added).
    He left is difficult to me to create tables in XSL - FO. And so my question is

    HOW CAN I CONVERT MY STYLESHEET XSL - FO IN RTF WITH ALL LOGIC HE HAS?

    BI Publisher version 10.1.3.4
    Thank you.

    Published by: Ruslan on 20.07.2011 05:22

    Not at all, you can't come back.

  • Page footer for rtf model number

    Hello
    I have a requirement to display the page number in a pdf output (from rtf model) in the following format

    Let's say I have 5 pages of generated pdf rtf model report

    where the page number must be in the following format

    Page 1-> 1

    Page 2-> 0

    page3-> 0

    page4-> 0

    page5-> 2


    I tried with the page break option in rtf models. But luck favors not... Please help me


    Thank you
    Angelique Varanasi

    Hi, I am also looking similar requirements.

    My requirement is:

    If the result is only a single page, page needs 2.

    If the output is more than one page, 1st page has display 1 and 2nd page display 2.

    If the output is more than 2 pages, 1st page has display 1, 2nd page display 0 and page 3 2.

    If the output is more than 3 pages, 1st page--> 1,
    2nd page--> 0,
    3rd page--> 0,
    and the last page--> 2

    This menas if the output is more than 3 pages, then 1 page 1, page 2, all means pages 0.

    can anyone help on this requirement.

    Thank you
    Rama...

  • Conditional formatting in the RTF models

    Hello

    I'll just with the design of rtf models. I have a question about the function of conditional formatting. It comes

    IF I have different types of customers(corporate,individual,etc..) passed as parameters, can, a particular cell be formatted with different colors for different customers. for example, if the setting is undertaken client the the color of a particular cell should be RED in color, and if the parameter is the color of the cell must be GREEN in color.

    Please help me with this.


    Thanks in advance

    Yes, you can conditionally format individual cells.

    Take a look at the guide (link provided) and looking for 'highlighting of cells:

    http://docs.Oracle.com/CD/E10415_01/doc/bi.1013/e12187/T421739T481157.htm

    Code example: 1000? >rouge

    Thank you
    Bipuser

  • code xdoxslt:Sum does not not in the RTF model: method not found "sum".

    We get the error when you run a RTF model customized using the application (Oracle HRMS) below and in Office BiPublisher for a particular set of data (1 employees check data). Format RTF model code which seems to be the cause of the error is the cumulative total code which is supposed to sum YTD_HOURS for all elements in the DataSet xml AC_EARNINGS:

    Problem code: <? xdoxslt:sum(YTD_HOURS_[.!_=''])? >

    The error message below it seems to be having trouble with the sum

    HRMS Oracle concurrent Manager error:

    java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39
    )
    at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl
    . Java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at oracle.apps.xdo.common.xml.XSLT10gR1.invokeProcessXSL(XSLT10gR1.java:677)
    at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:425)
    at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:244)
    at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:182)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1044)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212)
    at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1665)
    at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:975)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate (TemplateH
    Elper.Java:5936)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate (TemplateHelp
    St. Java:3459)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate (TemplateHelp
    St. Java:3548)
    at oracle.apps.pay.core.documents.DocGenerator.process(DocGenerator.java:521)
    Caused by: oracle.xdo.parser.v2.XPathException: Extension function error: method
    not found 'sum' to the oracle.xdo.parser.v2.XSLStylesheet.flushErrors(XSLStylesheet.java:1534)
    at oracle.xdo.parser.v2.XSLStylesheet.execute(XSLStylesheet.java:521)
    at oracle.xdo.parser.v2.XSLStylesheet.execute(XSLStylesheet.java:489)
    at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:271)
    at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:155)
    at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:192)
    ... more than 17

    HR_6882_HRPROC_ASSERT
    LOCATION pyjavacom:2
    APP-PAY-06882: Assertion failure detected at the location pyjavacom:2.

    Cause: an internal error has occurred at the location pyjavacom:2.

    Action: contact your Oracle customer representative.



    Note: The RTF check model works ok most of the time, but there is a problem with the model of XML data below. In this scenario, there is no YTD_HOURS and only one line of data for this employee, unlike the data second example of another audit below.

    The data that the code does NOT work with:

    -< AC_EARNINGS >
    < DATE_DISP_FLG > N < / DATE_DISP_FLG >
    revenues of < ELEMENT_CLASSIFICATION > < / ELEMENT_CLASSIFICATION >
    < ELEMENT_TYPE_ID > 58423 < / ELEMENT_TYPE_ID >
    < PRIMARY_BALANCE > 10511197 < / PRIMARY_BALANCE >
    < PROCESSING_PRIORITY > 1200 < / PROCESSING_PRIORITY >
    < CURRENT_AMOUNT > 1584.8 < / CURRENT_AMOUNT >
    < YTD_AMOUNT > 25698.88 < / YTD_AMOUNT >
    Normal salary < REPORTING_NAME > < / REPORTING_NAME >
    < CURRENT_HOURS > 80 < / CURRENT_HOURS >
    < YTD_HOURS > 1312 < / YTD_HOURS >
    < RATE / >
    < CURRENT_DAYS / >
    < YTD_DAYS / >
    < ATTRIBUTE_NAME / >
    < ORIGINAL_DATE_EARNED / >
    < EFFECTIVE_START_DATE / >
    < EFFECTIVE_END_DATE / >
    < ELEMENT_CATEGORY / >
    < JURISDICTION_CODE / >
    < RATE_MUL > 19.81 < / RATE_MUL >
    < RATE_RET / >
    < / AC_EARNINGS >

    Data that works with the code:

    -< AC_EARNINGS >
    < DATE_DISP_FLG > N < / DATE_DISP_FLG >
    revenues of < ELEMENT_CLASSIFICATION > < / ELEMENT_CLASSIFICATION >
    < ELEMENT_TYPE_ID > 58423 < / ELEMENT_TYPE_ID >
    < PRIMARY_BALANCE > 10511197 < / PRIMARY_BALANCE >
    < PROCESSING_PRIORITY > 1200 < / PROCESSING_PRIORITY >
    < CURRENT_AMOUNT > 1584.8 < / CURRENT_AMOUNT >
    < YTD_AMOUNT > 25698.88 < / YTD_AMOUNT >
    Normal salary < REPORTING_NAME > < / REPORTING_NAME >
    < CURRENT_HOURS > 80 < / CURRENT_HOURS >
    < YTD_HOURS > 1312 < / YTD_HOURS >
    < RATE / >
    < CURRENT_DAYS / >
    < YTD_DAYS / >
    < ATTRIBUTE_NAME / >
    < ORIGINAL_DATE_EARNED / >
    < EFFECTIVE_START_DATE / >
    < EFFECTIVE_END_DATE / >
    < ELEMENT_CATEGORY / >
    < JURISDICTION_CODE / >
    < RATE_MUL > 19.81 < / RATE_MUL >
    < RATE_RET / >
    < / AC_EARNINGS >
    -< AC_EARNINGS >
    < DATE_DISP_FLG > N < / DATE_DISP_FLG >
    < ELEMENT_CLASSIFICATION > attributed gains < / ELEMENT_CLASSIFICATION >
    < ELEMENT_TYPE_ID > 58444 < / ELEMENT_TYPE_ID >
    < PRIMARY_BALANCE > 10511222 < / PRIMARY_BALANCE >
    < PROCESSING_PRIORITY > 3250 < / PROCESSING_PRIORITY >
    < CURRENT_AMOUNT > 1.46 < / CURRENT_AMOUNT >
    < YTD_AMOUNT > 25,51 < / YTD_AMOUNT >
    Life term for the Group < REPORTING_NAME > < / REPORTING_NAME >
    < CURRENT_HOURS / >
    < YTD_HOURS / >
    < RATE / >
    < CURRENT_DAYS / >
    < YTD_DAYS / >
    < ATTRIBUTE_NAME / >
    < ORIGINAL_DATE_EARNED / >
    < EFFECTIVE_START_DATE / >
    < EFFECTIVE_END_DATE / >
    < ELEMENT_CATEGORY / >
    < JURISDICTION_CODE / >
    < RATE_MUL / >
    < RATE_RET / >
    < / AC_EARNINGS >
    -< AC_EARNINGS >
    < DATE_DISP_FLG > N < / DATE_DISP_FLG >
    Additional gains < ELEMENT_CLASSIFICATION > < / ELEMENT_CLASSIFICATION >
    < ELEMENT_TYPE_ID > 58431 < / ELEMENT_TYPE_ID >
    < PRIMARY_BALANCE > 10511205 < / PRIMARY_BALANCE >
    < PROCESSING_PRIORITY > 2500 < / PROCESSING_PRIORITY >
    < CURRENT_AMOUNT > 9.6 < / CURRENT_AMOUNT >
    < YTD_AMOUNT > 163,2 < / YTD_AMOUNT >
    < REPORTING_NAME > dental CB < / REPORTING_NAME >
    < CURRENT_HOURS > 0 < / CURRENT_HOURS >
    < YTD_HOURS > 0 < / YTD_HOURS >
    < RATE / >
    < CURRENT_DAYS / >
    < YTD_DAYS / >
    < ATTRIBUTE_NAME / >
    < ORIGINAL_DATE_EARNED / >
    < EFFECTIVE_START_DATE / >
    < EFFECTIVE_END_DATE / >
    < ELEMENT_CATEGORY / >
    < JURISDICTION_CODE / >
    < RATE_MUL / >
    < RATE_RET / >
    < / AC_EARNINGS >
    -< AC_EARNINGS >
    < DATE_DISP_FLG > N < / DATE_DISP_FLG >
    revenues of < ELEMENT_CLASSIFICATION > < / ELEMENT_CLASSIFICATION >
    < ELEMENT_TYPE_ID > 64614 < / ELEMENT_TYPE_ID >
    < PRIMARY_BALANCE > 10518109 < / PRIMARY_BALANCE >
    < PROCESSING_PRIORITY > 1526 < / PROCESSING_PRIORITY >
    < CURRENT_AMOUNT > 0 < / CURRENT_AMOUNT >
    < YTD_AMOUNT > 1571.12 < / YTD_AMOUNT >
    < REPORTING_NAME > TOWP < / REPORTING_NAME >
    < CURRENT_HOURS / >
    < YTD_HOURS > 80 < / YTD_HOURS >
    < RATE / >
    < CURRENT_DAYS / >
    < YTD_DAYS / >
    < ATTRIBUTE_NAME / >
    < ORIGINAL_DATE_EARNED / >
    < EFFECTIVE_START_DATE / >
    < EFFECTIVE_END_DATE / >
    < ELEMENT_CATEGORY / >
    < JURISDICTION_CODE / >
    < RATE_MUL / >
    < RATE_RET / >
    < / AC_EARNINGS >
    -< AC_EARNINGS >
    < DATE_DISP_FLG > N < / DATE_DISP_FLG >
    revenues of < ELEMENT_CLASSIFICATION > < / ELEMENT_CLASSIFICATION >
    < ELEMENT_TYPE_ID > 57863 < / ELEMENT_TYPE_ID >
    < PRIMARY_BALANCE > 10510820 < / PRIMARY_BALANCE >
    < PROCESSING_PRIORITY > 1200 < / PROCESSING_PRIORITY >
    < CURRENT_AMOUNT > 0 < / CURRENT_AMOUNT >
    < YTD_AMOUNT > 937,2 < / YTD_AMOUNT >
    Holiday < REPORTING_NAME > < / REPORTING_NAME >
    < CURRENT_HOURS / >
    < YTD_HOURS > 48 < / YTD_HOURS >
    < RATE / >
    < CURRENT_DAYS / >
    < YTD_DAYS / >
    < ATTRIBUTE_NAME / >
    < ORIGINAL_DATE_EARNED / >
    < EFFECTIVE_START_DATE / >
    < EFFECTIVE_END_DATE / >
    < ELEMENT_CATEGORY / >
    < JURISDICTION_CODE / >
    < RATE_MUL / >
    < RATE_RET / >
    < / AC_EARNINGS >
    -< AC_EARNINGS >
    < DATE_DISP_FLG > N < / DATE_DISP_FLG >
    < ELEMENT_CLASSIFICATION > attributed gains < / ELEMENT_CLASSIFICATION >
    < ELEMENT_TYPE_ID > 63592 < / ELEMENT_TYPE_ID >
    < PRIMARY_BALANCE > 10517244 < / PRIMARY_BALANCE >
    < PROCESSING_PRIORITY > 3250 < / PROCESSING_PRIORITY >
    < CURRENT_AMOUNT > 0 < / CURRENT_AMOUNT >
    < YTD_AMOUNT > 285.07 < / YTD_AMOUNT >
    < REPORTING_NAME > F90 SVEU DIST < / REPORTING_NAME >
    < CURRENT_HOURS / >
    < YTD_HOURS / >
    < RATE / >
    < CURRENT_DAYS / >
    < YTD_DAYS / >
    < ATTRIBUTE_NAME / >
    < ORIGINAL_DATE_EARNED / >
    < EFFECTIVE_START_DATE / >
    < EFFECTIVE_END_DATE / >
    < ELEMENT_CATEGORY / >
    < JURISDICTION_CODE / >
    < RATE_MUL / >
    < RATE_RET / >
    < / AC_EARNINGS >
    -< AC_EARNINGS >
    < DATE_DISP_FLG > N < / DATE_DISP_FLG >
    Additional gains < ELEMENT_CLASSIFICATION > < / ELEMENT_CLASSIFICATION >
    < ELEMENT_TYPE_ID > 67074 < / ELEMENT_TYPE_ID >
    < PRIMARY_BALANCE > 10520289 < / PRIMARY_BALANCE >
    < PROCESSING_PRIORITY > 2500 < / PROCESSING_PRIORITY >
    < CURRENT_AMOUNT > 0 < / CURRENT_AMOUNT >
    < YTD_AMOUNT > 85.24 < / YTD_AMOUNT >
    < REPORTING_NAME > other Tx RRs < / REPORTING_NAME >
    < CURRENT_HOURS / >
    < YTD_HOURS / >
    < RATE / >
    < CURRENT_DAYS / >
    < YTD_DAYS / >
    < ATTRIBUTE_NAME / >
    < ORIGINAL_DATE_EARNED / >
    < EFFECTIVE_START_DATE / >
    < EFFECTIVE_END_DATE / >
    < ELEMENT_CATEGORY / >
    < JURISDICTION_CODE / >
    < RATE_MUL / >
    < RATE_RET / >
    < / AC_EARNINGS >


    If anyone has any ideas as to what is necessary to resolve the issue we have in our company can you please let me know? I appreciate your time. If you need more information please let me know and I'll post it.

    Thank you

    Greg

    Published by: gtruta on November 20, 2012 16:20

    Published by: gtruta on November 20, 2012 16:21

    xdoxslt sum allows us to avoid the issue while fields sum with the value null. as you already now the condition with the field u do not need xdoxslt

    is - enough try this

    you are able to get a preview of the template with the code of the sum.

    Send me your model and xml. I can try at my side
    E-mail: [email protected]

  • Change the parameter value in RTF model

    Hello
    Sorry if possible change a setting value of RTF model?
    Thank you for the ideas!

    Why can't use you the variable xdoxslt changed for her?
    Initialize the variable with a value of parameter.
    Reset the condition variable and use it.

  • How to map the same tag of the element with a different value in BI Publisher rtf model.

    Hello

    I have an xml file with the same name in the < tag > element and I do not know how to associate the same < tag > element to different string in the document rtf template attribute.

    For example: "' Eswitch <number > is repeated in this xml file, when I am mapping this element to the document rtf with a different string, I have same value 'D00002 ' . I should get values D00002 and DMR00002.

    < document >

    < TitleBlock >

    < number > D00002 < / number >

    < itemType > Document < / itemType >

    < lifecyclePhase > preliminary < / lifecyclePhase >

    < description > gtedgg < / description >

    < shippableItem > n < / shippableItem > < / cartridge > < / Document >

    < DMR >

    < TitleBlock >

    < number > DMR00002 < / number >

    < itemType > DMR < / itemType >

    < lifecyclePhase > preliminary < / lifecyclePhase >

    test nomenclature model bom1 < description > < / description >

    < POS > < value > Test < / value > < / POS >

    < shippableItem > n < / shippableItem > < / cartridge > < / DMR >

    < / AgileData >

    I followed steps below for map document model rtf with the same tag xml with a different value.

    1. install Office word 2013.

    2 BI Publisher for desktop software installed. It will add a BI Publisher plugin to the word document.

    3. with the help of desktop publisher BI, created a model of document rtf file.

    4 imported the document rtf template example xml file.

    The data is loaded successfully.

    5 tires model rtf field symbol to map the tags to xml to rtf document attributes element.

    7 saved the document in PDF format.


    Thank you

    Please mark it correct so that it is useful for others to find the solution to a similar request.

Maybe you are looking for

  • Download... Zlib.dll is missing on your computer?

    Hi all, new to this, so you can be patient if I ask an easy question 'inept '...  I use my computer mainly for games. As in... Play Casinos. Im having trouble with a specific download, it used open after downloading, tells me Im zlib.dll missing from

  • Valet Plus M20 can be placed in bridge mode?

    I would like to address my internet connection from my M20 to a liked n wireless router.  The older router can be placed in bridge mode, but how do I place the M20 in bridge mode? Thank you!

  • How to compare two files in Windows 7 prof 64 bit

    I have two files which has several files. I would like to compare the two files and see which folder has more files, and what are their names? How I do that in Windows 7 prof 64 bit? Is useful that I can download?

  • When I hit send file, send it to this page or send link does not work

    When I hit the file send send this page or send the link does not work * original title - my file, send a page or the link does not work *.

  • Photoshop elements serial number incorrect

    Help!  I'm moving the Elements 8 for my new PC.  I disabled it on my old PC but when trying to put my serial number it is said that it is not valid.  I had the CD but can't find it and do not have a reader of cd on the new PC anyway.Thank you!