several actions from linking single action

OBIEE 11.1.1.6

I have a column in an analysis that I had to put a link to action on the link to a Web site, it's something I can do. However the data returned in the column is one of the two types of Type A or B, if it is of type that I want to link to the Web site A and Type B I want to link to site B. I want to create a link simple action that is going to the site A or site b according to the values in the column. I can create an individual to either site has action link or B and add a condition, but I can't think how to add a unique action link that will dynamically to a Web site or the other based on the value of the column. Is this possible?

Published by: K Chumpski on November 27, 2012 07:05

Hello
You can navigate to several links of action action unique bond based on the conditions...

check if useful/correct...

Thank you
prassu

Tags: Business Intelligence

Similar Questions

  • Q. how get several results from a single column in a recordset using PHP

    Hello world

    I hope someone can help. I have a column called categories and about 5 categories listed. I want to show all the products listed in say 2 categories. I don't have that basic php skills so know only how to pass a value to the url to display the products of 1 category for example

    Select *.

    PRODUCT

    Category WHERE colname =

    $colname = $_GET ['category'];

    URL... page.php? category = result

    Question is how can I get products in several categories to show for instance all the products of the categories "fruits", "dairy products", 'meat '.

    Your help will be much appreciated, because I'm tired of beating my head against the wall. (should invent a pillow of wall PHP and sell online)

    Thank you

    $colname1 = $_GET ["category1"];

    $colname2 = $_GET ["Category2"];

    $colname3 = $_GET ["category3"];

    Select *.

    PRODUCT

    Category WHERE the ('$colname1', '$colname2', '$colname3')

    > Your help will be very appreciated because I'm tired of beating my head against the wall

    My guess is that you are trying to build a web application without first learning the basics of PHP and SQL. It is certainly the hard way.

  • How to generate several lines from a single line

    Hi, using Oracle 11 g R2.

    Looking for a way to display the result of a query where a column value is a text similar to the following field. There is only 1 row.

    create table testlist (col1 varchar2 (50))

    insert into testlist values (' ' 845, 999, ABC ")

    The values are always separated by commas. Looking for display the result as follows

    845

    999

    ABC

    Hello

    Since you have only 1 row in the table, you can do this:

    SELECT REGEXP_SUBSTR (col1

    , '[^,]+'

    1

    LEVEL

    ), Element

    OF testlist

    CONNECT BY LEVEL<= regexp_count="" (="">

    , '[^,]+'

    )

    ;

    Output:

    AGENDA

    ------------

    845

    999

    ABC

  • can I call several actions sequentially in a separate script/action?

    I have run several actions on a single file. usually more than 20 the number of those shares. is it possible to automate the invocation of these actions, so that I have run something once and all small actions are applied sequentially and automatically on the same file?

    You can combine orders in all these Actions in a single Action.

    but we can't call them automatically one after the other if they are separated.

    The game, December 11, 2014 at 10:22, navpreet87 [email protected]>

  • Scanning documents from several pages in a single file

    I have a PC HP and attempt at analysis of a document of several pages in a single file of my all-in-one HP Photosmart 5520 but had no chance.  I can't currently is scan each page separately, but not what I need.  What Miss me?  Thank you.

    Hello

    A plus sign (+), not x. Anyway, if you wish, you can use the following product:

    http://www.PDFSam.org/download/

    This free product allows you to divide a large file to many small files (such as the extraction of the chapters of a thick book) and also merge several pdf files into a pdf file.

    Kind regards.

  • I have received several calls from a company called the Technical Department of "eprotectionz" offering to get rid of the virus, is this a hoax?

    Hi there, hope someone can help me on this issue.

    I received several calls from a company called 'eprotectionz' technical department which proposes to rid your computer of an "infection" (no virus) apparently slowing down Windows. In a first time, I finished the callwhen they began to ask questions about my computer.  They are appatently a global company - I am based in Australia and on checking their site, they operate out of the Australia and other countries. Their phone number here in Aust is 02-8091-0114. This company is legitimate.  I become more suspicious when they ask to enter my computer remotely while I followed the instructions to remove the so-called infection.  I don't trust everybody these days and trust no one! What do you think?? Thanks in advance,

    Australia. Take a look at this, mate.

    http://www.troyhunt.com/2012/08/virus-scams-social-engineering-victims.html

    E protection in action http://www.troyhunt.com/2012/04/type-www-ok-w-w-w-d-o-t-antagonising.html

  • Assign several handlers to a single user in Captivate premium

    Is it possible to assign several handlers to a single user in Captivate premium?

    I have a group of users, where I need 3 managers to have access to a group of users (all 3 managers are educators of customer).

    I want to know if I can add three (separated by commas) Manager ID in the CSV download, or if I can perform this action in the user interface of the first, once users have been downloaded.

    Thanks in advance.

    Hello

    We cannot assign several handlers to a user.

    If we add a comma with the Manager separate ID to will gives us the error when loading the CSV.

    Here is the screenshot for the same thing.

    Thank you

  • Need for the sql query to have several columns in a single coulumn

    Hi all

    I need create the query to have several columns in a single column with several lines.

    Select a.customer_trx_id, a.previous_customer_trx_id
    of ra_customer_trx_all one
    where a.customer_trx_id =: customer_trx_id

    Here, a.customer_trx_id and a.previous_customer_trx_id are in two columns. I need to put them in a single column.

    Say: the foregoing is output
    --------------------------------------------------------------------------------
    a.customer_trx_id a.previous_customer_trx_id

    --------------------------------------------------------------------------------
    123456 87654

    --------------------------------------------------------------------------------

    Need for a single column

    As


    --------------------------------------------------------------------------------
    123456
    87654

    --------------------------------------------------------------------------------

    Please do the needful. Please note that it is not the UNION.

    Thank you
    Abdul

    Hello

    You want a way to confirm that what looks like two rows is really a line?

    Here are three ways:

    (1) count the lines:

    WITH  my_original_querry     AS
    (
         select  a.customer_trx_id || CHR(13)
                          || a.previous_customer_trx_id     as id
         from      ra_customer_trx_all     a
         where      a.customer_trx_id      = 274881
    )
    SELECT     COUNT (*)
    FROM     my_original_query;
    

    (2) in SQL * Plus, have SQL * more count them for you:

    SET     FEEDBACK     1
    
    select  a.customer_trx_id || CHR(13)
                     || a.previous_customer_trx_id     as id
    from      ra_customer_trx_all     a
    where      a.customer_trx_id      = 274881;
    

    (3) implicitly count them with the ROWNUM Pseudo-column

    select  a.customer_trx_id || CHR(13)
                     || a.previous_customer_trx_id     as id
    ,     ROWNUM
    from      ra_customer_trx_all     a
    where      a.customer_trx_id      = 274881;
    
  • Photosmart Premium C310a impossible to scan several files into a single file.

    I often send documents several pages by e-mail, and I can't seem to get all pages of the document 1 in 1 file with the C310a. I don't know if it's the printer or HP Solution Center software. I've used both the scan function on the printer and the HP Solution Center and I'm still not able to scan a document of several pages in a single file. Is it still possible more?

    I use Windows 7 64-bit.  I have to do with HP director on my pcs 2355 printer, by simply choosing the more option to check after each page.

    Try again with the steps indicated by the user ScottBrown2011

    * Thanks to this original post by ScottBrown2011 - http://bit.ly/HPscan2011

    I hope that these steps will help you

    * Click the stars KUDOS to say thanks

    * also click on the Solution button if your question is answered.

  • I received several calls from a person claiming to be from microsoft

    I received several calls from a person alleging to be from microsoft saying: they received the information from my computer on which it runs slowly and to turn on my computer so that they can do the steps to put it right, I did not what I was skeptical, but he was insistent that I turn on my computer (Incidentally it was already running) I refused this and he said I should do what he says.  I put the phone down, but it rang again and insistent, he rang the Bell and then twice that I ignored it.  However, he then rang again later andmy husband responded, he said himwe do not need its services because it was thought not good, as I already told you this gentleman I was under the impression that it was not kosher, insisted that it was.  So what is happening here.   I'm not what anyone on the screen. Also when he got my phone rings me and someone from microsoft would be ringing me, as I have him suggest that I wouldn't do anything on my computer but it would write with information on.thank you for your help

    * original title - WHO IS ALL THIS ABOUT? questionable phone call! *

    Hello

    Its a SCAM!

    In the United States, you can contact the FBI, Attorney general, the police authorities and consumer
    Watch groups. Arm yourself with knowledge.

    No, Microsoft wouldn't you not solicited. Or they would know if errors exist on your
    computer. So that's the fraud or scams to get your money or worse to steal your identity.

    Avoid scams that use the Microsoft name fraudulently - Microsoft is not unsolicited
    phone calls to help you fix your computer
    http://www.Microsoft.com/protect/fraud/phishing/msName.aspx

    Scams and hoaxes
    http://support.Microsoft.com/contactus/cu_sc_virsec_master?ws=support#tab3

    Microsoft Support Center consumer
    https://consumersecuritysupport.Microsoft.com/default.aspx?altbrand=true&SD=GN&ln=en-us&St=1&wfxredirect=1&gssnb=1

    Microsoft technical support
    http://support.Microsoft.com/contactus/?ws=support#TAB0

    Microsoft - contact technical support
    http://Windows.Microsoft.com/en-us/Windows/help/contact-support

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle="" -="" mark="" twain="" said="" it="">

  • HP Officejet 6500 a how to scan a document with several pages in a single file?

    HP Officejet 6500 a Plus e-All-in-One - E710n

    Windows 7 (64-bit)

    How to scan a document with several pages in a single file?  After each scan, my old printer (psc 2110) asked if I wanted to scan another page.  In the end, I got a PDF with multiple pages.

    This new creates a file for each page, and I can't find a way to create a PDF with multiple pages.

    Hi mpw101,

    You must press the Add/Remove button, to add pages additionla scanned to the existing file. If you do not see this button try decreasing the analysis DPI setting. Let me know if this helps you?

  • HP3545: How to scan document of several pages in a SINGLE PDF file

    Hello
    I recently bought HP3545 AIO printer. I am not able to scan document of several pages in a SINGLE PDF file.
    Help, please.
    ... Reddij

    Hello Reddij,

    Welcome to the HP Forums!

    I understand that you are unable to scan multiple documents in a single file. I'll do my best to help you and to solve this problem. First of all, I need to know what your operating system on your computer? Click here to discover: Windows or Mac?

    I would recommend performing this step of your computer, the HP software. It is much easier to achieve. Please follow this document HP How to digitize. Click on your appropriate operating system, and then click "how to scan multiple pages into a single file. You will notice indicates: (digitization of additional pages is supported at 300 dpi or less.)

    1. Place a document on the scanner glass, and then click Scan your computer.
    2. When the preview scan appears, click the Plus sign ( ) on the left side of the window to scan additional pages. If you do not use an ADF, you must load the next page of the document on the glass of the scanner to add to each additional page.

    I would like to know how your progress. Impatience on your part.

  • ActiveRichTextField: jump from link to link on navigation behavior

    I use an ActiveRichTextField to make clickable links. However, if the user navigates through this field it's done character.

    All I want is him to jump from link to link... Can I do this easily?

    Or should I create a subclass and replace navigationMovement (.)?

    I've actually already implemented it myself.

    It does not entirely how I want it, but you get the idea

    class JumpingActiveRichTextField extends ActiveRichTextField {
       ...
    
        private int currentRegion = 0;
        protected boolean navigationMovement(int dx, int dy, int status, int time) {
            int d = dx + dy;
            currentRegion += d;
            if(currentRegion < 0) {
                currentRegion = 0;
                return super.navigationMovement(dx, dy, status, time);
            }
            if(currentRegion!=0) {
                if(this.getText().startsWith("http://")) {
                    if(currentRegion % 2 - 1 == 0) {
                        currentRegion+=d;
                    }
                } else {
                    if(currentRegion % 2 == 0) {
                        currentRegion+=d;
                    }
                }
            }
            int[] offsets = this.getOffsets();
            if(currentRegion >= offsets.length) {
                currentRegion = offsets.length - 1;
                return super.navigationMovement(dx, dy, status, time);
            }
            this.setCursorPosition(offsets[currentRegion]);
            String regText = this.getRegionText(currentRegion);
            if(dx>0 && currentRegion == offsets.length-1 && (regText==null || !this.getRegionText(currentRegion).startsWith("http://"))) {
                // do not jump to end but jump to next item
                return super.navigationMovement(dx, dy, status, time);
            }
            return true;
        }
    
    }
    
  • How to combine several PDF in a single

    I can't find out how to combine several PDF in a single document with Illustrator.

    Help, please!

    Brooke,

    It depends on your version.

    In older versions (one page PDF), you can

  • I have adobe reader xi and can not find the "create button" in order to combine several files into a single pdf

    I have adobe reader xi and can not find the "create button" in order to combine several files into a single pdf

    Hello

    Reader is software to view PDF' only.

    You must either a pack PDF to perform the function of thin or Acrobat.

    Reader is not the software to perform editing functions.

    Concerning

    Sukrit diallo

Maybe you are looking for

  • link to previous time machine backup installs on a new disc

    I had TM backup on a NAS drive and he managed to move on to an external USB key using the info at https://support.apple.com/en-gb/HT201250 When I lit TM back it seems not to be able to see yesterday or the previous ones, even if they were available.

  • J3Z14PA #ABG: keyboard stops working until I have press windows - HP envy 15-q004tx

    My keyboard doesn't work anymore until I press the windows key, then it works again I tried ubuntu live and I na not to deal with the problem also when the keyboard stop and I go to my VMware virtual operating system, it works again without pressing

  • 3 questions to SONY Xperia m4 aqua

    1 Howcomes sony decided to clock the snapdragon 615 to 1.5 ghz and not 1.7 ghz like other phones, because their performance is much better in the game? for example, Eric mi4i or the zte blade s6. 2 sony will add VOLTE (voice of 4 g) in an update that

  • Problem of helmet of blackBerry Smartphones

    So I bought the new htc hd2 and gave the woman my 8900. I did a factory reset and it gave to her as I had the phone originally. For some reason any headset is strange. I used to make calls on all the time with them, and NEVER once did I hit activate

  • To access package variables

    create or replace PACKAGE foo AS function f1 ( bar in VARCHAR2) return boolean; END; create or replace PACKAGE BODY foo AS function f1 ( bar in VARCHAR2)     return boolean    IS    BEGIN   DBMS_OUTPUT.PUT_LINE ('IN FUNCTION F1');    return TRUE; END