How can I use SSO from BI to BO Enterprise Server

Hello,
I have installed a BO Enterprise Server SR3 and I want to connect it to an SAP BI 7.0.
I did the configuration of the Installation Guide "BusinessObjects XI Integration für SAP Solutions-Installationshandbuch" chapter 6 except of the last two. I do not want to use a second server.
The problem is that a connection test of the RFC-Connection in SAP BI will cause the following error:
SNC disabled fo conversation ..., tp=BO_Publischer_T22 /CPIC-CALL:'ThS
ERROR: SNC disabled fo conversation ..., tp=BO_Publischer_T22
LOCATION: CPIC (TCP/IP) on host AGES2901
I have started the Publisher and the Server Intelligence Agent with a domainuser and this user can call the sapgenpse without being in the path of the program.
If I test the system in transaction /crystal/rptadmin  I first have to logon to the SAP WebAS and then to the BO Enterprise (via SAP Authentication).
Has anyone configured the connection from BI to BO this way?
Best regards
Andreas

Hi all,
I am having the same problem, I am not able to open a Crystal Report without being propmted for user and password. This happens from
SAP GUI and also from an iView within the SAP Portal.
Another thing is that I have defined a Repository in the SAP Portal, I can see the folders and reports, but when I try to open a report it gives the follwing error
500
Internal error in the server
The url is trying to access is the follwing:
http://sap470:51000/irj/go/km/docs/boerepo/2128/2590
2128 is the folder id and 2590 is the report id, I am not sure if the url is supposed to be like that.
Any idea?
Thanks

Similar Messages

  • I want to hook up a mac mini and us my tv as a monitor. how can I use airplay from my phone on the mac mini like i can with an apple tv (without having to buy an apple tv!). the airplay capabilities i want to use are mirroring and streaming from my iphone

    i want to hook up a mac mini and us my tv as a monitor. how can I use airplay from my phone on the mac mini like i can with an apple tv (without having to buy an apple tv!). the airplay capabilities i want to use are mirroring and streaming from my iphone!

    Download AirPlayer for Mac - Transforms your Mac into an AirPlay-compatible display. MacUpdate.com

  • How can I use music from two different iTunes accounts?

    how can I use music from two different iTunes accounts?

    If you mean iTunes Store accounts, there's really nothing for you to do. Just add the tracks to the iTunes library and play them. Music purchased prior to late-2009 will been to be authorized, though. Pull down Store > Authorize... and type the credentials of the Apple ID used to buy the tracks.
    If you mean something else, please describe in more detail.

  • Hi how can i use imessage from my mac

    hi how can i use imessage from my mac , i tried to text message to one of my contact name but it said the number is not registered with imessage so how can i registered all my contacts to the imessage . thanks

    The person you try to contact has to register his number/his appleID with iMessage.

  • How can I use EJB component on Weblogic 8.1 server ?

    hi,dear sir:
    How can I use EJB component on Weblogic 8.1 server ?
    It need client jar to invoke ejb,but what will I to do for this jar file? what does it contain? format ?
    If my EJB module contain 100 session bean and 50 Entity bean,but I want invoke 20 session beans in my module, how can I to do?
    thank you...

    Hi,
    This forum is exclusively for Creator. please post this on appropriate forum
    regards
    CreatorTeam

  • How can i use plugins from main stage like space designer in logic express 9.1.6

    I'm using logic express 9.1.6. today I bought Mainstage 2 in the appstore. there are a lot of powerfull plugins. some of them, like e.g. space designer, are not included in logic express.
    how can I use the in logic express? they are not listed automatically with all the others...
    thanx

    Hi
    No can do.... these plugs etc are part of the code for Logic Pro and MainStage (and not for Express)
    CCT

  • How can I use software from mac os 8.6

    I have old mac 4400/160 with os 8.6. Can I use program files from that os on os x and how?

    Hi, Boopsy. Welcome to the Discussions.
    By "program files" I presume you mean "applications." If you mean data files, that's a different question.
    It really depends on the applications (apps).
    First, they will only run in Classic mode, if they run at all. Classic mode is a "hardware compatibility layer." Basically, this allows you to run Mac OS 9 and Mac OS X simultaneously, meaning you can use Mac OS 9 apps and Mac OS X apps simultaneously. Both Mac OS X and Mac OS 9.2.2 must be installed on the computer in question.
    Some Mac OS 8.x apps have been known to run in Classic, but it's really suited to Mac OS 9 apps.
    Second, any apps that require direct access to the hardware — a common issue with games developed in Mac OS 9 and earlier — won't run in Classic mode.
    Finally, if you buy a new Intel-based Mac, Classic is not even an option: Classic mode is not available on Intel-based Macs, signaling the true death of Mac OS 9. So, if you're planning on getting a new, Intel-based Mac, none of the OS 8.6 apps you have can be used on such. You would need a Mac that employs PowerPC architecture, which are the last Macs that can run Classic.
    If you had a PowerPC-based Mac with Mac OS X and Mac OS 9.2.2 installed, you could then try installing your old apps using the original installation disks using the instructions in "Mac OS X 10.4 Help: Installing applications made for Mac OS 9." You'd probably also need an external USB floppy drive, assuming the apps are distributed on the usual 3.5" floppy disks.
    However, given the items noted above, there's no guarantee they would either install or work.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • How can I using tpcall from one service to another service in the same server

    When I using tpforward between two services in one server, it's working ok. However,
    when I using tpcall from one service to another service, it's failed?
    anybody can tell me why?
    thanks
    george

    "george" <[email protected]> wrote:
    >
    When I using tpforward between two services in one server, it's working
    ok. However,
    when I using tpcall from one service to another service, it's failed?
    anybody can tell me why?Basically, tpcall:ing another service in the same server is a no-no, unless you
    a) are running a multi-threaded server (requires TUXEDO 7 or newer + compilation
    options) or
    b) use tpacall() instead of tpcall() and specify the flag TPNOREPLY. This is probably
    not what you want to accomplish, though.
    The reason is that TUXEDO servers by default (and always in versions before 7)
    are single-threaded. If service A and B both reside in server X, server X will
    be busy taking care of the call to A. If A makes a call to B, the call will be
    put on the queue to X, but X will not look at the queue until it is done with
    A, which won't happen until B returns... deadlock!
    You can play tricks with starting multiple instances of X, but in the end you
    will always face a risk (something lika a race-condition) for a dead-lock.
    Solution: Move service B to another server (usually quite easy) OR switch to multi-threading,
    if that's possible. Just make sure all code your service calls is MT-safe as well...
    thanks
    georgeHope this helps you,
    /Per

  • How can I use footage from one project in another?

    The best format for saving your video from one project so that it can be used in another Premiere Elements project is DV-AVI. For hi-def video, the format is HDV.
    To save your video as a standard-definition DV-AVI, go to Share, Personal Computer and select the AVI output option with the DV preset. When you're ready to mix together these segments open a new project using the DV settings and assemble them on that timeline.
    To save your video as a high-definition M2T video, go to Share,  Personal Computer and select the MPEG output option with the 1440x1080 MPEG preset. When you're ready  to mix together these segments open a new project using the HDV settings  and assemble them on that timeline.

    The best format for saving your video from one project so that it can be used in another Premiere Elements project is DV-AVI. For hi-def video, the format is HDV.
    To save your video as a standard-definition DV-AVI, go to Share, Personal Computer and select the AVI output option with the DV preset. When you're ready to mix together these segments open a new project using the DV settings and assemble them on that timeline.
    To save your video as a high-definition M2T video, go to Share,  Personal Computer and select the MPEG output option with the 1440x1080 MPEG preset. When you're ready  to mix together these segments open a new project using the HDV settings  and assemble them on that timeline.

  • How can I use Imessage from Iphone to mac?

    Hello
    I am a new user for the awesome new feature Imessage
    And I have a question: how can I send a message to an IPad or IPod or Mac or IPhone from IPhone and Mac?
    Thanks

    To send from the iPhone to the mac or Ipad you need an email address to send to, instead of a phone number.
    on the iPad or mac you need to setup Messages. I do not have mesages on the mac and do not have an iPad but I have set it up on my iPod Touch and I assume it is similar.
    Settings>Messages>
    > iMessage > ON
    > Send Read Reveipts > ON or OFF your choice
    > Received At > [email protected]
    Enter your valid email address in the "Received At" field.
    As long as the email is valid it should work, and I assume you will need a different email for the iPad and Mac.

  • How can i use Itunes from an external drive

    How can I install iTunes on to an external drive an use as my master librarian for music and movies, it must pretty simple, thanks guys!

    Hi,
    Read this http://support.apple.com/kb/ht1449
    Jim

  • How can I use images from Jar files

    Hi,
    I would like to use the images provided by ADF if any on my UI like pencil Icon for Edit, pushpin for freeze and so on.
    How can I refer them in Image source. Custom images I have stored in my pubilc_html directory and using them.
    Do I need to unzip that to my project public_html directory ?
    Thanks,
    Satya

    Hi Satya,
    you can reference those images via the ADF resources servlet once you know the correct URL to an image.
    For example, in 10g the pencil icon is called lovi.gif, so its full URL will be
    http://host:port/context-root/adf/images/oracle/lovi.gifand you can use it in an af:objectImage like
    <af:objectImage source="/adf/images/oracle/lovi.gif" />Hope this helps,
    Patrik

  • How can I use Airport Extreme just as a file server - no wifi

    I'm setting up a new Apple environment for an invalid music buff.  Here are the components, all newly purchased.
    MacBook Pro
    Airport Extreme
    Airport Express
    I was handed a G-Drive with a large iTunes file collection on it.
    The user will have Comcast as his network provider and he already has a Comcast wireless router, so none of the Apple devices will need to be used as a wireless router or base station (assuming I understand what Apple means by a "base station").
    The Airport Express has the primary function of acting as an AirPlay device, feeding an analog music signal to the user's hi-end audio system (Denon integrated amplifier, Thiel Loudspeakers).
    The Airport Extreme has the sole function of acting as a network file share for the G-Drive.
    The MacBook Pro will operate iTunes and will get its music files from the network shared G-Drive and send it to the AirPlay device, which will feed the music signal to the hi-end audio system.
    I am able to get the Airport Express to simply act as a wireless client on the Comcast provided wireless network.  The MacBook Pro is also on the network and can see the Airport Express as an AirPlay device and send music to the audio system.
    What I'm having problems with is getting the Airport Extreme to simply act as a file server on this LAN.  It can either work in bridged mode and just be a wireless network client, or I can readily run an ethernet cable from the Airport Extreme to the Airport Express, or even to the Comcast router. 
    I tried to connect the MacBook Pro to the Airport Extreme with an ethernet cable and get it to "join an existing network", but it refused to recognize the Comcast provided network.  All it could see were some networks in homes nearby.
    I was hoping that if I just ran a network cable between the Airport Extreme and the Airport Express, that it would just get a network address over DHCP through the Airport Express.  Nope.
    So I'm stuck.   How do I get the Airport Express to simply act as a file server for the G-Drive on my LAN?

    +Can I use the Airport Extreme base station as a wired router, with wireless disabled for the time being?+
    Sure, but it will probably take just as much time...a few minutes....to turn the wireless off than simply change the name on the default wireless network to your personal choice.
    The AirPort Extreme is pre-configured to create a wireless network when it is hooked up to a modem. All you need do is assign a name to this network and establish a password. If you don't want to do this, you can turn the wireless off and use the device as a wired only router.
    AirPort Utility, the application that is used to setup the AirPort Extreme has a simple guided step by step process for you to configure the device the way you want.

  • How can I use my MAC OS X as syslog server ??

    Hi Team,
    Can you please help me in configuring my MAC machine as syslog server for my Cisco routers ?? I have the devices on same network and would like to forward all syslog messages to my MAC machine for analysing them.
    Thanks,

    Crocosmia wrote:
    Thank you for advise, will try apple store  another thing how can I increase my ramm and memory
    Check your machine's actual specifications here.
    It looks like you can support up to 3 MByte in a 17" iMac and up to 4 Mbyte in a 20" iMac, if your cache size coordinates with the specs on the linked page.
    OWC says you should be able to put 4 Gbyte into your machine here.  Wherever you get the memory, it would be a good addition.  This is the Apple Store listing for your machine, as near as I can figure it.

  • How can I use AirPlay from a wireless device while in 'Join a network' mode with an Ethernet client?

    I just got the brand new Airport Express (simultaneous dual-band 802.11n) and I'm trying to set it up to join an existing working wireless network that I have in my house, and to drive my home stereo amplifier and have my desktop hooked up via the wired Ethernet port on the Airport Express.  Here's how I set it up:
    -Wireless mode is 'Join a wireless network'
    -Wireless Network Name: <my home network>
    --Allow Ethernet clients is checked
    -Internet is configured via DHCP (it gets a valid DHCP lease and IP address on my subnet)
    -AirPlay is enabled
    -The audio out from the Airport Express is connected to my amplifier via an optical digital cable.
    If I leave it set up just as described above, I can select the Airport device from iTunes on my MacBook Pro and play music directly to the speakers.  Perfect.
    The problem comes when I go to plug in my desktop to the wired Ethernet port on the Airport Express.  As soon as I plug in the Ethernet, AirPlay stops working on the laptop.  Even if iTunes is in the middle of playing a track, the track will stop when the Ethernet cable is plugged in (with a device on the other end).  Doesn't matter which of the two Ethernet ports I use.  My desktop is able to use the internet while plugged in to the Airport Express, but iTunes on the laptop is no longer able to connect to the Airport Express to use AirPlay.
    I've found that if instead of plugging my desktop into the Airport Express's wired ethernet, I plug in the laptop, then iTunes on the laptop is able to use AirPlay -- but then no other devices on the network are able to use AirPlay.
    It appears that as soon as I plug in a wired Ethernet device to the Airport Express it only "listens" to AirPlay connections from devices connected to that wired interface.  But this is the opposite of what I want.  I want it to listen to AirPlay connections from wireless devices connected to the same network as the Airport Express.  Is this possible?  Is there some hidden setting I have to enable?
    Thanks!

    Hi Hreb,
    I can find nothing wrong with your configuration, but I was curious if there were something illegal about having an Express "join" a wireless network, and still have AirPlay enabled for wireless clients while simultaneously serving as a bridge to a wired one.
    To address that uncertainty I implemented your proposed application with the preceding model AirPort Express, and determined it works as you would expect it to: I connected a wired-only PC to the Express, verified that it can connect to the Internet, and streamed Airtunes from a Mac to speakers connected to the Express. I think this is what you want, and it works with no surprises. I was also able to stream Airtunes from the PC connected to the Express as you did, but as you know only one device can stream to the Express at any one time.
    I do not have a new simultaneous dual band Express to test though, so all I can conclude is that there may be a bug with the new one that is preventing you from accomplishing this.
    Since it is new, I recommend you call Applecare on Monday and explain what you are trying to do. Explain it works with the older Express and you think this ability should remain unchanged with the new dual band model. It is likely they won't be able to help, and at best will offer to exchange it for another one, but if it is a bug as I suspect any replacement dual-band Express will behave the same way.
    The important thing is to inform Apple and obtain a case number so that this problem will eventually get the attention of Engineering who might be able to address this with a future update.
    Let me know what you find out. Thanks.

Maybe you are looking for