Can not build a Universe based on a SAP/BW Query:

Hi,
In Universe Designer I can not build a Universe based on a SAP/BW Query:
-The Universe Items -> Sight -> Universe Window and -> Sight -> Liste Mode are greyed our
- Its simply not possible to move Universe "Objects" = "Classes" into the Table, Join or
Item Plane.
I am useing:
-BO XI 3.1
-BO Solutions for SAP Integration
-Universe Designer
Universe Designer based on a Database is ok
The Connection to the SAP System is stored in BO XI 3.1
What's missing ?
Any Rights/Authorizations are Misseing ?
Thanks a lot !
Martin

Hi
when working with OLAP universes (eg. universes based on SAP BW queries) it is not possible to work as you normally do when you have a universe based on a relational data source. The data madel is the one from the OLAP source (cube) so it is not possible to create your on joins, tables etc. In this case you can only add/modify the objects in the object browser (left panel).
Regards,
Stratos
PS: The Data Federator will allo you to create relational universes on an SAP BW source. Still this is a product that must be licensed seperately and currently does not support SAP logon ticket-based SSO.

Similar Messages

  • Can not build a template based page with customized page type.

    I built a customized page type (with persepective attribute) and wanted to build pages with this type. If the new pages do not based on any template, it works fine. However, if I wanted to use a template, the page type was set back to "standard"!
    Steps to reproduce it:
    1. create a new page type - test page type.
    2. create a new template = test template.
    3. create a new page - test page.
    3.1 choose the page type to be "test page type"
    3.2 fill in the form including the new attribute info.
    3.2 choose the page template to be 'test template"
    3.3 click finish
    4. click the properties of "test page", it shows that the page type is "standard" and the new attribute information is gone!
    If in step 3.2, no template is chosen, the properties of the new page shows the page type is "test page type".
    I tried to find a workaround.
    1. create a page with "test page type".
    2. covert the new page to template.
    I got this error message:
    Error while copying page. (WWC-44262)
    (WWC-00000)
    Looks like customized page type and template can not coexist. Is this a bug?

    How long should the upgrade take? And should it be attempted on a production (infrastructure on machine 1/middle-tier on machine 2) Windows 2000 architecture? Or should be wait for 9.0.4? Or ... should I ask this in a TAR? Thanks!
    Mike

  • JDeveloper, Can not build schema - Help Required

    Hi everyone,
    I am facing a peculiar problem with Jdeveloper. (10.1.3.4.4270)
    I am developing an ESB project. When referring to a XSD from within a XSD using a URL i.e. import, It's giving me error.
    Here is the sample code:_
    <?xml version="1.0" encoding="utf-8"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    <xsd:import namespace="http://xmlns.mysite.com/q/types"
              schemaLocation="http://192.168.8.10:7072/mySchemas/xmltypes.xsd" />
    ( [http://192.168.8.10:7072/mySchemas/xmltypes.xsd|http://192.168.8.10:7072/mySchemas/xmltypes.xsd] is accessible from a browser directly on the machine where project dir exists)
    When opening the XSD is design mode its showing red(error) for any element that uses types from xmltypes.xsd. When opening the XSL mapping which uses the current XSD its gives the following error:
    "Failed to open the target schema:
    Can not build schema 'http://xmlns.mysite.com/q/types' located at 'file :/C: /....../*xmltypes.xsd*'"
    +(It seems Jdeveloper is looking for the xmltypes.xsd in project dir, even though the import points to a URL)+
    The same code above works fine in Eclipse Gynamade and elements in current XSD are able to refer to types in xmltypes.xsd.
    What could be the problem. I am not finding any solution for this.
    Thanks in advance.

    Thank you for your reply.ButI had assign the dba role to the user,and could you tell me what version can build the schema.I had use the RAM 6.3.4.0.0 Complete 6.334
    Thank in advance
    Chris

  • For Macbook Pro Mid2010: Why not build a WiFi based AirDrop solution between iOS8 and Yosemite? Really sad it does not work.

    For Macbook Pro Mid2010: Why not build a WiFi based AirDrop solution between iOS8 and Yosemite? Really sad it does not work.

    Your Mac is too old
    To Airdrop between a Mac an iOS device
    System Requirements
    To see if your Mac works with AirDrop, make sure you’re in the Finder by clicking the desktop (the background area of your screen), or by clicking the Finder icon in the Dock. Then, check to see if AirDrop is listed as an option in the Go menu. If you don't see AirDrop listed, your Mac doesn't support this feature.
    In order to transfer files between a Mac and and an iPhone, iPad or iPod touch
    your iOS device needs to include a lightning connector
    your iOS device needs iOS 7 or later installed
    your Mac needs to be a 2012 or later model with OS X Yosemite installed
    Your Mac and iOS device both need bluetooth and Wi-Fi turned on. You do not have to be connected to a specific Wi-Fi network.
    To transfer files between two Mac computers, you need the Mac models listed below with Wi-Fi turned on and OS X Lion or later installed.
    From:
    Mac Basics: AirDrop lets you send files from your Mac to nearby Macs and iOS devices - Apple Support

  • Schema Parser - Can not build Schema

    I keep getting the following exception error:
    "Can not build schema '' located at 'http://localhost/cv_enterprise.xsd''"
    This is the Code which throws the error :
    Reader r = cvcontext.Request.getReader();
    InputSource in_src = new InputSource(r);
    try {
    schemadoc = (XMLSchema)builder.build("c:/broadwing/xml/cv_enterprise.xsd");
    }catch(Exception ept){writeError("error in builiding " + ept.getMessage());}
    writeError("three");*/
    DOMParser dp = new DOMParser();
    dp.setValidationMode(false);
    dp.setSchemaValidationMode(true);
    dp.setPreserveWhitespace(true);
    dp.parse(r);
    But the following lines of code works perfect:
    try{
    File f =new File(filename);
    FileReader r = new FileReader(f);
    DOMParser dp = new DOMParser();
    URL url = createURL (filename);
    dp.setValidationMode(false);
    dp.setSchemaValidationMode(true);
    dp.setPreserveWhitespace(true);
    dp.parse(url);
    System.out.println("it is parsed");
    }catch(Exception e){System.out.println("there is error"+e.getMessage());}
    The only difference between two is the first one works under a servlet environment and the second is a standalone application. Both use the same xml and xsd documents. The servlet receives the xml via http post and the application takes the xml as commandline argument.
    The xml document has the xsd reference as http url.
    null

    I keep getting the following exception error:
    "Can not build schema '' located at 'http://localhost/cv_enterprise.xsd''"
    This is the Code which throws the error :
    Reader r = cvcontext.Request.getReader();
    InputSource in_src = new InputSource(r);
    try {
    schemadoc = (XMLSchema)builder.build("c:/broadwing/xml/cv_enterprise.xsd");
    }catch(Exception ept){writeError("error in builiding " + ept.getMessage());}
    writeError("three");*/
    DOMParser dp = new DOMParser();
    dp.setValidationMode(false);
    dp.setSchemaValidationMode(true);
    dp.setPreserveWhitespace(true);
    dp.parse(r);
    But the following lines of code works perfect:
    try{
    File f =new File(filename);
    FileReader r = new FileReader(f);
    DOMParser dp = new DOMParser();
    URL url = createURL (filename);
    dp.setValidationMode(false);
    dp.setSchemaValidationMode(true);
    dp.setPreserveWhitespace(true);
    dp.parse(url);
    System.out.println("it is parsed");
    }catch(Exception e){System.out.println("there is error"+e.getMessage());}
    The only difference between two is the first one works under a servlet environment and the second is a standalone application. Both use the same xml and xsd documents. The servlet receives the xml via http post and the application takes the xml as commandline argument.
    The xml document has the xsd reference as http url.
    null

  • Can someone help me? Why i can not build RSA key pair

    i download the java_card_kit-2_2_01-win-gl.zip from sun's web site
    and i use the keypair class to build a RSA key pair
    but it always throws NO_SUCH_ALGORITHM excption.
    how can i build a key pair

    This has been covered a million times. There isn't any crypto implementation with Sun's kit. This is mentioned in the documentation.

  • Designing Universe on a Bex (SAP BI) Query

    Hi,
    I have  a requirement to build a Universe to extract BI data into BO and then create WebI reports on it. The two possibilities I see here are building the Universe on the Multi provider or directly on the queries. Which one would be a better approach?
    Say, If I choose to build the universe on the query, will the characteristics and key figures in the rows and columns, free characteristics of the query become objects in the Universe. What will happen to the variables in the query, do I need to create them again in the universe or the WebI level.
    Thanks
    Rashmi.

    Thanks for the replies. I created a universe on a sales  which has fiscal period in the rows and sales revenue in the column. On the top of the universe i created a WEBI report and compared the BEx and the WEBI  reports and both matched. After that I created a restriction of Fiscal Period = '004.2003' in the Bex report.
    While the Bex report shows the revenue numbers only for  that period, WebI report showed the same old values ( for all period). How do the restrictions work between BEx and BO. Is is not enough if i restrict data the Bex level itself, do I need to do anything additional at the universe or the WEBI level again.
    Thanks
    Rashmi.

  • Can not build extensiomn using Extensio

    Hi,
    I am building extension using Flash Builder 4.6 and extension builder 2.1. Compilation job is done corrcetly by FB but extension builder is throwing the error as given below.
    Errors running builder 'Adobe Creative Suite Extension Builder' on project 'AppStudioExporter'.
    Please log in with your Adobe ID to use Adobe Creative Suite Extension Builder.
    I am using correct credentials, still facing the issue.
    any idea what mistake i am doing.

    HI BSW,
    Thanks for sharing the log files with us . It seems like that we hare having trouble extracting the file may be because of an Antivirus running in the background or with the permissions on the machine . Can you please try the following stuff on your machine .
    1) Please try renaming the folder C:\Users\brian\AppData\Local\Adobe\AAMUpdater\1.0 and try creating a fresh package and include the update as well .
    2) If the above mentioned doesnt work , please try the same in a new Admin account and check .
    Please let us know if it works for you or not .
    Cheers,
    Kartikay Sharma

  • Can not build TNS connection from remote station but local do

    i install a new instance, everything work well in local machine,
    invole local service name, however, once i do the same work to
    build a new TNS service name by net assist at another (remote)
    machine, it always prompt on: " target object is not availabe"
    or something like this;
    i wonder why the local TNS service connection can work(it seems
    proved everything well), but remote can't, what is the problem?
    thank in advance

    I entered the following message on Sep. 29th and have not yet received a reply so I'm repeating it here:
    I could not get IIOP to work either remotely or locally on my server. My environment runs Oracle 8.1.6 under Windows 2000 Server.
    Per Oracle documentation, I added:
    DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = SERVERNAME)(PORT = 2481))
    (PROTOCOL_STACK =
    (PRESENTATION = GIOP)
    (SESSION = RAW)
    to my listener.ora file and:
    mts_dispatchers="(protocol=tcp)(presentation=oracle.aurora.server.SGiopServer)"
    to my init.ora file. When I used the sses_sh command I got the following first few lines:
    "Exception in thread "main" org.omg.CORBA.COM_FAILURE[completed=MAYBE, reason = java.net.SocketException: Socket failed]..."
    Looking at the log I got the following error:
    "TNS-12516 TNS:listener could not find available handler with matching protocol stack".
    I didn't see anything interesting in the trace file.
    Is there something else I need to do to get the listener to find the proper protocol stack? Has anyone encountered and found the solution to this problem?
    null

  • Can not build schema in the ram

    Hi
    I setup a simple data module in RAM,
    dimensions:Product
    level:Total>Item
    variables:Price,Quantity.
    save,and the message appear,data module complete.
    and go to poject>build schema,entry the prefix 'osa',press the next button,go thought the step 2,in the step 3,select preview,in the note you can see the error :'Write Drop/Create Lkup Tbl Indices for Dimension: There was an error committing the Project to the database. All changes will be rolled back. '
    I do not what lead to this error,Pls tell me what happen and how can I fix this.
    Thank in advance
    Chris

    Thank you for your reply.ButI had assign the dba role to the user,and could you tell me what version can build the schema.I had use the RAM 6.3.4.0.0 Complete 6.334
    Thank in advance
    Chris

  • Can not build cRIO host VI - niFpgaDmaChannelImplementation.ctl error

    I am trying to build my host VI on a crio9074.  About half way through the build it hangs up while "Saving niFpgaDmaChannelImplementation.ctl".  It then hangs there for about 10 minutes and then I finally get a error that the build failed with this message:  
    niFpgaDmaChannelImplementation.ctl 
    Invoke Node in AB_Source_VI.lvclass:Close_Reference.vi->AB_Build.lvclass:Copy_Files.vi->AB_Application.lvclass:Copy_Files.vi->AB_RTEXE.lvclass:Copy_Files.vi->AB_Build.lvclass:Build.vi->AB_Application.lvclass:Build.vi->AB_RTEXE.lvclass:Build.vi->AB_Engine_Build.vi->AB_Build_Invoke.vi->AB_Build_Invoke.vi.ProxyCallerMethod Name: Save:Target Instrument 
    Happens consistently every time, so I am stuck.  I searched and the control mentioned is in one of the LV support directories.  The VI I am trying to build does use FIFO reads to communicate with the FPGA.   
    Message Edited by bradh on 04-09-2010 07:55 AM
    Solved!
    Go to Solution.

    Is there a numeric error code associated with this error?  I think what you are seeing is that when you are building the rtexe, files are being pulled in to the executable and causing the file paths to be too long.  Windows can only support file names of 255 characters or less.  What happens if you move the location of the rtexe up on your machine's directory hierarchy?  For instance, if you specify the location of the build to go to C:\ or C:\builds, something with a short path, does the build succeed?
    Donovan

  • [Solved] Can not build modules for VMware Player after kernel updates

    I have a problem generating the modules for VMware Player after kernel updates. I am using  VMware Player version 5.02 (without patches) and the softlink according to the Wiki.
    When I start the installation of the modules from the GUI, the program just closes. Running vmware-modconfig in the CLI generates the following log file:
    2013-04-29T09:49:27.891+01:00| vthread-3| I120: Log for VMware Workstation pid=7478 version=9.0.2 build=build-1031769 option=Release
    2013-04-29T09:49:27.891+01:00| vthread-3| I120: The process is 64-bit.
    2013-04-29T09:49:27.891+01:00| vthread-3| I120: Host codepage=UTF-8 encoding=UTF-8
    2013-04-29T09:49:27.891+01:00| vthread-3| I120: Host is Linux 3.8.10-1-ARCH 2012.11.29
    2013-04-29T09:49:27.891+01:00| vthread-3| I120: Msg_Reset:
    2013-04-29T09:49:27.891+01:00| vthread-3| I120: [msg.dictionary.load.openFailed] Cannot open file "/usr/lib/vmware/settings": Datei oder Verzeichnis nicht gefunden.
    2013-04-29T09:49:27.891+01:00| vthread-3| I120: ----------------------------------------
    2013-04-29T09:49:27.891+01:00| vthread-3| I120: PREF Optional preferences file not found at /usr/lib/vmware/settings. Using default values.
    2013-04-29T09:49:27.891+01:00| vthread-3| I120: Msg_Reset:
    2013-04-29T09:49:27.891+01:00| vthread-3| I120: [msg.dictionary.load.openFailed] Cannot open file "/root/.vmware/config": Datei oder Verzeichnis nicht gefunden.
    2013-04-29T09:49:27.891+01:00| vthread-3| I120: ----------------------------------------
    2013-04-29T09:49:27.891+01:00| vthread-3| I120: PREF Optional preferences file not found at /root/.vmware/config. Using default values.
    2013-04-29T09:49:27.891+01:00| vthread-3| W110: Logging to /tmp/vmware-root/vmware-modconfig-7478.log
    2013-04-29T09:49:27.892+01:00| vthread-3| W110: Icon name must be set.
    Interestingly, after deinstallation and reinstallation the VMWare Player works fine.
    Any hint, what's going wrong?
    Last edited by Thomas_Do (2013-08-07 07:25:51)

    Today, (Kernel  3.10.5-1, VMware Player version 5.02 with kernel patches) the modules could successful be generated from the CLI:
    vmware-modconfig --console --install-all
    Solved (somehow).

  • Can not build export of application

    When i run my application in debug mode .. all works perfectly.
    But when i try build run-mode application. Flash builder returns warnings like that
    Описание Ресурс Путь Расположение Тип
    Design:itemPage is a module or application that is directly referenced. This will cause Design:itemPage and all of its dependencies to be linked in with fx. Using an interface is the recommended practice to avoid this. fx Неизвестно Проблема Flex
    map:mapEdit is a module or application that is directly referenced. This will cause map:mapEdit and all of its dependencies to be linked in with fx. Using an interface is the recommended practice to avoid this. fx Неизвестно Проблема Flex
    map:mapPage is a module or application that is directly referenced. This will cause map:mapPage and all of its dependencies to be linked in with fx. Using an interface is the recommended practice to avoid this. fx Неизвестно Проблема Flex
    menu:myMenu is a module or application that is directly referenced. This will cause menu:myMenu and all of its dependencies to be linked in with fx. Using an interface is the recommended practice to avoid this. fx Неизвестно Проблема Flex
    What does that meen? What i have to do?
    Google is don't know.
    PS Sorry for my english.

    Hi,
    The underlying problem here that the warning is trying to make you aware of:
    If you refer to a module or application directly in your code, that module will become part of your application (thereby losing the advantage of making a separate module out of it that loads later).
    The recommended way in such cases is to define an interface that both the application and module knows about. See http://livedocs.adobe.com/flex/3/html/help.html?content=modular_2.html for more info.
    Cheers,
    Anirudh

  • Can not build the client example of the webservices/rpc-example

    Hi!
    I have some problems with building the client example of the webservices rpc example.
    I followed the instructions of the readme and was able to build the weatherejb,
    after I saved the client.jar in %WL_HOME%\samples\examples\webservices\rpc\javaClient
    I put the cleint.jar into the classpath of the setExamplesEnv.cmd:
    set CLASSPATH=%JAVA_HOME%\lib\tools.jar;%WL_HOME%\lib\weblogic_sp.jar;%WL_HOME%\lib\weblogic.jar;%WL_HOME%\lib\xmlx.jar;%WL_HOME%\samples\eval\cloudscape\lib\cloudscape.jar;%WL_HOME%\samples\examples\webservices\rpc\javaClient\client.jar;%CLIENT_CLASSES%;%SERVER_CLASSES%;%EX_WEBAPP_CLASSES%;C:\bea
    but if I now change to
    $ cd %WL_HOME%\samples\examples\webservices\rpc\javaClient
    and try to build the ear -files by typing:
    ant
    I get the message:
    C:\bea\samples\examples\webservices\rpc\javaClient>ant
    Buildfile: build.xml
    compile:
    [javac] Compiling 3 source files to C:\bea\config\examples\clientclasses
    [javac] C:\bea\samples\examples\webservices\rpc\javaClient\Client.java:8:
    ca
    nnot resolve symbol
    [javac] symbol : class Weather
    [javac] location: package weatherEJB
    [javac] import examples.webservices.rpc.weatherEJB.Weather;
    [javac] ^
    [javac] C:\bea\samples\examples\webservices\rpc\javaClient\Client.java:28:
    c
    annot resolve symbol
    [javac] symbol : class Weather
    [javac] location: class examples.webservices.rpc.javaClient.Client
    [javac] Weather.class.getName() );
    [javac] ^
    [javac] C:\bea\samples\examples\webservices\rpc\javaClient\Client.java:34:
    c
    annot resolve symbol
    [javac] symbol : class Weather
    [javac] location: class examples.webservices.rpc.javaClient.Client
    [javac] Weather service = (Weather)context.lookup("http://localhost:7001
    /weather/statelessSession.WeatherHome/statelessSession.WeatherHome.wsdl");
    [javac] ^
    [javac] C:\bea\samples\examples\webservices\rpc\javaClient\Client.java:34:
    c
    annot resolve symbol
    [javac] symbol : class Weather
    [javac] location: class examples.webservices.rpc.javaClient.Client
    [javac] Weather service = (Weather)context.lookup("http://localhost:7001
    /weather/statelessSession.WeatherHome/statelessSession.WeatherHome.wsdl");
    [javac] ^
    [javac] 4 errors
    BUILD FAILED
    C:\bea\samples\examples\webservices\rpc\javaClient\build.xml:13: Compile failed,
    messages should have been provided.
    Total time: 3 seconds
    thanx

    Well, Remember(you might have done this) u have to run the
    setExamplesEnv.cmd after u add the client.jar in the classpath. Also, the
    ant command will work only in the window where u ran the setExamplesEnv.cmd.
    Thats what i didnt and it works perfect for me.
    Hope this helps u.
    Regards
    Elangovan
    Naz wrote in message <[email protected]>...
    >
    Hi!
    I have some problems with building the client example of the webservicesrpc example.
    I followed the instructions of the readme and was able to build theweatherejb,
    after I saved the client.jar in%WL_HOME%\samples\examples\webservices\rpc\javaClient
    I put the cleint.jar into the classpath of the setExamplesEnv.cmd:
    setCLASSPATH=%JAVA_HOME%\lib\tools.jar;%WL_HOME%\lib\weblogic_sp.jar;%WL_HOME%\
    lib\weblogic.jar;%WL_HOME%\lib\xmlx.jar;%WL_HOME%\samples\eval\cloudscape\li
    b\cloudscape.jar;%WL_HOME%\samples\examples\webservices\rpc\javaClient\clien
    t.jar;%CLIENT_CLASSES%;%SERVER_CLASSES%;%EX_WEBAPP_CLASSES%;C:\bea
    >
    but if I now change to
    $ cd %WL_HOME%\samples\examples\webservices\rpc\javaClient
    and try to build the ear -files by typing:
    ant
    I get the message:
    C:\bea\samples\examples\webservices\rpc\javaClient>ant
    Buildfile: build.xml
    compile:
    [javac] Compiling 3 source files toC:\bea\config\examples\clientclasses
    [javac]C:\bea\samples\examples\webservices\rpc\javaClient\Client.java:8:
    ca
    nnot resolve symbol
    [javac] symbol : class Weather
    [javac] location: package weatherEJB
    [javac] import examples.webservices.rpc.weatherEJB.Weather;
    [javac] ^
    [javac]C:\bea\samples\examples\webservices\rpc\javaClient\Client.java:28:
    c
    annot resolve symbol
    [javac] symbol : class Weather
    [javac] location: class examples.webservices.rpc.javaClient.Client
    [javac] Weather.class.getName() );
    [javac] ^
    [javac]C:\bea\samples\examples\webservices\rpc\javaClient\Client.java:34:
    c
    annot resolve symbol
    [javac] symbol : class Weather
    [javac] location: class examples.webservices.rpc.javaClient.Client
    [javac] Weather service =(Weather)context.lookup("http://localhost:7001
    /weather/statelessSession.WeatherHome/statelessSession.WeatherHome.wsdl");
    [javac] ^
    [javac]C:\bea\samples\examples\webservices\rpc\javaClient\Client.java:34:
    c
    annot resolve symbol
    [javac] symbol : class Weather
    [javac] location: class examples.webservices.rpc.javaClient.Client
    [javac] Weather service =(Weather)context.lookup("http://localhost:7001
    /weather/statelessSession.WeatherHome/statelessSession.WeatherHome.wsdl");
    [javac] ^
    [javac] 4 errors
    BUILD FAILED
    C:\bea\samples\examples\webservices\rpc\javaClient\build.xml:13: Compilefailed,
    messages should have been provided.
    Total time: 3 seconds
    thanx

  • Can not build Apache 2.2.11 for Solaris 10 x86 11/06

    Dear all,
    during the 'make' procedure for Apache 2.2.11 under Solaris 10 x86 we
    see these errors:
    /tmp/apache/httpd-2.2.11/srclib/apr/libtool silent mode=compile
    gcc -g -O2
    -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -
    D_LARGEFILE64_SOURCE
    -I/tmp/apache/httpd-2.2.11/srclib/pcre -I. -I/tmp/apache/httpd-2.2.11/
    os/unix
    -I/tmp/apache/httpd-2.2.11/server/mpm/prefork
    -I/tmp/apache/httpd-2.2.11/modules/http
    -I/tmp/apache/httpd-2.2.11/modules/filters
    -I/tmp/apache/httpd-2.2.11/modules/proxy -I/tmp/apache/httpd-2.2.11/
    include
    -I/tmp/apache/httpd-2.2.11/modules/generators
    -I/tmp/apache/httpd-2.2.11/modules/mappers
    -I/tmp/apache/httpd-2.2.11/modules/database
    -I/tmp/apache/httpd-2.2.11/srclib/apr/include
    -I/tmp/apache/httpd-2.2.9/srclib/apr-util/include
    -I/tmp/apache/httpd-2.2.11/modules/proxy/../generators
    -I/tmp/apache/httpd-2.2.11/modules/ssl
    -I/tmp/apache/httpd-2.2.11/modules/dav/main -prefer-non-pic -static -c
    htpasswd.c && touch htpasswd.lo
    /tmp/apache/httpd-2.2.11/srclib/apr/libtool silent mode=link gcc -
    g -O2
    -o htpasswd htpasswd.lo -lm /tmp/apache/httpd-2.2.11/srclib/pcre/
    libpcre.la
    /tmp/apache/httpd-2.2.11/srclib/apr-util/libaprutil-1.la -lexpat
    /tmp/apache/httpd-2.2.11/srclib/apr/libapr-1.la -luuid -lsendfile -lrt
    -lsocket
    -lnsl -lpthread
    Undefined symbol first referenced in file
    atomic_swap_32 /tmp/apache/httpd-2.2.11/srclib/apr/.libs/libapr-1.so
    atomic_cas_ptr /tmp/apache/httpd-2.2.11/srclib/apr/.libs/libapr-1.so
    atomic_swap_ptr /tmp/apache/httpd-2.2.11/srclib/apr/.libs/libapr-1.so
    atomic_inc_32_nv /tmp/apache/httpd-2.2.11/srclib/apr/.libs/libapr-1.so
    atomic_dec_32_nv /tmp/apache/httpd-2.2.11/srclib/apr/.libs/libapr-1.so
    atomic_cas_32 /tmp/apache/httpd-2.2.11/srclib/apr/.libs/libapr-1.so
    ld: fatal: Symbol referencing errors. No output written to .libs/htpasswd
    collect2: ld returned 1 exit status
    *** Error code 1
    make: Fatal error: Command failed for target `htpasswd'
    Any idea how to solve this problem?
    THX, Rainer

    We got it!!!
    An Upgrade to Solaris 10 x86 5/08 did the trick but don't ask me why.
    THX, Rainer

Maybe you are looking for