Question about generic dimension in MDX for Universe

Hi All,
  I'm testing this syntax in MDXtest and works very fine
WITH
   SET [0COMP_CODE_MEMBERS] AS '[0COMP_CODE].[LEVEL01].members'
   MEMBER [0COMP_CODE].[MAX] AS 'Max( [0COMP_CODE].[LEVEL01].members,  [Measures].CurrentMember )'
   MEMBER [0COMP_CODE].[MIN] AS 'Min( [0COMP_CODE].[LEVEL01].members,  [Measures].CurrentMember )'
   MEMBER [0COMP_CODE].[SUM] AS 'Sum( [0COMP_CODE].[LEVEL01].members,  [Measures].CurrentMember )'
SELECT
   NON EMPTY [0COMP_CODE].[LEVEL01].members * [0CALMONTH2].[LEVEL01].members ON COLUMNS,
   NON EMPTY AddCalculatedMembers( [0COMP_CODE].[LEVEL01].members ) ON ROWS
from
  ZNDS_M01/ZNDS_M01_Q0001
WHERE
  ( [Measures].[4F2TKUKDVLVTAQQ5JBLREGNJH] )
I'm using this in one measure
Sum( [0COMP_CODE].[LEVEL01].members,  [Measures].CurrentMember )
But, how can I replace 
[0COMP_CODE].[LEVEL01].
for a generic measure?
I need the sume depend of what the user add to the grid or select in the graph.
How can I do this?
Thanks.

Hi,
[0COMP_CODE].[LEVEL01] doesn't look like a measure to me.
what exactly is it that you trying to do ?
Ingo

Similar Messages

  • Question about the Documentat​ion Tags for Source Code

    Hello,
    I have a question about CVI's automatic source code documentation. My problem is that is seems like you need to write all documentation for a specific tag on one line. If you don't, a line break will be inserted when the documentation is displayed. Suppose I want to write a large amount of documentation for the function itself, using the HIFN tag. If I don't want linebreaks to be forced in the documentation, I need to write all this documentation on one single line, which kinda messes up my code. If I split the documentation over several HIFN tags, the documentation displayed to the user might look messed up because of all the linebreaks. Is there any escape character I can put at the end of a line, allowing me to split the documentation of several HIFN lines without forcing linebreaks in the documentation?
    Thanks!
    GEMIDIS - Innovating Display Technology
    HQ Ghent, Belgium

    This information is certainly useful. Note, however, that it can also be found in the documentation
    Tag
    Description
    /// HIFN help text
    Specifies the help text for the function. Use multiple /// HIFN tags to display help text for the function on separate lines. To separate help text with an empty line, use /// HIFN on a line by itself. You also can use HTML tags, but you must enclose the tags in <HTML><BODY></BODY></HTML> tags.
    Example
    /// HIFN SampleFunction returns the value of a control.
    int SampleFunction (int controlID, ctrlType controlType, char label[], double *value)
         SomeAction;

  • Question about setting Rows to "All" for defualt Interactive Report

    I have a default report with 2 user requirements that I have some questions about.
    1. The report in the data sould be 90 days old.
    2. The report show "All" rows.
    First to set the date I have this page process:
    apex_util.ir_clear(p_page_id => 2);
    apex_util.ir_filter(p_page_id=>2,
    p_report_column=>'REQUISITION_DATE',
    p_operator_abbr=>'GTE',
    p_filter_value=>SYSDATE - 90);
    I also set the rows to "All" and save the report to be the default. However I think when the "apex_util.ir_clear(p_page_id => 2)" is executed it clears someting and my report opens with rows set to "15".
    Any ideas on this or even a better way to do it?

    the following link may help...
    It says that the ir_clear "Clears any report filters including default filters"
    apex_util.ir_* documentation - where to find them?
    Gus..

  • How to change MDX  for Universe base on Universe

    Dear All,
    Our customer has a query about Universe base on MSAS2005.
    They can created a Universe and used it for Webi report well.
    The following MDX is right.
    SELECT
             {[Measures].DefaultMember} ON COLUMS ,
             ADDCALCULATEDMEMBERS ([Account].[Accounts].[Account Level 01].MEMBERS)
    DIMENSION PROPERTIES MEMBER_UNIQUE_NAME, MEMBER_CAPTION ON ROWS
    FROM [OpCentre]
    Customer want to know how can they create a universe object on the u201CAccountsu201D ."Accounts" should have a full list of accounts under the whole account hierarchy.
    They also want to know is there any guideline for creating universe objects other than the default generated objects? 
    Thanks in advance!
    Wayne
    Edited by: Wayne Peng on Mar 11, 2009 11:59 AM

    Hi
    - Open https:
    help.sap.com
    - Go to SAP BusinessObjects ->All products (see at left hand side pane).
    - Select the language required -> Select BusinessObjects XI 3.1 from Release (the third drop down).
    - After the list of documents is populated scroll till bottom of the page.
    - You would find Using SAP BW in Universe Designer guide there.
    - Try downolading it from there.
    Or you can also try this [link|http://help.sap.com/businessobject/product_guides/boexir31/en/xi3-1_sap_olap_universes_en.pdf] to download the guide.
    Hope this helps!!!
    Regards
    Sourashree

  • Question about generics and subclassing

    Hi all,
    This has been bothering me for some time. It might be just me not understanding the whole thing, but stay with me ;):
    Suppose we have three classes Super, Sub1 and Sub2 where Sub1 extends Super and Sub2 extends Super. Suppose further we have a method in another class that accepts (for example) an AbstractList<Super>, because you wanted your method to operate on both types and decide at runtime which of either Sub1 or Sub2 we passed into the method.
    To demonstrate what I mean, look at the following code
    public class Super {
      public methodSuper() {
    public class Sub1 extends Super {
      public methodSub1() {
        // Do something sub1 specific
    public class Sub2 extends Super {
      public methodSub2() {
         // Do something sub2 specific
    public class Operate {
      public methodOperate(AbstractList<Super> list) {
        for (Super element : list) {
           // Impossible to access methods methodSub1() or methodSub2() here, because list only contains elements of Super!
           // The intention is accessing methods of Sub1 or Sub2, depending on whether this was a Sub1 or Sub2 instance (instanceof, typecasting)
    }The following two methods seem impossible:
    Typecasting, because of type erasure by the compiler
    Using the instanceof operator (should be possible by using <? extends Super>, but this did not seem to work.
    My question now is: How to implement passing a generic type such as AbstractList<Super> while still making the methods of Sub1 and Sub2 available at runtime? Did I understand something incorrectly?

    malcolmmc wrote:
    Well a List<Super> can contain elements of any subclass of super and, having obtained them from the list, you could use instanceof and typecast as usual.I agree with you on this one, I tested it and this simply works.
    Of course it would be better to have a method in Super with appropriate implementations in the subclasses rather than use distinct method signatures, instanceof and casting isn't an elegant solution. Alternatively use a visitor pattern.Not always, suppose the two classes have some similarities, but also some different attributes. Some getters and setters would have different names (the ones having the same name should be in the superclass!). You want to be able to operate on one or the other.
    Generics doesn't make much difference here, exception it would be more flexible to declare
    public methodOperate(AbstractList<? extends Super> list) {Which would alow any of AbstractList<Super>, AbstractList<Sub1> or AbstractList<Sub2> to be passed.I tried it and this also works for me, but I am still very, very confused about why the following compiles, and gives the result below:
    public class Main {
         public static void main( String[] args ) {
              AbstractList<Super> testSub = new ArrayList<Super>();
              testSub.add( new Sub1( "sub1a" ) );
              testSub.add( new Sub1( "sub1b" ) );
              accept( testSub );
         private static void accept( AbstractList<? extends Super> list ) {
              for ( int i = 0; i < list.size(); i++ ) {
                   Super s = list.get( i );
                   System.out.println( s.overrideThis() );
    public class Sub1 extends Super {
         private String sub1;
         public Sub1( String argSub1 ) {
              sub1 = argSub1;
         public String overrideThis() {
              return "overrideThis in Sub1";
         public String getSub1() {
              return sub1;
    public class Sub2 extends Super {
         private String sub2;
         public Sub2( String argSub2 ) {
              sub2 = argSub2;
         public String overrideThis() {
              return "overrideThis in Sub2";
         public String getSub2() {
              return sub2;
    public class Super {
         public Super() {
         public String overrideThis() {
              return "OverrideThis in Super";
    }With this output:
    overrideThis in Sub1
    overrideThis in Sub1Even using a cast to Super in Main:
    Super s = (Super) list.get( i );does not return the Sub1 as a Super (why not??)
    Sorry for the long code snippets. I definitely want to understand why this is the case.
    (Unwise, I thing, to use Super as a class name, too easy to get the case wrong).OK, but I used it just as an example.

  • Another question about generics

    Consider the following hierarchy of classes:
    class Fruit {...}
    class Orange extends Fruit {...}
    class Apple extends Fruit{...}
    Now I need to declare a collection wherein I could store any type of Fruit (including its derivated classes), but also gather some fruits.
    I hare read that for reading I need to declare the collection as follows:
    Set<? extends Fruit> fruitSet = new HashSet<Fruit>();
    and for writing I need the following declaration:
    Set<? super Fruit> fruitSet = new HashSet<Fruit>();
    My question is, is there an efficient way to declare the collection so that both operations be feasible in the class? In the current version, I use generic method and need to re-cast for some calls.
    Can anyone help?

    What they're talking about is the fact that parameterized types are not covariant. You can't treat a List<Rectangle> as a List<Shape> because they are not the same thing. Arrays on the other are covariant, you can treat a Rectangle[] as a Shape[].
    No, with your example it will not generate a compile time error, but I do see what you're getting at.
    public void readFruit(Set<Fruit> fSet) {
        // snip
    Set<Apple> fruits = new HashSet<Apple>();
    readFruit(fruits); // error because Set<Apple> is NOT a Set<Fruit>It has nothing to do with whether or not fruits contains Apples and Oranges, it's how fruits is declared. While a Set<Fruit> may contain Apples and Oranges a Set<Orange> is not a Set<Fruit>. So if you attempt to pass a Set<Orange> to a method that takes a Set<Fruit> you might as well be trying to pass an int to a method that accepts a String, they're not the same, there is no is-a relationship. So this is what you do:
    public void readFruits(Set<? extends Fruit> fSet) {
        // snip
    // All work because it will take any Set<E> where E extends Fruit.
    readFruits(new HashSet<Fruit>());
    readFruits(new HashSet<Apple>());
    readFruits(new HashSet<Orange>());What this says is that fSet can be any Set<E> where E is a subtype of Fruit. It doesn't matter what implementations the Set actually contains. If it's a Set<Fruit> and it contains Apples, it doesn't matter, it's simply allowing you to pass a Set<Apple> or Set<Orange> as opposed to only being able to pass a Set<Fruit>.

  • Question about the dimensions of a multiprovider

    Hi all,
    I need to create a multiprovider based on 2 infocubes. They have 22 dimensions altogether, without taking the default ones in account.
    I'm able to group 6 dimensions into 2 because they have characteristics in common, but after this action there will still be 16 dimensions.  
    My question is: is there any problem in putting unrelated dimensions together? Would there be some problem related to the multiprovider design?
    Thanks and regards,
    Tiago.

    HI,
    This mainly depends on the reporting requirements you have. If you want to do better on the reporting performance since the requirement is on the two cube with more number of characteristics. While design the cube take only those char which are useful for reporting. Group the char in dimension as per the reportign requirements like the two char collectively used in a query can be used in one dimension.
    assigning dimensions in a multiprovider
    Use of Dimensions in Multiprovider?
    http://help.sap.com/saphelp_nw70/helpdata/en/52/1ddc37a3f57a07e10000009b38f889/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/cf/bc734190ba137de10000000a155106/frameset.htm
    Tarak

  • A few questions about Memory and Power Supply for MSI 975X Platinum Powerup Edit

    Bought this Motherboard: MSI 975X Platinum Powerup Edition
    975X Platinum V.2(7246-020)
    I have a P4 CPU HT in it with 2 512mb sticks of DDR2 memory (533mhz).
    I am upgrading to a Core 2 Duo 6600 CPU which has a 1066mhz FSB
    What memory speed should I purchase to achieve the fastest bus speed without overclocking???
    I get confused as my current memory is 533 which I guess on a Pentium 4 with HT cuts the FSB speed in 1/2 to 266mhz.
    Any recommendations?
    Do I need to buy Dual Channel or can I just buy 2 sticks?
    Thank you
    Peter

    Quote from: /dot on 07-February-07, 15:46:41
    Great info again guys!
    I'll stay away from OCZ (I read it's more for overclockers).
    @DryHeat:
    I watched your sig, great setup! I'm planning for about the same setup (MSI 975x PUE, P180, C2D, ...). But will try a Scythe Ninja for CPU cooler and use an MSI graphic card (maybe 2 cards for 4 monitors in total).
    Is your setup silent or just quiet? Makes a big difference for me.
    What would you change now? And what is the most noisy component?
    Sorry for all the questions but I'm not an expert and by budget does not permit me from making any mistakes.
    The case fans create the most noise.  When they are all on "low" I an hardly hear them and have to shake the mouse to see if it's on, but on medium it sounds like a "standard" computer.  Not terrible, but not quite.  On high they are down-right loud.

  • Question about 'Generic Database Connector'

    Hi SAP IdM Gurus,
    I found 'Generic Database Connector' in the list of SAP NW IdM connectors overview.
    I'd like to check the capability of this connector in detail. 
    I'm wondering whether it could provide not only  a connectivity of RDBMS, but also custom-developed application using the RDBSM for their ID/Password repository. If it provides only a connectivity of RDBMS, Is there a connector for the custom-developed application using the RDBSM for their ID/Password repository?
    My question is that which connector is used for the connectivity  of custom-developed application using the RDBSM for their ID/Password repository.
    I would really appreciate it if you could answer the question.
    Thanks
    Kenneth

    Kenneth,
    The Generic Database connector uses a JDBC connection and allows for the and writing to databases.
    That being said, you can also use this connection to set up access to the system or drop access using SQL commands and set them up per the framework.
    What specific Database are you working with?
    Matt

  • Newbie question about C coding and SDK for iPhone app

    Hello,
    I am interested in trying to create an app. However, I have NO experience writing code I already have downloaded and installed the latest version of the SDK.
    I know I have to learn: C, Objective C, and Cocoa.
    I just picked up "C for Dummies" as a starting point. I figured the K&R might be a bit overwhelming to start with. Thing is, "C for Dummies" suggests doing some exercises in Text Edit and then using GCC to compile and test. But, then again, it has a copyright of 2004--long before Snow Leopard.
    My question is, do I really need to do the exercises in Text Edit? Can I just use Xcode for entering the code and testing it? And, any suggestions for learning C and Xcode tutorials are greatly appreciated.
    Thanks!!

    But, I really want to learn coding and not just take the easy route by using Xcode.
    The simplification of using Xcode may have been a bit exaggerated throughout this thread. You will still learn how to program full-on by using Xcode -- it's not like you're taking a shortcut or anything. Well, technically speaking, you are, but Xcode is the expected way to develop on a Mac nowadays -- it's how Apple expects you to develop and how most people are doing so. Should you choose, you can taking a deeper dive into the inner workings of compiling and whatnot by using a text editor and the Terminal, but keep in mind that the extra complexities here could complicate the more important overall goal of learning the basics of how to program. There is absolutely nothing wrong with simply using Xcode for the novice part of your programming days. In fact, it's probably the path I would recommend. Some here might suggest that it is beneficial to learn the intricacies of compiling through the Terminal and whatnot early on, and they are right -- it is beneficial, but the benefits of taking a route (at least for the time being) that allows you to focus on the more pressing issues of learning how to program without having to delve too deeply can be just as beneficial. After all, it's not like you can't go back and learn how to compile via Terminal later on -- that's what I've done (or, rather, am in the process of doing).
    I always thought Terminal was something not to mess with.
    Not so much. Like most things in programming (or life, for that matter), the Terminal is something not to mess with +if you don't know what you're doing+. Basically, it breaks down like this. The GUI that Apple has created for you in Mac OS X (by GUI I mean "graphical user interface" -- the icons and windows and buttons and so forth that you use to perform tasks on your Mac -- in other words, everything outside the Terminal) is geared toward the common user who does not need to access advance aspects of the system's functionality. Consequently, it makes common tasks much simpler to perform, but in the process it hides some of the deeper levels of the system's functionality from the user. This is a good thing, since most people wouldn't know what to do with this functionality and would create problems for themselves if they did have easy access to it. However, for some users who know more about the inner workings of the operating system, there needs to be a way for them to access this functionality, so that they can do certain things (like accessing certain files and performing certain tasks) that they would not be able to do using the Mac OS X GUI -- that's what the Terminal is for. It allows the user to operate the system on a lower level. In other words, it allows you to get closer to the operating system. This is good in a way, because it allows you to perform tasks that you wouldn't otherwise be able to perform by giving you more control over the operating system, but it is also bad in a way, because it can allow you to mess up some of the deeper aspects of your system if you don't know what you are doing. Most people leave the Terminal alone for this reason, and because they have no need of it, but if you want to be a good developer, you're going to have to work with it sooner or later.
    Now, with all that being said, it's not that easy to mess things up using the Terminal. It's not like your system's going to crash if you misspell a command. All in all, the Terminal is very forgiving, but it will do what you tell it to do, even if you tell it to kill itself, and it is for that reason that you need to know what you are telling it before you try to tell it something. If you understand what you are telling the system, than operating on a lower level and being closer to the operating system is completely safe.
    The Mac OS X operating system is based around Unix, so when you are communicating more directly with the operating system by using the Terminal, you are interacting with its Unix core. For this reason, using the Terminal goes hand in hand with understanding Unix. So, if you're going to want to use the Terminal, then I recommend you get a good book on Unix to teach you the basics of Unix commands and shell programming and whatnot. Any book on Unix will do, since more or less everything you learn will be applicable to the Mac OS X's Terminal, but there are a few that are specifically directed to Mac OS X users, and that always makes things easier. Most of these books aren't updated to cover past Tiger, but this really doesn't matter (someone correct me if I'm wrong). A few examples are O'Reilly's "Learning Unix for Mac OS X Tiger" by Dave Taylor or Peachpit Press's "Unix for Mac OS X Tiger" by Matisse Enzer. Also, the book "Unix Programming Environment" by Kernighan and Pike is an excellent book on Unix, although fairly outdated, so I would highly recommend it, although I would recommend it as a supplement to another, more recent, Mac-based Unix book and not as your primary source for learning Unix. The skills you will acquire from these books will help you later if not sooner, so I recommend giving one of them a read at some point, whether you are planning on compiling using the Terminal right now or not.
    Anyways, I hope this helped to clear some of this up for you, and please let us know if you have any further questions.

  • Question about the New ACR Corrections for Tonal Range

    I find the new set of controls for tonal range in CS7 to be excellent! However, I am curious about what controls what. Black and Shadows work as I would expect but Highlight and Whites do not, at least in terms of traditional photography.
    Highlights and Shadows are grouped together as I would expect, Black and White also. But if we are to continue with that progression, White should control the clipping point and Highlights the values a 2 stops or so above middle gray. I would expect Highlights to be similar to Brightness in CS5 except better behaved. It's reversed. Highlights =Recovery in CS5
    It's confusing so I am suggesting that White control clipping and Highlight the upper values.

    Thank you Patti for your response.
    I think we are coming to this from different perspectives. Being so close to development of the current upgrade, I appreciate your insights as to how these controls work. I, on the other hand, am coming from long experience as a photographer and printer, exceeding 50 years at this point. So I have some legacy points of view, which is why I posted.
    I spent this evening looking more closely. Here is a summary.
    I messed with an excellent example for looking at this question, and I found something interesting. You can fix an image which already has clipping far easier with Highlights, but you cannot force an image with white values well below clipping into clipping using Highlights. The reverse is true with White. So, to fix a white clip, use Highlights, to force a white clip, use White.
    Blacks and Shadows are different. You can both force and fix a Black clip with Black, but Shadows, while possible, has much less range. So Shadows are kind of vernier on Blacks. This is different than  Whites.
    I was basing my OP on only fixing clipping points, that is, bringing an image out of clipping, but not forcing into clipping.
    So, indeed, what you and Jeff point out is closer to correct than my initial assertions. Yours are based on a broader range controls than possible in analog days. In naming these controls, one winds up with a foot in both the digital side and the old analog side, which gave rise to the names and the meanings.
    So thanks to both you and Jeff for taking this up. It forced me into looking more closely at my conclusions, and while they weren't wrong outright, they were inadequate to the present state of the technology. Sometimes, experience can actually get in the way!
    Lawrence

  • Question about Create Dimension

    Good morning,
    I am reading the Oracle Concepts document and on page 4-22 it presents a "CREATE DIMENSION" statement used to create the "customers_dim" dimension in the sample schema SH.
    The statement presented is:
    CREATE DIMENSION customers_dim
       LEVEL customer IS (customers.cust_id)
       LEVEL city IS (customers.cust_city)
       LEVEL state IS (customers.cust_state_province)
       LEVEL country IS (countries.country_id)
       LEVEL subregion IS (countries.country_subregion)
       LEVEL region IS (countries.country_region)
       HIERARCHY geog_rollup (
         customer CHILD OF
         city CHILD OF
         state CHILD OF
         country CHILD OF
         subregion CHILD OF
         region
      JOIN KEY (customers.country_id) REFERENCES country )
      ATTRIBUTE customer DETERMINES
        (cust_first_name, cust_last_name, cust_gender,
        cust_marital_status, cust_year_of_birth,
        cust_income_level, cust_credit_limit)
      ATTRIBUTE country DETERMINES (countries.country_name);When I issued the above statement (verbatim from the document), I got the following error:
    SQL> @customers_dim
    LEVEL customer IS (customers.cust_id)
    ERROR at line 2:
    ORA-30371: column cannot define a level in more than one dimensionI found the following using Google:
    Cause:     A column was used in the definition of a level after it had already
            been used to define a level in a different dimension.But, I don't see how the cust_id is defining a level in more than one dimension. There is probably a trivial error someplace but, I don't know enough yet about dimensions to figure it out.
    Help is appreciated, thank you,
    John.

    SB and Hoek,
    Thank you both. :)
    I will give Dion Cho's version in PL/SQL a try :)
    For those that might be interested, Dion Cho posted this link:
    http://yong321.freeshell.org/freeware/Windowsoerr.htmlwhere you can get the *nix version which is a perl script.  If you are on Windows and don't want to depend on perl and/or CIGWIN, the script can be compiled using perl2exe (as Yong Huang - the author - suggests on his web page).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Question about Windows Media plugin(s) for MBP

    I like to listen to baseball games via Gameday Audio at MLB.com; however, it seems that I am unable to do so using my MacBook Pro because their service requires a Windows Media Player plugin for your web browser, and the WMP installer does not install one.
    I tried installing Flip4Mac, but that's not universal yet, so I've come up empty. Any other suggestions as to how I can work around this problem and listen to the games?
    Thanks in advance,
    Crissy
    MacBook Pro 2GHz Intel Core Duo   Mac OS X (10.4.6)   1 GB DDR2 SDRAM

    I can't get Gameday Audio to play on my MacBook Pro either. I've intalled the Flip4Mac patch (via Rosetta); the Flash plugin; Windows Media Player; Firefox for Intel-based Macs. I've tried opening Safari in Rosetta. I've had some success playing free video and audio from Major League Baseball in both Safari and Firefox. But whenever I log into the subscription audio service, it fails. Firefox tells me, "Additional plugins are required" but, when I agree to install them, it informs me that "no suitable plugins were found." For its part, Safari says, "Some content on this page requires an Internet plug-in that Safari doesn’t support. The application “Windows Media Player” may be able to display this content. Would you like to try?" I do try, but WMP is never up to the task: the rainbow spinner goes round and round and Force Quit confirms that WMP is "not responding." I'm invariably reduced to pulling out my old computer to hear the game. I've talked to MLB about this, and suspect that their stock advice for Mac users does not yet take into account Intel-based Macs. Do I have to wait on Flip4Mac to produce a patch specifically for Intel-based Macs. Can anyone recommend anything else?
    MacBook Pro   Mac OS X (10.4.6)  

  • Questions about example "Dynamic JDBC Credentials for Model 1 and Model 2"

    Hello,
    i am trying to set up dynamic JDBC authentication in my ADF BC application - i want that it'll work like in Forms - a dababase user with the proper priveleges can log into my ADF BC application using his database login and password, and work with application.
    I've read the paper "How To Support Dynamic JDBC Credentials" at
    http://www.oracle.com/technology/products/jdev/howtos/10g/dynamicjdbchowto.html
    and test the very useful example, created by Steve Muench, which i've got from
    http://radio.weblogs.com/0118231/stories/2004/09/23/notYetDocumentedAdfSampleApplications.html#14
    The example works, but when i'm transfer its realisation in my application - it doesnt work the right way. The problems is the following:
    1. I can connect and work successfully only under the owner of the schema - the username and password of which i've wrote in the "jbo.server.internal_connection" string of the AM configuration.
    2. When i'm connecting under other users, which have all the rights to work with the db objects, used by application, i got the main page with the "Access Denied" message - as i have no priveleges to the tables.
    3. The big surprise is that if i am entering the fake username and password - the random letter combination - then i am getting the same behavior as in p.2 - the main page with the "Access Denied" message!
    And the last question is:
    4. Is it possible to set up the dynamic jdbc authentication using the build-in JDeveloper functions - i mean not to use that additional code, not override the ADF Binding Filter, and so on, but set up the similar behaviour (users log in using their db names and passwords) in several minutes following the standart documentation?
    Thanks in advance!

    One more question:
    I have 2 independent Application Modules in my application - to make the 2 transactions independent one form another, when working with different parts of project - and while using dinamic JDBC authentification, the user connects only in the first AM under the username he's entered, but the 2nd AM works under the predefined earlier (during development) connection for that AM.
    How can i make the 2nd AM to be connected under the logging in user (same as the 1rst AM)?

  • Question about using a PHP include for the head info...

    Hi,
    I'm currently using PHP includes for my site header and footer info.
    All my js/css files and meta declarations are in the head portion, which is in the header include.
    How would I go about giving each page its own individual TITLE if the modifiable content of my pages is inside the body only? Since we can't specify title inside the body, am I stuck with the same page title for each page on the website?

    Is it true that you header include file has the </head> and <body> tags embedded? It would seem a lot neater - and safer - to use two include files, one for the header and one for the body. That way, the <title> is not in either of them and you can do with it what you will.
    Barry

Maybe you are looking for

  • Problem with JSP and Java Servlet Web Application....

    Hi every body.... I av developed a web based application with java (jsp and Java Servlets).... that was working fine on Lane and Local Host.... But when i upload on internet with unix package my servlets and Java Beans are not working ..... also not

  • Profiles in Elements

    I Wish to get photos printed by a commercial printer who requires a Fuji profile to be attached to the images. Can you explain please how I can attach the profile to the images in Photoshop Elements. I have downloaded the profile onto my computer but

  • Goop and flow

    I'm starting to work with GOOP from endevo in labview. As I'm a beginner in both labview and GOOP (but I now OOP concept from C++) I'm wondering if it's better to use objects in the traditional flow program or if I have to try to use only objects and

  • Opening lightbox .js files in dreamweaver

    Trying to open the .js files downloaded for Lightbox. However dreamweaver will not open them, quoting various different Windows Script Host errors. Am I doing something really wrong here or could the downloaded files be corrupt? Thanks for your help.

  • 5800 v50 - camera on, but can't take pictures; wor...

    a pox on nokia for this shabby excuse of a firmware update may they have hot tar funnelled up their idiot-holes in a road cone right then today's problem with the v50 update is this: the camera stops working and requires the phone to be restarted to