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

Similar Messages

  • 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

  • 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

  • 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

  • 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.

  • 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

  • WYSIWYG GUI design tool for the JavaFX platform

    hi can anyone help me where to download this tool (WYSIWYG GUI design tool for the JavaFX platform) ?

    gimbal2 wrote:
    rukbat wrote:
    gimbal2 wrote:
    That's a different question entirely dude. Open a new thread with a proper title and be sure to give more information than you're giving here; the exception you get and the code that "does not work" is especially important.They already had a new thread, four minutes before trying to hijack their own issue here.
    Ensemble  Example :  Minimize, Maximize  (pbm)  after drag and move
    Hopefully they'll reply to themselves over there with sufficient information for someone to give a proper reply.I object to this behavior. Someone should nuke something.Consider it done.
    This thread is locked because the O.P. has mucked it up.

  • 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/.

  • How I can set ORG_ID context (for Oracle Apps Views) in ODI designer tool?

    Hi All,
    I want to get data from apps views (like OE_ORDER_HEADER_V) into our data warehouse detination table using ‘Oracle Data Integrator’ tool.
    The issue is that when I reverse Oracle Table or Synonym directly, everything works fine i.e. after 'Interface' execution, I can see how many rows imported into destination table from this source Oracle table/synonym.
    But when I use Apps view as a source then 'Interface' executes fine with ‘no error’ but NO rows imports to the destination table.
    I believe, the only difference is that I am not able to set Org_Id before executing ODI interface so it is not picking the data.
    Please let me know the steps/instructions to set org_id context on apps view then reverse in ODI Designer tool.
    Please note that I can set org_id using SQLPlus successfully as given below (and see data using the same Apps view). What to do in ODI designer tool to achieve similar data:
    begin
    fnd_global.apps_initialize(0, 21623, 660);
    mo_global.init('ONT');
    end;
    -- connect using apps/apps at Vision SQLPlus
    -- User_Id -> 0 (<-- SYSADMIN )
    -- Responsibility_Id-> 21623 (<-- Order Management Super User )
    -- Application_id -> 660 (<-- ONT )
    -- select count(*) from oe_order_headers_v where rownum < = 100
    I would appreciate your quick help in this.
    Thanks in advance.

    Set org context in 11i:
    ===============
    The SQL command to set the ORG_ID prior to running a script is:
    SQL> execute dbms_application_info.set_client_info(&org_id);
    Enter the org_id when prompted.
    If using Toad
    Begin
    fnd_client_info.set_org_context(&org_id);
    End;
    Set org context in R12
    ================
    The SQL command to set the ORG_ID prior to running a script is:
    SQL> exec mo_global.init('AR');
    exec mo_global.set_policy_context('S','&org_id');
    Enter the org_id when prompted.
    The procedure - mo_global.set_policy_context has two parameters
    p_access_mode & p_org_id
    p_access_mode Description
    S In case you want your current session to work against Single ORG_ID
    M In case you want your current session to work against multiple ORG_IDs
    p_org_id: Only applicable if p_access_mode is passed value of "S"
    If using Toad
    Begin
    mo_global.set_policy_context(‘S’, &org_id);
    End;

  • Errors when compiling the web service (SAP Web Service Design Tool)

    After downloading and installing the SAP de Web Service Design Tool (for Crystal Reports Server) I created a connection, a simple query and was able to deploy a web services. I tested the web service with an Xcelsius dashboard within InfoView. Thereafter I created a second connection (other name but same ODBC connection / server) and created another simple query with two date(range) parameters and a group by year and month function in order to do a select count(). It executes fine, but when I try to publish the web service I get an error.
    There are errors when compiling the web service.
    Is does not say whatu2019s wrong or how I can solve this problem.
    Who can help me?
    Some notes:
    1) Within expert mode I used a MONTH() SQL function which does not show in the normal mode.
    2) It seams that the u2018administrationu2019 of Web Service Design Tool got u2018corruptedu2019 after only creating the two connections, queries and services mentioned above. I believe so because I could select one of two queries when I created the second service, but within the current connection I had only one query.
    Thanks for any help,
    Ron
    ADDITIONAL INFO: The parameters seam to be the problem. After removing the parameters I can publish the service. But without parameters it is NO SOLOTION.
    Edited by: RonKoudijs on Aug 26, 2010 6:28 PM

    Hello Taylan,
    I think the error that you received was due to packaging issues.I placed the
    UtilClass.java file under a directory called data which was present under
    the project directory.
    When you want to access a java class, you can either place the compiled
    class file in the WEB-INF/classes folder or you can place the java file
    under the project directory.
    I have attached the sample project that I created with your files.
    Let me know if you have any other questions.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "taylan" <[email protected]> wrote in message
    news:3d6351b0$[email protected]..
    >
    I am trying to write a simpe web service in WebLogic Workshop, but havingan error
    which I could not understand. Could you please help me? Thanks in advance.
    Regards,
    Taylan
    My web service code is like belows:
    import weblogic.jws.control.JwsContext;
    import data.*;
    public class WebService1
    /** @jws:context */
    JwsContext context;
    * @jws:operation
    public UtilClass testType(UtilClass tTest){
    UtilClass returnObj=new UtilClass();
    if(tTest.getName()!= null){
    returnObj.setName(tTest.getName());
    return returnObj;
    and my UtilClass is placed in the data directory under the same directorywith
    my web service code. It is a simpe class as belows:
    package data;
    public class UtilClass
    private String name;
    public void setName(String name){
    this.name=name;
    public String getName(){
    return name;
    However I got an error when I try to compile the webservice class. Theerror is
    like belows:
    File Line Message
    WebService1.jws 0 Resource found on system classpath: data.UtilClass
    Build complete - 1 error(s), 0 warning(s)
    [ngroup.zip]

Maybe you are looking for