Diagram of BW Architecture

Can someone help with a link to where I can find a detailed diagram that shows Bw architecture. The flow of information ( from source system through to  Infocubes).

hi,
try outthese links.
Architectural Overview
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/800a7bd4-7897-2910-c6b2-9ee791e9913c
BI Data Modeling
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/6ce7b0a4-0b01-0010-52ac-a6e813c35a84
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3668618d-0c01-0010-1ab5-aa75c3a4dfc2
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/2f5aa43f-0c01-0010-a990-9641d3d4eef7
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/dc43c445-0d01-0010-23a1-ca348ff5f975
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6090a621-c170-2910-c1ab-d9203321ee19

Similar Messages

  • Content MS - Architecture/Implementation

    Hi
    Can someone point me to a document which explanin the underlying architecture
    of the CMS. Whethr it uses Ejbs/classes/is the Data cached for the Content Operation
    (add/delete). I want to write my own interface for BEA Content Management (do
    not want to use BulkLoader OR myContent/Portal App tool). I am planning to develop
    my own server side classes using the Content API/classes but before that wanted
    to undestand the underlying arch of the CMS.
    Any help would be highly appreciated
    Pete

    pete, below is an example of how to create a content node, with a binary property.
    it also includes creating the content type (objectclass), which i don't believe
    you will need to do. hopefully this will help.
    repositoryMgr.connect();
    NodeOps nops = repositoryMgr.getNodeOps();
    ObjectClassOps ocops = repositoryMgr.getObjectClassOps();
    ID repId = new ID();
    repId.setRepositoryName(repositoryName);
    PropertyDefinition[] pds = new PropertyDefinition[1];
    pds[0] = new PropertyDefinition(repId, "binaryType", null, Property.BINARY,
    false, false, false, false, false, null);
    ObjectClass oc = new ObjectClass(repId, "schema", null, pds);
    oc = ocops.createObjectClass(oc);
    Node newNode = nops.createHierarchyNode(repId, "A");
    Property[] props = new Property[1];
    BinaryValue bv = new BinaryValue(mimeType, fileName, size, inputStream);
    props[0] = new Property("binaryType", new Value(bv));
    Node updatedNode = nops.addNodeContent(newNode.getId(), oc.getId(),
    props);
    "pete" <[email protected]> wrote:
    >
    James
    Thanx for your reply.
    I have been trying to take a look at the myContent portlet code but to
    be very
    honest with you it is too cluttered for me and I could not follow the
    jpf code
    however hard I try.
    It would be extremely helpful to me if you can provide some sample code
    which
    just connects to a repository and then does some Add/Update function
    on the CMs
    tables.
    Thanks, Pete
    "James Owen" <[email protected]> wrote:
    Pete, ok, so you want to configure your own repository (using the Portal
    CM Repository),
    then from a jsp, call your own classes that call the cm api, which will
    store/retrieve
    the content in the Portal CM Repository.
    In that case, you don't need to do anything with the SPI, you'll just
    be using
    the CM API.
    Just to clarify, when you "create" your own repository (using the Portal
    CM Repository),
    it doesn't really create a Repository, it just configures it, more like
    a jdbc
    connection. So if you delete the BEA Repository and then create your
    own, using
    the same Repository class (shift plus / will fill it in for you) your
    newly configured
    repository will point to the same tables that the BEA Repository did,
    so it is
    more like a rename.
    For api examples, I would suggest you take a look at the sample cm portlet
    code
    - not for best practices ;) - but it does give good examples of howto
    use the
    api to create content, search, etc. if it is doesn't address your specific
    questions
    then let me know.
    James
    "pete" <[email protected]> wrote:
    James, Thanks for the answers, Your Question
    sorry, i'm not following what you would like to do. if you are developing
    your
    own ui, then all you'll just need to use the API, if you would liketo
    expose
    your own repository to the Virtual Repository then you will need toimplement
    the SPI. what exactly is your goal?My goal is to have a UI(JSP) which in turn will call some functionsin
    a Server
    Side class for CRUD operation on a new Repository(with my <Application
    name> Repository
    instead of BEA Repository) in BEA PORTAL DB. Currently I do not have
    my Virtual
    repository, I just will use the BEA's virual repository and either
    rename
    it to
    <app>Repository OR will create a new repository in the BEA Portal DB.
    Do you think
    If I just write some functions in a server side class for Content Oprations
    using
    the API that should suffice OR I will have to implement SPI
    Also it would be extremely helpful if you could provide me with some
    sample code
    for connecting to a repository in BEA PORTAL DB and some function like
    adding/updating
    content in the that repository. You have been very helpful so far,thanks
    a bunch
    "James Owen" <[email protected]> wrote:
    "pete" <[email protected]> wrote:
    James
    Thanks for the diagram.
    1. From this it becomes clear that the Content SPI is a combinationof
    Entity
    and Session beans and the property set is a Facade pattern, am I
    correct
    in my
    understanding?
    this is true of the BEA Content Repository, which implements the Content
    SPI.
    2. If the Content Database it implemented as a Entity Bean (probably
    CMP) then
    is it safe to assume that it is cached?Yes, it is CMP and yes, the beans are cached with the default setting
    (1000).
    You can up the settings by cracking open the descriptor in content_repo.jar.
    3. what is the diff between BEA content SPI and Content SPI I am
    planning
    to develop
    the server side classes for Adding/Updating/Deleting Content in BEACMS
    (developing
    my own methods using content API), do you think it is safe to do
    it
    this
    way.sorry, i'm not following what you would like to do. if you are developing
    your
    own ui, then all you'll just need to use the API, if you would liketo
    expose
    your own repository to the Virtual Repository then you will need toimplement
    the SPI. what exactly is your goal?
    Pete
    "James Owen" <[email protected]> wrote:
    Pete,
    here is a diagram showing the architecture. are you planning on
    implementing
    the
    SPI? if so, i submitted a doc on dev2dev that describes the SPI.it
    hasn't
    been
    posted yet, so i can send it to you separately.
    James
    "pete" <[email protected]> wrote:
    Hi
    Can someone point me to a document which explanin the underlying
    architecture
    of the CMS. Whethr it uses Ejbs/classes/is the Data cached for
    the
    Content
    Operation
    (add/delete). I want to write my own interface for BEA Content
    Management
    (do
    not want to use BulkLoader OR myContent/Portal App tool). I amplanning
    to develop
    my own server side classes using the Content API/classes but beforethat
    wanted
    to undestand the underlying arch of the CMS.
    Any help would be highly appreciated
    Pete

  • [Java and all else] How do you document DB design?

    Hello,
    Although most of the technical choices are explicit in SQL (UniqueKey & ForeignKey constraints, indexes,...), the semantics of the data columns and their constraints seem better served as plain human-readable comments ("ID column: identifies the plane copy; 6 figures are enough as we don't expect to sell more than 1 million planes in a foreseeable future...").
    In my current system, (EJB-based, but the DB schema is not created by the JPA-compliant ORM, but via SQL scripts), I see the following ways to write and maintain this documentation:
    - SQL comments in the schema creation and patch scripts
    - Javadoc comments in the Java source of the Entity classes.
    - UML notes in UML diagrams(1)
    - external "Architecture and design" document.
    All 4 of them are used, sometimes inconsistently, for various parts of the design choices; I mean, the docs do not contradict themselves (not yet, but it's a mere question of time), but some tables are commented in SQL scripts, others are in design docs, and the details for some columns are in entity javadocs. Although each developer may find it handier to "write" the doc via his preferred medium, it becomes increasingly difficult to "maintain" theoverall documentation.
    Our current situation is that most of the project team members are Java developers, so it would probably be better accepted and served if we standardized that we document DB tables and columns in Java source, but I am worried that:
    - someone else pouring over our DB (ex: DBA helping us to optimize things, or other team developping a data-mining tool to leverage the historical data in DB) may not be as comfortable with Java
    - this may not cover all design choices of the DB schema:
    - - - - first, although that is the case currently, in the future there might not be a 100% 1-1 mapping between e.g. each entity class and a DB table. Maybe some columns will not need to be mapped anymore,...
    - - - - second, I fear some DB constructs are not amenable to Java counterparts; no accurate idea there, I'm not an SQL nor JPA expert, but I presume Indexes, table partitioning, tablespaces, for example (yes, the DBMS is Oracle :o) are not taken into account in JPA mapping.
    And if we document those choices at the SQL level (my preferred idea so far), this will gradually make the javadocs in the entities obsolete, or removed altogether, and that will make future maintenance of the Java source risky.
    How do you document your DB design in general?
    Do you have specific advices for my case?
    Thanks in advance,
    J.
    (1) Just for the record, here are a few posts that refer to modelling the DB in UML:
    [A post on this forum highlighting that UML 1.4 standardizes a notation for RDB modelling|http://forums.sun.com/thread.jspa?messageID=1383724#1383724]
    [A DB modelling tutorial|http://www.tomjewett.com/dbdesign/dbdesign.php] (not sure whether it leverages the standard mentioned above :o)
    P.S.: "Java and all else" as in, damn, I'd love to use the familiar JDC forums and people to discuss not only Java-related issues, but also [all other things that surround Java|http://forums.sun.com/thread.jspa?threadID=5422264&tstart=0] (other technologies, processes, people) and enable to make workable systems out of Java code.

    jduprez wrote:
    Thank you again.
    A couple more questions:
    2. Table, and proc dictionary maintained as one or more text files. Those files and schema are all in source control.Do you mean, a proprietary text format (a la tabledesign.txt), or +.sql+ source files? Again, you seem to suggest the scehma info is present in two locations.I didn't say two locations unless you meant files. Then yes.Yes I meant two files. I trust the team to get the doc file lagging a few revisions behind the SQL file, and to correct that I would have to include one more step in the review process (e.g. "review CM actions to check that the doc file is updated consistently with the SQL source").
    The tool I wrote would throw errors if the comment file didn't match the schema. And if comments were not provided. That of course doesn't stop someone from documenting a table with "a table".
    You can of course keep the addtional info as special comments in the SQL, but when I did this, and even in retrospect, it seems better and perhaps easier to keep them seperate. I have done special comments in SQL before and it seems a bit of a kluge but you do have the single source. But in that case I was the only one maintaining it too.What do you mean by "special"?For code generation I have a schema file with the following (pseudo sql.)
        create mytable
           mytable_id int,
           column_foo varchar(10);
           column_fum varchar(20)
            -- Query: for_a_query (column_foo, column_fum)
        )The generator consumes the schema and generates the standard CRUD which would include a query based on the primary key.
    The above comment is used to provide an additional query where the proc is named 'for_a_query' (munged with table name) and takes two parameters (column_foo, column_fum) whose type/name matches those of the table.
    If we don't try to generate a browseable HTML out of the schema (although the idea is appealing, I don't have the resource to make such a tool), do you see anything kludgy in maintaining SQL comments interpersed within DDL code?
    Of course that is doable.

  • Creating a Listener on Another Machine (WebServer)

    Hi,
    How can I create a listener on a server without a database installed ?
    I have a server (name: webserver) with an Internet IP Address (ex: 141.146.8.66) and a domain (ex: www.oracle.com). On another server on my LAN (name: dbserver) I have a database server with Oracle 8i installed and a listener on it. I have a database (db01) on dbserver.
    On my machine I have a tnsnames service configured pointing to the listener on dbserver. So I can connect to db01 using:
    conn scott/tiger@db01
    I want to create a listener on my webserver pointing to db01. So I can alter tnsnames pointing to www.oracle.com or 141.146.8.66 an thus connect from any machine with Internet Connection to my oracle database.
    Is it possible ? How can I do this ?
    Thanks.

    You would need to install Oracle Connection Manager on the web server machine and configure that to proxy connections to the database server. The Net Services Administrator's Guide has a diagram of this architecture http://download-west.oracle.com/docs/cd/B10501_01/network.920/a96580/intro.htm#444468
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • How to Test AIR 1.5

    Sorry if this seems slightly off center, but I blame Adobe, not myself. Trying to determine the true status and positioning of AIR amongst the various Flex forums and projects for an outsider is practically impossible. So, I will be brief. In September Mr. Chambers sent opened the flow by telling us that we could find FP10 integrated with Flex SDK in something you call 1.5 or Cosmo, or both. He was properly circumspect, so I didn't rush into it -- there was not even an ADL binary when I checked. Now it is November, the Trunk is at 4005, and ostensibly, everything we need to start trying to take advantage of FP support of 3D operations is out there. But where? Where do we get a version of AIR 1.5 that can be installed on a target desktop, so that we can try to run the ADT test cycle?
    Call it Gumbo, call it Flex4, call it whatever, but can someone tell us how to start testing it for AIR application deployment?
    Thank you.

    <DIV><FONT face=Arial size=2>I am sure you are right about an AIR application <br />being able to use Loader and SWFLoader.  I hope I have more or less figured <br />out the right way to do that.  But, I guess my point is that none of the <br />documentation I have been able to find anywhere would answer the question about <br />what to do with the framework and/or rpc files.  What, as far as you <br />understand it, is the correct way to manage the use of the A</FONT><FONT <br />face=Arial size=2>dobe swz files in an AIR application?</FONT></DIV><br /><BLOCKQUOTE <br />style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px"><br />  <DIV style="FONT: 10pt arial">----- Original Message ----- </DIV><br />  <DIV <br />  style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B> <br />  <A [email protected] href="mailto:[email protected]">Josh <br />  McDonald</A> </DIV><br />  <DIV style="FONT: 10pt arial"><B>To:</B> <A [email protected] <br />  href="mailto:[email protected]">[email protected]</A> <br />  </DIV><br />  <DIV style="FONT: 10pt arial"><B>Sent:</B> Monday, November 03, 2008 11:01 <br />  PM</DIV><br />  <DIV style="FONT: 10pt arial"><B>Subject:</B> Re: How to Test AIR 1.5</DIV><br />  <DIV><BR></DIV>A new message was posted by Josh McDonald in <br />  <BR><BR><B>Developers</B> --<BR>  How to Test AIR 1.5<BR><BR>I'm <br />  sure there's nothing stopping you from loading SWFs and SWZs and SWCs and <br />  loading them in AIR? Just treat them as normal files, and use whatever you <br />  please to push out updates etc?<BR><BR>-Josh<BR><BR>On Tue, Nov 4, 2008 at <br />  4:53 PM, Terry Corbet <SPAN dir=ltr>&lt;<A <br />  href="mailto:[email protected]">[email protected]</A>&gt;</SPAN> <br />  wrote:<BR><br />  <BLOCKQUOTE class=gmail_quote <br />  style="PADDING-LEFT: 1ex; MARGIN: 0pt 0pt 0pt 0.8ex; BORDER-LEFT: rgb(204,204,204) 1px solid">A <br />    new message was posted by Terry Corbet in<BR><BR>Developers --<BR> How <br />    to Test AIR 1.5<BR><BR>01.  Thanks, I will continue testing with ADL <br />    and hopefully be able to move up to a web-base, remote installation/update <br />    scenario in a couple of weeks.<BR><BR>02.  I'm sorry you feel that my <br />    failure to accept what may be 'intuitively obvious to you' -- that I can <br />    design and test a 3D front end to FMS that works the same in a native window <br />    as in a browser window -- indicates any lack of faith in what will be <br />    delivered.  So far, I have found subtle, important differences, and I <br />    am sure there will be others that will just have to be patiently tested <br />    before I get it right.<BR><BR>03.  So, I'm glad you asked about swz in <br />    an AIR environment because that is a whole topic for which I have not been <br />    able to find any discussion on any of the many fine forums you have.  I <br />    understand product marketing and product development, but I can't say that I <br />    ever managed those activities in the environment you have in which several <br />    large projects co-exist with lingering dependencies and even 'cultures' as <br />    diverse as you have with the various acquisitions that come together in the <br />    suite of products you have today.<BR><BR>So, I will simply state that I <br />    think no one seems to have recognized that your paradigm for 'desktop' <br />    versus 'web-based' software -- the essential distinction which seems to <br />    describe Adobe's description of an AIR versus a Flex application -- does not <br />    always hold.  I understand the general dichotomy, but it does not hold <br />    for my user base.<BR><BR>You have lots of design papers and lots of software <br />    devoted to 'reducing the burden' of ever-growing executables in the Flex <br />    framework by caching of your or our rsls.  That's a good idea. <br />     Why do you think it is not just as good an idea for an AIR <br />    application?  Probably because you think that an AIR application will <br />    either be shipped on a CD, or sent over the Internet, but relatively <br />    infrequently, so who cares if you have to ship out 10MBs or 2MBs? My user <br />    cares.<BR><BR>My user will get frequent updates to an ever-growing body of <br />    software called an application, and he will get them over those same slow <br />    bandwidth network links that the Flex user sees.  What's "good for the <br />    goose is good for the gander".  There is simply no reason not to <br />    architect the library of code that we use to cobble together the application <br />    and use the same intelligent caching mechanism in both environments.  I <br />    looked for a month for a white paper or discussion of how to 'modularize' an <br />    AIR app but all that you wanted to publish were white papers on how to <br />    'modularize' a Flex app.<BR><BR>I'm sure that you guys have a bunch of <br />    object diagrams and product architecture blueprints that you have memorized <br />    -- but that is not what we see 'outside the black box'.  What we see is <br />    a confusing distinction between the AIR efforts and the Flex efforts <br />    although the code base and efforts are substantially the same.  And if <br />    that is true from an internals point of view, put on your end-user hat and <br />    look at how we view a AIR/Flex app -- it is all one.<BR><BR>So, I develop <br />    the worlds greatest Juke Box and get it all going in Flex, then I move that <br />    into one Tab on one Screen in the AIR 'shell'.  Then some guys go off <br />    and mostly use AIR-unique code to add a Tab that allows Drag and Drop <br />    creation of Slide Shows accompanied by voice overs, and another set of my <br />    guys go off to add the 'Sudoku' module in just plain old Flex.  At some <br />    point in time in some ant task, we've got 10MB of code and X MBs of that is <br />    in one of our present [or future] swz files.  Where is the distinction <br />    that says I should just ask my users to download the whole shooting match, <br />    when what he really wants to do is just download whatever updated or new <br />    application modules [including any upgrades to your frameworks] when <br />    required.<BR><BR>So, it took some time, but today, my application is <br />    compiled with dynamic linking to the framework.swz, and when the user <br />    launches his AIR application on the desktop, the Flash Player, embedded in <br />    the AIR environment, is smart enough to find that it already has the <br />    necessary framework code and does not need to go back to the network to get <br />    it refreshed.  Actually, since I could never figure out how to use <br />    Module and ModuleManager, the method for solving the framework caching <br />    problem ended up just being an extension of what I developed for version <br />    management 'with continuous update' of my own swf files.  So, when the <br />    AIR shell starts up, it needs to test to see whether there is any updating <br />    to be done, or whether it already has locally available the 'latest and <br />    greatest' and that works the same for MyCute3DWizBang.swf or <br />    framework_3.1.0.2710.swz or framework_4.0.0.3988.swf.<BR><BR>If you take the <br />    point of view that a 'desktop application' doesn't need to do anything <br />    special to solve the problem of 'large file downloads', you end up thinking <br />    that there is no reason for an AIR application to take advantage of the <br />    frameworked cache when, in fact, almost all of that code is needed whether <br />    the execution thread starts in a 'WindowApplication' or just a plain old <br />    'Application'.  At least thats the cockamaymee point of view that I <br />    came to in the absence of any 'best practice' discussion of these key topics <br />    --  so far, it seems to be working pretty well, but as you can guess, <br />    testing across a network to a remote host that may or may not have the right <br />    version of AIR, or the right version of framework, or the right version of <br />    MyCute3DWizBang  is really more important than just testing against <br />    ADL. <BR><BR><BR>----- Original Message ----- From: "Matt Chotin" &lt;<A <br />    href="mailto:[email protected]" <br />    target=_blank>[email protected]</A>&gt;<BR>To: &lt;<A <br />    href="mailto:[email protected]" <br />    target=_blank>[email protected]</A>&gt;<BR>Sent: Monday, November <br />    03, 2008 8:39 PM<BR>Subject: Re: How to Test AIR 1.5<BR><BR><BR><br />    <BLOCKQUOTE class=gmail_quote <br />    style="PADDING-LEFT: 1ex; MARGIN: 0pt 0pt 0pt 0.8ex; BORDER-LEFT: rgb(204,204,204) 1px solid">A <br />      new message was posted by Matt Chotin in<BR><BR>Developers --<BR> How <br />      to Test AIR 1.5<BR><BR>The badge install doesn't work with debug, you can <br />      only use adl.exe right now.  But this should show how the whole <br />      system would work and really allow you to evaluate.  You know how the <br />      AIR install works with Air 1.1 (if not, use Flex 3.1 to target 1.1), I <br />      don't think seeing it with AIR 1.5 is critical to evaluate the features of <br />      the runtime at this point.<BR><BR>Air and the Flash Player are runtimes, <br />      and we've made it clear that AIR 1.5 would include FP10 features.  So <br />      when we say Flex will enable FP10, it should be obvious that when AIR 1.5 <br />      comes out Flex will support it in the same way.<BR><BR>I don't really <br />      understand what you're doing with the SWZ and AIR, there's no real need to <br />      use a cached framework when the whole app is going to be <br />      installed.<BR><BR>In any case, Air 1.5 should be out in 2 weeks hopefully <br />      so you'll be set then.<BR><BR>Matt<BR><BR>On 11/3/08 8:07 PM, "Terry <br />      Corbet" &lt;<A href="mailto:[email protected]" <br />      target=_blank>[email protected]</A>&gt; wrote:<BR><BR>A new message <br />      was posted by Terry Corbet in<BR><BR>Developers --<BR> How to Test <br />      AIR 1.5<BR><BR>Thanks for the quick turnaround.  Pardon my ignorance, <br />      but exactly what .exe<BR>file will install Air 1.5 on a system?  I <br />      don't find it anywhere.  I guess I<BR>can try to tear the ADL source <br />      apart to see how it mimics that behavior, but<BR>that is, at best, just a <br />      local test.  I think testing the whole Badge<BR>install sequence is <br />      essential, and would like to give it a try.  The longer<BR>we put <br />      this off, the longer we all just sit here trying to decide whether <br />      to<BR>stay with Papervision, Away, Sandy, or to use the graphics support <br />      in the<BR>Player.<BR><BR>I am busy making the dynamic link to the <br />      framework.swz work for Flex modules<BR>running under an AIR shell, and I <br />      doubt that I am alone.  There must be many<BR>of us who really see no <br />      distinction between AIR and Flex -- they just<BR>provide us two different <br />      ways to slice a problem, that's why it is so<BR>disconcerting to try to <br />      follow the threads on rapid Flex advancement with FP<BR>10, but almost <br />      nothing pertaining the doing the very same things with the<BR>AIR <br />      toolkit.<BR><BR>I hope you can tell me where to get the standalone AIR 1.5 <br />      installer that<BR>will me keep making progress with the debugging output <br />      reasonably well<BR>handled by Allesandros' FireFox tracer.  Many <br />      thanks.<BR><BR><BR>----- Original Message -----<BR>From: "Matt Chotin" <br />      &lt;<A href="mailto:[email protected]" <br />      target=_blank>[email protected]</A>&gt;<BR>To: &lt;<A <br />      href="mailto:[email protected]" <br />      target=_blank>[email protected]</A>&gt;<BR>Sent: Monday, <br />      November 03, 2008 7:55 PM<BR>Subject: Re: How to Test AIR 1.5<BR><BR><BR><br />      <BLOCKQUOTE class=gmail_quote <br />      style="PADDING-LEFT: 1ex; MARGIN: 0pt 0pt 0pt 0.8ex; BORDER-LEFT: rgb(204,204,204) 1px solid">A <br />        new message was posted by Matt Chotin in<BR><BR>Developers <br />        --<BR> How to Test AIR 1.5<BR><BR>Hi,<BR><BR>We're not doing a <br />        public beta of the release runtime for AIR 1.5.  You can<BR>use the <br />        debug runtimes that are part of the Flex nightly builds though<BR>(check <br />        the Flex 3 nightlies) to validate that AIR 1.5 will be right for<BR>you <br />        though.<BR><BR>Matt<BR><BR>On 11/3/08 7:38 PM, "Terry Corbet" &lt;<A <br />        href="mailto:[email protected]" <br />        target=_blank>[email protected]</A>&gt; wrote:<BR><BR>A new <br />        discussion was started by Terry Corbet in<BR><BR>Developers <br />        --<BR> How to Test AIR 1.5<BR><BR>Sorry if this seems slightly off <br />        center, but I blame Adobe, not myself.<BR>Trying to determine the true <br />        status and positioning of AIR amongst the<BR>various Flex forums and <br />        projects for an outsider is practically<BR>impossible.  So, I will <br />        be brief.  In September Mr. Chambers sent opened<BR>the flow by <br />        telling us that we could find FP10 integrated with Flex SDK <br />        in<BR>something you call 1.5 or Cosmo, or both.  He was properly <br />        circumspect, so<BR>I didn't rush into it -- there was not even an ADL <br />        binary when I checked.<BR>Now it is November, the Trunk is at 4005, and <br />        ostensibly, everything we<BR>need to start trying to take advantage of <br />        FP support of 3D operations is<BR>out there.  But where? <br />         Where do we get a version of AIR 1.5 that can be<BR>installed on a <br />        target desktop, so that we can try to run the ADT <br />        test<BR>cycle?<BR><BR>Call it Gumbo, call it Flex4, call it whatever, <br />        but can someone tell us<BR>how to start testing it for AIR application <br />        deployment?<BR><BR>Thank <br />        you.<BR><BR>________________________________<BR>View/reply at How to <br />        Test AIR 1.5<BR>&lt;<A <br />        href="http://www.adobeforums.com/webx?13@@.59b6ed86" <br />        target=_blank>http://www.adobeforums.com/webx?13@@.59b6ed86</A>&gt;<BR>Replies <br />        by email are OK.<BR>Use the unsubscribe<BR>&lt;<A <br />        href="http://www.adobeforums.com/webx?280@@.59b6ed86%21folder=.3c060fa3" <br />        target=_blank>http://www.adobeforums.com/webx?280@@.59b6ed86!folder=.3c060fa3</A>&gt; <br />         form to<BR>cancel your email <br />        subscription.<BR><BR><BR><BR><BR>------------------------------------------------------<B R>View/reply <br />        at &lt;<A href="http://www.adobeforums.com/webx?13@@.59b6ed86/0" <br />        target=_blank>http://www.adobeforums.com/webx?13@@.59b6ed86/0</A>&gt;<BR>Replies <br />        by email are OK.<BR>Use the unsubscribe form at<BR>&lt;<A <br />        href="http://www.adobeforums.com/webx?280@@.59b6ed86%21folder=.3c060fa3" <br />        target=_blank>http://www.adobeforums.com/webx?280@@.59b6ed86!folder=.3c060fa3</A>&gt; <br />        to<BR>cancel your email <br />      subscription.<BR></BLOCKQUOTE><BR><BR><BR>----------------------------------------------- -------<BR>View/reply <br />      at &lt;<A href="http://www.adobeforums.com/webx?13@@.59b6ed86/1" <br />      target=_blank>http://www.adobeforums.com/webx?13@@.59b6ed86/1</A>&gt;<BR>Replies <br />      by email are OK.<BR>Use the unsubscribe form at &lt;<A <br />      href="http://www.adobeforums.com/webx?280@@.59b6ed86%21folder=.3c060fa3" <br />      target=_blank>http://www.adobeforums.com/webx?280@@.59b6ed86!folder=.3c060fa3</A>&gt; <br />      to cancel your email <br />      subscription.<BR><BR><BR><BR>------------------------------------------------------<BR>Vi ew/reply <br />      at &lt;<A href="http://www.adobeforums.com/webx?13@@.59b6ed86/2" <br />      target=_blank>http://www.adobeforums.com/webx?13@@.59b6ed86/2</A>&gt;<BR>Replies <br />      by email are OK.<BR>Use the unsubscribe form at &lt;<A <br />      href="http://www.adobeforums.com/webx?280@@.59b6ed86%21folder=.3c060fa3" <br />      target=_blank>http://www.adobeforums.com/webx?280@@.59b6ed86!folder=.3c060fa3</A>&gt; <br />      to cancel your email subscription. <br />    <BR></BLOCKQUOTE><BR><BR><BR>------------------------------------------------------<BR>Vi ew/reply <br />    at &lt;<A href="http://www.adobeforums.com/webx?13@@.59b6ed86/3" <br />    target=_blank>http://www.adobeforums.com/webx?13@@.59b6ed86/3</A>&gt;<BR>Replies <br />    by email are OK.<BR>Use the unsubscribe form at &lt;<A <br />    href="http://www.adobeforums.com/webx?280@@.59b6ed86%21folder=.3c060fa3" <br />    target=_blank>http://www.adobeforums.com/webx?280@@.59b6ed86!folder=.3c060fa3</A>&gt; <br />    to cancel your email subscription.<BR></BLOCKQUOTE><BR><BR clear=all><BR>-- <br />  <BR>"Therefore, send not to know For whom the bell tolls. It tolls for <br />  thee."<BR><BR>Like the cut of my jib? Check out my Flex blog!<BR><BR>:: Josh <br />  'G-Funk' McDonald<BR>:: 0437 221 380 :: <A <br />  href="mailto:[email protected]">[email protected]</A><BR>:: <A <br />  href="http://flex.joshmcdonald.info/">http://flex.joshmcdonald.info/</A><BR>:: <br />  <A <br />  href="http://twitter.com/sophistifunk">http://twitter.com/sophistifunk</A><BR><BR><BR><br />  <HR align=left width=200><br />  View/reply at <A href="http://www.adobeforums.com/webx?13@@.59b6ed86/4">How to <br />  Test AIR 1.5</A><BR>Replies by email are OK.<BR>Use the <A <br />  href="http://www.adobeforums.com/webx?280@@.59b6ed86!folder=.3c060fa3">unsubscribe</A> <br />  form to cancel your email subscription.<BR><BR></BLOCKQUOTE>

  • OLAP cubes from heterogeneous data sources using XML DB

    hi.
    Q:1
    How we can create an OLAP cube (XML cubes) from XML data sources if using XML DB.
    Q:2
    How we can create an OLAP cubes from warehouses and flat files and covert these cubes into XML cubes.
    Q:3
    Is there any other tool (Except Analytical workspace manager AWM) which supports the construction of OLAP cubes in XML format from heterogeneous data sources?
    Edited by: user11236392 on Aug 21, 2009 3:50 AM

    Hi Stuart!
    Your undersatnding is partially correct. i am working for providing an architecture for XOLAP, XML is one of my data source.
    The idea is to generate uniform cubes from heterogeneous sources that can be integrated into a global cube. instead of building Oracle OLAP cubes from all the sources (this work is already done) i want to generate an XCube from XML data sources using XQuery.
    On the other hand if we have generated the Oracle OLAP cube from other sources like warehouses or flat files. i have to convert these Oracle OLAP cube into XML cube for uniformity. in an research paper i find that there is an operator Xcube embedded in XQuery which converts the multidimensional data (cube) into XML cube. im looking for the implementation of this operator in Query that how this operator works.
    hope u understand my architecture. but if u still have some confusion, kindly give me ur mail id. i will mail the diagram of my architecture.
    thanks.
    saqib

  • Specifying OLAP Cubes On XML Data

    Hi,
    is there any good example on how does OLAP handle XML data ?
    is it possible such a management in Oracle 9i Release 2 ?

    Hi Stuart!
    Your undersatnding is partially correct. i am working for providing an architecture for XOLAP, XML is one of my data source.
    The idea is to generate uniform cubes from heterogeneous sources that can be integrated into a global cube. instead of building Oracle OLAP cubes from all the sources (this work is already done) i want to generate an XCube from XML data sources using XQuery.
    On the other hand if we have generated the Oracle OLAP cube from other sources like warehouses or flat files. i have to convert these Oracle OLAP cube into XML cube for uniformity. in an research paper i find that there is an operator Xcube embedded in XQuery which converts the multidimensional data (cube) into XML cube. im looking for the implementation of this operator in Query that how this operator works.
    hope u understand my architecture. but if u still have some confusion, kindly give me ur mail id. i will mail the diagram of my architecture.
    thanks.
    saqib

  • What is a developer?

    If any of you would take the time in assisting to compile a list of questions, which can be asked during an interview, I would be grateful.
    The position would be an oracle developer; strong Pl/Sql skills, tunning knowledge, with some DBA skills. One of the other skills needed is the ability to work with 'prima-dona' GUI developers (most with only VB as their language of choice).
    Any, questions would be greatly appreciated.

    V:
    Tom Kyte has a few that he likes to ask (search "Interview Questions" on asktom). One is to have the candidate draw a diagram showing the architecture of an Oracle instance, showing the background processes and the memory structures and how they interrelate. The second set deal with basic sql knowledge. He asks:
    I have a table, t with columns ( ..., month_no, ....). The month_no column contains values from 1 to 12 and there may be multiple values for any month_no.
    1. What sql statement would I use to find out how many rows are in the table?
    2. What sql statement would I use to find out how many rows there are for each month_no?
    3. What sql statement would I use to find which month_no has the most rows? For bonus points, tell me why this question is ambiguous.
    I recently interviewd 9 candidates for an intermediate DBA position and used these questions. A couple of the candidates were OCP, and all of them claimed past experioence, many of them in a development environment.
    Only one candidate answered question 1 correctly without having to think, two others got it with some prodding. Only one candidate got number 2 correct, and that took a little prodding. No one got number three at all, although the candidate who got 1 and 2 made a reasonable stab at it, and might have corrected himself with a chance to actually run the query he came up with.
    We asked these questions early in the interview. The ones who did not get question 1 had very short interviews.
    John

  • Oracle BPM 10g architecture diagram

    Hi,
    Could you please anyone share the Oracle BPM 10g architecture diagram. Please send to my id : [email protected]
    Regards,
    Anandh P

    Hi Daniel, Thanks a lot for posting the Architectuer details. We now know how the fantastic product works internally. Would you mind posting the newer version of the document? Thanks in advance.

  • Need a Sample GRC 10.1 technical architecture Diagram

    Hi All,
    I need a sample GRC 10.1 technical architecture Diagram for a quick presentation. Let me know if you could help or provide a document where i could refer and use it. Time is very short to prepare a architecture now.
    Thanks for your replies in advance.
    Regards
    Mani.

    Hi Mani,
    you can search for Pre-installation guide for GRC 10. which has below link
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/0024bb74-4d4e-2e10-82ad-ff2ccb79ad63?overridelayout=t…
    Regards
    plaban

  • Looking for BPM Enterprise Edition architecture Diagram

    I am looking for a BPM Enterprise Edition architecture Diagram showing how all the pieces (e.g. BPM, Oracle DB, LDAP directory, WebLogic server, Application server etc.) fit together . If it is available on the internet, can you please let me know the URL ?
    Thanks in advance.

    I have several diagrams you could use but can't paste it in. The product docs on oracle.com have some but if you need something else maybe I can help. I do not publish my email on this site so we would have to find another channel to communicate.
    Cheers,
    IGS

  • Oracle 11g R2 Architecture Diagram

    Hi,
    I trust this is the right way to go about the following
    Few years ago I created an architecture diagram for 10g. I have now updated that diagram to include new features of Oracle 11g. Obviously there is so much one can detail in one page PDF Architecture diagram. It is in draft stage so I will appreciate any feedback on the diagram before I release it to the community. I have not released it on any website yet as I am keen on direct feedbacks. Anyone who is interested please send me an email to [email protected] and I will forward the diagram for their comments.
    Regards,
    Mich

    Have you seen Oracle's interactive diagram?
    Oracle's URLs are subject to sudden change without any user-friendly redirection, but current URL is:
    http://www.oracle.com/webapps/dialogue/ns/dlgwelcome.jsp?p_ext=Y&p_dlg_id=9575302&src=7027600&Act=54

  • Architecture diagram oem 9i

    I am looking for the architecture diagram of Oracle 9i OEM to put that in a document. Can anyone help me.
    Thanks

    send me an email. I have an doc with a picture.
    Can't remember the metalink URL so I'll just forward the doc.
    [email protected]

  • Sample Oracle EBS R12 physical/architecture layout diagram

    Hello!
    Anyone can share sample Oracle EBS R12 Physical/architecture layout diagram?
    Primarily I am looking for a sample diagram that shows mid-tier..concurrent managers/reporting nodes/load partitioning and database nodes

    user10229350 wrote:
    First you stop responding with unnecessary links which are of no help.
    Hussein's comment in this thread was spot-on correct.
    Multi-posting is poor forum etiquette at best and outright rudeness that exhibits arrogance at worst.
    Your other thread has an appropriate response that directs you to the product's documentation.
    That documentation exists to guide you how to use the product as designed.
    This thread is locked.

  • SAP IDM 7.0/7.1 Project Plan and Architecture Landscape Diagrams

    Need help in identifying whether there is anybody that has a generic project plan along with resources needed  in implementing IDM 7.0/7.1. I am also looking for a generic landscape diagram. Any help would be appreciated.

    Matt,
    Interesting question and one that I think we can answer, but we need a few specifics first (even for a generic)
    1. Are you using 7 or 7.1?  This is a biggie since there are big differences in implementation.
    2. What's your source for Identity data?  What are your targets?  Even a basic of (Source is HR, targets are ERP, LDAP and badging app)
    3. What workflows are you implementing? 
    4. What is your development approach? Dev / QA / Prod?  This can be important too.
    For architecture info, take a look at some of the documents available from SAP.
    Anyway, a very generic would be:
    1.0 Identify requirements
    1.1 Sources
    1.2 Targets
    1.3 Workflows
    2.0 Development Environment
    2.1 Install Core Components
    2.2 Install IdM
    2.3 Connector creation
    2.3.1 Source (X)
    2.3.2 Target A
    2.3.3 Target B
    2.4 Workflow creation
    2.4.1 Notification Tasks
    2.4.2 Self Service Tasks
    2.5.3 ...
    2.6 Unit Testing
    3.0 QA
    Feel free to contact me if you have further questions

Maybe you are looking for

  • How do I use Dreamweaver CC 2014.1 Live View to copy complex formatted text into web page?

    Since Design View has been removed from Fluid Grid Layouts, and could be removed completely in next upgrade, I cannot use Live View to place complex text into my web pages. Our business requires the listing of complex job descriptions on our web page

  • I think my wife has lost all her data after Restoring incorrectly .. can anyone help? I will add a longer explanation

    Help ... My wife got an old laptop working again today. On there was an iTunes which she hadn't used for a year or more. 1. Marie plugged her 6 month old iPhone 4s into iTunes (the first time she had done this) 2. iTunes said she needed v 10.5 or abo

  • Removing namespace prefixes

    I am familiar with the XmlOptions.setUseDefaultNamespace() to remove the namespace prefixes on the XML generated by my XMLBean. However, how do I specify which namespace prefix should be removed (if my XMLBean contains multiple namespace prefixes)? T

  • Video content disappeared!

    Big problem. All my video content (various encoded TV shows and movies) present in my iTunes Music | TV Shows folder is now gone. In fact, the TV Shows folder is gone! (Thank God for Time Machine.) How did this happen? I erased my iTunes Libraries an

  • Cs4 problem with link text changing size when clicked

    designing in cs4, the actual text of my text links become huge for a split second when clicked, and then they go back to normal size.  I don't know what is causing this.  I don't want them to change when clicked.  Any ideas?  thanks in advance.