How to study the commands/functions for example <>? &lt;? Sum (fieldName)? &gt;

I'm new to bi publisher and in some cases, it seems that people are coding for what they want.  How can I find more information about the possible functions that are available.

For example: Sum.  I used it and it works.  I just what to know whatelse is available and how to code. <? sum (#)? >

Howard

Please take a look at this material. It covers almost most of the features of BI Publisher.

http://docs.Oracle.com/CD/E28280_01/bi.1111/e22254.PDF

Go through the sub topics to know more functions RTF on

Extended function in RTF templates support

Creation of RTF models

Creating RTF templates using the template for Word generator

Tags: Business Intelligence

Similar Questions

  • How to get the device model, for example app works on PlayBoook or BlackBerry 10?

    How to get the device model, for example app works on PlayBoook or BlackBerry 10?

    You can use this class: http://goo.gl/GtMLP for information on devices

    something like this:

    String myDeviceModel = android.os.Build.MODEL;
    String myDeviceBrand = android.os.Build.BRAND;
    String myDeviceDevice = android.os.Build.DEVICE;
    
  • How to specify the dragdrop function for an added list of dynamically?

    I enclose you dynamically a list item to a component of the canvas and the list to be able to accept items from other lists as a droppable. Due to the nature of my application, I create list when running and it cannot be created in mxml (since there is an undetermined number of these lists, which is known only at run time). My problem is that I can't find a way to set a custom function dragDrop on such an added list of how dynamic (I need such a function of error checking). I enclose the code for a version of my problem here.

    In this example, in the list below, I can drag the items to the first canvas and have my custom function executed but how would do the same for the second canvas? Flex Builder doesn't let me specify the property "dragDrop" of the List object. (My guess is I could have her labeled as something else?) I'm not sure.)

    Thank you very much in advance!
    Vineet

    list.addEventListener (DragEvent.DRAG_DROP, dragDropHandler)

  • How to pass the Getprevsteplog function for the scenario of the child?

    I have a scenario parent and I need to go to the previous step of name for the child scenario, more specifically, I need to pass this name for the first stage of the scenarios of the child.

    How to do this?

    An example setting a refreshing variable against a logical schema Oracle would be

    SELECT ' %=odiRef.getPrevStepLog ('STEP_NAME') % of <> ' OF THE DOUBLE

    or SQL server

    SELECT ' %=odiRef.getPrevStepLog ('STEP_NAME') % of <> .

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • How to restore the default permissions (for example, the users folder) in windows 7?

    Dear windows users,

    Recently, I messed up the permissions of the files. What happened is that I took my laptop hard drive (win 7 64 bit system) in a USB external hard drive case. Then I get the USB into another windows office 7. I went through the users (perhaps of other files) folder in the hard disk of laptop on the desktop via a USB connection. It is very likely that the Office has changed the permissions of the files.
    I put the hard drive to my laptop, but some applications gives error like access denied messages.
    Is there a safe way to fix them? How to reset the default permissions?
    Thank you.
    BTW, have you worked with permissions of folders? Do you know what happens if permission to c:\users is messed up?

    When permissions in a subfolder in the users folder are confused so the user will not be able to run some programs, to create, modify or delete some files. The folder property affected, followed by assigning appropriate permissions, is usually sufficient to solve the problem.

  • How to use the Pivot function for range group in oracle SQL

    Hello

    Hello!!!

    I need to display the data in the format below. There are 2 columns 1 is State and another is rate.

    State < 100 100-199, 200-299 300-399 400-499, 500-599 600-699 700-799 800-899 900-999 > = 1000 Total
    AK 1 2 0 4 1 4 4 35 35 4 1 25
    AL 0 0 2 27 10 17 35 2 2 35 0 103
    AR 0 0 1 0 0 2 2 13 13 2 0 6
    AZ 0 1 2 14 2 14 13 3 3 13 0 57
    CA     0     0     1     6     2     7     3     4     4     3     0     34

    Developed the sub query but unable to use the beach on the pivot function. Please help on this.

    (select (SELECT short_description
    OF CODE_VALUES
    WHERE CODE_TYPE_CODE = ad. STATE_TYPE_IND_CODE
    AND VALUE = ad. STATE_CODE
    ) STATE,
    Nr.rate
    N-NEUTRAL
    c contacts,
    announcement of addresses,
    xref_contacts_addresses xca,
    neutral_rates nr
    where n.contact_id = c.contact_id
    and n.address_id = ad.address_id
    and xca.address_id = ad.address_id
    and xca.contact_id = c.contact_id
    and nr.contact_id = n.contact_id
    and nr.rate_frequency = 'HOUR')

    Like this

    with t
    as
    (
    select 'AL' state, 12 value from dual union all
    select 'AL' state, 67 value from dual union all
    select 'AL' state, 23 value from dual union all
    select 'AL' state, 12 value from dual union all
    select 'AL' state, 12 value from dual union all
    select 'AL' state, 78 value from dual union all
    select 'AL' state, 34 value from dual union all
    select 'AL' state, 4 value from dual union all
    select 'AL' state, 12 value from dual union all
    select 'AL' state, 15 value from dual union all
    select 'AZ' state, 6 value from dual union all
    select 'AZ' state, 123 value from dual union all
    select 'AZ' state, 123 value from dual union all
    select 'MA' state, 23 value from dual union all
    select 'MA' state, 120 value from dual union all
    select 'MA' state, 456 value from dual union all
    select 'MA' state, 11 value from dual union all
    select 'MA' state, 24 value from dual union all
    select 'MA' state, 34 value from dual union all
    select 'MA' state, 87 value from dual union all
    select 'MA' state, 23 value from dual union all
    select 'MA' state, 234 value from dual union all
    select 'MA' state, 789 value from dual union all
    select 'MH' state, 54321 value from dual
    )
    -- End of test data
    select state,
           nvl(count(decode(value, 0, 0)), 0) "<100",
           nvl(count(decode(value, 1, 1)), 0) "100-199",
           nvl(count(decode(value, 2, 2)), 0) "200-299",
           nvl(count(decode(value, 3, 3)), 0) "300-399",
           nvl(count(decode(value, 4, 4)), 0) "400-499",
           nvl(count(decode(value, 5, 5)), 0) "500-599",
           nvl(count(decode(value, 6, 6)), 0) "600-699",
           nvl(count(decode(value, 7, 7)), 0) "700-799",
           nvl(count(decode(value, 8, 8)), 0) "800-899",
           nvl(count(decode(value, 9, 9)), 0) "900-999",
           nvl(count(decode(value, 10, 10)), 0) ">=1000"
      from (
              select state, case when value < 100 then 0
                                 when value between 100 and 199 then 1
                                 when value between 200 and 299 then 2
                                 when value between 300 and 399 then 3
                                 when value between 400 and 499 then 4
                                 when value between 500 and 599 then 5
                                 when value between 600 and 699 then 6
                                 when value between 700 and 799 then 7
                                 when value between 800 and 899 then 8
                                 when value between 900 and 999 then 9
                                 when value >= 1000 then 10
                            end value
                from t
           )
     group
        by state
    
  • run the command runtimemenu for example APP_SC_EMPTY_ARRAY and other programmatic

    Dear community

    I have a simple question of relaively.

    There are a lot of labview build in commands in the APP_SC_... section for different actions.

    I want to run some of these commands, using a key instead of the menu DURATION event event.

    As all of these commands are somewhere building in the development environment, I wonder if they are somehow accesible by the use of a call node type.

    Hope you have a good idea how I can use these commands in a knot "invoke" as style.

    Thank you

    Gernot

    www.Ionicon.com

    Hello Gernot,

    in view of the manipulation of tables: why not use the table palette functions, Boolean pulled by buttons?

    Okay, there you have to put some things in place, but it could be a possible way.

    But overall, I think I would say that these context menu commands cannot be used in the block diagram (to give a concrete answer).

    Best regards

  • How to create the constructor function for a pl/sql table?

    I created a PL/SQL type as table below:

    create or replace type typ_tbl_des_text is table of the typ_tof_des_text

    OK so far, but I would like to have a constructor function which would be subject to validations and raise_application_error when a validation condition is not met.

    How to do this?

    The typ_tof_des_text that I created with a constructor function, so that the record-level validation are performed in the constructor. And I think the postings between several records shall be made in a constructor for typ_tbl_des_tex, but cannot figure out how to create such a constructor.

    BEDE wrote:

    So, if I have understood correctly, to a plsql table type, I can't have a member procedure. Or can I? I mean, just as for a type of failure I can have one or more constructors and possibly several procedures of Member.

    For the standard tables in PL/SQL, you will need to create your own API (using procedures and functions) to handle beyond the basics provided by the language. No constructors and methods as it is no o - o.

    After thinking a little deeper, I reformulate what I said earlier and actually wants to have a member procedure called add_item, who would be first to check if an item with a key value exists and, if so, it would be up-to-date and so not only extend the plsql table.

    Two options.

    As we already mentioned, an associative array can be considered - note however that this structure of table has name-value pairs.

    Another method is to use a TWG (global temporary table). You define the structure of the once initial table. When a session uses the structure of the table, private copying is instantiated for this session. When the session ends, this copy is destroyed. The table is a temporary structure for this session only.

    It can include indexes and so on – which means you can use the constraints of primary keys, unique indexes, secondary indexes and so on.

    TWG scales are much better than collections or arrays that require a PGA (expensive private server) memory. In addition, SQL can be used natively against a GTT - unlike the arrays and collections.

  • How to get the same functionality for string as java in oracle 10g

    Example:

    In java, if I use
    -> > >
    String.format ("% 03d", 11) then he will give me the result 011
    String.format ("% 03d", 1111) then he will give me the result 1111

    I need also same result in Oracle for a stored procedure. I used to_char() and lpad() function but could not get the desirable.

    I'm new on this. Please forgive for this silly question and help me.

    Or with the prefix "FM", which makes the FILLING for us:

    to_char(col1, 'fm9999099')
    
  • How to call the javascript function in ADF

    I have the javascript function stored in a .js file external (try to reuse in another application). How can call the javascript function for an event of ADF faces component. I need to I am a newbie to ADF, all ideas are appreciated.

    Kind regards
    Surya

    Published by: sgodavar on Sep 24, 2010 11:44

    Include JavaScript to the jsff/jspx as page:

    Call it like:

    Type = "dblClick" / >
    Amit

  • Is there an online class to learn exactly how to use the command prompt which is quite through. OR y at - it clear a book that explains in detail for this? Who should I contact?

    I would like to know how to use the command prompt.  The nethodology type in the cmd prompt with the syntax and the Liposuction, in other words, the real return to a command prompt. I downloaded about evertthing I can find about this, but can't seem to put it all.

    My OS is Windows XP Pro sp3, lots of RAM, my address is * address email is removed from the privacy *.   I would like to take a rough online study if one is available if it is not too expensive.

    It really depends on what you mean by "to a command prompt."

    If you open a command prompt window (for example, in start > run > cmd > OK), you can enter a number of orders.  The list of available commands, including their syntax, is here--> http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/ntcmds.mspx?mfr=true

    You can also follow the links here:http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/ntcmds_o.mspx

    If you want to get more sophisticated - automating command-line tasks - you can start here: http://technet.microsoft.com/en-us/scriptcenter/default.aspx

  • How to open two PDFs at the same time (for example on two related screens)? It was always possible in the previous version of the Adobe Reader software.

    How to open two PDFs at the same time (for example on two related screens)? It was always possible in the previous version of the Adobe Reader software. Now while one of them is open, I can't open the other, because it is hidden, and I have only shown in the taskbar as a thumbnail.

    Hi ewap51098943,

    You can disable this in the Edit menu-> preferences-> General

    Kind regards
    Nicos

  • How to activate the search function.  I get no match found when I search for words on the scanned PDF document

    How to activate the search function.  I get no match found when I search for words on the scanned PDF document

    A scanned document is just an image; even if it contains text, it is not searchable.

    Put text in a scanned image available, you will need to perform the recognition of text (OCR), which can be made with Acrobat, but not the free player.

  • How to stop the bridge.exe active as to install the new application for example. Flash CC?

    How to stop the bridge.exe active as to install the new application for example. Flash CC? Help, please?

    I can not install any new demand every time.

    Please see:

    http://helpx.Adobe.com/Creative-Suite/KB/error-installation-cannot-continue-bridge.html

    Kind regards

    Ashutosh

  • How to make multiple "BOLD" text, for example the positions of the scene, or the names of the characters?

    How to make multiple "BOLD" text, for example the positions of the scene, or the names of the characters?

    You can do this by changing the model of the document.

    Open the document, go to Edition-> model. A dialog box will launch that will have some element types on the left and its properties on the right.

    Select Heading (or Character name) stage left. On the right, go to the 'Text' tab and click on the "BOLD" checkbox.

    Press OK.

    I hope this helps.

    See you soon,.

    Sunny

Maybe you are looking for

  • "XP_SetAnalogToDefault.exe" on the Satellite Pro series?

    Hello As I Don t find all the information for the update service in market/pro "XP_SetAnalogToDefault.exe" on google I ask here, if someone may know what is behind this performance, what it does exactly, and if it can be removed safely start. This ex

  • Satellite C660D - 18 c - need help with recovery

    Hello I need help for my computer. My calculation is not started and shows "bootmrg is missing. I'm putting in recovery CD (i downloaded from Internet) when the CD starts, I get choose it to select the operating system, but it isn't here, what should

  • Presario V3239TU processor upgrade

    Hello I have a compaq presario V3239TU laptop. Default processor is Core Duo T2250 @1. 73 Ghz (socket 479 mPGA) Syatem Council: 30 b 2, Wistron Chipset: Intel i945GM BIOS # F.39 I want to improve it with Core 2 Duo T7200 @2. 00 Ghz. Is someone can pl

  • Analog update of devices for the version of AD model

    Download "ADI_All_MultiSim_Symbols.zip" from Web AD site.  How to make them in multisim analog device edition?

  • Games won't load

    When I click on the game (Minesweeper, for example), the computer indicates that the game has loaded, but then it never works. It is said he ran, but the game never appears. Chess Titans gives me an error DirectX3D, even if the computer is new brand-