BW web reports when you already have an ESS portal

Hi. Here is the situation.
I have NW2004s portal serving ESS content from an ECC backend.
I just intstalled a BW NW2004s system. The BW people want to use BEX web queries.  What is the best way to provide this content?
Also If I wanted to use JUST ONE PORTAL, but still get the newest BW WEB functionality, how can this be done?
Thanks

Hello Jeremy,
Just install the BI-Java stuff with JSPM.
Be careful of the potential load in your Production Portal.
Go to SAP Marketplace and just select the components you don't already have in the BI-Java area of NW2004s.
Of course you will need to configure the connectivity and SSO (2 ways) between your Portal and BI.
Use the NWA after you deploy the BI-Java components as it is the simplest way to acheive the config. Some steps might not work automatically but at least you will know what to do (http://portal.xyz.com:50000/nwa - Then use the last tab).
Regards,
Marc.

Similar Messages

  • HT3702 Has anyone else had itunes take the money for a purchase out of you bank account when you already have enough money as a credit on your itunes account?

    Has anyone else had itunes take money for a purchase out of your bank account when you already have a credit on your itunes account to cover it?

    acuna matata wrote:
    Dear Carolyn
    I tried to forward the email to [email protected] but it was rejected saying that that email address was not recognised. Please could you recheck and let me know
    Thankyou
    Acuna matata
    It should be [email protected] You left out a letter.

  • DI API - Retrieve specific message object when you already have the code?

    The MessagesService object lets you retrieve a message using the message header. It also lets you retrieve a list of message headers from the inbox or sent mail.
    Unfortunately, I don't see any way to create a single message header if I already know the code. The MessageHeaders collection has an Add method for a single MessageHeader but there does not appear to be a public constructor for the MessageHeader object.
    Trying to create a new message header like
    oMsgHeader = new MessageHeader();
    or
    oMsgHeader = new MessageHeaderClass();
    both compile but cause a COM exception when actually executed.
    So, other than retrieving all of the message headers and finding the message I want is there any way to retrieve a specific message when the key (Code) is known?

    Dear William Faulk,
    My previous reply is not accurate. The MessageHeader can initialized by Inbox our Outbox but can not to initialize a single message header individually by now.
    So the code will as follows
    For i = 0 To oUserInbox.Count - 1
        oMessageHeader = oUserInbox.Item(i)
        If oMessageHeader.Code = "myKey" Then
            oMessage = oMessageService.GetMessage(oMessageHeader)
        End If
    Next
    Best Regards
    Jane Jing
    SAP Business One Forum team

  • Is it possible to install GB2 when you already have GB3 running?

    Does anyone know if it is possible to have both versions of GB running on a single computer... if not, is it possible to downgrade to version 2 from version 3.
    Thanks!!
    Dave

    If you rename the GB app, you might be able to install GB2, but I can't say for certain what the GB2 installer will do, I don't know if it will complain).
    (I have all versions from 1.1 to 3.0.2) on my machine, but I never tried to install an older version, it was always a case of installing the newer version while keeping the older one)

  • How to move from lightroom 5 to 6, when you already have creative clond?

    Is it an upgrade?  A new purchase?  I am confused.

    See related forum thread:
    I have Creative Cloud for Photographers. How do I get Lightroom CC?

  • If you already have a web host can you upload your site to BC so client can edit in browser

    If you already have a web host can you upload your site to BC so a client can edit in browser?

    If you already have a web host can you upload your site to BC so a client can edit in browser?

  • When trying to install Adobe Standard XI, it says, "Setup has detected that you already have a more functional product installed. Steup will now terminate."  I have a Pro trial installed but did not seed so much functionality so I purchased standard.

    When trying to install Adobe Standard XI, it says, "Setup has detected that you already have a more functional product installed. Steup will now terminate."  I have a Pro trial installed but did not seed so much functionality so I purchased standard.

    uninstall any acrobat and reader versions, if you have win os clean (Download Adobe Reader and Acrobat Cleaner Tool - Adobe Labs) and then install acrobat std.

  • When I try to email a photo from my iphone it ask for my id and password then says you already have an account?

    When I try to email a photo from my iphone it ask for my id and password, then it says you already have an account?

    I figured out that I could use the message selection it gives and just type in my email address and it worked.  I dont know why the email selection never worked, it just kept asking me to enter id and password and then telling me I have an account?  I will be getting the newest phone so I can be rid of this ancient one: )

  • Display the second report as modalform and filter with primary key value of first report when you click on first report column link

    Hi All,
    I have two reports.
    1. order report
    2. order detail report
    when you click on the order report column it display the order detail report as a modal form.
    i was done below steps.
    1. In page header i was written the below code
    <link rel="stylesheet" href = "http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/
    redmond/jquery-ui.css" type="text/css" />
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"> </script>
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"> </script>
    <script type="text/javascript">
    $( function() {
    $('#ModalForm1').dialog(
    autoOpen : false ,
    width :470,
    height: 500,
    resize :false,
    function openForm1()
    $('#ModalForm1').dialog('open');
    function closeForm()
    $('#ModalForm1 input[type="text"]').val('');
    $('#ModalForm1').dialog('close');
    </script>
    2. order report.
    3. order detail report
       select * from order_details where order_id = p_order_id;
    region header
    <div id="ModalForm1" title="Ordered Items" style="display:none">
    <p class="msg"></p>
    footer
    </div>
    4. created the hidden item in order detail report.
    5. in order report column attributes i was given link like below.
    javascript:$s('p_order_id','#order_id#');openForm1();
    when i click on the order report column link it passing the row primary key value to hiddent and open the report as modal form. however it is not filter the report with hidden item. it showing the no data found.
    problem is hidden item value is not submitting. once we submit that value it showing the 2nd report with filter data.
    can any help me to achieve above requirement.
    apex: 4.2
    oracle 11g
    Regards,
    Vijay.

    Vijay,
    Issue 1: Your usage of $s() JavaScript API seems to be wrong. For the first parameter, you need to use the name of the hidden page item and not p_order_id.
    javascript:$s('P1_ORDER_ID','#ORDER_ID#');openForm1();
    Issue 2: Seems like you are not setting the hidden page item's value in session state. Assuming your hidden page item is called P1_ORDER_ID, Under "Region Definition" tab of your "Order Detail Report" under "Source" tab, for page items to submit, enter the name of the hidden page item P1_ORDER_ID.
    Thanks!
    JMcG

  • I am having difficulty with opening up PDFs attachments in my email or on my computer. Every time I tried to open up an attachment, it asks me to renew my subscription when I already  have a valid subscription. Please abvise

    Hi,I am having difficulty with opening up PDFs attachments in my email or on my computer. Every time I tried to open up an attachment, it asks me to renew my subscription when I already  have a valid subscription. Please abvise

    Can you save the PDF to your disk and then open them with Acrobat?

  • I just purchased Apple TV AND AIRPORT EXPRESS. I am questioning if  I need it when I already have a Netgear Powerline AV 200 Adapter Kit XAVB2001. Does the Airport Express do the same thing?

    I just purchased Apple TV AND AIRPORT EXPRESS. I am questioning if  I need it when I already have a Netgear Powerline AV 200 Adapter Kit XAVB2001. Does the Airport Express do the same thing?

    Thank you so much.  Any specifics I should know about prior to connecting? The goal is to watch  Netflix from my iPad or iPhone 5 on my tv (located in different room from where Comcast internet modem is hard wired to main computer in house).  Movies would depend on wireless transmission to a smart tv not connected to modem.

  • Why do I get a prompt to create an iCloud account when I already have one?

    When I try to turn on notes so my iPhone and iPad will sync, I am prompted to create an account when I already have one. Why? How can I do this?

    Have you created an iCloud account?  This is not the account or ID you use for iTunes.  And where exactly are you turning on notes?  In what area within settings of your devices?

  • HT5312 How to set a rescue email address when I already have an Apple ID and I forgot my security questions

    How to set a rescue email address when I already have an Apple ID. Actually I forgot my security questions.

    You won't be able to add one until you can answer your questions, you will need to contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset you can then use the steps half-way down the HT5312 page that you posted from to add a rescue email address for potential future use

  • You already have a schema opened on this file with another name: abc

    I am trying to create a model for an XML file, when I clicked on "Objects to Reverse" checkbox under "Selective Reverse" tab, I am getting the following error:
    java.sql.SQLException: You already have a schema opened on this file with another name: abc
    I have created a Data Server in Topology whose schema and workschema are "abc" and logicla schema is "Labc".
    Where is the mistake going in?

    That is because you can only connect to a file in read/write mode once at a time. When you connect to a file without specifying ro=true (e.g. Read Only=true) in the URL, the file is locked and you can’t connect to the file from another instance until the original connection is dropped. I assume since you are trying to connect to the file multiple times that you mean to connect in readonly mode. To do this, like I mentioned earlier, simply add ro=true to your URL and you should be all set. Note: you may need o restart your JVM for chnges to take effect. Let me know if that works.

  • My itunes won't work on my mac. When I try to download all my songs to my iPad it says I need to get the new version when I already have it already

    When I try to download all my songs to my iPad it says I need to get the new version when I already have it already

    Are you sure you have the newest version of iTunes 11 and newest version of iOS6? Go to Software Update and make sure you do.

Maybe you are looking for

  • How to restrict a hold GR document for invoicing

    Dear all, I made the GR against a PO in MIGO. for that document no also generated. But due to some reason i want to hold the document no, so that it can't be further processed. I also hold the same document no by performing "DISPLAY" "MATERIAL DOCUME

  • My iPhone suddenly has stopped ringing, unless I have the home page open

    I have an iPhone 4 with OS 7.1.2    It is about 3 years old and has been working well, until recently. Now it will not ring my Phone or my Messages or my Errands unless I have the home page open. This is bad, because I miss my calls, messages and app

  • Api required to return componant name ?

    Is there an API call to return the name of the current form based on a store procedure that you are executing I want to pass the name of the current form based on a stored procedure as a param to another componant. Thanks in anticipation SD.

  • Ip access-list

    Dear all, I have a subnet 172.18.1.0/24 configured on vlan. I am trying to apply the below acl, ip access-list extended ota-acc 1 permit ip 172.18.1.0 0.0.0.64 any 2 permit ip 172.18.1.0 0.0.0.255 192.168.240.0 0.0.0.255 3 permit ip 172.18.1.0 0.0.0.

  • Service-based login screen

    I created a custom service which looks like: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE ServicesConfiguration SYSTEM "file://localhost/opt/SUNWam/dtd/sms.dtd"> <ServicesConfiguration>   <Service name="PMSService" version="1.0">     <Schema i18n