Does Information Designer Tools's aggregate awareness function support OLAP

Hi...
Does Information Designer Tools's aggregate awareness function support OLAP ??
Thanks

To see which ODBC function DG4ODBC is looking for and unixODBC isn't supporting it would be best to get an ODBC trace file. But as your unixODBC driver (unixODBC-2.2.11-10.el5) is outdated and these old drivers had a lot of issues when being used on 64bit operating systems (for example wrong sizeofint etc). So best would be to update the unixODBC Driver manager to release 2.3.x. More details can be found on the web site: www.unicodbc.org
- Klaus

Similar Messages

  • Add Ranking in the Information Design Tool

    Regarding: Information Design Tool Version: 14.0.6.v20130408-1036  
    Question 
    Where do I find documentation about how to use the "Add Ranking" functionality that appears as an icon in the Information Design Tool / Query Panel / Query Filter pane?  

    Hi,
    See attached doc for to understand the Add Ranking functionality and it is in the Webi Query panel.
    Ranking data in web intelligence report.
    Amit

  • How to use recursive in Information Design Tools?

    Hi all,
    I want to use recursive for count number of employee in each organization. I write code something like this.
    with EmpCTE as
          select RootID = D.ORG_CD , D. ORG_CD, D .ParentOID
          from  (SELECT     CURRENT_LEAF as ORG_CD ,
                   D .DATE_KEY AS DateKey,
                        CASE WHEN LEAF_LEVEL = 1 THEN LEVEL0
                                   WHEN LEAF_LEVEL = 2 THEN LEVEL1
                                   WHEN LEAF_LEVEL = 3 THEN LEVEL2
                                   WHEN LEAF_LEVEL = 4 THEN LEVEL3
                                   WHEN LEAF_LEVEL = 5 THEN LEVEL4
                                   WHEN LEAF_LEVEL = 6 THEN LEVEL5
                        END AS ParentOID
           FROM [BISIPH_HR]. [dbo].[ORG_HIER_STD] H , MST_DATE_DIM D
           where 1= 1
           and D. DATE_KEY between BEGDA and ENDDA
           and D. DATE_KEY between C_L1_BEGDA_KEY and C_L1_ENDDA_KEY
           and D. DATE_KEY between C_L2_BEGDA_KEY and C_L2_ENDDA_KEY
           and D. DATE_KEY between C_L3_BEGDA_KEY and C_L3_ENDDA_KEY
           and D. DATE_KEY between C_L4_BEGDA_KEY and C_L4_ENDDA_KEY
           and D. DATE_KEY between C_L5_BEGDA_KEY and C_L5_ENDDA_KEY
           and D. DATE_KEY between C_L6_BEGDA_KEY and C_L6_ENDDA_KEY
           and D. DATE_KEY between C_L7_BEGDA_KEY and C_L7_ENDDA_KEY
           )   D
          where 1= 1
          AND DateKey = 20140101
          union all
          select EmpCTE. RootID, D .ORG_CD, D.ParentOID
          from (
            SELECT   CURRENT_LEAF as ORG_CD,
                   D .DATE_KEY AS DateKey,
                        CASE WHEN LEAF_LEVEL = 1 THEN LEVEL0
                                   WHEN LEAF_LEVEL = 2 THEN LEVEL1
                                   WHEN LEAF_LEVEL = 3 THEN LEVEL2
                                   WHEN LEAF_LEVEL = 4 THEN LEVEL3
                                   WHEN LEAF_LEVEL = 5 THEN LEVEL4
                                   WHEN LEAF_LEVEL = 6 THEN LEVEL5
                        END AS ParentOID
           FROM [BISIPH_HR]. [dbo].[ORG_HIER_STD] H , MST_DATE_DIM D
           where 1= 1
           and D. DATE_KEY between BEGDA and ENDDA
           and D. DATE_KEY between C_L1_BEGDA_KEY and C_L1_ENDDA_KEY
           and D. DATE_KEY between C_L2_BEGDA_KEY and C_L2_ENDDA_KEY
           and D. DATE_KEY between C_L3_BEGDA_KEY and C_L3_ENDDA_KEY
           and D. DATE_KEY between C_L4_BEGDA_KEY and C_L4_ENDDA_KEY
           and D. DATE_KEY between C_L5_BEGDA_KEY and C_L5_ENDDA_KEY
           and D. DATE_KEY between C_L6_BEGDA_KEY and C_L6_ENDDA_KEY
           and D. DATE_KEY between C_L7_BEGDA_KEY and C_L7_ENDDA_KEY
           ) D
          inner join EmpCTE on D .ParentOID = EmpCTE.ORG_CD
          AND D. DateKey = 20140101
    select distinct
    ORG_DIM.ORG_CD
    , ORG_DIM. ORG_DESC_T
    , EmpCTE. ParentOID
    --, EMP_DIM.EMP_CODE
    , cnt. Child
    , cntemp. ChildEmp
    from MST_EMP_DIM EMP_DIM
    INNER JOIN TXT_EMP_ORG_FACT EMP_ORG_FACT ON EMP_ORG_FACT .EMP_KEY = EMP_DIM.EMP_KEY
    INNER JOIN MST_ORG_DIM ORG_DIM ON ORG_DIM .ORG_CD = EMP_ORG_FACT.ORG_CD
    INNER JOIN EmpCTE ON EmpCTE .ORG_CD = ORG_DIM.ORG_CD
    INNER JOIN TXT_EMPLOYMENT_FACT EMPLOYMENT_FACT ON EMPLOYMENT_FACT.EMP_CODE_KEY = EMP_ORG_FACT.EMP_CODE_KEY
    INNER JOIN (
           SELECT ORG_CD = RootID, Child = COUNT (*)
           FROM EmpCTE
           GROUP BY RootID
    ) cnt ON cnt.ORG_CD = EMP_ORG_FACT. ORG_CD ------------------ ¹Ñº¨Ó¹Ç¹ ORG ·ÕèÍÂÙèãµé ORG »Ñ¨¨ØºÑ¹
    INNER JOIN (
           SELECT ORG_CD = RootID, ChildEmp = Count (*)
           FROM EmpCTE
           INNER JOIN TXT_EMP_ORG_FACT EMP_ORG_FACT ON EmpCTE .ORG_CD = EMP_ORG_FACT.ORG_CD
           INNER JOIN MST_EMP_DIM EMP_DIM ON EMP_ORG_FACT .EMP_KEY = EMP_DIM.EMP_KEY
           INNER JOIN TXT_EMPLOYMENT_FACT EMPLOYMENT_FACT ON EMPLOYMENT_FACT.EMP_CODE_KEY = EMP_ORG_FACT.EMP_CODE_KEY
           WHERE 1= 1
           AND 20140228 BETWEEN EMP_ORG_FACT.ORG_ASSIGN_START_DT_KEY AND ORG_ASSIGN_END_DT_KEY
           AND 20140228 BETWEEN EMP_DIM.EMP_START_DATE_KEY AND EMP_DIM.EMP_END_DATE_KEY
           AND 20140228 BETWEEN EMPLOYMENT_FACT.START_DATE_KEY AND EMPLOYMENT_FACT.END_DATE_KEY
           AND EMP_ORG_FACT. EMP_ASSIGN_PAYROLL_AREA_CD IN ('Z1', 'Z2')
           AND EMPLOYMENT_FACT. EMPLOYMENT_STATUS_KEY = 3
           GROUP BY RootID
    ) cntemp ON cntemp.ORG_CD = EMP_ORG_FACT. ORG_CD
    WHERE 1= 1
    AND 20140228 BETWEEN EMP_ORG_FACT.ORG_ASSIGN_START_DT_KEY AND ORG_ASSIGN_END_DT_KEY
    AND 20140228 BETWEEN EMP_DIM.EMP_START_DATE_KEY AND EMP_DIM.EMP_END_DATE_KEY
    AND 20140228 BETWEEN EMPLOYMENT_FACT.START_DATE_KEY AND EMPLOYMENT_FACT.END_DATE_KEY
    AND EMP_ORG_FACT. EMP_ASSIGN_PAYROLL_AREA_CD IN ('Z1', 'Z2')
    AND EMPLOYMENT_FACT. EMPLOYMENT_STATUS_KEY = 3
    ORDER BY EmpCTE.ParentOID
    and result
    I want to create ChildEmp object for display in web-i report. How can i use recursive in Information Design Tools? or Do you have other solution for this?
    Thank you for your advise.
    Notto Zung

    Hi,
    NoDim is a function of the Bex query formula ,  so you can't delegate that to the cube.
    What object is, and what are you trying to do.   For example,  Sales, and trying to leave out Currency attribute.
    You can do an awdful of customizing  in a Business Layer or Data Foundation,  that is where your solution where probably come from.
    Regards,
    H

  • Data Federator and Information Design tool

    Hi,
    First, Can Data Federator be a single data source for Information Design Tool?
    Second, from performance point of view, using Information Design tool to build multi-sources Universe or building Universe on Data Federator, which way is better?
    Thanks

    Hi,
    let me explain :
    in BI 4.0, the Data Federator Query Server engine is now part of the server-side Adaptive Processing Server .
    You only invoke this architecture when you select "Multi Source Enabled" -  any other entry point is NOT using the Data Federation Service.
    So - if you select SingleSource -  that's not using DF.
    However, it is entirely possible to select "Multi Source Enabled" then only use 1 connection in the MSU !!
    Having said the above,  Your second question doesn't make sense.
    Unless you mean, using the Data Federator middleware driver in BI 4.0 IDT, to connect to an XI 3.1 Data Federator Query Server?   (i.e. consuming the 'old source' in the new enviornment)   
    This backwards compatibility was delivered to facilitate transition of DF customers, especially since there is no standalone DF product in BI 4.0 (yet)
    I trust this is of use to you.
    Regards,
    H

  • Where can I find the 'club' database sample used in the 'Information Design Tool' tutorials?

    Hi experts!
    I have been studying the tutorials for the Information Design Tool (http://scn.sap.com/docs/DOC-8461) and in some of them they use a database called 'club'. For what I see, this is an Access 2007 database and has some tables called City, Region, Customer, etc. I have been searching it across the web and have not found it.
    Hope somebody knows where I can find this sample.
    Thanks in advance!

    Hi Julio,
    You should be able find it in following locations
    If you are on 64 Bit OS
    C:\Program Files (x86)\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\Samples\webi
    If you are on 32 Bit OS
    C:\Program Files\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\Samples\webi
    Kuldeep

  • WEBI error with multi-line descriptions for a Business Layer in information Design Tool

    help from Anyone on my problem described below would be greatly appreciated! 
    I'm working with Information design tool and am building a Business layer on top of my universe to prevent a clash of context in my query.
    I want a description on my business layer that explains the need for two business layers in this universe.
    The problem is entering data into the description of a business view
    I need to be able to put in line breaks or the user can't even read the description of the business view.
    If anyone could help I'll be very grateful.
    However this is how it looks in WEBI when I start to create reports. (the original snapshot is two monitors wide by the way)
    the text entered into the field is as exactly as follows:
    I have Descriptions that Explain the Business Layer so they need to be typed out with paragraphs and word wrap.
    Like this. Notice the line break?
    Oh wait What happened? let me try another line break.
    Did that work? ...
    No maybe <\br>
    or \n
    or \n\r ?
    or char(13)char(10)
    or 0x0a
    or 0x0D
    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi convallis arcu quis libero sagittis, vel pulvinar velit pretium. Praesent vehicula luctus justo in laoreet. Aenean blandit eros eget nisi aliquet, et placerat elit convallis. Nam non adipiscing velit. *** sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vestibulum a porttitor quam. Suspendisse vulputate eros nunc, ut vestibulum nunc feugiat eget. Phasellus interdum quam vitae quam posuere mattis quis ac elit. Curabitur fringilla justo vel elit lacinia, ac sollicitudin velit sodales. Nunc eget nulla id augue suscipit molestie ut nec nulla. In libero neque, commodo sit amet eros a, viverra aliquam nulla. Sed blandit magna eu orci pellentesque dictum.
    Vivamus urna est, tincidunt sit amet nisi vitae, placerat sodales dui. Donec a sapien tincidunt, auctor mi ut, ullamcorper sem. Sed viverra lobortis nisl at tincidunt. Integer at odio mollis, scelerisque leo vel, fermentum felis. Morbi ultrices magna neque, vel adipiscing urna dictum sit amet. Nullam quam felis, imperdiet quis nunc ut, pretium feugiat tellus. Etiam id auctor augue. Proin id feugiat ligula. Vestibulum congue ligula quis dui porta vehicula. Morbi at sem velit. Morbi vehicula dui nibh.
    Quisque eu imperdiet odio, quis scelerisque lacus. Aenean tortor odio, sagittis in urna id, porttitor convallis neque. Suspendisse eget suscipit nibh. Nullam tincidunt ornare eleifend. Phasellus laoreet molestie luctus. Nulla sit amet semper arcu, quis iaculis velit. Mauris a molestie magna. Ut id eros in diam viverra suscipit. Sed gravida elit vel est imperdiet interdum. Maecenas tempus dolor lectus, id aliquet ligula scelerisque vitae. Praesent pulvinar, velit id fringilla porttitor, massa neque aliquam sem, in tincidunt erat tortor et arcu. Nullam hendrerit condimentum faucibus. Fusce arcu odio, lacinia vel malesuada eget, malesuada eget felis. Praesent venenatis vestibulum ante ut pharetra.

    Bump.
    I still need a Solution to this problem.

  • Aggregate aware function is failing.

    Hi,
    I have 2 Contexts from which I am retrieving data.
    Context 1:
    In this Context I have Table1(T1), Table2(T2), Table3(T3). Where joins are as follows:
    T1->T2->T3
    Context2:
    In this Context I have Fact table(FT1) where joins are:
    FT1->T2
    I have created a Measure where I have applied Aggregate Aware as follows:
    @Aggregate(T1\m1,FT1\m1)
    Now,
    When I use Dimension created on T3 with this measure it creates 2 queries as follows:
    Q 1: select d1 from T3
    Q 2: select m1from FT1
    Its not getting redirected to measure created on T1.
    We have couple of more contexts similar to above in universe and it works fine with it. However, not sure why its not working in this case.
    Thanks in advance for your help.

    Hi Bona,
    This link will help you
    http://events.asug.com/2011ASBOUC/5004_Implementing_Aggregate_Awareness_in_SAP_BusinessObjects.pdf
    Derived table are created at the universe level.
    1. They are usually created to fetch results from tables using a complex
    logic condition.
    2. To get the Max/ Min date for the data set. Usually used to find the Latest
    Data date or Oldest data date etc.
    3. Its not a good idea to uses them to aggregate data
    Regards
    Mustafa

  • Aggregate aware function

    Hi,
    is it possible to apply aggregate aware funtion to derived table
    Regards,
    Rao

    Hi Bona,
    This link will help you
    http://events.asug.com/2011ASBOUC/5004_Implementing_Aggregate_Awareness_in_SAP_BusinessObjects.pdf
    Derived table are created at the universe level.
    1. They are usually created to fetch results from tables using a complex
    logic condition.
    2. To get the Max/ Min date for the data set. Usually used to find the Latest
    Data date or Oldest data date etc.
    3. Its not a good idea to uses them to aggregate data
    Regards
    Mustafa

  • Why does the move tool and the resize function freeze when I insert pictures to a layer?

    This is very annoying. I was stupid enough to buy a one year subscription to Photoshop CC, only to find that it is ruining my happiness. I am trying to run it on a brand new Macbook Pro 15 retina i7 running Yosemite, and everything works fine, except for this one thing - when I drag a new photo into a layer, the resize function and the move tool stops working for a very long time. If I am patient enough, the functions will finally wake up. Is there a way to get around this problem?  I have searched the forum without any luck, and I am just about to start jumping up and down, calling Adobe by names that will make my neighbors cover up their ears. $/!"%%#/&%"#W)!ÆY!!!

    Right-mouse on the Synaptics toolbar icon  to bring up Mouse Properties, select the Device Settings tab, press Settings to bring up Properties for Synatpics ClickPad, on the left open Pointing... Sensitivity... Palm Check.  This is a feature to prevent accidental touchpad movement by your palm while you're typing.  So it prevents use of the touch pad when keys are directly used.
    Good luck!

  • Information design tool issues

    Hello All,
    I have several questions related to IDT...
    1. IDT is now showing business layer and data foundation layer in 2 different tabs.
    2. I am unable to view associated tables and values.
    3. how can i get the defalut view of my IDT universe where my business layer and data foundation layer are not in 2 different tabs...this way i cannot see associated tables and views.
    4. I am unable to drag and drop objects from my table in DFL to business layer...how do i resolve this
    Any help greatly appreciated.

    Hi Pali,
    DF and BL in IDT does open in different tabs when we try to retrieve a published unx from repository.
    I am unable to undesratnd your second point , it would be helpful if you attach some screenshots.
    In IDT there is option under Window--> Reset to DEfault Display , may be this would help you with the deafult view
    Thanks,
    Sneha

  • Creating a Universe on Bex Query --- Information Design Tool 4.0

    Hi,
    I am creating a Universe on a BeX Query, based on my understanding from the documentation i dont have to create a data foundation layer and i can directly call the connection in the Business Layer.
    when I create a business layer and select OLAP connection (BICS connection), I get an error "this connection is not supported".
    I was trying to look for a solution but i haven't found anything yet. Did anyone else encounter this issue. Please Share.
    Regards,
    Sheikh Hassan Ayub

    HI there,
    I read somewhere that the support for BEx Queries are done via Relational Connection.  However, the BICS connection is only available via OLAP connection.
    I was able to successfully create an OLAP Connection with BEx Queries.  However when I do a Business Layer with this OLAP connection it says ERROR, not supported.
    I havent tested creating a relational and thus having a Data Foundation yet as I am still have issues with my installation with ports.
    Anyway, let me know if you are able to create a relational connection.
    I'd be interested to hear your experience.
    Regards,
    Iris
    P.S. the connection needs to be published.
    Edited by: Iris Co on Nov 2, 2011 6:18 PM

  • Help need on syntex of condition using Information Designer Tool 4.0

    I am new to BO.   Here is an illustration of the needs:
    1. I have a table mytab (col1, col2, col3). 
    2. add a custom dimension, called "mydim"
    3. click on SQL assistant to bring up SQL expression editor on "mydim".
    4.  Here what I need to do to define the outcome of mydim:
       *if value of col1 starts with 'A' then mydim=col1*
       *else if col2 starts with 'B' then  mydim = col2  and col1 concadnated else col3. .*
    I would appreciate help on the exact syntex to achive this.   Thx

    case when col1 like 'A%' then col1 when col2 like 'B%' then col1+col2 else col3 end
    try out this option if your database in sql server. If your backend database is oracle then use || instead of +symbol in the above syntax.
    one more this you need to consider is the priority of the conditions in the case statement. for example is there any possibility of getting rows with  col1 values starting with A and also col2 values starting with B , in that case which one u need to display

  • URGENT: Connecting BPC 10.0 with BI4.0, with Universe Design Tool

    Hi all,
    I have quite an urgent question that I need some guidance from all you SAP gurus on!
    Is it possible to connect BPC 10 to BI4 using Universe Design Tool? We are under the impression very few people have connected these pieces of software together, if at all. It is very important to a Project I am on at the moment as to whether it is possible so any advice would be very much appreciated.
    So far we have done..
    Software is installed - Universe Design Tool (UDT)
    Logins have been created for BPC 10
    Opened up UDT and go through the Wizard;
    Connection name is BPC CCONNECTION
    Select data access driver: Business Planning and Consolidation OLE DB for OLAP
    Enter the server address for BPC 10 (This is the URL that we log in to the BPC Admin Console)
    After we try to continue, we get the error as follows:
    [Image of error|http://s9.postimage.org/pxk8raci7/UDT_Screen1.jpg]
    If anyone could give any kind of advice I would really apprecaite it!
    Nick

    Hi Nick,
    If you are trying to connect BPC 10 NW to BI 4.0 then I have some suggestions. We did this in our SAP EPM 10 training. In the Admin go to the model tab , select your model and edit it. Select the check box Use as a source. This creates a transient query in the backend.. Then we designed the connection in IDT (Information Design tool). Login to IDT and create a new project. Now Right click on the project and create a new OLAP connection. Select SAP BICS as driver selection. Provide the server details and user aunthetication. Select specify a cube in connection option. Now You can select your model <MODELNAME>_B folder and u will see one query with /CPMB/TQ_XXXX. Test your connection and publish your connection to repository . Now you can use this connection for creating Interactive Analysis (Webi Report). I am not sure about the reporting client you wish to use.
    Hope this Helps
    Regards
    Nikhil

  • JDeveloper902 as a DB-design tool ?

    Hello JDeveloper forum,
    At KMS we are evaluating JDeveloper902 to see, whether it can be used as a DB-design tool for reverse and forward engineering of our DataBases. I have been warned, that the UML-parts in JDev. are kind of fringe benefit.
    However at KMS we have (amongst others) Oracle9i Spatial databases, wherein some tables have attributes of
    - SDO_geometry (Spatial)
    - Abstract Data Types (user defined at KMS)
    and my trial runs show that JDev does reverse and forward engineer such attribute types correctly. No other DB-design tool seems able to do it as well, and hence I am keen on using JDev for DB-design.
    But I have found some problems with JDev and was advised to seek assistance in this forum.
    My questions are as follows
    ===========================
    1) Forward engineering by right click on a package -> create database objects seems to overwrite (drop) my existing table of the same name. This is disastrous as we risk loosing tables containing millions of rows. I really just want to alter the table by fx. adding a new column. Is it possible for JDev. to just create a DDL-script instead?
    2) Can the associations be shown as zig-zag lines instead of stright lines in the class diagram?
    3) Is it possible to move text labels an an association? This is very desirable to avoid overlap, when 2 associations link the same 2 classes.
    Background information.
    =======================
    We are seeking a DB-design tool to
    - reverse eng. each of our production DataBases being Oracle9i Spatial, Oracle8, Informix or Ingres into a design spec.
    - maintain the DB-design spec. for each DB
    - forward eng. changes in the DB-design spec. to take effect in the production DB
    - design new DataBases to future applications
    - forward engineer a new DB-design into a Oracle9 DataBase
    We prefer using UML a class diagram when doing DB-design as that is the output of DataModelling at KMS.
    - Thanks in advance,
    Jens Ole Jensen
    Kort & MatrikelStyrelsen (WWW: http://www.kms.dk)
    Danmark

    Jens,
    Sorry to disappoint you but Synchronize functionality is meant to be used when you've made changes to the database and you want them reflected in the business components. There is currently no functionality in JDeveloper which will generate the 'alter table' statements that you require. JDeveloper is currently in the process of implementing a Database Modeler which will hopefully allow you to do what you want but currently there is no idea what future version of JDeveloper this will be available in.
    In the mean time to work around the issue (although time-consuming) would be to export your data, do the generation and then import your data again.
    The other alternative is as previously suggested would be to use Oracle Designer, which would easily be able to keep your diagram and database properly in sync. You would need to validate that it can handle your attribute types. Designer also gives you the option of generating DDL or generating straight to the database. Even though Designer is not UML compliant, it does have very good modeling capabilities especially in the area you are interested in.
    Hope that helps,
    Lisa

  • How to use SOA Suite in conjunction with SOA Analysis and Design Tools

    Hi everybody,
    I am a novice in this field and I need some help regarding integrating analysis and design tools with SOA Suite.
    We used to analyze and design with Oracle Designer and use its powerful form generator to develop a system. It almost covered all the software lifecycle and kept the traceability between anlaysis,design and implementation.
    I have studied about the SOA concepts and read some papaer about SOA Suite. I have also installed the SOA demo based on SOA Suite and I found it absolutely amazing, but my problem is that It seems oracle does not have any tools for SOA Analysis and Design. am I right? if so, How can we analyze and design a system based on SOA concepts and implement it using soa suite in such a way that keeps traceability? What tools is used for this purpose?
    It seems that IBM have some tools like Rational Software Architect and Rational Suite which enable people to design and analyze based on SOA concepts and then generates some pieces of code (like oracle designer in old days) but is it possible to design in these tools and then generating codes for SOA Suite ? (for example generating a bpel file from a design model)
    As I told before I am a novice in this field and I would be so grateful if other users can share their expriences regarding this matter.
    Any help would be highly appreciated.
    Thanks in advance,
    Navid

    Learn About All Things SOA:: SOA India 2007:: IISc, Bangalore (Nov 21-23)
    Aligning IT systems to business needs and improving service levels within the constraints of tight budgets has for long been the topmost challenge for CIOs and IT decision makers. Service-oriented Architecture (SOA) provides a proven strategy to clearly address both of these objectives. Creating more agile information systems and making better use of existing infrastructure are two leading factors that are boosting SOA adoption across large, medium, and small Indian industries from the BFSI, Retail, Telecom, Manufacturing, Pharma, Energy, Government and Services verticals in India. If you are an IT decision maker belonging to any of these verticals, SOA India 2007 (IISc, Bangalore, Nov 21-23 2007) presents a unique opportunity to gather cutting-edge business and technical insights on SOA and other related areas such as BPM, BPEL, Enterprise 2.0, SaaS, MDM, Open Source, and more.
    At SOA India 2007, acclaimed SOA analysts, visionaries, and industry speakers from across the world will show you how to keep pace with change and elevate your IT infrastructure to meet competition and scale effectively. The organisers are giving away 100 FREE tickets worth INR 5000 each to the first 100 qualified delegates belonging to the CxO/IT Decision Maker/Senior IT Management profile, so hurry to grab this opportunity to learn about all things SOA. You can send your complete details, including your designation, e-mail ID, and postal address directly to Anirban Karmakar at [email protected] to enrol in this promotion that is open until 12 October 2007.
    SOA India 2007 will also feature two half-day workshops on SOA Governance (by Keith Harrison-Broninski) and SOA Architecture Deep Dive (by Jason Bloomberg). If you are an IT manager, software architect, project leader, network & infrastructure specialist, or a software developer, looking for the latest information, trends, best practices, products and solutions available for building and deploying successful SOA implementations, SOA India 2007’s technical track offers you immense opportunities.
    Speakers at SOA India include:
    •     Jason Bloomberg, Senior Analyst & Managing Partner, ZapThink LLC
    •     Keith Harrison-Broninski, Independent consultant, writer, researcher, HumanEdJ
    •     John Crupi, CTO, JackBe Corporation
    •     Sandy Kemsley, Independent BPM Analyst, column2.com
    •     Prasanna Krishna, SOA Lab Director, THBS
    •     Miko Matsumara, VP & Deputy CTO, SoftwareAG
    •     Atul Patel, Head MDM Business, SAP Asia Pacifc & Japan
    •     Anil Sharma, Staff Engineer, BEA Systems
    •     Coach Wei, Chairman & CTO, Nexaweb
    •     Chaitanya Sharma, Director EDM, Fair Isaac Corporation
    A partial list of the sessions at SOA India 2007 include:
    •     EAI to SOA: Radical Change or Logical Evolution?
    •     BPEL: Strengths, Limitations & Future!
    •     MDM: Jumpstart Your SOA Journey
    •     Governance, Quality, and Management: The Three Pillars of SOA Implementations
    •     Building the Business Case for SOA
    •     Avoiding SOA Pitfalls
    •     SOA Governance and Human Interaction Management
    •     Business Intelligence, BPM, and SOA Handshake
    •     Enterprise 2.0: Social Impact of Web 2.0 Inside Organizations
    •     Web 2.0 and SOA – Friends or Foe?
    •     Achieving Decision Yield across the SOA-based Enterprise
    •     Governance from day one
    •     Demystifying Enterprise Mashups
    •     Perfecting the Approach to Enterprise SOA
    •     How to Build Cost Effective SOA. “Made in India” Really Works!
    For more information, log on to http://www.soaindia2007.com/.

Maybe you are looking for

  • Why does the drag and drop context menu always popup when dragging files between windows explorer instances ?

    I have fusion 7.1.1 on an iMac 27 inch retina. 32GB ram of which 6GB assigned to Fusion and 2 cores. Windows 7 Home Premium installed. Mostly working fine but a few funnies. First and foremost: Whenever I drag and drop between instances of windows ex

  • Use of functions

    The use of functions - a function with other selects (eg. calculate availability of a part) - is slowing down our system when we do a select over our product file. Is there some kind of rule when functions should be used or when we should try to crea

  • PLE500 as a Single Item?

    I recently received my PLEK500 pair of powerline adapters.  Installation was simple, and throughput is good considering I'm using seperate circuits.  Now that I've proven that this technology will work for me, I'd like to expand to ONE additional loc

  • How do I get my PPD to Adobe ?

    When I am printing out of illustrator (and Photoshop for that matter) I cannot choose the PPD option of Adobe (8.0 etc). Could anyone enlighten as to how I get this setting ?

  • Lightroom 5 will not open with Creative Cloud

    I bought Creative Cloud with the purpose of using Lightroom 5 but after it downloaded the setup page started and asked for a serial number which does not come with the creative cloud membership and the only other option is for a trial period (obvious