How to customize charts in RTF for BI Publisher

Hello Experts
How can an existing chart in RTF template be customized ?
Can I change the properties of a chart such that values along the Y-axis in the chart are displayed in the reverse order ?
Thanks in Advance.
Amrith.

Hello Rainer
I've tried what you told but I was only able to sort the values on the X-axis but not the Y-axis. The following is my XML definition of the chart. Can you please let me know where can I add the tag order="descending" in my definition.
X-axis has the values of 'ACTIVITY DATE' and
Y-axis has the values of 'SALES'
chart:
<Graph graphType="LINE_VERT_ABS" seriesEffect="SE_AUTO_GRADIENT"><LegendArea visible="false"/>
<Title text="" visible="true" horizontalAlignment="CENTER"/>
<LocalGridData colCount="{count(xdoxslt:group(.//ROW, 'ACTIVITY_DATE1'))}" rowCount="1">
<ColLabels>
<xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform" select=".//ROW" group-by="ACTIVITY_DATE1">
<xsl:sort select="current-group()/ACTIVITY_DATE1"/>
<Label>
<xsl:value-of select="current-group()/ACTIVITY_DATE1"/>
</Label>
</xsl:for-each-group>
</ColLabels>
<DataValues>
<RowData>
<xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform" select=".//ROW" group-by="ACTIVITY_DATE1">
<xsl:sort select="current-group()/ACTIVITY_DATE1"/>
<Cell>
<xsl:value-of select="sum(current-group()/SALES)"/>
</Cell>
</xsl:for-each-group>
</RowData>
</DataValues>
</LocalGridData>
</Graph>
Thanks in advance
Amrith.

Similar Messages

  • Send portfolio how to customize adobe welcome screen for shared porfolio. (Opening the link forces the recipient to a downright ugly irrelevant and dead advertisement rather a related cover page)

    send portfolio- how to customize adobe welcome screen for shared porfolio ?(Opening the link forces the recipient to a downright ugly irrelevant and dead advertisement (appropriately titled "branding logo.png) rather a related cover page)

    Hi nedler1,
    Please try the following steps to display the cover sheet and replace it with custom one:
    How to change a portfolio’s initial view setting to show the cover sheet (and hide the contents):
    Open a PDF portfolio and run the following JS in the console:
    this.collection.initialView = 'Hidden';
    Save the portfolio, close and re-open.
    The cover sheet will now be displayed when opening the portfolio.
    Updating the cover sheet
    Also, most likely if you want the coversheet displayed when opening the portfolio, and do not want the default cover sheet:
    Here are the steps to replace the default cover sheet:
    Open the Portfolio.
    Perform a View > Portfolio > cover sheet to open the cover sheet.
    Open the Pages panel for the cover sheet.
    Right click on the cover sheet page in the pages panel, select “Replace Pages”.
    Replace the cover sheet page with the desired cover from a page in another pdf.
    Save the portfolio.
    Regards,
    Rave

  • How to customize iCloud add-in for Outlook?

    I am using the iCloud plug-in for Outlook 2010 under Windows 7.  Everything works great.  New appointment default to the iCloud Calendar, and I can see them on my iOS devices.
    The problem is that I am visually impaired, and want to change the default appointment settings.  I want to specify the "Blue Category" by default, as this is easier for me to see.  If I didn't have the iCloud add-in, then I would create a custom Form in Outlook, and set the default.  The problem is that Form editor doesn't allow me to specify iCloud as the default calendar.
    So how do I modify the default iCloud appointment form used in Outlook??
    Thanks!
    Gary

    I struggled with this but found the answer.  You need to set the LoadBehaviour property in the Registry to 2 (Load at Start Up).
    Run RegEdit
    Navigate to here [HKEY_CURRENT_USER\Software\Microsoft\Office\Outlook\Addins\Apple.DAV.addin]
    LoadBehaviour will probably be sitting at 0.  Double click that to open, change it to 2 and you're done.
    Open Outlook, the Add-in will probably still be inactive.  MAke it active, close Outlook, open it again and it should work...

  • How to customize adobe printforms ? (for Example IW32 ,Form PM_COMMON)

    Would like to know more how customizing adobe printforms ... what does sap saying about this ?
    thanks !
    (Finaly ... i was disapointed about adobe printforms)

    thanks ! for the really useless answer... any other ideas ?

  • How to customize the installation location for Acrobat Reader 11

    My c:\ is a SSD with limited space.  I would like to install Reader 11 to a different drive path, however the installer does not seem to have custom installation location option.

    Download the offline installer from http://get.adobe.com/reader/enterprise/, then click on 'Change Destination Folder' on the first install panel.

  • How to create editable PDF template for XML Publisher reports

    Hi,
    I have got a requirement to have some editable fields in one report whose output is in PDF format.
    I tried looking and saw this can be done using the XML Publisher report and using PDF template.
    But I got only Adobe Acrobat Reader and it does not have the facility to create Form fields.. Can you let me know what software I need in order to create the editable PDF Template.
    In the user guide, it didnot mention anything regarding this.
    Can I create editable PDF report using RTF template or do i have to got for PDF template only?
    Any help is appreciated!
    Thanks

    Hi,
    To edit PDF template , u need Acrobat writer, which is not free .
    I am still wondering what is this ?
    "" Can I create editable PDF report using RTF template ?? "".
    What is editable PDF report. ?
    i think what you tried to mention is ,
    can the PDF output from xml publisher is editable ?
    If that is the question , so here is some points,
    If you have Acrobat Writer or prof.edition, you can edit all the PDF documents irrespective of being from where it is generated.
    To make you understand more of XMLP.
    You create RTF template in word, so that , after merging with xml you can have multiple output formats like PDF, XLS, EFT,.....

  • R12 - How to customize the seeded Purchase Order PDF report

    Hi,
    We need to customize the layout AND the data of the seeded Purchase Order pdf report that is generated in PO Summary form when user picks drop-down menu Inquire->View Document. I know how to set up the Document Type with a customized layout but I do not know how to update the XML data that feeds the layout.
    Thanks, Mike

    Mike,
    Please review the following documents.
    Note: 374165.1 - How To Customize The PDF Output For Printed Purchase Order Report (Portrait) ?
    Note: 406094.1 - How To Diagnose Issues Within Oracle Purchasing PDF File Creation for Printing
    Regards,
    Hussein

  • How to use XDOXSLT in rtf template layout for etext template creation

    <DEFINE CONCATENATION>     BookDetails
    <BASE LEVEL>     Category
    <ELEMENT> Name || '/' || Price     
    <DELIMITER>      '/'
    <END DEFINE CONCATENATION>     BookDetails
    With EFTProcessor the above details are created in xsl file as follows
    <xsl:template name="CONCAT_BookDetails">
    *I need to declare one more variable here
    EG: <xsl:value-of select="xdoxslt:set_variable($mycount, count(.//Category))"/>
    --and use this variable for any dyanamic process inside this template. How to achieve this in rtf template by declaring a xdoxslt function. How to declare this
    syntax in rtf layout so that it creates a varibale in xsl template using the EFTProcessor. Please help me out. The main point here is to include xslt functions in
    rtf template layout for etext template creation.*
    <xsl:for-each select=".//Category">
    <xsl:call-template name="CONCAT_BookDetails_V"/>
    </xsl:for-each>
    </xsl:template>

    in the next time use BI Publisher forum - BI Publisher
    <?format-number(ENTERED_CR,'##,##0.00')?>it's works for me
    output:
    444    ->  444.00
    444.55 ->  444.55

  • How to customize the Java Concurrent Program(PO Output for Communication)

    Hi,
    How to customize the Java Concurrent Program(PO Output for Communication)
    I need to add the Line level Ship To Address ,Line Notes and Extended Price fields on Java Concurrent Program.
    Please any body help/guide me in this regard.

    Hi,
    Changing Java Conc. program for "PO Output for Communication" is difficult.
    Actually, if you observe closely, "PO Output for Communication" program uses PO<HEADER/LINES..>_XML views.
    So if you could change these views and add your requireed columns to it, you can automatically see your changes in XML data file.
    See if the following link will you to get there.. http://chandramatta.blogspot.com/
    thanks,
    Matt

  • How to customize search in WS 7 and for multiple virtual servers?

    I'm not clear on how to customize search results pages in Sun Web Server 7. The documentation (the Adminstrator's Guide, page 215) says:
    You can take a look at the default search application located at /bin/https/webapps/search as a sample application
    but I'm not seeing any such thing. I did a find . -name search -type d from the server root and instance root but the only search directories I'm seeing are subdirectories within the generated directory and they look like system generated jsps that I shouldn't touch (So I didn't :-)
    So one question is, where is the default app? A second question is, how do we set up different branding for different virtual servers?
    We're currently using WS 6.1 and it has a field in the GUI for the directory containing the web app to use for search. That seems to have disappeared in WS 7.
    Any help would be appreciated. Thanks.
    Dave

    I don't use the search engine, so I'm afriad I don't have direct experience here.
    What I'd probably do is modify the app so that it looks at the Host data to determine which directory it should point to for graphics, formatting, etc. You could also use the obj.conf with variables to pull graphics from directories appropriately branded. Something like:
    1) Create "additional doc directory" for images
    2) Find the entry in the obj.conf that points to the new directory
    3) Modify the path to something like /path/to/$host/images
    4) Make sure you create directories like:
    /path/to/foobar.com/images/
    /path/to/www.foobar.com/images/
    /path/to/baz.com/images/
    /path/to/www.baz.com/images/

  • How can I get the template( word rtf )  for PO – Printed Purchase Order ?

    I want to convert the “PO - Printed Purchase Order” report from Oracle rdf format to BI Publisher. I am looking for the template but could not find in UNIX.
    As per the Oracle blog, the template is available. Please see the URL : https://blogs.oracle.com/xmlpublisher/resource/121BIPReports.pdf
    The template code is POXPRPOL_XML.rtf
    when I look at the $PO_TOP/patch/115/publisher/templates/US directory, I cannot find POXPRPOL_XML.rtf
    How can I get the template( word rtf ) for PO – Printed Purchase Order ?
    Thank you,
    Biju Varghese.

    How can I get the template( word rtf ) for PO – Printed Purchase Order ? XML Publisher Administrator -> Templates
    find by code or name
    open it and you can downloadtemplate by "download" button

  • How to use chart engine for web dynpro java(EP) for Graphics generation.

    Hi Frndz..
    now lookiing out for different types of dynamic graphics generations according to my requirment, n i saw the followiing blog
    Testing BusinessGraphics in Web Dynpro for Java
    Itz very nice to see that we can generate planty of types, but here our server is EP 7.0(not CE 7.1) and i gone thru  these links also
    http://help.sap.com/saphelp_nwmobile71/helpdata/en/86/243f403f0a9354e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nwmobile71/helpdata/en/0b/79553b066d9414e10000000a114084/frameset.htm
    https://help.sap.com/saphelp_nw04/helpdata/en/0c/95c83956852b51e10000000a114084/frameset.htm
    here it seems to be Chart Engine n Chart Designer is mainly for BSP(R3), how best we can use this for web dyn pro java.
    Thanks in Advance
    Regards
    Rajesh

    hi
    if you want to use BusinessGraphics in WebDynpro java you have to configure IGS.
    IGS Configuration
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/4846ac90-0201-0010-099d-d3b4e271849c
    Business Graphics docs.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/3261cd90-0201-0010-268c-d8d72e358af6
    ChartDeigner Usage
    http://help.sap.com/saphelp_nw04/helpdata/en/18/d4d43fb9490c65e10000000a114b1d/frameset.htm
    Generating Gantt chart using web dynpro business graphics

  • How to provide different plor series for plot chart

    How to provide different plot series for a Plot Chart.
    The IDs of the series are given in a ComboBox control

    Series are stored in an array. If there is only one series, then you can change it simply by "pushing" a series into a new array, and then assigning that series array to the chart. If you are replacing one series in the chart series array, then you have to figure out which to remove and put the new one in.
    This LiveDocs link may help:
    http://livedocs.adobe.com/flex/3/html/help.html?content=charts_intro_7.html
    If this post answers your question or helps, please mark it as such.

  • How to set the (specific) color for a Chart Series in a Flash Diagramm

    Hello all,
    I wonder how I can set the color (of a bar) for a Chart Series in a Flash Diagramm.
    So far I found now set-screw for this.
    Can someone give me a hint please.
    Thanks in advance.
    Andre

    Hi,
    On the Chart Attributes page for the region, change the "Color Scheme" setting to Custom. Then, in the "Custom Colors" setting, enter the colours you want for all series, separated by a comma. For example:
    red,yellow,greenAndy

  • How to customize the program for maximum performance on my system?

    How to customize the program for maximum performance on my system?
    My system: i7-5820k processor, motherboard msi x99s gaming7, DDR4 RAM 8GB ,videocard MSI 970/

    What program?
    Mylenium

Maybe you are looking for

  • XML Parsing error in PL/SQL

    Hello, I have some problem in parsing Mircrosoft OpenXML file using Oracle 10g Release2 XML Parser for PL/SQL. I use dbms_xmlparser, dbms_xmldom, dbms_xslprocessor packages OpenXML file use "w:" as namespace, so every element has prefix "w:" like <w:

  • REMOVE: Multipler + Intel EIST problem on P35 NEO.

    Allright you probaply are familiar with this problem. When Im trying to change multipler on my motherboard settings it says that Speed Step haves to be disabled. I have latest BIOS on my motherboard and in case of somebody suspecting OC albility of M

  • Decryption Failed Error 4498, Microsoft Remote Desktop on Mac OSX Mavericks

    Our work server is hosted on the cloud. Every few minutes I get an error that reads: "Decryption using Standard RDP Security mechanisms failed (code DecryptFailed(4498))". I click OK, and it closes the remote desktop session. I re-open the session an

  • Defining constants/enums with const in JavaScript

    Hi folks, I like to define constant enums like the InDesign DOM already provides, e.g.: SpecialCharacters.FORCED_LINE_BREAK StateTypes.DOWN etc. I like to define such enums too. The only approach I found was: const MY_ENUM = {TOP:"top",DOWN:"down"} B

  • Crashes after software updates

    My MBP seems to pretty reliably crash after any apple software update that requires a reboot. I've not done anything weird to the machine, it's got the factory install from when it shipped (W8607), but after most (if not all, I can't be 100% sure) it