Change the navigation target based on the value of the coast

Hi, strange requirement. I have a report of responses which shows groupings level high information costs (labor, fringe, travel, etc.). I want to allow users to navigate to reports of transactions detailed illustrating each transaction striking a cost group. However, the fields I want to show to 'work' (employee ID, name, jobcodes) transactions are different then what I want to show for 'travel' transactions (destination, etc.).

So I created operations detailed for each types of group cost - no worries.

Now, what I would really like to do is this: I want to change the property "interation of value" to access the reports detailed transactions. But I want to change the target based on the group. For example, if no one clicks on the 'work' - I don't want which they then select to navigate to work, travel, fringe, reports etc.. I want that it change something the target, so it "knows" to go to the work report.

Is there a way to do this?

Thanks in advance!
Scott

The first part could give you an idea how to achieve your goal, you should use a conditional drill.
http://oraclebizint.WordPress.com/2008/03/05/Oracle-BI-EE-101332-conditional-drills-and-dynamic-tool-tips-HTML-formatting-and-go-URL/

based on your rek... your statement box decided who report to go...

Tags: Business Intelligence

Similar Questions

  • Change the fill color based on the range of values

    Creating a form to inspect the parts. Work on the setting up of a text field to change the fill color based on the number or the data entered. For example: If is between 0-20 fill color is red, between 20-24 fill color is green, more filling 24 is still red, and if no data is entered in the fill color is white. The script below works for me but keeps the red field when data is deleted (empty) field. Not sure if im approaching this correctly so I should be looking at differently? I have different ranges for many fields and im trying to keep the script right to the front as possible. Thanks in advance for any help.

    If (event.value > '24')

    event.target.fillColor = color.red;

    Else if (event.value < '20')

    event.target.fillColor = color.red;

    else event.target.fillColor = color.green;

    You do not have... Change this line:

    Else if (event.value > '24')

    To do this:

    Else if (event.value > 24)

    And even with "20".

  • Can a single button cause multiple targets, based on the value of the point?

    I have a button on a form and based on the value of an element, when clicked, pages must be accessible. Is this possible to do? If so, any ideas are greatly appreciated.

    Request Express 3.1.2.00.02

    It's pretty simple to do using conditional branches. Create a branch to the place of the appropriate branch (for example on submit: after treatment...) for each target page and series PL/SQL Expression condition for each branch:

        :request = ''
    and : = 
    

    its replacement by < button_name >, < nom_element > and < item_value > with the values appropriate to your application (and change the '=' in the expression of the agenda if some other condition is used). The integrated attribute REQUEST contains the name of the button that submits the page.

  • How to pass a value cannot be used in time during the Navigation target

    Hi all
    On a dashboard, I have a poster measure info bar chart by name each month (month name being on the x axis). The months displayed are based on a dashboard command prompt (year, month name) year-to-date.
    When I click on the bar of a month on the chart name, I use the Navigation target to open another query in the dashboard. The target a YEAR and MONTH "is requested. For example, if I click on 'MAY' bar, the other application opens to display data «CAN» Everything works.

    However, I need to do this not for the month selected as described above, but for the year to date instead. For example, I click on 'MAY' bar, I want the other application to display the data of 'JAN' thru 'MAY', not just 'CAN' itself. I'll do the same thing I have done to the request of the source, have a filter for the month number (not the name of the month) and have a 'BETWEEN 01 and xx' where ' xx will be calculated by taking the name of the month and using the number of months instead, so it would eventually "BETWEEN 01 and 05.

    Question: Is there a way I can pass the name of the month which was clicked on the chart and move on to the target, so I can use in a calculation and not the filter "is invited"?

    Thank you!

    _Analytics,

    I had the same solution but slightly different. It's different because you assumed this month as the number of months, but according to the scenario described by the user, is a name of months where the navigation must be done.

    user13033100,

    Here is the solution with an sine qua non - year should be fixed by default.
    Outside of having a main report and the subreport, create an additional report by month #, name of the month, call the "report additional sup.
    Now in the ' additional report under ' create filter of month name as "" is bringing"---> bar value from the master report is passed to this 'report additional sup '.
    Thus, month # column "additional sub of the report" gives you value months appropriate to limit the subreport.
    Month # of the report additional sup', create a filter on the column for the month in the subreport. The month filter sub report must be an advanced filter 'filter based on the results of another application', search for ' report additional sup ' month # column. In here a consumption below or equal operator.

    Quickly close the thread if replied/useful.

    -bifacts
    http://www.obinotes.com

    Published by: bifacts on October 21, 2010 14:12

  • change the color of line based on the value of column 5 Apex in the classic report

    Version of the apex 5.0.0.00.31

    Standard universal theme

    Page theme default template

    Classic report

    Foldable report template

    Hello

    I know this question has been asked several times here, but I'm working on 5 Apex and need to know the correct way to do it in this version.

    I need to change the color of the text of the entire line (no background color) based on the value in one of the columns of the classic report. I have just two conditions, if the value of column = Yes, color should be red, otherwise it must be green.

    I am new to jscript and css, so appreciate if someone can tell me the solution with steps.

    I have already checked this link that changes the value of the column, need to do something similar to the whole line.

    https://tylermuth.WordPress.com/2007/12/01/conditional-column-formatting-in-apex/

    Hi coolmaddy007-Oracle,.

    Here's an example set up on the apex.oracle.com according to the specifications you gave: https://apex.oracle.com/pls/apex/f?p=35467:1

    Version of the apex 5.0.0.00.31

    Standard universal theme

    Page theme default template

    Classic report

    Foldable report template

    Here is how it is done:

    Create a dynamic action with the following specifications:

    Name: Give the appropriate name

    Event: After refresh

    Selection type: region

    Region: select your region classic report

    Condition: No strings attached

    Action: Run the JavaScript Code

    Fire on loading the Page: Yes

    Code:

    $('td[headers="JOB"]').each(function() {
      if ( $(this).text() === 'MANAGER' ) {
        $(this).closest('tr').find('td').css({"color":"red"});
      }
      if ( $(this).text() === 'SALESMAN' ) {
        $(this).closest('tr').find('td').css({"color":"green"});
      }
      if ( $(this).text() === 'CLERK' ) {
        $(this).closest('tr').find('td').css({"color":"blue"});
      }
    });
    

    NOTE: Download the selector appropriate for your knowledge $('td[headers="JOB"]') case using firebug/browser development tools.

    Items concerned: leave blank.

    PS: Changed the example to change the color of text instead of the background color.

    I hope this helps!

    Kind regards

    Kiran

  • Change the display of text field value based on the value (short sample code provided)

    I read around on it for a few days, but I still can't get it works well.

    I have a field of text called "W1SnC1". In fact, I have several domains to execute it. That's why I tried to make the generic script below. Basically, I want to change the properties > form field to "visible but does not print ' if the text field contains ' - '. (As a note side '-' is the default value). I put the script in the following properties > validate > run the custom validation script:

    var elemName = event.target.name;

    If (event.value == '-')

    {

    elemName.display = display.noPrint;

    } else

    {

    elemName.display = display.visible;

    }

    Its odd but once in a while it works :-) I think I must be clicking on something that the queues of validation in these moments. However, I need some general help. Did someone mind giving advice on what to change?

    Try something like this:

    Event.Target.Display = event.value = "-"? display.noPrint: display.visible;

  • Change the fill color based on the value

    I found several good examples on how to change the color of a galld based on a value, but am not having implemented lucky.  My form is an assessment to 3 areas of the exam results, the total of all 3 can have a maximum value of 100.  Sections 1 and 2 are automatically calculated, and section 3 is a value that the user will enter based on the review of all comments, notes, etc.  The final score has a rating and outstanding 90-100, satisfying 70-89, unsatisfactory < = 70.   Right now I'm not so concerned about the number of color, but I'm not able to get the colors to change at all.  Because this field is calculated based on chapters 1 to 3, I put the code on its change event.  Once the user enters the final score of manual in section 3, the value is changed automatically.  I also tried the partition article 3 manual output event and have obviously not the code or where to put this right.  Here is the code I use and would appreciate any help.  If I can learn how to make 90-100, I hope I can apply the same method, a different color of 70 to 89 and the title of 70.  What I am doing wrong?  Thank you.

    Form1. #subform [0]. OverallSafetyPerformance::change - (JavaScript, client)

    If

    ( this.rawValue < = 100) & & this.rawValue > = 90

    {

    this.fillColor

    = "102,179,255" "

    }

    I have an example for you, but it seems that the download has been disabled again.  Send me a direct email with your email address and I will send you the document.

  • Change the background color based on the value

    I'm sure that this is a trivial question, but I can't seem to find the method to do it.

    I want to change the background color of an indicator according to its value.

    For example: if I have a set of say 123degF, I would like to the color of background color green if the value is either 1% or +/-2degF.

    Otherwise the color could be if above red and blue if under.

    I was able to schedule a psychic acomplishes, but with more than 50 indicators the interface gets quite busy.

    Santosh is correct. Here is a small example of the implementation of this code:

    I've also attached a copy of this VI, with the connected devices, so you can use it as a subvi if you wish.

    He takes input of temperature limit lower and upper limit. It then returns the value of the temperature, with the color of the indicator of change.

  • How to change the color of the navigation bar based on other

    I need to change the color of my navigation bar, on my page. I already did on my other three pages. With the help of http://work.smarchal.com/twbscolor/scss/9b59b68e44adecf0f1ecdbff0 , but now I have made a new page I don't know how to change the color of the navigation bar to match exactly the three other pages. Please help.

    Bootstrap CSS is read-only and should never be changed.

    Creating CSS code on each web page is redundant & can cause inconsistent styles.  Use rather a stylesheet external called custom.css including all your HTML files are linked. In this way, when you make changes to your custom.css file, these styles will automatically apply to all pages of the site.

    Both inside theTag under the Bootstrap CSS code, add a link to your custom.css file.

    Nancy O.

  • Try to change the legend based on the dropdown value

    Two elements are involved:

    The drop-down list called TransactionType - possible values are 'A' 'B' or 'C '.

    Box chkVerification

    I created the javascript code to the change event of the dropdownbox TransactionType

    Form1. #subform [0]. TransactionType::change - (JavaScript, client)

    If (this.rawValue == "A") {chkVerification.caption.value.text.value = "Checking A"}

    ElseIf (this.rawValue == "B") {chkVerification.caption.value.text.value = "Checking B" ;}

    When I check the script syntax sometimes without error, but when I change the value in the drop down the legend of the box never changes.

    What I'm missing here?

    Using app.alert, I think I can see that I need to trigger the script as xfa.event.newText, but the legend is not changing.

    I also tried this: Form1.resolveNode ("chkVerification.Caption.Value. #Text"). Value = "audit has." Is what I'm trying to make even possible?

    The form must be registered as a dynamic PDF form to enable dynamic behavior, including changes to the legend.

    In addition, I find much easier to name pages explicitly. It is less problematic. So rather than going into "form1. #subform [0]. DropDownList1"you access"form1.page1.DropDownList1 ".

    Form1.Page1.DropDownList1::exit - (JavaScript, client)

    var char_ = this.rawValue;

    xfa.resolveNode("form1.page1.CheckBox1.caption.value.#text").value = char_;

    Steve

  • Change the background color of line based on a column value

    Hello

    in a report, I want to change the record to the red background color if the value of a specific column is 'NO' in the folder. Please help me.

    Thank you.

    Try this

    I had this same problem and found that by using the following only highlighted the background of the text and not the entire cell

    
    

    I then swapped the use of div (as below) and this has solved my problem

    select test_table.column1 as "yes_no",
          CASE WHEN column2='NO'
             THEN '
    '||column2||'
    ' ELSE column2 END "column2" from test_table

    This has been tested in 3.2.1 - should work with other versions so

    Gareth

  • Change the color of cell based on the first character of the value of the field

    Inside of a RTF model, I have a field called I_DESCRIPTION.

    If the first character of the value of I_DESCRIPTION is 'E' then I want the table cell to be red. Otherwise, I want it to be blue.

    I thought I'd be able to use the following type of code:
    <?xdoxslt:ifelse(substring(I_DESCRIPTION,1,1)='E', 'IT IS E', 'Not E')?>
    The above works. The only problem is, I don't know how to change the above, so that instead of print 'IT IS E' or 'NOT E' it changes the color of the cell in the table in red or blue.

    I guess I have to put something like the following in the second and the third argument to the ifelse() function:
    <?attribute@incontext:background-color;'#FF0000'?>
    But after much trying, I can't work on everything at is how this fits.

    Ideas or suggestions appreciated.

    Thank you
    Andy

    Hi Andy,.

    You can try this:

    1. in the cell where you view the description field, insert a form of conditional formatting field and use the following code: Red

    You will need to check the condition of other another field of form CF: Blue

    Hope this helps.
    Thank you!

  • Script to change the selection of combo based on numerical values box is entered in a text box

    I implemented a form of feedback to student and I'm looking for how to refine the process for the user. Please see the image below. As you can see that the form has individual learning, each of which has three statements of "feedback". These are currently the combo boxes with predefined statements selected by the user in the menu dropdown. These statements are connected digitally to our marking scheme that is if the feedback statement uses the word "limited", it matches with a score of 20-39 on our scale of correction. If she uses the word 'excellent', he corresponded with a score of 70-100.

    Limited 20 - 39

    40 - 49 adequate

    good 50-59

    very good 60-69

    excellent 70-100

    Currently, the user enters the brand in the small text box size in the right corner of the relevant learning outcomes. The user must then manually select the corresponding instructions of feedback from the drop-down list box. Which is quite tedious. Here's the thing:

    Most of the time statements all match the digital brand, i.e. If the student received a score of 55, then feedback statements would usually all be in the 'good' category: '.. '. good quality research... «, ».. good analysis... «, ».. good research management... ". It would be a great time saver if the statements could be scripted to react to the numbers in the text box. For example, when the user types in a notes 50-59 feedback instructions themselves define automatically to all be '... good... ". There's still a thing.

    It is important that the user has the possibility to change the declarations of individual feedback if necessary. that is a mark of 58 may require two statements of feedback in the "good" and the other in the 'very good' category: '.. '. good quality research... «, ».. good analysis...', '... VERY good orientation of the research... ". The user must therefore always the option to bypass the automatic selection if necessary.

    It's beyond my Basic scripting capabilities, but I wonder if anyone can break this problem? Your help would be much appreciated.

    feedback-form-screenshot.jpg

    Thank you

    Charlie

    Hello

    I create a simple sample here - https://acrobat.com/#d=FFhf7MQtKrH5iickDJBBxw

    I used the blur of the text field event so that the code is triggered when you tab to or click elsewhere in the form, the code can easily be moved.

    I named the fields

    Text1

    Dropdown1

    Dropdown2

    Dropdown3

    and these will have to be renamed according to the names of your fields.

    Hope this helps

    Malcolm

  • Change the "link" / "start" annotation "Link" / "URI" and update of target of the action.

    I have thousands of PDF files that are uploaded to a web server. The files have annotations in them that a subtype is the 'link' and that under action type is "start".
    This is because that previous files are included on a CD, so all paths were based on locations on the CD.

    I was able to successfully retrieve all annotations with the following:

    First, get the annotation with the specified number (i2) of the specified page (page):

    ...

    Annot = PDPageGetAnnot (page, i2);

    ...

    Then check if an annotation is valid with:

    ...

    If (PDAnnotIsValid (annot))

    {
    ...

    Next, I check to see if the annotation is an annotation to link with:

    ...
    If (PDAnnotGetSubtype (annot) is ASAtomFromString ("Link"))

    {

    ...

    I then create the PDLinkAnnot object and retrieve the PDAction object in the annotation like this:

    PDLinkAnnot linkAnnot = CastToPDLinkAnnot (annot);
    PDAction action = PDLinkAnnotGetAction (linkAnnot);

    ...

    Then I create the CosObj for the action and the dictionary entry get for the F key with this:

    ...

    CosObj cosAction, cosActionDictionaryEntry;

    cosAction = PDActionGetCosObj (action);

    cosActionDictionaryEntry = CosDictGet (cosAction, f);

    ...

    Then, I create a tank and a CosObj for the name of the file and get the F key

    ...

    CosObj fileName = CosDictGet (cosActionDictionaryEntry, f)

    Int32 bytes;

    char * filePath = CosStringValue (fileName, & bytes);

    ...

    Then this part everything works and I am able to get the path of the target file, but I need to change the annotation subtype 'URI' instead of 'Launch' link for, and I need to update the dictionary with a new path.

    Assuming that the new path is stored in a char * called newPath, how can I do this?

    Thank you.

    Well have the answer!

    I can't directly set the subtype of a string value.

    Here is the final code that worked.

    CosDoc cosDoc = (currentPDDoc) PDDocGetCosDoc;

    CosDictRemove (cosActionDictionaryEntry, f);

    CosDictPut (cosActionDictionaryEntry, ASAtomFromString ("URI"), CosNewString (cosDoc, false, "http://www.mysite.com/test.pdf", strlen ("http://www.mysite.com/test.pdf")));

    CosDictRemove (cosAction, f);

    ASAtom newActionSubTypeName = ASAtomFromString ("URI");

    CosObj newActionSubTypeCosObj = CosNewName (cosDoc, newActionSubTypeName, false);

    CosDictPut (cosAction, ASAtomFromString ("S"), newActionSubTypeCosObj);

    CosDictPut (cosAction, ASAtomFromString ("URI"), cosActionDictionaryEntry);

    NewAction PDAction = PDActionFromCosObj (cosAction);

    PDLinkAnnotSetAction (linkAnnot, newAction);

    Annot = CastToPDAnnot (linkAnnot);

    Hope this helps someone who had a similar problem.

  • I'm trying to reduce the duration of the google navigation and search boxes without any succuss. Numerious times the site was requested, but no response is the problem. I can change the size by using the line that separates the two boxes, but I only

    I added a cus 06/25/10, wanted to shorten the google search and navigation bars to see, but can't. Have re-installed the google toolbar, have chosen the version of firefox as my default tool bar and can then change the width, but when a box shortens the other if extension always fill the width of the screen. Customize toolbar doesn't give any options to reduce the width of toolbar, I am at a total loss. Would love suggestions if you have correctly fixed this.

    This has happened

    Each time Firefox opened

    is 25/06/10

    The address bar and the search bar have a flex property and take all available space.
    You can change the relative size of the two with this resizer between two bars.
    You can only do this by adding a lot of space in the view > toolbars > customize window.

    You can set a fixed width by defining the min-width and max-width for the same value.

    Add code to userChrome.css below @namespace.
    See http://kb.mozillazine.org/Editing_configuration#How_to_edit_configuration_files

    @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    
    #urlbar-container {max-width:400px!important; min-width:400px!important;}
    #search-container {max-width:200px!important; min-width:200px!important;}
    

    You can choose your own values as long as the min-width and max-width for each bar have the same value.

Maybe you are looking for

  • App Builder with dynamically loaded VI - please help

    Hello Please take a look in the ZIP file attached with the sample project. The appellant load sub dynamically. This works well in the development environment (LV 2011) but when I build the EXE, it stops working. Please take a look; Ideally, repost fi

  • new photos of the camera user

    How to make  transfer pictures from camera to computer, edit and e-mail?

  • My screen orientation is implemented alone

    This is all portrait view and I can't understand how files to see landscape. Help!

  • Error in Event Viewer and warning messages.

    original title: ERROR EVENT VIEWER AND warning MESSAGES My computer is running Windows XP Media Center Edition and if I click on the PANEL, performance and Maintenance, administrative tools, event viewer and select Application and/or system I see RED

  • Error message for the update

    HelloMy computer won't let me not update even when I disable the firewall. I don't know if to do as well with not being able to install a drivercordially koolstar