Calling a transaction in Portal

Hi Guys,
             I am calling a transaction in portal from WebDynpro.
Here is my code.
MOVE 'OkCode' TO param-key.
  MOVE '/00' TO param-value.
  APPEND param TO lparams.
  MOVE 'TCode' TO param-key.
  MOVE 'MIR4' TO param-value.
  APPEND param TO lparams.
  MOVE 'RBKP-BELNR' TO param-key.
  MOVE stru_invoice-belnr TO param-value.
  APPEND param TO bparams.
  MOVE 'RBKP-GJAHR' TO param-key.
  MOVE stru_invoice-gjahr TO param-value.
  APPEND param TO bparams.
  CALL METHOD l_portal_manager->navigate_absolute
    EXPORTING
      navigation_target   = 'pcd:portal_content/com.cso.Prototype/com.cso.Page/SAPWebGUI/sap_transaction_html_gui'
      navigation_mode     = if_wd_portal_integration=>co_show_external
      WINDOW_FEATURES     = 'TOOLBAR=FALSE,LOCATION=FALSE,RESIZABLE'
      business_parameters = bparams
      launcher_parameters = lparams.
I seen in the forum that it need to create a transactional iView to acheive this.
In that case, do I still have to provide launcher_parameters in the FM. If not whats the use of launcher_parameters.
Thanks

Refer the SAP Online help :
http://help.sap.com/saphelp_nw70/helpdata/EN/a5/b8fa41c915da6fe10000000a1550b0/frameset.htm
I hope it helps you.
Thanx.
Saurav.

Similar Messages

  • Call transaction in Portal using  if_wd_portal_integrati- navigate_absolute

    Hi Guys,
                  I am calling a transaction in portal using the following code.
      CALL METHOD l_portal_manager->navigate_absolute
        EXPORTING
          navigation_target   = 'pcd:portal_content/com.csa.Prototype/com.csiro.Page/SAPWebGUI/sap_transaction_html_gui'
          navigation_mode     = if_wd_portal_integration=>co_show_external
          WINDOW_FEATURES     = 'TOOLBAR=FALSE,LOCATION=FALSE,RESIZABLE'
          business_parameters = bparams
          launcher_parameters = lparams.
    But when I test in portal, its pop up a page and shows message No Page Found.
    Any idea what should be done.
    Thanks
    Senthil

    Hi Lekha,
                   Here is the existing code
      l_api_component = wd_comp_controller->wd_get_api( ).
      l_portal_manager = l_api_component->get_portal_manager( ).
      MOVE 'OkCode' TO param-key.
      MOVE '/00' TO param-value.
      APPEND param TO lparams.
      MOVE 'TCode' TO param-key.
      MOVE 'MRBR' TO param-value.
      APPEND param TO lparams.
      MOVE 'SO_BELNR-LOW' TO param-key.
      MOVE stru_invoice-belnr TO param-value.
      APPEND param TO bparams.
      MOVE 'SO_GJAHR-LOW' TO param-key.
      MOVE stru_invoice-gjahr TO param-value.
      APPEND param TO bparams.
      CALL METHOD l_portal_manager->navigate_absolute
        EXPORTING
         navigation_target   = 'pcd:portal_content/com.csiro.Prototype/com.csi.Page/SAPWebGUI/sap_transaction_html_gui'
          navigation_target   = 'ROLES://portal_content/com.csiro.Prototype/com.csi.Page/SAPWebGUI/sap_transaction_html_gui'
          navigation_mode     = if_wd_portal_integration=>co_show_external
          WINDOW_FEATURES     = 'TOOLBAR=FALSE,LOCATION=FALSE,RESIZABLE'
          business_parameters = bparams
          launcher_parameters = lparams.
    Here they trying to call sap_transaction_html_guilink and giving tcode as a parameter.
    Does it work ?
    Thanks
    Senthil

  • Call a transaction with Application WD ABAP

    Dear Expert.
    In this moment I have the following requirement:
    I created an Application WD ABAP and created a button that must call a transaction of R/3 in the portal.
    I created a Transaction Iview and for this iView I created a Page. Now I want that  when the enduser press the button in the application WD ABAP, the system call the transaction.
    How Can solve this issue?
    Thanks in advance for you help.
    Regards

    the wizard tool will create the OBN call for you, just go to portal navigation in the wizard tool.
    your IVIEW parameters should be pass in the OBN call.
    thanks!
    Jason PV

  • RRI not working for calling up transaction BI admin cockpit

    Hi,
    We have implemented BI admin cockpit and all technical contents and settings are OK, but when we try to navigate to call any transaction (Monitor, Process status TCode ST22, RSA1, RSMO, RSPC etc) by calling RRI than instead of getting the desired transaction screen we are getting the SAP Easy Access screen. Although we can navigate to Second level web template thru RRI and if we define target system other that BI (i.e. ECC or CRM) than we are able to navigate any transaction transaction i.e. SE38 or SE37 etc,
    Any suggestion or help would be appriciated.
    thanks
    Dev

    Hi Sunny,
    as per your reply i have check the BI usage types using that URL.
    And the below is the result.
    Information about Active Usage Types
    Active Usage Types
    Product                     UT Code      Short Name      Description           
    NetWeaver                  BI                  BI Java      BI Java           
    NetWeaver                 AS                 AS Java      Application Server Java           
    NetWeaver                  DI                          DI      Development Infrastructure           
    NetWeaver                 EPC                      EP Core       Enterprise Portal Core Components           
    NetWeaver                     EP                           EP      Enterprise Portal           
    Can you please help.
    Thanks
    AS

  • In EP, call R3 transaction with dynamic variant name

    Hello
    I know that I can call a R3 transaction with a dedicated variant thanks to the process below:
    Create a transaction iview , Tcode = "START_REPORT"
    In application parameters pass these values separated by '&' sign.
    D_SREPOVARI-REPORT - your report
    D_SREPOVARI-VARIANT - your saved variant.
    choose skip inital screen in the parameters.
    But do you have a tip to call a different variant for every user.
    For example, I have users "1111" and "2222". In R3 I have created the variant "1111" and "2222" for a transaction.
    In EP, I would like that when I call this transaction connected as "1111", the variant "1111" is used, and when I'm logged as "2222", the variant "2222" is used.
    Do you know how I can do that ?
    Thank you !

    Hello,
    where is the information which user has to call which variant stored? If it's in R/3 then you can write an wrapper report which is called from the Portal, adds the Variant information and then calls the original report.
    Regards
    Gregor

  • Pass Parameter to a Transaction Using Transaction Iview Portal

    Dear Experts.
    I have the following doubt:
    The developer ABAP created a program Z_PROGRAM_ABAP
    and a T.Code Z_CODE_PROGRAM for this program.
    I have created a Transaction Iview in the portal for this transaction, but I need pass a value in the Iview  to a variable in the program that call this transaction.
    How can pass a paramete to a variable in the program that is called with the transaction Z_CODE_PROGRAM?
    Thank In advance for your help.
    Best Regards
    Carmen G.

    Hi .
    I have the following code:
    REPORT Z_PROGRAM_ABAP.
       parameters: XYZ type Char no-display.
    if XYZ = 1.
    Write 'ABC'.
    else.
    Write 'MNO'.
    endif.
    And in the portal:
    Application Parmeter    :  XYZ = 1
    Parameters Forwarded: 1
    The problem is that i not want that the user can see the parameter XYZ in the Sreen. When I delete the NO-DISPLAY of the sentence    parameters: XYZ type Char no-display, the parameter is passed.
    How can solve this issue?
    Best Regards
    Carmen

  • Calling a transaction in webdynpro

    Hi,
      As per my requirement when a button click happens I need to call the transaction CAT2 by skipping initial screen. How to achieve this in webdynpro.
    Thanks
    Raghavendra

    Hi Raghavendra,
    If you are using portal as a triggerring point of your web dynpro applications, then the below requirement is achieved by doing the following.
    1. Create a BDC report program to call transaction CAT2 skipping the first screen.
    2. The report has the same input parameters as that of the transaction CAT2.
    3. Associate a transaction to the report program sat 'ZCAT2'.
    In the event handler of the button in your web dynpro do that following
    Data declarations
      Local Internal tables(lt_)
        lt_bus_parameter_list              TYPE wdy_key_value_table,
        lt_launcher_parameter_list         TYPE wdy_key_value_table,
      Local Work area's(ls_)
        ls_keyvalue_pair                   TYPE wdy_key_value,
      Local Variables(l_)
        l_pcdpageurl                       TYPE string,
        l_componentcontroller              TYPE REF TO if_wd_component,
        l_port_manager                     TYPE REF TO if_wd_portal_integration.
    Constants(c_)
      CONSTANTS:
       c_transaction_code            TYPE string VALUE 'ZCAT2',
       c_okcode                            TYPE string VALUE 'F8',
       c_param1                            TYPE string VALUE 'P_Data_Entry_Profile',
       c_param2                            TYPE string VALUE 'P_person_number'.
      l_componentcontroller = wd_this->wd_get_api( ).
      l_port_manager        = l_componentcontroller->get_portal_manager( ).
    Fill all the business parameters
      CLEAR ls_keyvalue_pair.
      ls_keyvalue_pair-key    =  c_param1.
      ls_keyvalue_pair-value  =  'Data Entry Profile'.
      APPEND ls_keyvalue_pair TO lt_bus_parameter_list .
      CLEAR ls_keyvalue_pair.
      ls_keyvalue_pair-key    =  c_param2.
      ls_keyvalue_pair-value  =  'Person Number'.
      APPEND ls_keyvalue_pair TO lt_bus_parameter_list .
    Fill the launcher parameters for the transaction
      CLEAR ls_keyvalue_pair.
      ls_keyvalue_pair-key    =  'AutoStart'.
      ls_keyvalue_pair-value  =  'Yes'.
      APPEND ls_keyvalue_pair TO lt_launcher_parameter_list.
      CLEAR ls_keyvalue_pair.
      ls_keyvalue_pair-key    =  'GuiType'.
      ls_keyvalue_pair-value  =  'WinGui'.
      APPEND ls_keyvalue_pair TO lt_launcher_parameter_list.
      CLEAR ls_keyvalue_pair.
      ls_keyvalue_pair-key    =  'OkCode'.
      ls_keyvalue_pair-value  =  c_okcode.
      APPEND ls_keyvalue_pair TO lt_launcher_parameter_list.
      CLEAR ls_keyvalue_pair.
      ls_keyvalue_pair-key    =  'System'.
      ls_keyvalue_pair-value  =  'SAP_R3_HumanResources'.
      APPEND ls_keyvalue_pair TO lt_launcher_parameter_list.
      CLEAR ls_keyvalue_pair.
      ls_keyvalue_pair-key    =  'TCode'.
      ls_keyvalue_pair-value  =  c_transaction_code.
      APPEND ls_keyvalue_pair TO lt_launcher_parameter_list.
      CLEAR ls_keyvalue_pair.
      ls_keyvalue_pair-key    =  'Technique'.
      ls_keyvalue_pair-value  =  'SSF'.
      APPEND ls_keyvalue_pair TO lt_launcher_parameter_list.
      CLEAR ls_keyvalue_pair.
      ls_keyvalue_pair-key    =  'WinGui_Type'.
      ls_keyvalue_pair-value  =  'Shortcut'.
      APPEND ls_keyvalue_pair TO lt_launcher_parameter_list.
    SAP has provided us with customizing table to maintain the path for the iView.Here Resource_key is the key field to get the path.
    We create a new entry in this table using which we uniquely identify the path of the iVew that needs to be launched.
    get the url of the pcd page for the common transaction iView
      SELECT SINGLE b~text
             INTO  l_pcdpageurl
             FROM  t7xssserstring AS b
             INNER JOIN t7xssserres AS a
             ON    arespcdpage  = bguid
             WHERE a~ressource = /rio/zcl_hse_constants=>c_common_resource.
    Navigate to the Injury Illness details
      CALL METHOD l_port_manager->navigate_absolute
        EXPORTING
          navigation_target   = l_pcdpageurl
          navigation_mode     = l_port_manager->co_show_external
          use_sap_launcher    = abap_true
          business_parameters = lt_bus_parameter_list
          launcher_parameters = lt_launcher_parameter_list.
    The folowing is the flow of the program:
    When user clicks a button to launch transaction CAT2, the event handler associated to it called.
    Here we populate an internal table with the parameters to call transaction ZCAT2 and the iView is launched by calling navigate_absolute method with the right path.
    I am not very much sure as to how the iViews are set up but there is a provision to read the key valure pair there. The values are read and the tranzation ZCAT2 is called which will inturn launch CAT2 transaction.
    By adding Skip First screen statement we can get in the details directly.
    Hope this helps.
    Regards,
    Sravan Varagani

  • Calling SAP Transaction from BSP

    I wonder whether it is possible to call SAP transaction from BSP application and pass to it some data; e.g., PO# when calling VA02?
    The called transaction could appear in a separate MS IE Window (like in some Portal applications) or in SAP GUI.
    Any help will be appreciated.
    Thank you in advance

    I have launched the Java SAPGui from BSP pages before.  I used SNC so that the users were logged on via Single Sign On.  I store the Java Gui in the Mime directory.  You can force the startup transaction.  Theorectically you could also Gui Scripting to try and control the Gui and force in the default value for your PO field.  I have not tried that however.  You will probably want to check the Service Marketplace for documents on the Gui Scripting.  The following is the code from my BSP page to launch the Java Gui in the Browser as an applet:
    <%@page language="abap"%>
    <%@extension name="htmlb" prefix="htmlb"%>
    <HTML>
    <HEAD>
      <TITLE>SAPGUI for the Java Environment</TITLE>
      <STYLE type="text/css">
          body { margin-left:0px; margin-right:0px; margin-top:0px; margin-bottom:0px; }
      </STYLE>
    </HEAD>
    <BODY scroll="no">
    <SCRIPT language="JavaScript">
    // user configurable part starts here
    var pluginurl         = '';
    var scriptable     = 'true';
    var codebase         = '.';
    var jnlp           = 'platin.jnlp';
    var keepalive      = 'true';
    var frog           = 'true';
    var trace          = '';
    var tracefile      = '';
    var connectionData = 'conn=/M/nts163/S/3620/G/SPACE/&tran=SE80&clnt=088&fast=true&sncon=true&sncname=p:[email protected]&sncqop=9';
    // user configurable part ends here
    // verify if Java Plugin as control in Internet Explorer or Java Plugin for Netscape or native JRE of browser must be used
    var jre = 'control';
    if(navigator.platform.indexOf("Mac") > -1)
       jre = 'native';
    else if (navigator.appName.indexOf("Netscape") != -1)
       jre = 'plugin';
    document.open();
    switch (jre)
    case 'control':
        document.writeln('<OBJECT CLASSID  = "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"                               ');
        document.writeln('    ID       = "PlatinGUI"                                                                    ');
        document.writeln('    CODEBASE = "j2re-1_3_1_02-win-i.exe#Version=1,3,1,0"                             ');
        document.writeln('    WIDTH    = "100%"                                                 ');
        document.writeln('    HEIGHT   = "100%"                                                 ');
        document.writeln('    BORDER   = 0>                                                      ');
        document.writeln('<PARAM NAME = "TYPE"           VALUE = "application/x-java-applet;jpi-version=1.3.1">         ');
        document.writeln('<PARAM NAME = "SCRIPTABLE"     VALUE = "', scriptable,'">                                ');
        document.writeln('<PARAM NAME = "code"           VALUE = "com.sap.platin.GuiApplet2">                   ');
        document.writeln('<PARAM NAME = "codebase"       VALUE = "', codebase,'">                             ');
        document.writeln('<PARAM NAME = "jnlp"           VALUE = "', jnlp,'">                             ');
        document.writeln('<PARAM NAME = "archive"        VALUE = "GuiStartS.jar">                             ');
        document.writeln('<PARAM NAME = "keepalive"      VALUE = "', keepalive,'">                             ');
        document.writeln('<PARAM NAME = "frog"           VALUE = "', frog,'">                             ');
        document.writeln('<PARAM NAME = "trace"          VALUE = "', trace,'">                             ');
        document.writeln('<PARAM NAME = "tracefile"      VALUE = "', tracefile,'">        ');
        document.writeln('<PARAM NAME = "connectionData" VALUE = "', connectionData,'">                               ');
        document.writeln('                                                                ');
        document.writeln('This page requires a Sun Java Plugin 1.3 and a SAPGUI for Java to view.                      ');
        document.writeln('                                                                ');
        document.writeln('</OBJECT>                                                           ');
        break;
    case 'plugin':
        document.writeln('<EMBED TYPE        = "application/x-java-applet;version=1.3"                         ');
        document.writeln('    PLUGINURL      = "', pluginurl,'"                                          ');     
        document.writeln('    WIDTH          = "100%"                                            ');                                        
        document.writeln('    HEIGHT         = "100%"                                             ');
        document.writeln('    ALIGN          = "BASELINE"                                                ');
        document.writeln('    code           = "com.sap.platin.GuiApplet2"                                      ');
        document.writeln('    codebase       = "', codebase,'"                                        ');
        document.writeln('    jnlp           = "', jnlp,'"                                                ');
        document.writeln('    archive        = "GuiStartS.jar"                                       ');
        document.writeln('    keepalive      = "', keepalive,'"                                       ');
        document.writeln('    frog           = "', frog,'"                                            ');
        document.writeln('    trace          = "', trace,'"                                            ');
        document.writeln('    tracefile      = "', tracefile,'"                                       ');
        document.writeln('    connectionData = "', connectionData,'"                                        ');
        document.writeln(' <NOEMBED>                                                      ');
        document.writeln(' </NOEMBED>                                                      ');
        document.writeln(' </EMBED>                                                              ');
        break;
    case 'native':
        document.writeln('<APPLET CODEBASE  = "', codebase,'"                                                           ');
        document.writeln('        ARCHIVE   = "GuiStartS.jar"                                                           ');
        document.writeln('        CODE      = "com.sap.platin.GuiApplet2"                                               ');
        document.writeln('        WIDTH     = "100%"                                                                    ');
        document.writeln('        HEIGHT    = "100%">                                                                   ');
        document.writeln('<PARAM NAME = "SCRIPTABLE"     VALUE = "', scriptable, '">                                    ');
        document.writeln('<PARAM NAME = "jnlp"           VALUE = "', jnlp, '">                                          ');
        document.writeln('<PARAM NAME = "keepalive"      VALUE = "', keepalive, '">                                     ');
        document.writeln('<PARAM NAME = "frog"           VALUE = "', frog, '">                                          ');
        document.writeln('<PARAM NAME = "trace"          VALUE = "', trace, '">                                         ');
        document.writeln('<PARAM NAME = "tracefile"      VALUE = "', tracefile, '">                                     ');
        document.writeln('<PARAM NAME = "connectionData" VALUE = "', connectionData, '">                                ');
        document.writeln('</APPLET>                                                                                ');
        break;
    document.close();
    </SCRIPT>
    </BODY>
    </HTML>

  • How to call business transaction in Ic Web

    Hi,
    I added a lead transaction in IC Web Navigation bar..
    Through trasaction launcher i have added that to navigation bar .
    As per my knowledge i have done the correct functionality. But when i am trying to call the trasaction in the IC Web portal, i got one error i.e "Execution not possible, Data flow errors".
    I am very new to IC Web, Just i have taken training on Ic Web..
    To get the transactions in the IC web portal, Do we need to install any other componets?
    As per my training knowledge i have done the entire functionality.
    Any body can tell how can i call the transactions in IC Web Portal,
    It is very urgent..
    Regards,
    Venu.

    Hi Venu,
    Plz surf through the link
    http://help.sap.com/saphelp_crm40/helpdata/en/12/c3e68620514b499c06b8eb26874424/frameset.htm
    Best Regards,
    Pratik Patel
    <b>Reward with Points!</b>

  • Calling a transaction code

    Dear Expert,
    Is that possible to call a transaction code using a webdynpro for abap. I have a button in my program where when i click on the button, it need to all up the su01 screen.
    My coding is as below
    method ONACTIONEDIT_APPRAISAL .
    LEAVE TO TRANSACTION 'SU01'.
    endmethod.
    However when i run this program, and click ont he button, the system return a short dump.
    Any idea?
    Thanks,
    Regards,
    Bryan

    Dear Suman or anyone,
    I have solve this using the navigate_absolute method, however the NAVIGATION_MODE seem that does not works.
    Code begin*
    method ONACTIONEDIT_APPRAISAL .
      data lr_componentcontroller type ref to ig_componentcontroller .
      data l_api_componentcontroller type ref to if_wd_component.
      data lr_port_manager type ref to if_wd_portal_integration.
      lr_componentcontroller =   wd_this->get_componentcontroller_ctr( ).
      l_api_componentcontroller = lr_componentcontroller->wd_get_api( ).
      lr_port_manager = l_api_componentcontroller->get_portal_manager( ).
    Data:
    target type string.
    Data:
    nmode type string.
    target = 'pcd:portal_content/mysap/Appraisal/PPPM_PAGE'.
    nmode = 'INPLACE'.
      call method lr_port_manager->navigate_absolute
        exporting
          NAVIGATION_MODE = nmode
          navigation_target = target
    endmethod.
    *code end
    I have tried to use the INPLACE navigation mode, but it still display it in a new portal page. Anyway to control it? Do i need to define a area so that the target will show in that particular area?
    Please help me...
    Thanks
    Regards,
    Bryan

  • Should we call a transaction within RFC

    Hi,
    I have a scenario like this.
    There is a portal application where in customers can create inbound delivery.
    What I am thinking is portal application will invoke a RFC passing the required data. Within the RFC I can write the BDC code for transaction VL31N to create inbound delivery.
    I just wanted to know if this is the correct way to do this.
    Should we call a transaction within a RFC ? What are the pros n cons associated with this ?
    Is there ne BAPI to create Inbound Delivery (VL31N) ?
    Regards,
    Nitin

    Hi Nitin,
    There's unfortunately no BAPI available to create an inbound delivery. So considering that, what you're doing is fine.
    I did not get what you meant by calling a transaction within an RFC in this context. If you're talking about a Portal application, what's the point in calling the transaction in the RFC ? Or did you mean that you want to use CALL TRANSACTION USING... ?
    Regards,
    Anand Mandalika.

  • Reg Calling ITS Transcation On Portal

    Hi Team,
    I need to call ITS Transaction Code on portal for this I have created SAP Transaction Iview making use for 
      "SAP GUI for HTML" for GUI Type.
    The problem we are facing is that for some users the default SAP Easy Access Screen is being displayed instead of ITS Screen....
    Pls let me know whether I am doing any mistake in selecting the GUI Type as there are other two more options also available
    SAP GUI for Windows SAP GUI for Java,
    thanks in advance

    Dear Bala,
    if it would have been the port problem then others users also do not get that right
    some users are getting some are not getting
    thanks in advance

  • Call R3 Transaction language control

    Hi all,
    I'm calling SAP Transaction from URL that liiks like
    http://myportal:50000/irj/servlet/prt/portal/prtroot/com.sap.portal.appintegrator.sap.Transaction?System=PZD_SSO&TCode=su01&GuiType=WinGui
    When the lenguage of the browser is EN, SAP GUI opens with english, and when the lenguage of the browser is some other language, the SAP GUI opens with this other language...
    Is it possible to control the lenguage in this case?
    ForcedRequestLanguage=en doesn't work...
    Thanks for help!
    Ola

    Hi Ola,
    You can try with the Customer Exits provider parameter in your transaction iview. This will over-ride browser language and the language defined in the portal for the user.
    Search for the pdf How to Start Transaction iViews with a Dynamically Computed Language.
    Thanks,
    Nikhil

  • Call ITS Transaction

    Hi
    Anybody knows how to call an ITS transaction from an EP page?
    Thanks,
    Ricky

    Hi,
    Do you mean calling SAP transaction using ITS. If so, create a transaction Iview, choose the system, specify the gui type as web gui and specify the transaction. Prior to this you have to create a system in portal. Refer sap note 761917 for creating systems.
    http://help.sap.com/saphelp_nw04/helpdata/en/88/266a3e54a2e946e10000000a114084/content.htm
    By the way what kind of ITS is it? Is it integrated or standalone.
    Hope this helps,
    Thanks,
    Praveen
    PS.Dont forget to reward points
    Message was edited by: Praveen Mayalur

  • Portal Runtime Error while checking the Transaction in Portal

    Hi all,
    We r in the phase of setting the configuration of Portal. We did the the template installer but when iam checking the transactions in Portal ( System Administration--> Support--->SAP Apllication) , it is throwing me the following error.
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    Missing Property 'ClassName' in property file for layer'Transaction/WinguiSSOLayer'..
    See the details for the exception ID in the log file
    Can anybody help me in this regard.
    Thank in Advance.

    Hi Niyati,
    I guess check through -->
    Under "Personalize > User Profile" the checkbox "Activate Accessibility Feature" must be unchecked!
    as, people earlier also faced this issue and SAP provided this solution.
    Also an alternative solution for this is like --
    Go to:
    <Drive>\usr\sap\<SID>\JC<Instance No.>\j2ee\cluster\server<Server No.>\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\portal\portalapps\com.sap.portal.appintegrator.sap\property\Transaction
    and see the content of the 'WebGuiSSOLayer.properties' file.
    One of the entries is ''ClassName'. The value on a 'valid' portal is: com.sapportals.portal.sapapplication.itsdetection.ITSDetectionLayer
    If it's not the case, then go to:
    <Drive>\usr\sap\<SID>\JC<Instance No.>\j2ee\cluster\server<Server No.>\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\deployment\pcd
    rename the file 'com.sap.portal.appintegrator.sap.par.bak' to 'com.sap.portal.appintegrator.sap.par' open the par file and edit the file ''WebGuiSSOLayer.properties' (add the relevant entry for ClassName).
    Save the file (still with the par extension)
    Restart the portal (if everything is OK then the bak extension will be added to the filename).
    Just try this, hope it works.
    Reward points if helpful
    Regards,
    Shailesh Nagar
    Edited by: Shailesh Kumar Nagar on Jan 22, 2008 7:16 AM

Maybe you are looking for

  • Ipod shuffle 2 nd gen itunes 9 ipod not recognised (windows 7 64 bit OS)

    Hi I see that others are having issue. My problem is that I have windows 7 ultimate installed (64 bit) along with itunes 9 (64 version) . When i plug in my ipod shuffle 2nd gen 1gb I get the following message " the software required for communicating

  • Imap smtp settings work in thunderbird but not in mail

    Hello. One of my imap accounts can't send mail from apple's mail anymore (since updating to 10.8). The exact same settings (Server, Port, Security, Authentification, User Name) on the same computer work in thunderbird. Any idea? Thanks

  • Different versions of Openreach modem?

    Hi all, Can someone please explain which version and what the differences are between the three different modems below? Thanks. Regards Edd Check your Line BT Speedtester Solved! Go to Solution.

  • Layers disappearing randomly

    I'm having an entire Layer Group disappear at random.  It is still there in the Layers panel, but it's not being displayed on stage.  I had added a new subfolder to the group, and I believe this is the culprit.  Removing this subfolder stops this pro

  • ReportClientDocument.open() returns ReportSDKServerException

    I created a sample report using a POJO datasource in the CR4 Eclipse plugin, and it ran correctly inside Eclipse.  However, when I tried to run similar code in a separate web application under tomcat outside of eclipse, I got the following error on R