How do I format based on the value of the @status attribute?

Example: I use the @status attribute to indicate that a step in a procedure is new or a paragraph in a new concept.

For review purposes, I want to format new text in Green - Green preference the highlight, but the green text will do.

Example: I use the @status attribute to indicate that a step in a procedure has been deleted or that a paragraph in a concept has been removed.

For review purposes, I want to format new text as a bar.

Is this possible? If Yes, where can I configure the formatting in attribute values?

Thanks in advance.

Marsha

Hi Marsha,

If you want the formatting to be "locked in", which is led by ESD, then advice from Lynne is the way to go. If instead, there would be enough temporarily color the items you want as a substitute format, you can use the AXCM plugin:

http://www.weststreetconsulting.com/WSC_AXCM.htm

This plugin can do any character coloring, bar, etc., based on attribute values and other markup. Colouring is applied as an alternative format and removed easily by a refresh of the ESD. The characteristics of color were mainly intended for purposes of conditional text, but it would work in this case too.

AXCM is totally free. Warning... I am owner of West Street Consulting and this plugin.

Russ

Tags: Adobe FrameMaker

Similar Questions

  • Hide the line of adf table based on the transient attribute does not

    I have a JSF page where the user can insert new line in View object . this View object contains a transitional attribute which indicates whether or not the record is newly created.

    On the same page, I have a table adf which is bounded on the city view object . This table should show only newly created records. my approach is to use expression language of in the renditions property to hide all the other lines that are not newly created. I changed the render property for the columns of the table as: rendered="#{row.bindings.RowStatus.inputValue eq'new'}" , but the table does not show anything.

    Then, I tried to change the made not for the column property, but to the outputText inside the same way. It worked, but the problem is that the blank line is always on display.

    So, basically because I do not hide the entire line, instead I'm hiding the text in the lines and lines with spaces empty is still on display in the page aside.

    The Table of JSF page where the made property is applied on outputText inside the column:

    <af:table value="#{bindings.UplodedFilesView1.collectionModel}" var="row"
      rows
    ="#{bindings.UplodedFilesView1.rangeSize}"
      binding
    ="#{CreatSR_UserBean.fileTable}">

      
    <af:column sortProperty="#{bindings.UplodedFilesView1.hints.FileName.name}"
      headerText
    ="File Name" id="c1">

      
    <af:outputText value="#{row.bindings.FileName.inputValue}" id="it1"
      rendered
    ="#{row.bindings.RowStatus.inputValue eq'new'}"/>

      
    </af:column>

      
    </af:table>

    I use Jdeveloper with ADF technology 11.1.2.3

    Thanks Timo,

    You are right. Its to late to hide lines after stamping in the row set. I solve the problem by filtering the view object, based on the transitional attribute in the section of liaison page. The steps as follows: (assuming that the object from view with the temporary attribute has been created, and the transient attribute contains the filtered values)

    1. Drag the view object on the page and also make the Table (in my case it might otherwise listen)
    2. On the page, go to the connection tab.
    3. Double-click the object desired in the links column.
    4. New window will appear titled with (change the binding tree)
    5. Check the option (enable filtering)
    6. Select the (filter attribute) and (filter value) for the selected filter attribute.
    7. Select (Display attribute) you want to appear in the page.
    8. Press OK
  • How can cut us off on the status of material classification in paragraph 6.1.1.1?

    How can cut us off on the status of material classification in paragraph 6.1.1.1?

    "Workflow.ResolutionCriteria.Classification.Enabled" value = "false".

  • Different line colors based on the status of my order

    Hello

    I created a jspx page in my application. For the table, I want to display different color lines, based on the status of the order.

    When the State is new, I want to display in red. When the command is in progress, I want orange. approved in yellow, green and finished in grey for shipping.

    How can I achieve this?

    Thank you

    Hello

    Sorry, there was a typing error in my previous answer. You need to compare with 'In PROGRESS' and not 'INPROGRESS '.

    That is to say, the column should look like.

      <== Changed INPROGRESS to IN PROGRESS
    

    Arun-

  • How to get Firefox to ignore the status of liaison visits when printing?

    How to get Firefox to ignore the status of liaison visits when printing?

    When I print something, visited links are a different color than unvisited links.
    Is there a way to make the color even when printing?
    (without changing the story, or how things look on the screen)

    If there isn't a way to do that, how about this by adding as a feature?

    One way to do would be to create style rules customized for the printed output that hardcode the link colors for all of the printed output. Firefox supports two ways to proceed: a file userContent.css that you create in the folder settings, and a custom stylesheet applied using the Stylish extension.

    However, 'one size fits all' could lead to unreadable results or ugly on some pages. If an add-on that can do adaptive way would be better. I do not know if someone has created a.

    For sites that do not require a login and that are not personalized, you could launch the page in a private window (right click on the link > open in a new private window or copy the URL and then Ctrl + Shift + p, then paste it in the address bar and enter). Because private windows have their own history, the print should not reflect the history of your regular windows.

  • How to view the line of sql to the horizontal format based on a value.

    I want to display data to the user in horizontal form based on a column value. Here is the table structure and insert. Also, I've included output expected.

    If the pricemethod is "Guess", I want the value next to the price (price_real, price_guess), it will be based on the code, sellernumber and selldate.

    create table TEMP_HORI
    (
      CODE         VARCHAR2(30),
      PRICE        NUMBER(20,10),
      SELLDATE     DATE,
      SELLERNUMBER NUMBER(10),
      PRICEMETHOD  VARCHAR2(15)
    );
    
    insert into temp_hori (CODE, PRICE, SELLDATE, SELLERNUMBER, PRICEMETHOD)
    values ('ABCD', 100.0000000000, to_date('01-10-2014', 'dd-mm-yyyy'), 100, 'Real');
    
    
    insert into temp_hori (CODE, PRICE, SELLDATE, SELLERNUMBER, PRICEMETHOD)
    values ('ABCD', 90.0000000000, to_date('01-10-2014', 'dd-mm-yyyy'), 100, 'Guess');
    
    
    insert into temp_hori (CODE, PRICE, SELLDATE, SELLERNUMBER, PRICEMETHOD)
    values ('ABCD', 101.0000000000, to_date('01-10-2014', 'dd-mm-yyyy'), 299, 'Real');
    
    
    insert into temp_hori (CODE, PRICE, SELLDATE, SELLERNUMBER, PRICEMETHOD)
    values ('ABCD', 109.0000000000, to_date('01-10-2014', 'dd-mm-yyyy'), 500, 'Real');
    
    

    Real:

    CODEPRICESELLDATESELLERNUMBERPRICEMETHOD
    ABCD100.000000000001/10/2014100Real
    ABCD90.000000000001/10/2014100Guess
    ABCD101.000000000001/10/2014299Real
    ABCD109.000000000001/10/2014500Real

    Expected:

    CODEPRICE_REALPRICE_GUESSSELLDATESELLERNUMBER
    ABCD100.000000000090.000000000001/10/2014100
    ABCD101.000000000001/10/2014299
    ABCD109.000000000001/10/2014500

    Hello

    This is called swivel and here's a way to do it:

    SELECT code

    , SUM (CASE pricemethod WHEN 'Real' price THEN END) AS price_real

    SUM (CASE pricemethod when 'Guess' THEN price END) AS price_guess

    selldate

    sellernumber

    OF temp_hori

    Code of GROUP BY, selldate, sellernumber

    ORDER BY code, selldate, sellernumber

    ;

    From Oracle 11, you can also use the SELECT... PIVOT function, but it does not really help to this particular problem.

    I guess just the role of the code and selldate in this problem.  It is difficult to say when all the rows in the data of the sample has the same value.

    Want you all sellnumbers aligned in column 1, or do you want some further to the left than others that you have posted?  If the latter, is this 1 column or 2 separate columns?  How do you decide which column the sellnumber appears?

    For more info on pivots, see the FAQ of the Forum:

    Re: 4. How can I convert rows to columns?

  • How to render components based on the value selected in a list of values

    Hello
    I created a form of the ADF. I have a drop down that is a list of values. I want to toggle certain fields based on the values selected in the menu drop-down. Could you please let me know how to do it in the ADF?

    Kind regards
    Murielle

    Hello

    It should work. It is important to note that in case you use a component selectOneChoice for category then the value returned by #{bindings. Category.inputValue}
    is the index of the selected value in the list and not the value auto. To get the value, you must use ' #{bindings. " Category.attributeValue}"in the disabled state.

    If the problem is no display of code in your page to take a look.

    Gabriel.

  • The line formatting based on the value of a column

    Hi friends

    I'm trying to format the entire row based on the value of the first column in my answers.

    Example, if the first value of column 'F' now, I want the row to be colorful

    I can do a conditional formatting on a column, but I want to do down the line

    F 8.1% 12.0%
    ------------------------------------------
    E 5.2% 3.5%
    ------------------------------------------
    M 2.3% 3.3%
    ------------------------------------------


    If one has done this or suggestions please answer

    Thank you
    Sang A

    Well, the conditional formatting can be done in PivotTables until the next version, 11g. In the meantime, you two options:

    (1) http://gerardnico.com/weblog/2009/04/06/obiee-cross-conditional-formatting-on-a-pivot/

    (2) http://oraclebizint.wordpress.com/2008/04/29/oracle-bi-ee-101332-conditional-formatting-based-on-multiple-character-columns-in-a-pivot-table/

    (3) you can use your custom column filter functionality to get your ' sales in year 20xx "and a presentation to make this dynamic variable. So you can declare an array and use the method I described above.

    filters on columns

    Good luck.

  • How to case statement based on the array of values of 3 or more?

    I'm trying to figure out how to do a comparison or case structure... based on the creation of an array of boolean 3 (or maybe more).

    I have a table (it's from a serial connection, and I am conversion back to a table to work with) [t, F, F] in this case I would like to display on a status indicator "STBY".

    If the array is defined on [F, T, F] I want to display in this indicator "ON".

    If the array is defined on [F, F, T] I want to display in this "EMPTY" indicator

    I can not understand how to compare combinations of things... I read in an array of bytes, and the first 3 bits in this example, determine what to display in a status... I can't figure out how to do with structure case... or without some channels to research and/or bad comparison...

    Any suggestions?

    Thanks in advance,

    Cayenne

    You can use search 1 d array and find the first real.

    Or you could convert the table of Boolean integer U8 and integer that results to determine which cases to run.  (4, vs, vs 1-2)

  • How to run interface based on the value of the variable?

    Hi gurus!

    Is it possible to run one or the other of the interface based on the value of the variable?
    For instance I refresh the value of variable A and you want to call the interface I1 if the value is 1 or call interface I2 f value is 2.

    Thanks in advance!

    Step 1. Update the Variable
    Step 2 evaluate Variable
    Step 3. Providing OK if variable is 1 Interface 1 another DO KB not the interface 2.

    I hope this helps.

  • Hgrid amount format based on the currency column

    Hello

    I am trying to format columns hGrid based on the currency amount. I checked the old nets and tried, but it did not work. I do not know which API to use to get the item correctly format. All ideas are welcome.

    Thank you

    Alka

    Hi AlkaT,

    What exactly are you trying to achieve? you try to format a NUMBER type item in the currency of the system? If so the bottom of piece of code should work fine, just put in your controller processRequest() method:

    {} public processRequest Sub (pageContext OAPageContext, OAWebBean webBean)
    ...
    OAMessageStyledTextBean currencyField = (OAMessageStyledTextBean) webBean.findIndexedChildRecursive ("CurrencyFieldItem");
    currencyField.setAttributeValue (CURRENCY_CODE, "AUD"); / * Replace the currency of your country instead of AUD * /.
    ...
    }

    Concerning

    Brad

  • Help - Tuning query based on the status column

    Hello
    I have a query in which I need to fetch records based on values in the status column. It can contain the values 'A' and 'P '. A record can have an "A" record and a record of 'P '. My conditions are,
    (1) when it is only 'A' record, can return 'A' record.
    (2) for the 'A' and 'P' folder is there, then return 'A' record.
    (3) when 'P' registration is only, then return 'P' registration.
    There are about 3 records 'A' Lake and 3K 'P '. I tried to use 'by' clause queries, but performance are too bad and I am not able to use it. When running as independent queries 'A' retrieval of documents is faster compared to the records of 'P '. When running in 'by' clause of the query is suspended. Please can anyone help how can be managed?

    Due to restrictions, I won't be able to view the actual code. I post here a sample.

    Example code:
    WITH q1 AS
         (SELECT *
            FROM tab
           WHERE status = 'A'),
         q2 AS
         (SELECT *
            FROM tab
           WHERE status = 'P'),
         q3 AS
         (SELECT *
            FROM q1
          UNION ALL
          (SELECT *
             FROM q2
            WHERE NOT EXISTS (SELECT 1
                                FROM q1)))
    SELECT *
      FROM q3
     WHERE ROWNUM < 501;
    Thank you
    Kadoch

    One way is to use analytics like this:

    SELECT *
    FROM (SELECT t.*, ROW_NUMBER() OVER (PARTITION BY 
                                         ORDER BY t.status) rn
          FROM tab t
          WHERE t.status IN ('A', 'P'))
    WHERE rn = 1
    

    John

  • OBIEE: How to hide URL link in the status bar?

    Hi, I want to show the URL in the status bar.

    How can I hide it?

    ALARM-LIVE & HISTORY: page1 > ALARM-LIVE & HISTORY: page 1 >

    URL Link in status bar2.jpg

    Common.css files, you will find below mentioned paths there.

    Geographical area:

    C:\Oracle\Middleware\Oracle_BI1\bifoundation\web\appv2\res\s_FusionFX\b_mozilla_4\common. CSS

    Down the path, select the skin you are using.

    C:\Oracle\Middleware\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\analytics_11.1.1\7dezjl\war\res

    My skin is, so s_blafp would be my way,

    C:\Oracle\Middleware\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\analytics_11.1.1\7dezjl\war\res\s_blafp\b_mozilla_4

    . Breadcrumb tag thoughout to find this file and add "display: none;" (without the quotes) (You probably have 11 total navigation tags in this file): Pei

    For example, one of your tag will look like this,

    . BreadCrumbDiv {width: 100%; border: none; background-color: #DEEAF1; margin:-7px 0 0 0; height: 22px; display: none ;}}

    Hope this helps.

    Such Sagar

  • In 4.1, how can I get rid of the status bar (left or right at the bottom corners)?... It is very annoying in some pogo games I play.

    The status bar is displayed in the lower corner of the page, covering current info at the bottom of my pogo game page. If I move the cursor over it, it goes to the other bottom corner... very annoying to have it pop up like that.

  • doc XML format based on the values in a different xml doc

    Version of database: Oracle 10 g

    I have a file of XML "data" and an associated error file which is also XML. I want to take the data XML file and highlight visually in an html file only tag fields and content that are there in the file 'error.


    There are many fields in the data file, so the error could be just about anywhere. Can someone please tell me what I should read or give me advice on how should I proceed?

    I built a style sheet for the file "data" - but of course it's static. I need 2 style sheets and apply both somehow? I also thought that I use the "error" xml doc and simply rewrite the nodes of the error in the "data" file and then use the stylesheet to annotate the data file based on what I'm rewriting.
    for example
    If the data are
    < Field1 > content field 1 < / field1 >

    and the error file Field1 in there, I would like to rewrite the data file to have say < error > content field 1 < / error > and just mark the <>error using the style sheet. Is this a reasonable solution? Even then I need help on the actual xml/sql functions, I need to rewrite the xml data.


    I am a beginner in this rank and I apologize - what seems such a newbie question that must have been asked before - I wish just that I could find it in the forum.


    Thank you!

    Published by: user13112667 on October 15, 2010 12:38

    A small improvement on the method of the XSLT.

    For faster access, we can define a key on the couple ": segment element" of the list of errors, for example:

    
    
    
    
     
      
       
       
       
    err

Maybe you are looking for