Example required

what would be scenario when it is <b>file to idoc and idoc to JDBC[/b
can any one explain me in what cases these can be implemented..
i have to give a demo to the client...and if they where can u implement in our compnay....then i should suggest them...
<b>About the company:</b>
it is FMCG Company....it has got branches allover...
can anyone explain me what is that i should say them...
null

HI,
FIle -- XI -- IDoc
In general , from file data / legacy systems or EDI systems to SAP R3 then we will use this type of scenarios. so Also updating the Master data, customer data, Orders related Sales , Purchase Orders, delivery, CRM, Bank, custoer idoc related data into SAP R3.
Idoc --Xi -- JDBC
In general SAP R3 data like explained above will be moved to SQL server or Oracle database or AS400 or DB or similar kind of Database in such situations we will use this, say for example the storage locations or plant using the old database, so we should transfer the SAP R3 data to such database,
See the below links
/people/prateek.shah/blog/2005/06/08/introduction-to-idoc-xi-file-scenario-and-complete-walk-through-for-starters
/people/ravikumar.allampallam/blog/2005/06/24/convert-any-flat-file-to-any-idoc-java-mapping
File-XI-IDoc Scenario
/people/anish.abraham2/blog/2005/12/22/file-to-multiple-idocs-xslt-mapping
/people/yining.mao/blog/2006/09/13/tips-and-tutorial-for-sender-jdbc-adapter
Receiver JDBC scenario - /people/sameer.shadab/blog/2005/10/24/connecting-to-ms-access-using-receiver-jdbc-adapter-without-dsn
/people/ajay.kumar/blog/2005/03/24/writing-bsp-for-sap-r3-version-46
/people/sugree.phatanapherom/blog/2005/08/14/configuring-sld-in-sneak-preview-sap-netweaver-04-sneak - SLD preview
/people/sanyam.kapur/blog/2005/04/30/custom-fields-and-bw-extractors-making-a-mixed-marriage-work-part-ii
Regards
Chilla

Similar Messages

  • Connection String example required using ODAC 10.2

    Hi All,
    Apologies if this has already been covered...
    I have a .net app running on W2K3 SP2 x86. It uses an Oracle 10G (10.2.0.4) database backend running on Redhat Linux x86_64.
    I have two oracle client homes on the app server; one for full admin (10.2.0.4), the other for ODAC 10.2.0.2. The default home is the ODAC client.
    Normally, I would use the following conn string in my web.config;
    Data Source=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS =(PROTOCOL=TCP)(HOST=MYHOST.MYDOMAIN.LOCAL)(PORT = 1521)))(CONNECT_DATA = (SERVICE_NAME=MTDB)));User ID=MY_USER;Password=MYPASSWORD;
    This works just fine. But now, I have a requirement to use Kerberos authentication.
    I have configured Kerberos for the database, client and Active Directory successfully and have verified all the parameters and that I can connect to the database using the Windows credential successfully - well, at least from the Full Admin home. I have mirrored config changes the ODAC home (obviously updating any absolute file path references).
    However, now I need to update the above connection string in web.config to use Kerberos. This is where I am struggling... Can anyone provide me with an example? I have not made any changes to web.config yet.
    Many thanks, Richard.

    Ok - I didn't need to raise a ticket with Oracle. Trial and error resolved this.
    1. If you are using IIS, then you need to ensure that the identity account for the App Pool is set to the same credential used to authenticate against the database (in much the same way as one would for authenticating against a sql database). Remember to add the credential to the IIS_WPG group on the app server.
    2. For the Website properties / Directory Security tab; depending on your requirements, enable/disable anonymous access tick-box and the Integrated Windows Security tick-box. I am not using Single Sign-ON for the application yet, so I enabled the anonymous access tick-box and set the credential to match the database credential.
    3. If you are using a FULL ADMIN Oracle client home, then use this connection string "Data Source=MyDatabaseName; Integrated Security=SSPI;"
    If you are using ODAC, then use this connection string "Data Source=MyDatabaseName; User Id=/;"

  • Query by Example requires PK?

    I have a table with an id for the primary key. It has two fields with ids from other tables, and each has a foreign key to that other table. There is a unique constraint on the combination of these two foreign key fields. In Java, I have a class with two attributes that are mapped as one-to-one relationships to the other two classes. When I run the following code, TopLink generates the illustrated SQL:
    public static BookPageJoin select(Session ersSession, Book aBook, Page aPage) {
         BookPageJoin example = new BookPageJoin();
         example.setBook( aBook );
         example.setPage( aPage );
         ReadObjectQuery query = new ReadObjectQuery(example);
         return (BookPageJoin)ersSession.executeQuery( query );
    DatabaseSession(289)--Connection(295)--SELECT LOCKVERSION, OBJECTID, ORDER_INDEX, BOOK_ID, PAGE_ID FROM BOOK_PAGE_JOIN WHERE (OBJECTID = NULL)So, even though my example query is based on the two related objects, TopLink is building a query based on the primary key, which of course I haven't set on the example object. I tried both the above and just passing the example object to session.readObject, with the same results.
    If I go into the mapping workbench (in JDev 9.0.5.2) and tell TopLink that the two fk fields are the pk, then the Query by Example works.
    It seems like a notable limitation if the QBE requires that you set the pk attribute(s) on the example, and in the doc it just said I could use any attribute that was direct-to-field or one-to-one.
    What am I missing here?
    (BTW: I know I could map the many-to-many between Book and Page without having a domain object for the join table, but in this case the join also has an order attribute on it.)

    The Query API that is being used will not perform a QueryByExample(QBE) query. It will simply perform a primary key query based on the PK of the provide object. To perform a simple QBE query use the following API:
    new ReadObjectQuery(example, new QueryByExamplePolicy());
    Please see the JavaDocs for oracle.toplink.queryframework.QueryByExamplePolicy for specific configuration options.
    --Gordon

  • NIO with SSLEngine API - Simple example required

    Hi
    I am trying to implement a NIO Server with SSL Engine based implementation. I went through the Https server given in the samples provided with jdk 5.0. But that is little bit more complicated (uses Handlers and other associated functionality). what I am looking for is a simple example program which can elucidate the SSL Engine API operations and the bare minium code to execute a simple Client Server communication through SSL Engine. I know it has a long learning curve, just thought if somebody has researched well and posted an article/tutorial in this regard, it would be really helpful for novice programmers like me. Please help with some sample programs..
    Thanks

    Unfortunately the bare minimum is extremely complicated. The JSSE samples contain some simplistic NIO code but it barely works, and doesn't cope with useClientMode=true at the server, or with re-handshakes.
    There is some PD code out there if you can find it, and also several discussions in the Secure Sockets forum.
    There is also an entire chapter on it in my book http://www.telekinesis.com.au/wipv3_6/FundamentalNetworkingInJava.A21.

  • Generic extraction example required

    hi guys,
    can anybody plz give a real time scenario for Generic extraction, give it in detail, i have to explian the same in interview?
    points will be given
    thanks and regards..

    Hi,
    check the following
    http://help.sap.com/bp_biv235/BI_EN/html/bw.htm
    business content
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/biw/g-i/how%20to%20co-pa%20extraction%203.0x
    https://websmp203.sap-ag.de/co
    http://help.sap.com/saphelp_nw04/helpdata/en/37/5fb13cd0500255e10000000a114084/frameset.htm
    (navigate with expand left nodes)
    also co-pa
    http://help.sap.com/saphelp_nw04/helpdata/en/53/c1143c26b8bc00e10000000a114084/frameset.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/fb07ab90-0201-0010-c489-d527d39cc0c6
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/1910ab90-0201-0010-eea3-c4ac84080806
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ff61152b-0301-0010-849f-839fec3771f3
    LO Extraction
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f83be790-0201-0010-4fb0-98bd7c01e328
    Check these links:
    /people/sap.user72/blog/2004/12/16/logistic-cockpit-delta-mechanism--episode-one-v3-update-the-145serializer146
    /people/sap.user72/blog/2004/12/23/logistic-cockpit-delta-mechanism--episode-two-v3-update-when-some-problems-can-occur
    /people/sap.user72/blog/2005/01/19/logistic-cockpit-delta-mechanism--episode-three-the-new-update-methods
    /people/sap.user72/blog/2005/02/14/logistic-cockpit--when-you-need-more--first-option-enhance-it
    /people/sap.user72/blog/2005/04/19/logistic-cockpit-a-new-deal-overshadowed-by-the-old-fashioned-lis
    Re: LO-Cockpit  V1 and V2 update
    Also Refer this link:
    http://www.sap-img.com/business/lo-cockpit-step-by-step.htm
    FI-CO 'Data Extraction -Line Item Level-FI-CO
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/a7f2f294-0501-0010-11bb-80e0d67c3e4a
    FI-GL
    http://help.sap.com/saphelp_nw04/helpdata/en/c9/fe943b2bcbd11ee10000000a114084/frameset.htm
    http://help.sap.com/saphelp_470/helpdata/en/e1/8e51341a06084de10000009b38f83b/frameset.htm
    http://www.sapgenie.com/sapfunc/fi.htm
    FI-SL
    http://help.sap.com/saphelp_nw2004s/helpdata/en/28/5ccfbb45b01140a3b59298c267604f/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/41/65be27836d300ae10000000a114b54/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/ee/cd143c5db89b00e10000000a114084/frameset.htm
    Please reward for the same.

  • Name Of Component or Link To Example Required

    Hi, gentlemen and ladies.
    I need to the name of the component at the bottom of this Image.
    I've tried google with the following options: ButtonBar, Carosel Bar, DockPanel, Rocket Dock (swing) etc, without much luck. Also, aside the name, if anyone has an idea of such a swing component which has already been developed, I would kindly like a link to the project or download page.
    Thanks in advance for any help provided
    ICE

    Sorry, not JToolBar.
    I found out on the other thread (posted by accident) that it is an OSX Dock.
    No more post should be made to this thread, this thread should be used instead.
    Thanks
    ICE

  • LV 8.6 library function in an example is not found

    Several "examples" in LV 8.6 include a particular library function that is not found when I load the example VI. Where can I find this function? I have an "example" of one of the vi's attached containing the mystery function.
    Thank you,
    Chuck
    Solved!
    Go to Solution.
    Attachments:
    Error Handling callingVI.vi ‏20 KB

    Additional info: The Information text box on the Example Finder provides descriptions for the examples. If an example requires a toolkit and you don't have it installed, it will tell you.
    Attachments:
    toolkit missing.png ‏3 KB

  • Associating requirements in my Word Document with NI Gateway

    What do I need to do in order to associate
    requirements in my Word Document with NI Gateway? I have created a MS
    Word Style defined as Requirement_ID and Requirement_Text and applied
    them to their respective parts of the document but when I load the
    document in NI Gateway I get no response.

    jstrong -
    You could customize the Word NIRG Type to add a new Requirement element which uses a regular expression to parse Table information.
    When you include requirements in a Table, NIRG parses that information into the intermediate file in the form of |d Requirement_ID     REQX: blah, where "|" specifies the beginning of a new cell in the row and d specifies the cell number.
    Please take a look at the attached project which is a modification of the NIRG Word example. You'll notice that I use a custome Type called Word1 to load the Word Example - Requirements.doc file.
    Hope this helps!
    Manooch H.
    National Instruments
    Attachments:
    Word.zip ‏44 KB

  • Example "Designing Component-Based Web Dynpro Applications" in NWDS 7.1

    hi,
    importing Designing Component-Based Web Dynpro Applications.zip into NWDS 7.1, I get ~ 200 errors.
    after repairing the projects (in WEB-Dynpro View) ands migrating, there are 76 errors:
    Component 'CustomersUIComp': Used component/component interface is missing: ComponentInterfaceImplementation com.sap.cd355.comp.adv.modelcomp.ModelCompInterface Hint: Check availability of public part archive     LocalDevelopmentcd355compadvui_final~sap.com/src/packages/com/sap/cd355/comp/adv/ui/customers     CustomersUIComp.wdcomponent     ModelComponent     1240309796017     1800
    TextView 'city_editor.text': Context attribute 'CustomersView.Customers.Address.city' does not have a type and cannot be bound to a UI element. Hint: Remove the binding or bind a context element matching the property's type.     LocalDevelopmentcd355compadvui_final~sap.com/src/packages/com/sap/cd355/comp/adv/ui/customers     CustomersView.wdview     text     1240309796032     1821
    ViewUsage 'com.sap.cd355.comp.adv.ui.customers.CustomersUICompInterfaceViewCustomersUIComponentUsage1': Embedded View/InterfaceView is missing. InterfaceView com.sap.cd355.comp.adv.ui.customers.CustomersUICompInterfaceView Hint: Repair Window     LocalDevelopmentcd355compadvmaster_final~sap.com/src/packages/com/sap/cd355/comp/adv/master     MasterComp.wdwindow     Unknown     1240309796503     1823
    hermann

    Seems like your example requires some other DCs as well, which don't appear to be part of the zip you mentioned.

  • UCCX 8.0 and 8.5 RAM or memory requirements

    All,
    I reviewed the document:
    Cisco Unified Contact Center Express (Cisco Unified CCX) Software and Hardware Compatibility Guide
    Cisco Unified Contact Center Express and Cisco Unified IP IVR
    Last Updated: June 22, 2011
    I see where it list the hardware model types.  I am working to verify a customer actually has the right server and it is becoming a bit frustrating.  I am not on site and do not currently have remote access.  Can anyone tell me how much memory and what size drives need to be in a 7825 to support UCCX 8.0 or UCCX 8.5?
    The customer claims he has an MCS 7825-I5 but he only has 2GB of memory installed and I thought UCCX 8.5 for example required 4GB of memory.
    Regards,
    David

    Hi,
    It looks like that 2GB RAM is enough. We've got a MCS-7825-I4-CCX1 and this is according the hardware compatibility matrix a supported hardware. These Servers ship all with 2GB Ram.
    It looks like but i am not sure so far - coming weekend i will see if this is really working.
    Or does anyone else knows for sure that 2GB Ram will be enough?
    regards,
    Bernhard

  • Toplink Error when opening example CMP in Deployer

    I am starting the Deployer with the following dos cmd file:
    C:\weblogic\classes>java -classpath c:\weblogic\bin\oci815_8;.\server.jar;.\xml.jar;"C:\weblogic\lib\weblogic510sp5.jar;
    .;C:\weblogic\eval\cloudscape\lib\cloudscape.jar;C:\weblogic\eval\cloudscape\lib\tools.jar;C:\weblogic\lib\weblogicaux.j
    ar;C:\weblogic\classes;C:\WLSLabs\classes";c:\weblogic\license;E:\ora8\jdbc\lib\classes12.zip;E:\ora8\jdbc\lib;c:\TOPLin
    k\TOPLinkforWebLogicDemos;c:\TOPLink\TOPLinkforWebLogicDemos\tutorials\ejb\cmp\employee;c:\TOPLink\TOPLinkforWebLogicDem
    os\examples\ejb\cmp\employee; weblogic.EJBDeployerTool
    WebGain Java! JustInTime Compiler Version 4.00.002(x) for JDK 1.2
    Copyright (C) 2000 WebGain, Inc.
    I then open the jar:
    c:\weblogic\examples\ejb\basic\containerManaged\build\ejb_basic_containerManaged.jar
    I then get the following error in messages:
    Unable to access installed container-managed persistence support:
    TOPLink.Private.EJB.WebLogic.Deployment.CMPDeployer
    This seems strange to me. Would this example require toplink?
    I thought you could deploy container managed beans with just the
    deployer.
    Whats going on?

    Mike,
    It looks like ni.com is not supplying that particular console object which is causing an issue with the embedded instance of IE9. Every other website I've tried works correctly. I've looked around the ActiveX methods to intercept and ignore this error, but I haven't found anything yet.
    For others' reference, here is the link to the example:
    https://decibel.ni.com/content/docs/DOC-2042
    Karl G.
    Applications Engineer
    ni.com/support

  • Permit traffic from Inside to Outside, but not Inside to medium security interface

    Can someone just clarify the following. Assume ASA with interfaces as :
    inside (100)   (private ip range 1)
    guest (50)       (private ip range 2)  
    outside (0)      (internet)
    Example requirement is host on inside has http access to host on outside, but it shouldn’t have http access to host on guest – or any future created interfaces (with security between 1-99).
    What’s the best practice way to achieve this?

    Hi,
    The "security-level" alone is ok when you have a very simple setup.
    I would suggest creating ACLs for each interface and use them to control the traffic rather than using the "security-level" alone for that.
    If you want to control traffic from "inside" to any other interfaces (and its networks) I would suggest the following
    Create and "object-group" containing all of the other network
    Create an ACL for the "inside" interface
    First block all traffic to other networks using the "object-group" created
    After this allow all rest of the traffic
    In the case where you need to allow some traffic to the other networks, insert the rule at the top of the ACL before the rule that blocks all traffic to other networks
    For example a situation where you have interfaces and networks
    WAN
    LAN-1 = 10.10.10.0/24
    LAN-2 = 10.10.20.0/24
    DMZ = 192.168.10.0/24
    GUEST = 192.168.100.0/24
    You could block all traffic from "LAN-1" to any network other than those behind the "WAN" interface with the following configuration.
    object-group network BLOCKED-NETWORKS
    network-object 10.10.20.0 255.255.255.0
    network-object 192.168.10.0 255.255.255.0
    network-object 192.168.100.0 255.255.255.0
    access-list LAN-1-IN remark Block Traffic to Other Local Networks
    access-list LAN-1-IN deny ip any object-group BLOCKED-NETWORKS
    access-list LAN-1-IN remark Allow All Other Traffic
    access-list LAN-1-IN permit ip 10.10.10.0 255.255.255.0 any
    This should work if your only need is to control the traffic of the interface "LAN-1". If you want to control each interfaces connections to the others then you could do minor additions
    Have all your local networks configured under the "object-group"This way you can use the same "object-group" for each interface ACL
    object-group network BLOCKED-NETWORKS
    network-object 10.10.10.0 255.255.255.0
    network-object 10.10.20.0 255.255.255.0
    network-object 192.168.10.0 255.255.255.0
    network-object 192.168.100.0 255.255.255.0
    access-list LAN-1-IN remark Block Traffic to Other Local Networks
    access-list LAN-1-IN deny ip any object-group BLOCKED-NETWORKS
    access-list LAN-1-IN remark Allow All Other Traffic
    access-list LAN-1-IN permit ip 10.10.10.0 255.255.255.0 any
    access-list LAN-2-IN remark Block Traffic to Other Local Networks
    access-list LAN-2-IN deny ip any object-group BLOCKED-NETWORKS
    access-list LAN-2-IN remark Allow All Other Traffic
    access-list LAN-2-IN permit ip 10.10.20.0 255.255.255.0 any
    access-list DMZ-IN remark Block Traffic to Other Local Networks
    access-list DMZ-IN deny ip any object-group BLOCKED-NETWORKS
    access-list DMZ-IN remark Allow All Other Traffic
    access-list DMZ-IN permit ip 192.168.10.0 255.255.255.0 any
    access-list GUEST-IN remark Block Traffic to Other Local Networks
    access-list GUEST-IN deny ip any object-group BLOCKED-NETWORKS
    access-list GUEST-IN remark Allow All Other Traffic
    access-list GUEST-IN permit ip 192.168.100.0 255.255.255.0 any
    Then you could basically use the same type ACLs in each interface. (Though still separate ACLs for each interface) And as I said if you need to open something between local networks then insert the correct "permit" tule at the top of the ACL.
    Hope this helps
    - Jouni

  • Vertical single item Report

    Hi,
    I have a small app where I register clients for demo.
    After I register them, I need to send them a registration confirmation with all the details (Location address, and details of demo)
    The process is:
    1) I use a form to enter their registration data,
    2) I place all registrations in a standard (table-like) report.
    My goal is:
    In the registration summary report (in point 2 above) I would like to have a link for each row, so that when that link is clicked, that specific item is shown in a vertical report that I can download in PDF and send to client as an attachment.
    is there a way to produce a report that includes one row of a table? My gues would be to have an SQL statement that fires using the selected item id (taken from the link column), and feed that row to the report.
    Please help
    Edited by: user13813605 on Feb 9, 2011 5:42 AM

    Hi,
    I think that is down to the Report Layout option on the Print tab for the report region. You would need to create a layout that can be used in place of the Default Report Layout option. By default, the output is pretty much a datadump from the data.
    I've never actually created a Report Layout - as far as I understand it, you have to design a layout document as either a RTF file or XSL-FO file and then upload this through Shared Components, Report Layouts.
    XSL-FO is similar to XML - see: http://www.w3schools.com/xslfo/default.asp - there are some threads that show examples (whether or not they work, I don't know, but they show the sort of structure you need in a file - eg, How to Print in PDF using XSL-FO with FOP  ???? )
    RTF can be generated by Word or similar apps. An example: http://docs.google.com/viewer?a=v&q=cache:zfEw84o8Re4J:www.expobadge.com/dldev/dc/DKLLoader1.cfm%3Fdcid%3D919%26type%3Dpdf%26aid%3Dace3f4dd-2baa-4ba9-ad6c-099ce814bfba%26caller%3Das1%26shownumber%3D8027+%22application+express%22+%22rtf%22+example&hl=en&gl=uk&pid=bl&srcid=ADGEESgzSCp6lAUv7VFkDGjQM0-mwzahiN0hxxQp3m5KyrOlJlBmR2mow1gYJdnWJxPhPuvJ0GhubWhwmRYNU-9IgIGrk88NQMfrpegR4DDdGQzTvaKT1r6ZgTX3zIB_1nCgBDEZd35B&sig=AHIEtbRKcs8kLQbEGnZ7ct43WfSVnZtRmg - note though that this example requires a paid-for plug-in for Word, but may give you an idea of what is required.
    Andy

  • I need help with my iPod because I have no idea what to do, help?

    Recently, I updated my iPod from iTunes and so I lost access to all my apps that I had on it.
    A couple of days before this I had changed my email and password to something I could access more easily.
    Because of this, or something that I'm failing to notice or do, I cannot access any of my old accounts on any of my apps. I have fiddled around with game center and tried to figure out if it's because I changed my email or because I updated my iPod. I am very sure that all the information is still there, I only need a way into it. How?
    I am at a complete loss, and I've tried everything I can; logging in and out of game center, turnning my iPod off and on, syncing it, but nothing seems to work. Am I missing something? I would really really like it if I were told that I'm just missing something really easy and have this dealt with.
    If I can't do anything, is there any way I could have any information I have on my ipod/game center put onto the email I have now?
    If anyone at all can help me I would really appriciate it, even if it's like 'you forgot this, stupid'
    thank you so much for any kind of help!

    Hi Light22,
    When you say you changed your email and password, did you rename an Apple ID?  Create a new one?  or just change the email linked to an existing Apple ID?
    When you state you cannot access any of your old accounts, how many accounts do you have?  It's not a good idea to have things purchased with multiple accounts. App updates for example, require you to be logged in with the account they were purchased with.  It's a pain to have to log in and out of various Apple IDs to update your apps.  When an old Apple ID (email) goes out of date, people should rename it rather than creating a new Apple ID, How to change the name you use for your Apple ID
    Are any of your Apple IDs disabled?  That can happen if you mix up the passwords and enter it wrong a few times.  See https://iforgot.apple.com/  to reset a disabled Apple ID (the AppleConnect password).
    Make sure you are using the correct Apple ID with GameCenter, the one you set it up with.  Again, another risk of having multiple active Apple IDs.
    ivan

  • How Many SAP BW BEx Queries can be embedded in a Universe

    Hi,
       I need to create 5 reports based on five different SAP BW BEx Queries. These are charts with 3- axes i.e. X,Y,Z.
       The example requirement is to create Line charts (Vertical Mixed Line Charts) and deatils are as follows: The chart should show CPU Utilization % for different servers (eg. Servers1,2,3,4,5) for each day in a particular month.
    Axes details:
    X- Axis - Date eg: 01 /09/2010 to 30/09/2010
    Y-Axis - CPU Utilisation Percent
    Z-Axis - Servers from 1 to 5
    The above detailed chart comes from a BEx Query . In this way there are four more BEx queries which should give four other charts.
    My query is: Is this possible to have five different BEx queries in a single Universe and Create 5 different charts(one chart from each BEx Query) in a single tab as in the current manual report.
    (All the five Line charts should be downloadable to a single sheet in Excel)
    One more, should I use Web intelligence only? Is any other tool that helps for this requirement.
    Please advise.
    Nanda Kishore.
    Edited by: Nanda Kishore B on Oct 13, 2010 4:17 PM

    Answers for your qns:
    Is this possible to have five different BEx queries in a single Universe ?? NO
    Create 5 different charts(one chart from each BEx Query) in a single tab as in the current manual report. ?? YES
    All the five Line charts should be downloadable to a single sheet in Excel ?? Possible- YES
    should I use Web intelligence only? *WebI * or  Data Federator
    Nanda Kishore,
    As you are in SAP BI, I suggest you to go with BO Universe==>>WebI or DataFederator.
    Solution for your problem:
    Sol1 : Why you are creating 5 BEx queries?? Is there any calculations or restrictions??
    YES, then Design 5 Universes for each BEx query.
    @ WebI Report: Develop report/chart based on Universe-1 and in BO query panel click on Add Query and do it for 4 other Universes.
    Save all Charts in single report. (After running second time query, it will prompt for 3 opt's: 1. Insert new report  2. Insert data with in the existing report 3. Indulge objects without creating new report )
    Here, go with Opt:2 or Opt3 or opt:1, no problem. And develop all Charts in single report by just dragging & dropping chart type and objects to it.
    Now your problem solved.
    Sol2: If no need of 5 BEx queries: Just drag all the Characteristics, Keyfigures and other what you want for Charting.
    @Designer: Design Universe on top of this BEx master query.
    @ Report : use this Universe and drag objects to 5 diff charts.
    Hope you got it.
    Thank You!!
    Sent from iPhone

Maybe you are looking for