For multiple business unit, we have same logo. How to display in RTF?

I am very new to BI publisher.

I have create a RTF command that contains the Logo of the operating unit.

Currently, we have 5 operating units. We'd spend logo based on the control unit.

Currently, we have coded something like that

<? If: org = 1? > org1image <? endif >
<? If: org = 2? > org2image <? endif >
<? If: org = 3? > org3image <? endif >

for the Org = 4 and org = 5, we want to display the same image. Do we have a logical condition or BI Publisher?
as
If (org = 4 or 5 = org)
4 image display
end if


How in RTF?

Thanks in advance for your answer.
RK

Published by: vradhakr on November 1, 2010 14:52

You can use it as you have in your example itself.

Tags: Business Intelligence

Similar Questions

  • Is there a way to pay for multiple images to in the same transaction rather than one by one?

    Is there a way to pay for multiple images to in the same transaction rather than one by one?

    Right now only at a time is supported.

  • I do not want to promote the material for your business but I don't know how to do this. Could I be put in contact with the one dealing with promotion of contact microsoft or microsoft studios.

    Dear, that which which may concern,.

    I do not want to promote the material for your business but I don't know how to do this. Could I be put in contact with the one dealing with promotion of contact from microsoft, or microsoft studios, anyone who takes care of the halo franchise.

    Hello

    Microsoft - unsolicited ideas
    http://www.Microsoft.com/en-us/legal/intellectualproperty/copyright/default.aspx#O14

    343 industries manage Halo - check community and forums
    https://www.halowaypoint.com/en-us

    I hope this helps.
    --------------------------------------------------------------------------------------------
    Rob Brown - Microsoft MVP<- profile="" -="" windows="" experience :="" bicycle="" -="" mark="" twain="" said="" it="">

  • I have paid for XI today but still have no idea how to change a PDF file - XI has well but I'm still not sure if XI is downloaded properly

    I paid for XI today, but still have no idea how to change a PDF file - XI worked fine but I'm still not sure if XI is downloaded successfully @.

    Hello Leo,

    Please, watch the following videos to learn how to change the PDF file:

    http://TV.Adobe.com/watch/i-didn' t-know-acrobat-xi-could-do-that-tutorials/pdf-editor-edit-text-and-images-in-pdf-file/

    http://TV.Adobe.com/watch/learn-Acrobat-XI/editing-a-PDF-in-Adobe-Acrobat-XI/

    Kind regards

    Anoop

  • a single insert for multiple insertions, if tables from same

    Hi all

    Can I have an insert for less than 3 Insert stm.
    declare 
    v_z number;
    begin
    v_z :=0.0;
    
    INSERT INTO rd_carry_new1
    SELECT  s.ssm_id,
         s.ssm_id as adjusted_cusip,
         v_z as rolldown, --= @zero,                      
         v_z as oas, --=@zero,                      
         nvl(srm.carry_rate, 0.0) as carry,
         v_z as finance_rate, --= @zero,                            
         v_z as price_drop, --= @zero,
         sw.heldby_pco_sw,
         v_z as carry_bk1, --= @zero,        -- place holders for interim results
         v_z as carry_bk2, --= @zero,
         'Y              ' AS r_srm_flag,     --r_srm_flag     = "Y              ", /*-- Indicates value from SRM, stale these should not be updated at any point*/
         'Y              ' AS o_srm_flag,     --o_srm_flag     = "Y              ",
         'Y              ' AS c_srm_flag,     --c_srm_flag     = "Y              ",
         'Y              ' AS f_srm_flag,     --f_srm_flag     = "Y              "
         'SRM' AS oas_method                         --,          oas_method='SRM'
    
    FROM  sec_tab_sdb s, 
      sr_measures srm,
      sec_sw sw
    WHERE s.ssm_id = srm.ssm_id
    AND   s.ssm_id = sw.ssm_id;
    
    
    insert into rd_finance_new1
    select  s.ssm_id,
         v_z as rolldown,                      
         v_z as oas,                      
         v_z as carry,                         
         nvl(srm.financing_rate,0) as finance_rate,     
         v_z as price_drop,
         sw.heldby_pco_sw,
         v_z as rolldown_bk1,        -- place holders for interim results
         v_z as rolldown_bk2,
         'SRM'  as finance_method, -- audit for financing_rate queries
         'Y              ' as r_srm_flag,    -- Indicates value from SRM, stale these should not be updated at any point
         'Y              ' as o_srm_flag,
         'Y              ' as c_srm_flag,
         'Y              ' as f_srm_flag
         
    from  sec_tab_sdb s, 
      sr_measures srm,
      sec_sw sw
    where s.ssm_id = srm.ssm_id
    and   s.ssm_id = sw.ssm_id;
    
    
    insert into  pco_on.rd_rolldown_new1
    select s.ssm_id,
            nvl(srm.rolldown,0) as rolldown,     
            v_z as oas,                      
            v_z as carry,                           
            v_z as finance_rate,                            
            v_z as price_drop,
            sw.heldby_pco_sw,
            v_z as rolldown_bk1,             -- place holders for interim results
            v_z as rolldown_bk2, 
            'Y              ' as r_srm_flag,   -- Indicates value from SRM, stale these should not be updated at any point
            'Y              ' as o_srm_flag,      
            'Y              ' as c_srm_flag,      
            'Y              ' as f_srm_flag,      
            'SRM'        as  rolldown_method
    
    from  sec_tab_sdb s, 
      sr_measures srm,
      sec_sw sw
    where s.ssm_id = srm.ssm_id
    and   s.ssm_id = sw.ssm_id;
    
    end;

    Try this please

    INSERT ALL
    INTO RD_CARRY_NEW1 VALUES
      (
        SSM_ID,
        ROLLDOWN,
        OAS,
        carry,
        finance_rate,
        price_drop,
        heldby_pco_sw,
        rolldown_bk1,
        rolldown_bk2,
        r_srm_flag,
        o_srm_flag,
        c_srm_flag,
        F_SRM_FLAG,
        rolldown_method
      )
    INTO RD_FINANCE_NEW1 VALUES
      (
        SSM_ID,
        ROLLDOWN,
        OAS,
        carry,
        finance_rate,
        price_drop,
        heldby_pco_sw,
        rolldown_bk1,
        rolldown_bk2,
        r_srm_flag,
        o_srm_flag,
        c_srm_flag,
        F_SRM_FLAG,
        rolldown_method
      )
    INTO PCO_OWN.RD_ROLLDOWN_NEW1 VALUES
      (
        SSM_ID,
        ROLLDOWN,
        OAS,
        carry,
        finance_rate,
        price_drop,
        heldby_pco_sw,
        rolldown_bk1,
        rolldown_bk2,
        r_srm_flag,
        o_srm_flag,
        c_srm_flag,
        F_SRM_FLAG,
        rolldown_method
      )
    SELECT s.ssm_id,
      NVL(srm.rolldown,0) AS rolldown,
      v_zero              AS oas,
      v_zero              AS carry,
      v_zero              AS finance_rate,
      v_zero              AS price_drop,
      sw.heldby_pco_sw,
      v_zero            AS rolldown_bk1,
      v_zero            AS rolldown_bk2,
      'Y              ' AS r_srm_flag,
      'Y              ' AS o_srm_flag,
      'Y              ' AS c_srm_flag,
      'Y              ' AS f_srm_flag,
      'SRM'             AS rolldown_method
    FROM sec_tab_sdb s,
      sr_measures srm,
      sec_sw sw
    WHERE s.ssm_id = srm.ssm_id
    AND s.ssm_id   = sw.ssm_id;
    
  • RDM for several virtual machines on the same LUN

    Hi, I have a requirement for multiple virtual machines to have access to the same LUN filestore. I think create ROW for each virtual computer to the LUN. I wanted to ask if this is possible and if someone put in place before?

    Are there issues making this record to file/san locks?

    Thank you

    Once you add the raw device map to a virtual computer, you can not add it to each other as well.

    It would satisfy your requirement to add to a virtual computer, assign it a drive name or folder, then that spread out and have another card SMV a drive to it?  Depending on what you're trying to do, which can satisfy because it will work.

    Rich

  • Using filters Essbase to restrict access to OBIEE dashboards for multiple users

    Hello

    You can use Essbase filters to restrict access to the data in OBIEE dashboards so that users with no access to specific members are not able to see all data for multiple users.

    Any suggestions on how to go about it.

    Thank you!

    Hello

    Like any data source as an essbase.

    You can filter the data by the user, use a NQSESSION. to get the session the correct access.

    Kind regards

  • Check through for multiple payment processing business units

    Hello

    We are currently implementing Oracle R12 to the company that I work. Our implementation of solution has informed us that you cannot process a check (cheque) payments through multiple operating units and that there is a remarkable improvement with Oracle. That is why (if we accept) that we will have to deal with a separate by operating unit check that will increase our many payment processing.

    Can someone out there:

    A. confirm that it is indeed a question
    B. are you aware if anything about Oracle and
    C. is there no work around we might consider to reduce the impact.


    Thank you

    Hello

    Scenario 1
    If you're going to make it simple to check the payment to the same supplier with different places, under various operating units, oracle has provided a workaround solution, which is to make a manual payment in the accounts payable module, but it did not obtain payment instructions.

    Scenario 2
    If you make payment by check unique to various suppliers in different/similar operating units, it is not allowed by Oracle, because there is no logic behind it. You can't 1 check generated for different providers...

    I guess that you are referring to scenario 1, in which case, I would say that there is a work AROUND suggested by Oracle to make use of MANUAL PAYMENT method that you could discuss with your implementation of Solution.

    Kind regards
    Ivruksha

  • Is it possible to set up for multiple users on the same computer to avoid entering the e-mail and the password

    Original title: Multi users

    Is it possible to set up for multiple users on the same computer to avoid entering the email and password every time that a new user want to check emails?

    Hello

    Welcome to the community forums of Microsoft and thanks for posting the question. According to the description, you need help in the creation of multiple user accounts. I've surely you will help find a solution on the issue.

    What is the operating system installed on the computer?

    User accounts, several people can easily share a single computer. Each person can have a separate user account with unique settings and preferences, such as a screen saver or desktop background. User accounts control files and programs users can access and what types of changes users can make to the computer. As a general rule, you'll want to create standard accounts for most computer users.

    If you use Windows Vista or Windows 7, see the article below:

    Create a user account

    http://Windows.Microsoft.com/en-in/Windows7/create-a-user-account

    http://Windows.Microsoft.com/en-in/Windows-Vista/create-a-user-account

    For Windows XP users:

    How to create and configure user accounts in Windows XP

    http://support.Microsoft.com/kb/279783?WA=wsignin1.0

    Hope this information helps. Answer please if you have more queries about Windows.

  • I use lightroom on my laptop, and now I want to download on my desktop that I have multiple devices to the original purchase.  How can I download it for my office?

    I use lightroom on my laptop, and now I want to download on my desktop that I have multiple devices to the original purchase.  How can I download it for my office?

    You install programs exactly in the same way you did the 1st time... Put your disc in the drive, and enter your serial number when asked

    .

    Download & install instructions https://forums.adobe.com/thread/2003339 can help

    -includes a way to go to a page to download the Adobe programs if you do not have a disk or drive

    -you will need to enter your original serial number during the installation for non-Cloud programs

    -Cloud desktop http://helpx.adobe.com/creative-cloud/help/creative-cloud-desktop.html

    -Cloud Getting Started https://helpx.adobe.com/creative-cloud.html

    - or kglad links in response to #1 here can help https://forums.adobe.com/thread/2081216

    Also go to https://forums.adobe.com/community/creative_cloud/creative_cloud_faq

  • Is there a way to set reminders for multiple documents at the same time?

    Is there a way to set reminders for multiple documents at the same time? Now he must go through a list, manually click through a series of options, then select it. If I send more than 300 different documents to individuals at a time, it becomes tedious. Quick. A way to save me the trouble would be so so so appreciated.

    Hello Lindsayb123,

    We do have an option to set a generic reminder under choice of account in the accounts of the company and can be set by going to the tab account-> account settings-> send parameters and set reminders.

    Let me know if you need more information.

    -Usman

  • If I buy a monthly subscription can I load the application on multiple computers that I have on the same e-mail ID?

    If I buy a monthly subscription can I load the application on multiple computers that I have on the same e-mail ID?

    Hi rlp54163129,

    Acrobat can be installed on both systems, however it will be enabled only on a system at a time.

    In order to install & activate multiple system you need to subscribe to it for the entire system, or you can go for volume license.

    Kind regards

    Nicos

  • My Apple ID has been locked for security reasons. I have all the details to recover my account that the account was created by a child of 6 years. How to unlock my account to use the same?

    My Apple ID has been locked for security reasons. I have all the details to recover my account that the account was created by a child of 6 years. How to unlock my account to use the same?

    < email published by host >

    It is illegal for a child from 6 years to create an Apple ID.

    You can take a date-genius bar with Apple and bring the original receipt Apple.

  • If I have two modems in the same office... windows xp can combine two connections at higher speed dial... my question is can I do the same thing for the dsl if I have two lan cards?

    If I have two modems in the same office... windows xp can combine two connections at higher speed dial... my question is can I do the same thing for the dsl if I have two lan cards?

    Hi cliffwho

    You can fill with connections to the LAN. However I recommend you read this first to understand what it is that you do. I hope this helps.
  • possible to have 2 different application fields for two different clips at the same time

    Hello

    possible to have 2 different application fields for two different clips at the same time for the classification match in terms of the scope, only not to the eye?

    Not that I know of.  And Yes, it would be very useful. As would the ability to go back 2 in reading monitor and a button "game clip under the read head 1. Sigh.

    Neil

Maybe you are looking for

  • Tecra A11 - 11N - after that the BIOS update programs not loading now

    My model is Tecra A11 - 11N. I ran the BIOS update and now some of my programs, including ITunes, Nokia Ovisuite, payer VLC etc. are not running. I tried to uninstall and reinstall them, but same problems. In any case to come back before upgrade?

  • Satellite L650 starts but the screen does not appear

    I turn on my laptop does not open the screen, but the computer is on, because I can hear the fan and the lights are all on. Help me!

  • FSX locked up, refuses to complete the reseating, does not

    7 running on Dell designed specifically to manage FSX.  Locked in the session.  I tried to restart, got only to the logo screen then Manager tasks advised he did not.  Re-directed the installation discs using the mode "fix."  No joy.  Tried to uninst

  • 6520e: remove the hp ink cartridge

    I have a 6520e printer.   My only previous went wrong and I tried new ink cartridges in it. It was still broken and I replaced it.   The new (same model) forced me to use the ink cartridges that came with it (ok), but now they are empty I want to use

  • display distortaion

    installed a casino game.when I try to play the screen distorts flashes great small.is this a virus?