SAP - BO XI Newbie

I know a bit about both SAP and BO both and wanted to understand how these products would work.
1) If I have a) BI Query and b) Oracle Table/View can I combine them in the same BO XI universe and have user report against that universe using either Voyager or Webi?
2) If I have BO Crystal Reports do I need to have a universe created to be able to access data from a SAP BI Query?
Points awarded !!!

Hi,
One of the major benefits of using a BEx Query as a source for Business Objects XI universes is that you do have access to the additional calculated key figures (CKF) and restricted key figures (RKF). If you do not use a BEx query as a source, you will have to rebuild this functionality into the Business Objects frontend tools queries.
Michael,
You can find more information on CKF and RKF at this link:
http://help.sap.com/saphelp_nw70/helpdata/EN/46/834ef375e30ad3e10000000a11466f/frameset.htm
Cheers,
Mike

Similar Messages

  • ABAP XSLT Transformation using element include

    Hi there,
    I am trying to convert data from SAP-DATA -> DOM over XSLT to a Stream.
    For achieving this I have to use certain modularized XSL-Files which will later be accessible over http. At the moment however, those files are on my local hard drive (client) only. I tried to access these files using:
    <xsl:transform version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
      xmlns:sap="http://www.sap.com/sapxsl"
    >
    *<xsl:include href="D:\XSL\include.xsl"/>*
    <xsl:strip-space elements="*"/>
    <xsl:template match="/">
    </xsl:template>
    </xsl:transform>
    I get the message "D:\XSL\include.xsl doesn't exist" when checking the syntax. When I test this in my OS however, it works perfectly. Being an SAP- and XML-Newbie my question is the following: Does SAP not know my hard drive mappings while I'm in a transformation or can i only access directories over al11/http. Or is it complete nonsense at all? 
    Regards, Lukas
    Edited by: Lukas Weigelt on Jun 9, 2010 4:18 PM

    Hi,
    according to:
    >
    Michal_Krawczyk_PIXI wrote:
    > as per:
    > http://help.sap.com/saphelp_470/helpdata/EN/84/2e4d3ce624b800e10000000a114084/frameset.htm
    > "The href attribute no longer applies in this case."
    it appears the include element only works with the repository.... I tried
    <xsl:include sap:name="<Name_of_the_Transformation_in_Repository>"/>
    and it works.
    However this would mean, all includes i have to make have to be imported to the repository. If that's really the case, it'll be a huge problem, because the xsl-files i want to include are outside of my reference
    Regards, Lukas

  • JCO.Server appends null character to string

    I am a complete SAP and JCO newbie so I'll try making as much since as I can, given the fact that I'm not familiar with SAP terminology and technology. I've been lent as a developer to another group which needs a legacy application rewritten. The application processes a RFC and decrypts the RFC encrypted payload and returns it along with a status code.
    I have made progress - I'm able to register my server with the SAP runtime and using the SAP GUI application and the help of a SAP developer, I'm able to make an RFC call to my application. I'm able to read the parameters sent from SAP and write parameters back.
    The problem is that one of the parameters I'm writing back (java.lang.String) appears to have and extra character on SAP side. On the GUI it appears as a '#' (pound) sign. The SAP developer told me the string is terminated with a null character which I know is a C/C++ thing but not a Java thing. I don't think it is a Unicode issue. The Java server is not running in Unicode mode and any attempt to set the jco.server.unicode property (I may have forgotten the exact name) to a value of 1 causes the RFC to fail.
    I think the issue is likely to be the manner in which I defined the function parameters or the manner in which I write them. The following are code snippets:
    Defining the function:
    JCO.MetaData metadata = new JCO.MetaData(Constants.FUNCTION_DECRYPT);
    metadata.addInfo(Constants.PARAMETER_SCHEME,      JCO.TYPE_INT,    255,   0,  0, JCO.IMPORT_PARAMETER, null);
    metadata.addInfo(Constants.PARAMETER_ENCRYPTED,   JCO.TYPE_STRING, 255,   0,  0, JCO.IMPORT_PARAMETER, null);
    metadata.addInfo(Constants.PARAMETER_DECRYPTED,   JCO.TYPE_STRING, 255,   0,  0, JCO.EXPORT_PARAMETER, null);
    metadata.addInfo(Constants.PARAMETER_RETURN_CODE, JCO.TYPE_INT,    255,   0,  0, JCO.EXPORT_PARAMETER, null);
    Server request handling code:
    protected void handleRequest(JCO.Function function)
                    // Obtaining import/export parameter lists.
                    JCO.ParameterList input  = function.getImportParameterList();
                    JCO.ParameterList output = function.getExportParameterList();
                    // Getting scheme and encrypted text parameters.
                    int scheme       = input.getInt(Constants.PARAMETER_SCHEME);
                    String encrypted = input.getString(Constants.PARAMETER_ENCRYPTED);
                    // Decoding base 64 string.
                    byte[] bytes = Base64.decode(encrypted);
                    // Obtaining cipher by scheme and decrypting the text.
                    AppCipher cipher = ApplicationConfiguration.getDecryptor(scheme);
                    if(cipher == null)
                                    logger.error("Unable to get cipher due to an unknown encryption scheme: " + scheme);
                    else
                                    byte[] decrypted = cipher.decrypt(bytes);
                                    String plainText = new String(decrypted);
                                    // Setting decrypted value information and return code.
                                    output.setValue(plainText, Constants.PARAMETER_DECRYPTED);
                                    output.setValue(Constants.RETURN_CODE_SUCCESS, Constants.PARAMETER_RETURN_CODE);

    I seem to have made progress. If I define the parameter type as JCO.TYPE_CHAR instead of JCO.TYPE_STRING, it works:
    metadata.addInfo(Constants.PARAMETER_DECRYPTED,   JCO.TYPE_CHAR,   255,   0,  0, JCO.EXPORT_PARAMETER, null);
    That is the only change I made. I'm still setting the parameter value as java.lang.String. I hope this won't cause issues elsewhere. I was also able to change the field definition and set it as a byte array. However, that had the problem of having to define the exact length of the byte array in the field metadata otherwise the remaining bytes would appear as null bytes on SAP side.

  • Downsizing a fat ODS to optimaze the processing time!

    Hello all,
    Working with SAP NetWeaver BI 7.0, a customizing FI_CO OPC ODS with 300.000.000 records extracted from Sap R/3, was enhanced with 2 new fields and since then it has generated big processing time – about 20 hrs and same times basis team needs to kill it!  This ODS has been loading a Cube and the new enhanced fields will be loaded to another Cube.
    As a newbie and Sap BI also newbie at this project, I’ve been requested to analyze the model and give a better option to optimize the loading process, options such as should this ODS be deleted and data be extracted straight to the Cubes, or downsizing this ODS by removing the olds records of it and saving it in other new ODS?
    Anyone could come up with a bright idea?
    Thanks in advanced

    Hi all,
    Thanks for all replies (Alex & Jorge)…
    But I've just learned today, the problem above is not exactly what is going on!  In reality the problem is not about processing overtime while loading the COPS ODS, but after the 2 new attributes were added to the structure COPS ODS the "Transport" of it is taking big overtime, caused by the needy of BW to re-index the ODS since the 300.0000.000 records are already there! As I said before, I need to redesign the model and suggest some good options to solve the problem. Some options could be deleting data from ODS and keeping the InfoCubes; or deleting data prior to current fiscal year from COPS ODS and keeping historical InfoCubes; or updating everything then perform logical partitioning then keep details in the ODS and aggregate data in Infocubes, also could be moving all COPS ODS data to a temp, apply OPC changes to it and then move data back!
    I need to show the advantage or disadvantage of my options and “must choose” the better solution!
    Please, any good suggestion?
    Many thanks in advance
    Bia

  • Newbie in SAP business one DTW

    Sir good day who's can help me About how to Create New Template using DTW and Excel. I'm a newbie and i want to learn about SAP business one. And i hope your reply will be picture..i want an format..and how to customize the table in SAP b1 bec. i want to delete and add new one by my new design.

    Hi Romel,
    Login to DTW using required user id and password
    At top of the toolbar, you could see "Templates", click on it.
    3. Select 'Customize Template, Generate UDO Template, Generate UDF Template" as per your requisition.
    UDO Templates- User Defined
    UDF Templates- Standard Fields
    Customize Template- You can customize as per your choice.
    4. Below "Browse" button is provided so that you could choose the required path where you want to save those templates.
    5. Click on "Generate Templates" to generate.
    If you found this reply helpful, please close the thread by marking it as helpful or correct .
    Regards
    JO

  • Newbie - First Project with SAP Team... Monitoring Solutions/Strategy?

    I just started my first job out of school two weeks ago. My first project is to work on a "monitoring strategy" for our large SAP enterprise system. We have CRM, SRM, ERP, Sol Man, EDOS, XI, etc... I am supposed to dig into each of these portions of SAP and determine what may need monitored and how to set that up... Does anyone have any ideas of how I should get started? I am new to SAP but have a decent high level understanding of it. Any help would be appreciated. Thanks

    The first thing about being a newbie (welcome though!) to monitoring questions at SDN is that you need to read the "rules of engagement" first.
    These clearly state:
    >- Please do not Cross post.
    > Post your question in the most appropriate forum; not multiple forums. This is bad netiquette and will might only aggravate potential repliers.
    Well, as this NW Admin forum is the most appropriate one and the other 5 which you have cross-posted to are (in my opinion) not, I will not lock this thread here. Most likely your other threads will be deleted or locked by other moderators though.
    Please also read the rest of the rules by end of week three... which explain further about what is monitoried in the forums...
    Cheers,
    Julius

  • Good day sir. Im newbie in using SAP Crystal Report. I hope you can help me with my problem

    PROBLEM EXPLANATION
    Pretend that the attached excel file is a crystal report file
    Column A is the details to be compared. Column B is the details that i will have to use a formula in sap crystal report.
    as you can see cell B3 is same with the value in cell A2, B4 with A3, B5 with A4, B6 with A5 and so on.
    How can i get the previous data of column A and put it in column B using formula in crystal report? either basic or crystal syntax
    My Column
    Colmun with formula
    7000
    0
    7689
    7000
    9457
    7689
    8472
    9457
    2364
    8472
    12395
    2364
    18273
    12395
    84723
    18273
    57483
    84723
    493837
    57483
    2823747234
    493837
    226374
    2823747234
    7646363
    226374
    85826263
    7646363
    75756236324
    85826263
    1239534
    75756236324
    Message was edited by: Ludek Uher

    Hi,
    Use the 'previous()' function.
    Example:
    Previous({Column A})
    -Abhilash

  • What are the steps for a NEWBIE with no experience in SAP, to become a SAP professional (Energy & Env. Resource Management) ?

    I am a QA & ISO Compliance professional with no knowledge and experience in SAP, but i am looking forward to become a SAP professional. Based on my experience with ISO 14001 (Environment Management) & ISO 50001 (Energy Management) i am interested in ENERGY & ENVIRONMENTAL RESOURCES MANAGEMENT option, but i am not curious to know about the path towards the mentioned goal. I also have a degree in mechanical engineering. I have following questions:
    Is an IT background or knowledge of programming a pre-requisite ?
    What module would "ENERGY & ENVIRONMENTAL RESOURCES MANAGEMENT" be under ?
    Before going in for training and certification, what i should study or be prepare with ?
    Is the road-map (Below) all i have to follow ?
    https://training.sap.com/ca/en/curriculum/ehs_compliance-sap-ehs-management--environmental-compliance-g-en
    Any help and information will be immensely appreciated !

    have you checked personnel profile? with CONFIGPROFILE = EDIT? http://help.sap.com/erp_hcm_ias_2012_01/helpdata/en/92/b073fb42b347af9cb19299881b379d/content.htm http://help.sap.com/erp2005_ehp_05/helpdata/en/48/164bbbb68a4b37b62ad9777b9b449f/content.htm?frameset=/en/48/164bbbb68a4b37b62ad9777b9b449f/frameset.htm&current_toc=/en/4f/b9088db1034075a337c537083539da/plain.htm&node_id=141 No you cant make changes unless you have a WF step in your processes and forms which allows you to  make changes during the cycle of approval Once completed, you can only reinitiate and it ll trigger WF etc. ie HR admin step, where they check all the information is there in the form and then only allows it to be updated to the Infotype and complete the process. did you check scase with the required roles as indicated above? run su53 for missing any authorization?

  • SAP BW - R/3 4.7 newbie

    Hello there I have a sap BW issue
    I can not log on to sap bw, i dont know where it is, i have installed sap R/3 and trying to use the BW but dont know how can someone help it is sap r3 4.7 thanks.

    Hi Saghir,
    Have you configured the BW after installation. If you have not configured pls check configuration setting in sap market place.
    I hope this is configuration problem.
    If you are getting any error pls send the error so that on the base of error we can provide solution.
    Regards,
    Anil

  • Help for a newbie using the SAP tutorial

    Hi All,
    This is the first time i have picked up the SAP SDK and I am following the tutorial that is in the the help document that is installed with the SDK installation. 
    Under the developers guide section > Tutorial: Blanket Agreement Solution
    I have worked down to Part 4 and I am stuck on step 1 (create an installer)
    Towards the end of the page it talks about creating a new project and to opening line is:  "Add the BlanketAgreement.exe file to the project and change its Build Action to Embedded Resource."
    Can somebody give me some help here please because upuntil now there has been no mention of the BlanketAgreement.exe.
    Equally can anybody suggest some more tutorials that will help be get into the SDK.
    Many thanks,
    Mike

    Hi Mike,
    The BlanketAgreement.exe is a reference to the executable that will be created when you compile the solution you created in Part II - Part III. I think there is a mistake in the tutorial because it asks you to name the project 'Blanket' which means that by default the executable will be called Blanket.exe and not BlanketAgreement.exe. The tutorial also misses the step asking you to compile the Blanket project before you go on to create an installer. You should compile your Blanket project in Release mode before creating an installer. By compiling the project you'll get a Blanket.exe file in the bin folder of your Blanket project which you then need to add to the installer per the instructions.
    SAP do offer development courses in some areas and there is training material here on the SDN and on the SAP partner portal (and maybe the customer portal as well). Try searching this forum for 'training' or 'tutorial' and you should get a few links. There's also a development certification.
    Personally I'd recommend you give yourself a little project to work on and just get stuck in
    Kind Regards,
    Owen

  • Newbies need advice - How to setup PDA to connect to SAP server

    Hello Guys,
    I really need your information about how to connect PDA to SAP server, I got some information that we can use the SAP Console, but really i have no idea at all.
    I really need you help guys, Thank In Advance
    Regards

    Surya,
    You can download the MI documentation from
    http://service.sap.com/instguides
    for configuration of MI server and client components.
    For more MI documentation, you can go to:
    http://help.sap.com/saphelp_nw04/helpdata/en/a7/893a5889e08b41b615688b1a93b559/frameset.htm
    Thanks.
    Peter

  • SAP Newbie - MaxDB and NetWeaver limitations

    We are new SAP partner (SR) licensing mySAP Business Suite on MaxDB/Windows platform. What are limitations regarding further NetWeaver configurations (ordering). I saw on Product Availability Matrix that only MaxDB/Linux configurations are available for EP. Does that mean that we will not be available to license EP?
    Thanks in advance,
    Igor

    Hi Igor,
    The Product Availability Matrix doucment is the most up to date information on the availability for SAP NetWeaver components. It will be supported with SAP NetWeaver '04 SR1 which should be available later in the year.
    If you can't wait, I would suggest that you contact your partner contact at SAP and discuss getting either the Linux version or a supported windows/DB combination like SQL Server.
    I hope this helps,
    Mike.

  • SAP newbie - would like to understand integration options

    What are the choices when it comes to integrating SAP (MySAP, ECC5, Oracle Db) with another external ERP platform (Windows based with MS SQL Db).  We wish to create approx 8 interfaces (Sales, Accounts, Stock etc) between a retail ERP and SAP.  I understand that PI could be a choice but this seems expensive and we don't currently have it set up. Any help to understand interface options much appreciated.

    Thanks for your Quick mail,
    I am not able to view .So can you guide me
    Thanks
    priya

  • Newbie Question: Install/configure the SAP NetWeaver MDM PI Adapter

    Hello gurus.
    I'm new to PI and need to install/configure the SAP NetWeaver MDM PI Adapter.
    Can someone guide me or link me up ?

    There is a guide available on SMP: https://websmp205.sap-ag.de/~sapidb/011000358700001890482008E
    Check if this helps...section3 should be of your interest.....you need to use S-user credentials to view the above document.
    Regards,
    Abhishek.

  • Newbie question - Is it worth getting into SAP ?

    Seeing as this is still the only forum where a "Post New Thread" button is locatable, here's my opening question.
    I understand it takes study, certification and some years of experience to become a sought-after commodity in SAP.
    As an underpaid (never above $A40K) and under-employed IT worker over the past ten years, I've noticed that every time a SAP job is advertised, the salary is quite impressive. The most recent position, for a SAP Consultant, offered $A120K.
    To those of you who have been SAPping for a few years :
    Are you and your skills in demand in the job marketplace ?
    Do you receive reasonable or high pay ?
    What combination of study and experience (and connections ?) did it take to reach your current position ?
    For someone with broad IT experience, do you consider SAP worth getting into and, if so, by what route do you recommend entry ?
    That'll do for a start

    hi andrew,
    Are you and your skills in demand in the job marketplace ?
    Yes, SAP is hot these days, and will be for some years to come.
    Do you receive reasonable or high pay ?
    When compared to other fields and technical domains, the answer is yes.
    What combination of study and experience (and connections ?) did it take to reach your current position ?
    You need to have reasonable amount of IT exposure (which you have....!!!!) and a working expeirence in the functional domain is a must to rise. Technical expertise would boost your career great guns. Though after 2- 4 years in SAP , it is preferable to be a functional guy.
    For someone with broad IT experience, do you consider SAP worth getting into and, if so, by what route do you recommend entry ?
    Yes, it depends upon your type of IT experience. IF you have a good functional experience (say in domains like manufacturing, sales, or finance) pick up  a functional module study hard go for certification, and you are there in SAP world.
    With technical expertise you  need to have good ABAP knowledge, and with netweaver these days JAVA would also do, but with SAP having abap knowledge always helps.
    Same route here, study hard and go for certification and gian hands on experience.....and you are there to rock...!!!!
    Hope this answers your questions, Do reward

Maybe you are looking for

  • Using Parameter Form after migration from 6i to 11g

    Hello, I have a migration to do in order to use Reports 11g. But some of the RDF I have to convert use a parameter form at runtime for some of the parameters. How can I have the same functionality when calling these reports from my Forms application

  • HT201303 how can I remove a payment method such as a credit card off of my account?

    I can't figure out how to remove it.

  • New iMac and CS 4

    Greetings, I just bought a new iMac with 3TB fusion drive. I had all of the data transferred and now InDesign CS4 will not open. Is this a compatibility issue or is it just me and mine? Thanks

  • Short Dump 'ASSERTION_FAILED' during updating partner Functions

    Hi All, I am updating the Partner Functions for the Customers using FM 'SD_CUSTOMER_MAINTAIN_ALL' and passing the partner functions and numbers to the XKNVP structure. while running the program in am getting the short dump as ASSERTION_FAILED. Detail

  • Captivate demo in RoboHelp

    I put a Captivate demo in the RoboHelp file. It works fine. The only problem is the size. The demo is larger than the RoboHelp window and requires the user to scroll down and side ways to see parts of the demo. Also, because of the size, the Stop, Pl