Global (Syndicated) Portal with EP60 - problem

hi,
We are trying to implement Global Portal Scenario with syndicated content  between two EP6 Systems. We established trust between them, pointed them to common data source. We followed the document in "ASAP How to - Guide..." for doing this one.
The problem is with creating the Remote iViews. We are not able to do that. There is one Note mentioned in that No-<b>852071</b>. That note doesn't exist in Service Market Place. WHY?
Again, it looks like there is a connection problem between systems.
What are we missing out? if any more details required regarding the situation, pl. reply to the thread. We are looking forward to solve this issue.
Thanks
Ak.
PS: Points will be appropriately awarded
Message was edited by:
        Arunkumar Ravi

This is the trace i got
<i>
#1.5#001372736B74006C0000000A000013DC00042518CDFE2EEE#1166688371726#com.sap.portal.applicationFramework.tools.wizardframework#sap.com/irj
#com.sap.portal.applicationFramework.tools.wizardframework
#FPNUser#57##B3L1A189.cts.com_J2E_9948550#FPNUser#4920bc7090c911dbaacb001372736b74#SAPEngine_Application_Thread[impl:3]_13##0#0#Fatal#1#/System/Server#Java###wizard session No: 27: No content to display##
#1.5#001372736B7400540000004F000013DC00042518CEA4297A#1166688382588#com.sap.security.portal.service.usermapping#sap.com/irj#com.sap.security.portal.service.usermapping.[cf=com.sapportals.portal.prt.service.usermapping.UserMappingService][md=getMappingData()][cl=null]
#FPNUser#57##B3L1A189.cts.com_J2E_9948550#FPNUser#4920bc7090c911dbaacb001372736b74#SAPEngine_Application_Thread[impl:3]_31##0#0#Error##Plain###<b>UserMappingService: Lookup for system's unique Id failed</b>.
<b>Context: UME principal to be mapped = "User, FPN", principal's type: user, mapped user in target system = "(null)" system alias = "Default_System_Alias"</b>Exception: (none)#
#1.5#001372736B74005400000052000013DC00042518CEA53165#1166688382666#com.sap.portal.portal#sap.com/irj#com.sap.portal.portal#FPNUser#57##B3L1A189.cts.com_J2E_9948550#FPNUser#4920bc7090c911dbaacb001372736b74#SAPEngine_Application_Thread[impl:3]_31##0#0#Warning#1#/System/Server#Java###Call failed
[EXCEPTION]
#1#SOAP Fault Exception [Actor [B3L1A192] com.sapportals.portal.prt.service.soap.exception.SoapFaultHandler] : <b>The User Authentification is not correct to access to the Portal Service AutoGenProducer or the service was not found</b>.
<type>java.lang.IllegalAccessError</type>
</i>
Awaiting your replies...
Regards
Ak.

Similar Messages

  • As I bought my iPhone 5 16GB,White in the USA from Sprint, full price with tax,unlocked ,it was excepted to be a global phone. But now I come across with some problems in Chinausing local carrier, everything is working properly except sending text message

    Dear AppleCare,
    As I bought my iPhone 5 16GB,White in the USA from Sprint, full price with tax,unlocked ,it was excepted to be a global phone. But now I come across with some problems in Chinausing local carrier, everything is working properly except sending text message, and iMessage and Facetime also seem not to work.This is very serious for Apple and me! Will I have the chance to fix this?
    I tried all the possible solutions from the Internet, and the Official solution offered by Apple (http://support.apple.com/kb/TS4459), but it doesn't seem to work.
    Will Apple help me with this issue? Please do.
    Information of my iPhone:
    SN:F1*******8GJ
    IMEI: ****
    MEID: ****
    ICCID: ****
    My Apple ID account:****
    <Personal Information Edited By Host>

    I had the same problem.  Kept getting message of waiting for activation or check network connections.  I also tried every solution out there and nothing worked.  This did though:  I download the newest version of itunes (through Internet Explorer - Google Chrome wouldn't work).  It pulled in my entire library thank goodness and then I plugged my iphone 4s into the computer.  I let itunes find it, did a complete backup in icloud, then did a restore.  Entire process took a couple of hours, but I now have imessage and facetime back.  I was about ready to give up on Apple and go get a different phone ~

  • Global Temp table with BLOB causing session crash

    Hi,
    i have a table as follows:
    create global temporary table spg_file_import (
    name varchar2 (128) constraint sfi_nam_ck not null,
    mime_type varchar2 (128),
    doc_size number,
    dad_charset varchar2 (128),
    last_updated date,
    content_type varchar2 (128),
    content long raw,
    blob_content blob
    on commit delete rows
    this is my 9ias 'document' table thats used to receive uploaded files which i modified to be global temporary.
    what i want to do is:
    a)upload a text file (xml)
    b) convert that file to clob
    c) store that file in new permanent table as clob
    d) commit (hence delete temp table rows as they are no longer necessary)
    to test it i have:
    CREATE OR REPLACE procedure daz_html
    as
    begin
    htp.p(' <FORM enctype="multipart/form-data" action="daz_fu" method="POST">');
    htp.p(' <p>');
    htp.p(' File to upload: <INPUT type="file" name="p_file_in"><br>');
    htp.p(' <p><INPUT type="submit">');
    htp.p(' </form>');
    htp.p('</body>');
    htp.p('</html>');
    end;
    CREATE OR REPLACE procedure daz_fu (
    p_file_in varchar2
    as
    -- BLOB Stream locator
    v_raw blob;
    v_clob clob;
    v_blob_length number;
    v_length number;
    v_buffer varchar2(32767);
    v_pos number := 1;
    begin
    -- Get xml document from transient 9iAs data store.
    select blob_content
    into v_raw
    from spg_file_import
    where name = p_file_in;
    -- create temp LOB
    dbms_lob.createtemporary(v_clob, false);
    -- get BLOB length
    v_blob_length := dbms_lob.getlength(v_raw);
    loop
    -- get length to read. this is set as a max length of 32767
    v_length := least((v_blob_length - (v_pos-1)),32767);
    -- assign BLOB to a varchar2 buffer in preparation to convert to CLOB
    v_buffer := utl_raw.cast_to_varchar2(dbms_lob.substr(v_raw, v_length, v_pos));
    -- now write out to the CLOB
    dbms_lob.writeappend(v_clob, v_length, v_buffer);
    -- increment our position.
    v_pos := v_pos + v_length;
    -- exit when we are done.
    exit when v_pos >= v_blob_length;
    end loop;
    commit;
    htp.p('commit done!');
    end;
    now if i upload a small text file (about 5kb) it works with no problem.
    however if I upload a large text file (say about 1Mb) it crashes oracle with:
    Fri, 26 Jul 2002 11:49:24 GMT
    ORA-03113: end-of-file on communication channel
    DAD name: spgd1
    PROCEDURE : daz_fu
    USER : spg
    URL : http://www.bracknell.bt.co.uk/pls/spgd1/daz_fu
    PARAMETERS :
    ============
    p_file_in:
    F22210/Document.txt
    this produces a large trc file.. the trace file indicates the crash occured on the commit; line
    Current RBA:[0x4eb0.117.10]
    *** 2002-07-26 12:35:11.857
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [kcblibr_user_found], [4294967295], [2], [12583564], [65], [], [], []
    Current SQL statement for this session:
    declare
    rc__ number;
    begin
    owa.init_cgi_env(:n__,:nm__,:v__);
    htp.HTBUF_LEN := 255;
    null;
    daz_fu(p_ref_in=>:p_ref_in,p_type_in=>:p_type_in,p_file_in=>:p_file_in);
    if (wpg_docload.is_file_download) then
    rc__ := 1;
    wpg_docload.get_download_file(:doc_info);
    null;
    commit;
    else
    rc__ := 0; null;
    commit;
    owa.get_page(:data__,:ndata__);
    end if;
    :rc__ := rc__;
    end;
    ----- PL/SQL Call Stack -----
    object line object
    handle number name
    812b1998 42 procedure SPG.DAZ_FU
    819dff90 7 anonymous block
    ----- Call Stack Trace -----
    If i reaplce the temporary table with a non-temp table of the same structure i get no problems what-so-ever. Am I doing something that I shouldnt be with global temporary tables?
    Thanks.

    This is on Oracle 8.1.7.2

  • Global Address Cleansing with suggestion

    Iu2019m using Global Address Cleansing with suggestion list enabled.  The problem Iu2019m having is for that Canadian addresses are not populating the address related fields (i.e. primary name, number, etcu2026) until the selection process is complete.  This differs from the US engines that populate the fields with each reply.  Is there a way to replicate how the US engine handles suggestion replies within the Global Address Cleansing transform?
    We are using Data Services v 3.2 (12.2.1.2)
    Thanks for your help in advance

    HI,
    I am also facing the same issue with Canada address.
    Did you resolved your issue?
    Thanks,
    Ravi

  • Portal with CUA userbase

    Hi,
    Our Scenario:
    We are using portal with CUA userbase.
    But, now we want to use the portal for a Non-CUA system users ( this system is not part of CUA)
    How can I set up the portal authentication ? Can I setup two user bases ?
    Please advice

    Are you talking about the same portal or different portal systems ?
    If you are talking about the same portal, the only option I see is to add the other users to the CUA. If you are talking about a two portal installations, there is no problem, except that for SSO, the users have to have the same name in both installations.
    Regards,
    Patrick

  • Wlcs 3.5 migration to portal 4.0 problem

    Hello, can anybody help with this problem ?
    We are migrating a WLCS3.5 application to portal 4.0 (as a requires middle step
    to wlp7.0)
    Despite some known issues with the migration tool, (the migraton tool craches
    if
    webflow properties has empty lines, etc.) we have webflow and placehloders migrated.
    However we were not able to extract the content selectors,
    and rulesets ( aprox 100 content selectors), the tool is crashing with sax errors.
    Is there a way to convert clob fields in placeholder table
    (only those corresponding to content selectors) to the xml files
    required for wlp 4.0 ?
    source platform: wlcs 3.5 sp1 / wls 6.0 sp2 / solaris / oracle 817
    destination platform wlp 4.0 sp3/ wls 6.1 SP4 / solaris / oracle 817
    Ihe error the migration tool gives is :
    -------------- Start of Rules Migration ------------------
    Tue Apr 15 15:36:32 CST 2003 Message: Retrieving Rule Set Documents from databas
    e.
    Tue Apr 15 15:36:32 CST 2003 Message: A SAXException occurred while attempting
    t
    o retrieve document(s)...
    Tue Apr 15 15:36:32 CST 2003 Message: Aborting migration task due to error!
    Tue Apr 15 15:36:32 CST 2003 Message: A SAXException occurred while attempting
    t
    o retireve document(s)...
    full error attached
    Thanks in advance.
    M.
    [error_content.txt]

    it sounds like the clob isn't being retrieved correctly...??
    in migrator.bat, what do you have set for this line:
    REM set PATH=%PATH%;%WEBLOGIC_HOME%\bin\oci816_7
    in your migration_install.properties file, what do you have for the following?
    #commerce.jdbc.read.shouldUseClobs=false
    depending on whether the driver can support java.sql.Clob, you'll adjust this
    setting...
    if you end up doing any code migration, you need to make sure that you have the
    patch for CR085102 from bea portal support...it was not included in 4.0sp3 (but
    should be in 4.0sp4)...
    hope this helps!
    tanya
    "Mariano Domínguez Molina" <[email protected]> wrote:
    >
    >
    >
    Hello, can anybody help with this problem ?
    We are migrating a WLCS3.5 application to portal 4.0 (as a requires middle
    step
    to wlp7.0)
    Despite some known issues with the migration tool, (the migraton tool
    craches
    if
    webflow properties has empty lines, etc.) we have webflow and placehloders
    migrated.
    However we were not able to extract the content selectors,
    and rulesets ( aprox 100 content selectors), the tool is crashing with
    sax errors.
    Is there a way to convert clob fields in placeholder table
    (only those corresponding to content selectors) to the xml files
    required for wlp 4.0 ?
    source platform: wlcs 3.5 sp1 / wls 6.0 sp2 / solaris / oracle 817
    destination platform wlp 4.0 sp3/ wls 6.1 SP4 / solaris / oracle 817
    Ihe error the migration tool gives is :
    -------------- Start of Rules Migration ------------------
    Tue Apr 15 15:36:32 CST 2003 Message: Retrieving Rule Set Documents from
    databas
    e.
    Tue Apr 15 15:36:32 CST 2003 Message: A SAXException occurred while attempting
    t
    o retrieve document(s)...
    Tue Apr 15 15:36:32 CST 2003 Message: Aborting migration task due to
    error!
    Tue Apr 15 15:36:32 CST 2003 Message: A SAXException occurred while attempting
    t
    o retireve document(s)...
    full error attached
    Thanks in advance.
    M.

  • Error conecting portal with lotus notes

    I configured the lotus porlets and pdk samples, the pdk samples
    work perflectly, I reached congratulations sample page of the
    pdk samples with the: http://localhost.domain/servlet/sample
    but when I try with
    http://localhost.domain/servlet/lotusAppProv y have this:
    "Forbidden You don't have permission to
    access /servlet/lotusAppProv on this server.
    Oracle HTTP Server Powered by Apache/1.3.19 Server at demo Port
    80"
    And when I try to login to the Lotus Notes Inbox from the
    External Application y get a 500 internal error and in the
    mod_jserv log I have this:
    10/12/2001 20:32:50:390] (ERROR) ajp12: Servlet Error:
    java.lang.VerifyError: (class:
    com/ibm/CORBA/iiop/GenericServerSC, method: dispatch signature:
    (Lcom/ibm/CORBA/iiop/IIOPInputStream;Lcom/ibm/CORBA/iiop/IIOPOutp
    utStream;)V) Illegal use of nonvirtual function call: (class:
    com/ibm/CORBA/iiop/GenericServerSC, method: dispatch signature:
    (Lcom/ibm/CORBA/iiop/IIOPInputStream;Lcom/ibm/CORBA/iiop/IIOPOutp
    utStream;)V) Illegal use of nonvirtual function call
    [10/12/2001 20:32:50:390] (ERROR) an error returned handling
    request via protocol "ajpv12"
    [10/12/2001 20:32:50:390] (ERROR) balance: 1052 internal servlet
    error in server localhost:1035
    [10/12/2001 20:32:50:390] (ERROR) an error returned handling
    request via protocol "balance"
    If someone has installed successfully the lotus porlet, please
    write me, or someone can solve this problem, please help me.
    Thanks
    Esteban.

    Hi Emma,
    I guess you have posted two topics for the same issue. I have replied to the other topic.
    You can access that topic with the following URL:-
    Oracle Portal with Lotus Notes Databases
    Take care,
    Manoj

  • Portal Export / Import Problems

    I'm trying to export a Portal application from a solaris development machine running Portal 3.0.7 to a solaris production machine running 3.0.8 and I'm having problems.
    As a starter I thought I'd try just the Login Server and the Security bits in that order.
    Everything seems to go okay with both the export and import using ssoexp.csh/ssoimp.csh and secexp.csh/secimp.csh but when I navigate to the new production site and try to login with one of the usernames and passwords that should have been imported, I get an authentication failure.
    Any ideas ?
    Thanks
    Garry

    Folks,
    Here is the output I receive after running the appropriate import scripts
    Import of Login Server
    Initializing Merge ...
    Initialization Complete
    Activity Log:
    Merging import SSO data with existing data
    The user PORTAL30_SSO with Login Server role FULL Exists ...
    ... The imported user has Login Server role = FULL
    The user PORTAL30_SSO_ADMIN with Login Server role FULL Exists ...
    ... The imported user has Login Server role = FULL
    The user PUBLIC with Login Server role USER Exists ...
    ... The imported user has Login Server role = USER
    The user PORTAL30 with Login Server role FULL Exists ...
    ... The imported user has Login Server role = FULL
    The user PORTAL30_ADMIN with Login Server role FULL Exists ...
    ... The imported user has Login Server role = FULL
    Disconnected from Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.0.0 - Production
    Import of Login Server User Information Complete
    Note: A imported user has to login to the Login Server with
    password the same as his/her user name and reset his/her password.
    Import of Security data
    Initializing Merge ...
    Initialization Complete
    Activity Log:
    Merging imported security data of Portal with existing data
    The user PORTAL30 exists with ID: 0
    The user PORTAL30_ADMIN exists with ID: 1
    The user PUBLIC exists with ID: 2
    The user PORTAL30_SSO exists with ID: 3
    The group AUTHENTICATED_USERS exists with ID: 0
    The group DBA exists with ID: 1
    The group PORTAL_ADMINISTRATORS exists with ID: 2
    The group PORTLET_PUBLISHERS exists with ID: 3
    The group PORTAL_DEVELOPERS exists with ID: 4
    Disconnected from Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.0.0 - Production
    Import of Security Data Complete
    From the output you can see that there is data being imported for the Portal users but not OPDSTATS the user I wish to use, and have created on my development site.
    However the WWUTL_SSO_TX_PERSON$ table has an entry created for OPDSTATS. I have compared the encrypted passwords for opdstats on dev and prod databases and they are the same.
    The logon user OPDSTATS uses a schema called OPDUSER that is not created on the database after import of both Login Server and Security.
    I can however logon as portal30 and have tried updating the table WWUTL_SSO_TX_PERSON$ with the portal30 encrypted password for the opdstats user, again this was unsuccessful.
    Any idea anyone ?
    Thanks
    Garry
    null

  • Cluster /global/devices/node@X mount problem.

    Hi,
    I have just installed sun cluster 3.2. It is a simple installtion and cluster contains only two servers and one sun storage.
    After installation, i realised that the name of the metadevice on tha servers were the same, so only one of them mounted under /global/devices/node@X, and the other were didn't.
    Then i re-create metadevice on the second node with another name. After re-creation /global/devices/node@X
    fs weren't mounted, when node were rebooted.
    there was various error on the console, but i couldn't resolve that problem.
    I can mount global/devices/node@X with mount command. But it's not mounted automaticaly in reboot time.
    # mount global/devices/node@X is running perfectly.
    The error shown in reboot time are as follows;
    The /global/.devices/node@2 file system (/dev/rlofi/1) is being checked.
    WARNING - Unable to repair the /global/.devices/node@2 filesystem. Run fsck
    manually (fsck -F ufs /dev/rlofi/1).
    Mar 18 13:35:12 svc.startd[8]: svc:/system/cluster/scmountdev:default: Method "/usr/cluster/lib/svc/method/scmountdev start" failed with exit status 32.
    The /global/.devices/node@2 file system (/dev/rlofi/1) is being checked.
    WARNING - Unable to repair the /global/.devices/node@2 filesystem. Run fsck
    manually (fsck -F ufs /dev/rlofi/1).
    Mar 18 13:35:12 svc.startd[8]: svc:/system/cluster/scmountdev:default: Method "/usr/cluster/lib/svc/method/scmountdev start" failed with exit status 32.
    The /global/.devices/node@2 file system (/dev/rlofi/1) is being checked.
    WARNING - Unable to repair the /global/.devices/node@2 filesystem. Run fsck
    manually (fsck -F ufs /dev/rlofi/1).
    Mar 18 13:35:12 svc.startd[8]: svc:/system/cluster/scmountdev:default: Method "/usr/cluster/lib/svc/method/scmountdev start" failed with exit status 32.
    mount: I/O error
    mount: Cannot mount /dev/lofi/126
    lofiadm: could not unmap device /dev/lofi/126: No such device or address
    mount: I/O error
    mount: Cannot mount /dev/lofi/126
    lofiadm: could not unmap device /dev/lofi/126: No such device or address
    WARNING: Cluster startup could not remove the existing
    lofi device associated with /.globaldevices. Try manually
    removing the device association. Global devices will
    be unavailable until this error is fixed.
    Mar 18 13:36:10 tstclstr1 svc.startd[8]: system/cluster/globaldevices:default misconfigured: transitioned to maintenance (see 'svcs -xv' for details)
    Mar 18 13:36:10 tstclstr1 Cluster.CCR: /usr/cluster/bin/scgdevs: Filesystem /global/.devices/node@2 is not available in /etc/mnttab.
    Mar 18 13:36:10 tstclstr1 last message repeated 1 time
    Mar 18 13:38:50 tstclstr1 svc.startd[8]: platform/sun4u/dscp:default failed: transitioned to maintenance (see 'svcs -xv' for details)
    The output of the svcs -xv;
    root@tstclstr1 # svcs -xv
    svc:/system/cluster/globaldevices:default (Suncluster globaldevices service)
    State: maintenance since 18 Mart 2010 Per&#351;embe 13:36:10 EET
    Reason: Start method exited with $SMF_EXIT_ERR_CONFIG.
    See: http://sun.com/msg/SMF-8000-KS
    See: /var/svc/log/system-cluster-globaldevices:default.log
    Impact: 3 dependent services are not running:
    svc:/system/cluster/mountgfs:default
    svc:/system/cluster/clusterdata:default
    svc:/system/cluster/ql_rgm:default
    svc:/application/print/server:default (LP print server)
    State: disabled since 18 Mart 2010 Per&#351;embe 13:34:46 EET
    Reason: Disabled by an administrator.
    See: http://sun.com/msg/SMF-8000-05
    See: man -M /usr/share/man -s 1M lpsched
    Impact: 2 dependent services are not running:
    svc:/application/print/rfc1179:default
    svc:/application/print/ipp-listener:default
    svc:/system/cluster/scmountdev:default (Sun Cluster scmountdev)
    State: maintenance since 18 Mart 2010 Per&#351;embe 13:35:12 EET
    Reason: Start method failed repeatedly, last exited with status 32.
    See: http://sun.com/msg/SMF-8000-KS
    See: /etc/svc/volatile/system-cluster-scmountdev:default.log
    Impact: This service is not running.
    svc:/system/cluster/scsymon-srv:default (Sun Cluster SyMON Server Daemon)
    State: offline since 18 Mart 2010 Per&#351;embe 13:34:49 EET
    Reason: Dependency svc:/application/management/sunmcagent:default is absent.
    See: http://sun.com/msg/SMF-8000-E2
    Impact: This service is not running.
    svc:/platform/sun4u/dcs:default (domain configuration server)
    State: maintenance since 18 Mart 2010 Per&#351;embe 13:38:51 EET
    Reason: Restarting too quickly.
    See: http://sun.com/msg/SMF-8000-L5
    See: man -M /usr/share/man -s 1M dcs
    See: /var/svc/log/platform-sun4u-dcs:default.log
    Impact: This service is not running.
    svc:/platform/sun4u/dscp:default (DSCP Service)
    State: maintenance since 18 Mart 2010 Per&#351;embe 13:38:50 EET
    Reason: Start method failed repeatedly, last died on Killed (9).
    See: http://sun.com/msg/SMF-8000-KS
    See: man -M /usr/share/man -s 1M prtdscp
    See: /var/svc/log/platform-sun4u-dscp:default.log
    Impact: This service is not running.
    {noformat}root@tstclstr1 #
    </pre>{noformat}

    Thanks for the reply,
    It used to be the same metaset name on the second server, which several folks have run into when installing SC on the 2nd node. So I renamed it when booted into no cluster mode using metarename. I then updated the /etc/vfstab with the new name, this is it in /etc/vfstab:
    /dev/md/dsk/d26 /dev/md/rdsk/d26 /global/.devices@2 ufs 2 no global
    And yes if I change "global" to "-" then it mounts. When the 2nd node boots up, it cannot mount /global/.devices@2 with it set to global so the boot halts, I do ctrl-D to continue. Then I try a regular mount from root and I get the "no such file or directory" message.
    If I do a metastat d26 it shows it to be OK on both submirrors.
    The name of the metadisk on the first node is d160. And the 2nd server is able to mount that from the global option on the first server.
    Thanks,

  • Portal BW Integration Problem - Role Menu Error

    Hi,  I have a web template with a role menu on it.  The application works fine when I execute it directly on the BW Server.  But, whenever I execute the application through our portal and select a node on the role menu I receive a windows error dialog with the following message:
    A runtime error has occurred.
    Do you wish to Debug?
    Line: 250
    Error: Permission Denied
    [Yes] [No}
    Seems like Portal/BW integration problem.
    Can anyone help?

    Question Closed

  • Portal with a URL using a Web browser in java stack

    Dear all,
    I can access the portal with our URL using a Web browser from your client machines .
    i got the following option :
    SAP Library
    SAP Library contains the complete documentation for SAP Web Application Server.
    Web Services Navigator
    Web Services Navigator is a tool that gives you a short overview of a specific Web service based on its WSDL, and enables you to test your Web service by creating and sending a client request to the real end point.
    System Information
    System information provides administrators with an overview of the system configuration and its state. It shows all of the system's instances and processes, their current state and important parameters (such as ports) that may be required for support cases, as well as the versions of the components installed.
    UDDI Client
    The UDDI client provides query and publishing functions for different Web service entities (tModels, business services) to any UDDI compliant registry.
    User Management
    The user management administration console provides administrators with the functions they need to manage users, groups, roles, and user-related data in the User Management Engine (UME). Users without administrator permissions can use it to change their user profile.
    Web Dynpro
    Web Dynpro is a User Interface technology available within the SAP NetWeaver Developer Studio.
    Various Web Dynpro tools provide administrators and application developers with performance measurement and application administration capabilities. The Web Dynpro runtime is already deployed.
    SAP NetWeaver Administrator
    A tool for administration and monitoring, offering a central entry point to the whole SAP NetWeaver system landscape. The SAP NetWeaver Administrator can be used in a central scenario where it is capable of operating an entire system landscape containing ABAP and Java systems as the application platform of SAP NetWeaver.
    J2EE Engine Examples
    This section contains several J2EE application examples that run on the J2EE Engine. The examples show some of the functions of both Java and the J2EE Engine. They can be easily deployed and tested by simply clicking on a button. The full source code of the examples is also available.
    when i click System Information:
    it ask user name () J2EE_ADMINand password (Installtion master password) ,after entered , i got below error .
    You are not authorized to view the requested resource.
      Details:   No details available
    Kindly suggest .

    Hello
    It means what it sais, your J2EE_ADMIN user doesn't have enough authorization.
    Chech if the appropriate authorization is assigned in your abap stack which belongs to the java stack you logon to:
    Role SAP_J2EE_ADMIN should be assigned to user J2EE_ADMIN.
    Kind regards
    Tom
    Edited by: Tom Cenens on Dec 17, 2010 2:55 PM

  • My iPhone 6 ear speaker is not working properly I couldn't able to hear any thing from ear speaker to lissen I had to put on loud speaker or to use handsfree please help me out with this problem if some body have answer?

    My iPhone 6 ear speaker is not working properly I couldn't able to hear any thing from ear speaker to listen I had to put on loud speaker or to use hands free please help me out with this problem if some body have answer?

    Hi Venkata from NZ,
    If you are having an issue with the speaker on your iPhone, I would suggest that you troubleshoot using the steps in this article - 
    If you hear no sound or distorted sound from your iPhone, iPad, or iPod touch speaker - Apple Support
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • HT1386 I just reinstalled my windows operating system and decided to put on windows 8.  After loading all of my music back into a freshly installed itunes, my 4th gen ipod is not recognized by itunes.  My 1st gen ipod nano works with no problem.  Help!

    reinstalled my windows operating system and decided to put on windows 8.  After loading all of my music back into a freshly installed itunes, my 4th gen ipod is not recognized by itunes.  My 1st gen ipod nano works with no problem.  I can eliminate any problems with the cable and connection.
    I've stopped and started the service, and also have performed cold reboots.
    Nothing seems to have helped the situation.
    Help!

    See:
    iOS: Device not recognized in iTunes for Windows
    I would start with
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    iTunes for Windows: Device Sync Tests
    Have you tried on another computer to help determine if you have a computer or iPod problem?
    The iPod Classic uses different drivers than the Nano

  • Can anyone help me with a problem i am having with my music on my iPhone 4S. I have put alot of Compilation CDs in my library on iTunes. I download these tracks onto my phone, everything is ok so far. Now, this is what is niggling me and I don.t know how

    Can anyone help me with a problem i am having with my music on my iPhone 4S. I have put alot of Compilation CDs in my library on iTunes. I download these tracks onto my phone, everything is ok so far. Now, this is what is niggling me and I don.t know how to resolve it. This is my problem: 
    Have downloaded for example: Queen – Bohemium Rhapsody from a compilation album as well as a few complete Queen Album CDs into the iTunes library and then put them into playlists,
    When I go onto my phone and select Queen on the MUSIC app using Songs tab at the bottom of the screen it will display all Queen songs and their resective Alum pics, that is all those not in a complilation album, .
    If I know the song title I can select the songs tab and find the song that way,
    I’ve tried fiddling with the settings in the iTunes app by going to ‘get info’ tab and trying to sort the problem out that way but am not having much luck.What I want the phone to do is show, for example all Queens songs including those in compilation albums. Can this be done, would be grateful for any ideas on how it can be done, that is if ic can be done, any ideas
    Thanks for your help

    Try assigning Queen as the Album Artist on the compilations in iTunes on your computer.

  • Monitors with Gradient Problems?

    Hi All,
    Further to my recent post "monitor screen display terrible!"
    Finding a monitor without spending a lot with excellent picture quality is proving differcult! I have tried a Philips 22" monitor Model 220CW9FB and now a BENQ T900HD 18.5 WS monitor all not as sharp with good contrast as my 4 year old G5 iMac. Also has a gradient problem e.g. as you get up off your chair and continue to look down at the screen the white background of the screen turns light blue then darker and colored parts turn white!? Also looking at an angle to the side anything light blue turns a light brown!? Then as I'm viewing something as in Apple Discussions each box of replies alternate white then light blue and so on but looking at normal distant as you type each box are white. You have to lean back in your chair, twice the distance back to actual see the blue box then white box!?
    What's that all about? I have noticed this on the new 20" iMacs too but the three new 24" iMacs are great just like my Rev A G5 iMac of 4 years. Are these inferior screen problems anything to do with them being TN panels as I've just read about?
    I really don't know where to go from here as the screen quality is important. I'm use to the great screen quality of my old G5 iMac and don't want to go down in quality for the sake of moving from a Mac PowerPC to an Intel Core 2 Duo even though I need this for EyeTV hybrid and all the features of iLife '09 etc.
    I don't want to spend a huge amount for an Apple display as I might as well get the entry level 24" iMac. The main reason for not getting the new iMac is I don't like the glossy screen, although today I heard there is an option for a 24" matt screen... any truth in that? Then again will I be able to return the new Mac mini I've only had for 6 days for a 24" iMac?
    Other suggestions seen here is turning my G5 iMac into a stand-a-loan monitor or maybe a 20-year-old CRT 19" TV I have can be used as a monitor and if so what connections are needed? Any ideas on these options?
    So buying the new Mac mini has created a lot of unexpected problems. I thought as asked about before getting it was told any monitor would have the same picture quality as my old G5 iMac, but after the fact found out this is not the case.
    Thanks for the read & any ideas/thoughts much appreciated...

    AFAIK Hmmm Googled "As Far As I Know"... So far I've tried three monitors (all with gradient problem) so it looks like you are correct. I'll try a couple more today as if I need to return my Mac mini with Philips monitor need to do soon for a 24" new iMac even though the Mac mini is not at fault. I'll have to get use to the glossy screen. While writing this an item "iMac or MacBook display too glossy? Apply inexpensive non-glare LCD protective film" has appeared in MacDailyNews.
    http://macdailynews.com/index.php/weblog/comments/20561/
    Thanks for the idea using my G5 as a monitor but maybe quite an involved process?
    It's a shame in all my research before buying a monitor no salesperson mentioned TN display panels. Mind you since the problem no salesperson has said they know about TN display panels or better monitors, just saying any monitor will work with the new Mac mini. Very frustrating!

Maybe you are looking for