Can we use the AGO on presentation columns that is in the formula for the column

Hello

I use obiee 10g

I tried to use the AGO in the formula in the column and using the columns of the presentation but the error.

Please suggest.

Pull the measure in the criteria and fx-> Filters-> pull date column-> Advanced button-> convert this filter in SQL
and use something like below

Time.Date<= current_date="">
Time.Date > = TIMESTAMPADD (SQL_TSI_DAY,-(365), CURRENT_DATE)

So that any point of time this measure see the last 365 data.

If brand aid

on the other
Thank you
Published by: Srini VIEREN on 10 April 2013 08:51

Try updating all your messages to get a suggestion for your new future/post

Published by: Srini VIEREN on 29 April 2013 07:21

Tags: Business Intelligence

Similar Questions

  • Why can't connect using Apple Airport WIFI of my remote security cameras but can connect using the Xfinity WIFI Modem/Router open?

    Why can't connect using Apple Airport WIFI of my remote security cameras but can connect using the Xfinity WIFI Modem/Router open?

    Two possibilities:

    (1) your airport WiFi might have a network name that is not in line with best practices, wireless

    A good wireless network name is...

    ... In short no more than 20 characters

    Simple... no special characters like an apostrophe, dollar sign, asterisk, etc.

    Compact, without spaces in the name

    For example, a wireless network network name as... red .dfedoryk Apple wireless network... .is not what you want. Something like... .dfedorykwireless. .. masse are much more likely to connect to non-Apple devices.

    Same guidelines your password

    (2) Apple gives the same name to network 2.4 GHz and 5 GHz network that produces double router band.  Some non-Apple devices are confused by the present, you may need to use the option to assign a different name for the network of 5 GHz on the router from Apple. Then, 'point' your device to the network name specific to which you want to connect.

  • Can I use the SATA port connected to an optical drive to plug in a hard drive?

    I have a Pavilion e9270t desktop, Win7 Pro SP1, and I want to connect 3 HARD drive to the motherboard. Can I do this? Can I use the SATA port connected to an optical drive to plug in a hard drive?

    Thanks, CHemming

    CHemming,

    I've not seen UEIF support in the existing BIOS.

    If your demand on a 3T led, re - consider a maximum of 2 T.

    If you ask to have 3 hard disks, then you can do it without harassing the present cable of CD.

    The cage of your system hard disk will support 3 hard disks. Manual upgrade service

    All you need are the SATA data and power cables. Your Board has 4 SATA data ports.

    When you report back after inspecting your system for SATA power cables, I will move the cables and adapters, if necessary.

  • I'm unable to connect to the internet and I also can not use the WinXP system restore.

    No internet connection and I also can not use the WinXP system restore because it gives me an error at the 'end' which said: it cannot be restored to an earlier date.  I run AntiMalware bytes and StopZilla and erased all that they found.  Now I can't even connect to the internet.  When I go to the command prompt, it gives me an error contact the Support of MS that I know means I have a virus or a trojan that I should just get a time out?  My other PC on the same network is fine and connected.  The NETWORK card is fine, just does not know how to get rid of what it is, I have and to top it all impossible to connect to the internet to try all of the tools that can help.  Someone at - it ideas?

    The error you get at the end of the restoration of the system is typical of some anti-virus programs (Norton, especially) that interfere with the restoration of the system.  Try to start your computer in Mode safe (on several occasions, key to tap F8 while your computer starts) and run safe mode system restore.

    Additional information is necessary to treat your network problem.  Try to bring up a command prompt (start-> Run-> "cmd") or if it does not, try (start-> Run-> "command.com") and enter the command:
    ipconfig/all
    and after the info that appears in the State resulting.

    Also, check the logs of your system related errors (start-> Run-> "eventvwr.msc") and click on 'System' in the left column.

    HTH,
    JW

  • Can you use the IPV6 addressing in Codecs of the CTS?

    Can you use the IPV6 addressing in Codecs of the CTS? Otherwise, any plans for it?

    Thank you

    DR

    Hi David,

    / * Style definitions * / table. MsoNormalTable {mso-style-name : « Table Normal » ; mso-tstyle-rowband-taille : 0 ; mso-tstyle-colband-taille : 0 ; mso-style-noshow:yes ; mso-style-priorité : 99 ; mso-style-qformat:yes ; mso-style-parent : » « ;" mso-rembourrage-alt : 0 à 5.4pt 0 à 5.4pt ; mso-para-margin : 0 ; mso-para-marge-bottom : .0001pt ; mso-pagination : widow-orphelin ; police-taille : 11.0pt ; famille de police : « Calibri », « sans-serif » ; mso-ascii-font-family : Calibri ; mso-ascii-theme-font : minor-latin ; mso-fareast-font-family : « Times New Roman » ; mso-fareast-theme-font : minor-fareast ; mso-hansi-font-family : Calibri ; mso-hansi-theme-font : minor-latin ; mso-bidi-font-family : « Times New Roman » ; mso-bidi-theme-font : minor-bidi ;}

    At present, there is no support for IPv6 in the points of termination CTS or infrastructure but Cisco TelePresence Business Unit can look at it in the future, but are currently not seen or heard anything.

    THT

    Arun

  • Can I use the data dictionary tables based on RLS policy?

    Hello guys, I use the package level security line to limit certain lines to some users.

    I created several roles, I want to just enable certain roles to see all the columns, but the other roles, I'm not that they see all the lines. I mean to do this I use the session_roles table data dictionary however it did not work.

    What to do in order to not allow rows of user roles?
    Can I use the data dictionary tables in RLS?


    Thank you very much.

    Polat says:
    What to do in order to not allow rows of user roles?
    Can I use the data dictionary tables in RLS?

    Ensure that:

    SQL> CREATE OR REPLACE
      2    FUNCTION no_sal_access(
      3                           p_owner IN VARCHAR2,
      4                           p_name IN VARCHAR2
      5                          )
      6      RETURN VARCHAR2 AS
      7      BEGIN
      8          RETURN '''NO_SAL_ACCESS'' NOT IN (SELECT * FROM SESSION_ROLES)';
      9  END;
     10  /
    
    Function created.
    
    SQL> BEGIN
      2    DBMS_RLS.ADD_POLICY (
      3                         object_schema         => 'scott',
      4                         object_name           => 'emp',
      5                         policy_name           => 'no_sal_access',
      6                         function_schema       => 'scott',
      7                         policy_function       => 'no_sal_access',
      8                         policy_type           => DBMS_RLS.STATIC,
      9                         sec_relevant_cols     => 'sal',
     10                         sec_relevant_cols_opt => DBMS_RLS.ALL_ROWS);
     11  END;
     12  /
    
    PL/SQL procedure successfully completed.
    
    SQL> GRANT EXECUTE ON no_sal_access TO PUBLIC
      2  /
    
    Grant succeeded.
    
    SQL> CREATE ROLE NO_SAL_ACCESS
      2  /
    
    Role created.
    
    SQL> GRANT SELECT ON EMP TO U1
      2  /
    
    Grant succeeded.
    
    SQL> CONNECT u1@orcl/u1
    Connected.
    SQL> select ename,sal FROM scott.emp
      2  /
    
    ENAME             SAL
    ---------- ----------
    SMITH             800
    ALLEN            1600
    WARD             1250
    JONES            2975
    MARTIN           1250
    BLAKE            2850
    CLARK            2450
    SCOTT            3000
    KING             5000
    TURNER           1500
    ADAMS            1100
    
    ENAME             SAL
    ---------- ----------
    JAMES             950
    FORD             3000
    MILLER           1300
    
    14 rows selected.
    
    SQL> connect scott@orcl
    Enter password: *****
    Connected.
    SQL> GRANT NO_SAL_ACCESS TO U1
      2  /
    
    Grant succeeded.
    
    SQL> connect u1@orcl/u1
    Connected.
    SQL> select ename,sal FROM scott.emp
      2  /
    
    ENAME             SAL
    ---------- ----------
    SMITH
    ALLEN
    WARD
    JONES
    MARTIN
    BLAKE
    CLARK
    SCOTT
    KING
    TURNER
    ADAMS
    
    ENAME             SAL
    ---------- ----------
    JAMES
    FORD
    MILLER
    
    14 rows selected.
    
    SQL> 
    

    SY.

  • How can I use the Variance in FR

    Hello

    How can I use the formula of variance in financial reports.

    I have in my grid 2rows


    ColumnA CloumnB Cloumnc
    1 2 4 10 total values
    2 values 1 2 3
    3

    Now I need to include a 3rd place called variance in the how I can do this.

    Please guide me the formula.

    Thank you
    I have w

    Hi, HV,.

    There is a default functions avilable in HFR to calecualate the Variance.

    To do this, you have to select the line formula or the formula column.
    in this column formla, you will be able to set these formulas

    Concerning
    Sri

  • Can I use the Time Capsule wireless for multiple computers without using it as a router?

    I am looking for an external backup for 2 computers drive.  I have a desktop iMac and MacBook Air.  I like the idea of being able to back up my MacBook Air wireless, but I need to make sure that it will work the way I need to.

    I already have a wireless router that works well for me, I don't need the time Capsule to act as a router. I'm just needing a wireless backup drive.  So, the question is, can I use the only time Capsule as a storage device for backup of wifi or do I also have to use it as a wifi router?  My fear is that the router service is not as good as the router, I currently have.  I live in a big House of 2 floors, making it very difficult to receive a strong signal throughout the House.

    can I use time Capsule only as a backup wireless storage device or do I also have to use it as a wifi router?

    Time Capsule need to connect to your router/modem existing using wired Ethernet wired, permanent.

    If you plan to use the time Capsule to back up your Mac with the help of the application Time Machine on every Mac, the Mac will have to save on the wireless signal Time Capsule for the process to be officially supported by Apple.

    While it is possible to turn off wireless on the Time Capsule and try to save it to your existing wireless network... and it pourrait work... but there will be no Apple support backup problems... so it would be a good idea to plan to use Time Capsule wireless backup purposes.

  • If I buy a T-Mobile unlocked iphone7, can I use the sim card by carrier other than T-mobile on the iphone7? Because I travel abroad from time to time, I wonder if the unlocked Tmobile iphone7 accept any sim card when I am abroad

    If I buy a T-Mobile unlocked iphone7, can I use the sim card by carrier other than T-mobile on the iphone7? Because I travel abroad from time to time, I need to use another sim card when I'm outside of US. So if I order a T-mobile unlocked iphone7, he will accept my sim card from a foreign carrier? In addition, he will accept my 2nd sim card which is Sprint (my sprint sim card is not related to a device)?

    An unlocked iPhone for use with any compatible GSM carrier.

    Sprint is NOT a GSM carrier. They are a CDMA carrier.

  • Can I use the iTunes on PCs using Windows 10 app or not? !

    Can I use the iTunes on PCs using Windows 10 app or not? !

    You can run the application iTunes, but not those obtained from the iTunes App Store.

    (144221)

  • Can I use the original iPad Air 2 charger to charge my iPhone 6 Plus? It shortens the life of the battery of the phone?

    Can I use the original iPad Air 2 charger to charge my iPhone 6 Plus? It shortens the life of the battery of the phone?

    Yes, you can. No, it won't. Apple sells this as compatible with the iPad and iPhone adapter.

    And the phone does a little faster than with the phone adapter.

  • Can I use the same disc hard ext I used for El Capitan Yosemite without losing my data?

    Can I use the same disc hard ext I used for El Capitan Yosemite without losing my data?

    Yes. You should not lose any data, but always have a backup. In this case, you have your internal drive as a backup.

  • I can not use the command share in safari, mail, notes, etc. since I updated to El Capitan (10.11.5). No way to solve it. Please help me.

    I can not use the command share in safari, mail, notes, etc. since I updated to El Capitan (10.11.5). No way to solve it. Please help me.

    There is a problem with your installation of OS X. The easiest way, but not the fastest way to fix it is to reinstall the operating system. Unless you are in a hurry or have measured access to the network, it is what I suggest, especially since I don't know if there are any problems with the installation. Please backup all data before reinstalling. You won't need the backup unless something is wrong.

    The below, advanced shortcut if it works, can save you some downtime (and the cost of a download of several gigabyte, if necessary.)

    1 back up all data.

    2. disconnect all external storage devices.

    3. start in recovery mode. Select a language, if you are prompted. The OS X Utilities appears. One of the options is to install OS X. This is not what you do.

    4. This step is only necessary if you use FileVault 2. If you don't know what's FileVault, you use it. Go to the next step. Otherwise, launch utility disk, then select the icon for the volume FileVault ("Macintosh HD", unless you have given it a different name.) It will be nested under another icon of the disc. Select open in the file menu and enter your login password when you are prompted. Then quit disk utility must be returned to the main screen.

    5. Select get online help. Safari will launch. While in recovery, you will have no access to your Favorites, but you won't need them. Load this web page.

    6. triple - click anywhere in the line below to select this option:

    chflags -R norestricted /V*/*/S*/*/Caches

    Copy the selected text in the Clipboard by pressing Control-C key combination.

    7. Quit Safari. You go back to the OS X Utilities screen.

    In the menu bar, select

    Utilities ▹ Terminal

    Launch the Terminal application. Paste in the Terminal window by pressing the command-V key combination.

    Wait for a new line ending with a number sign (#) to appear. Quit the Terminal must be returned to the main screen.

    8. Select

    ▹ Restart 

    in the menu bar.

    9. This step must be performed after the restart, and while you are logged as administrator, not in recovery mode. If you have only one user account, you are the administrator.

    Select and copy this line as in step 6:

    sudo /usr/libexec/xpchelper --rebuild-cache

    Paste in a Terminal as before. You will be asked for your login password. Nothing displayed when you type. Type carefully, and then press return. If you do not have a password, you will need to configure one before you can run the command. You can get a warning to be careful. Confirm. You don't need to display the warning.

    If you see a message that your user name "is not in the sudoers file", then you have not logged as an administrator. Log in as one and repeat this step. You don't have to repeat the previous steps.

    Wait for a new line ending with a dollar sign ($) below what you entered.

    10. make as in step 9 with this line:

    sudo /usr/libexec/*/app_sandbox_cache_builder --rebuild-cache

    You can then quit Terminal.

  • Can I use the lan Ethernet port on the airport express to the release of music?

    Can I use the Ethernet connections on airport express at the exit of music over wifi to a set of speakers? I would use an Ethernet connector at one end a DIN 5 pin to a pair of speakers beolab 2500/2300. I don't want to use the PIN audio output on the Airport express, as it is analog. Possible music out through one of the Ethernet connections at the back of the Airport express? Thank you

    Can I use the Ethernet connections on airport express at the exit of music over wifi to a set of speakers?

    Sorry, but no.

    I don't want to use the PIN audio output on the Airport express, as it is analog

    Perhaps you weren't aware that audio port on the AirPort Express audio book Terminal analog or digital, according to the type of connector used. See this link on the AirPort Express specifications to confirm... http://www.Apple.com/Airport-Express/specs/

    In other words, for the Express deliver audio analog, connect a standard stereo mini plug with connectors appropriate to the other end.  To ensure that the Express deliver audio digital, plug a mini Toslink cable to the audio port on Terminal AirPort Express.  An example is in this link... Airport Express Toslink - Amazon.com

  • Can I use the latest version of Safari on my Version of OSX 10.8.5

    Can I use the latest version of Safari on my Mac OS X Lion Mountain

    # The latest version of Safari is 9.1.1 and it is available for OS X El Capitan. You use OS X Lion mountains, which is a much older version of OS X.

  • I can't scroll my podcasts more since the update to iTunes 12.4. I can only use the arrow keys to go through my podcasts, and then take it all down.

    I have a MacBook Pro and update to the latest iOS and iTunes. I can't scroll in my podcasts to choose which episodes to synchronize. I can only use the arrow keys to navigate, but then while he list of podcasts on the left, it moves also down from the bar on the list of episodes, so by the time I spend the first 7 or 8 I can't see the episodes more to choose which to add/remove.

    Same here, very frustrating.

    I found if you go in your library > Podcast, then control click on the podcast, you can select Add to the device, which works, but is in no way acceptable.

Maybe you are looking for