Regarding WebEx implementation in portal

Hi friends,
        When I try to use WebEx sharing service in collaboration, I am getting the following error.
"Service Types have not been configured. Please contact the system administrator"
But I logged in as an administrator.
Please let me know your views on this .
Thanks and regards
Vivekanandhan

Hi,
the error message does not mean that you need to have an administration role to be able to use this feature. Instead it wants to tell you that configuration is missing. Please have a look at http://help.sap.com/saphelp_nw70/helpdata/en/63/19baa42aaf42598c5adb014bf55ad7/frameset.htm to learn how WebEx-Integration can be done
Kind regards
Karin

Similar Messages

  • Reg:implementation Enterprise portal in solution manager

    hi all
    i am new to the concept of solution manager .In this how can we implement Enterprise portal .Actually what an EP consultant work need to be done in this  solution manager.can any  one provide some real time scenarios info related to it .
    regards
    Deepika

    Hi,
    Regarding the implementation phase, Solution Manager helps you via several functionalities:
    - Solution Documentation: Central documentation of processes, system landscape, custom code,...
    - Test Management:Change impact analysis, End-to-end test management
    - Change Control Management: Integrated quality management, Synchronized transports of various components, Controlled and documented adjustment of business processes incl. approval process
    - Application Incident Management: Integrated service desk, Involvement of partners in problem resolution, Provide root-cause analysis for complex landscapes with diverse technology stacks
    The most important part in from my perspective for a implementation consultant is the Project Documentation functionality, where you can get Implementation Content for Enterprise Portal. This includes business scenarios documentation and business process included in the Business Process Repository, how to configure different scenarios and business processes, test cases, etc.
    I think you can find some information in the marketplace about this functionality. For example you may find something under service.sap.com/alm -> SAP Solution Manager and Tools.
    Best regards,
    Fernando

  • Implement Supplier Portal

    Hi Team,
    We are planning to implement supplier portal for our project. The purpose of this, supplier login to this portal to see their qty status by report. How much qty they have supplied and how much qty used by company etc..
    Here we have material and vendor (supplier) etc. as a info objects. Different vendor can supply the same material. When the vendor login to the supplier portal to see the report and they have to look only their materials and they can't see the other vendor's material.
    How do I control this ?. Do i Need to control this Vendor number info object Authorization level ?.
    Pl let me know your thought here and share if any of you come across this situation.
    thanks in advance for your kind help.
    Regards,
    Senthil.

    Hi Senthil,
          You can add additional user attributes by following the below procedure..
    http://help.sap.com/saphelp_nw04s/helpdata/en/44/0316d50bbe025ce10000000a1553f7/frameset.htm
         You can create an additional Portal attribute for Vendor number. In the Webdynpro code, based on the logged in user you can extract the vendor number and pass it on to the back end BAPI, then you will make use of vendor number in your select query. I feel that this is the simplest solution for your problem.
          Regarding your solution, what if a Vendor has multiple users who access your Portal. I don't think all the users from a vendor will use the same user id, which is not advisable.
    Regards,
    Uday.

  • SSL implementation on portal development

    Hi, All
    I have implemented SSL on QA using the standard port 443 and it is working fine.I did the same SSL implementation on portal development using the same port 443 and it doesn't work.When I call up the https url from IE for my portal development it seems like it's not connecting it just stays blank and it is not displaying anything.
    However when I change the port to 50001 it works fine nad everything on the web page is displayed but I want it to work on the standard port 443.Please help on rectifying this or any Ideas on how to solve this.
    Thank you

    You need to change the http provider service on your DEV portal dispatcher to use port 443 instead of 50001.
    Also, make sure there are no other web servers using that portal number on the same host as the DEV portal.
    Cheers
    Message was edited by:
            Michael Nicholls

  • Is there a possibility to implement a Portal Services by EJB Bean?

    Let suppose we have a Portal Service class ITestPortalService and EJB called TestEJB
    Can we do this in this way or any other way?
    public class TestBean implements javax.ejb.SessionBean, TestPortalService

    Question: Is there a possibility to implement a Portal Services by EJB Bean?
    I don't think you can do this directly as the portal service is maintained and called from the irj (portal) application, while the EJB beans are called directly from the web application server (as far as I know).
    The only think you could do is to have the Portal Service be  a bridge, which basically only calls the EJB and returns the results.

  • How to implement OracleAS Portal Clustering ?

    Dear all,
    Can anybody pls point me to the docs about how to implement OracleAS Portal Cluster (version 10.1.4) ?
    Also, about deploying Portal from development server to production server (using Export Import) , do we have to deploy it to all nodes , or can we just deploy it once to the cluster ?
    Thank you,
    xtanto

    Hello Xtanto,
    The Oracle documentation provides instructions for setting up Oracle Portal in a 'cluster'. For 10.1.2.0.2 and 10.1.4 :
    [5.3|http://download.oracle.com/docs/cd/B14099_19/portal.1014/b19305/cg_advnc.htm#i1046354] Configuring Multiple Middle Tiers with a Load Balancing Router
    Oracle® Application Server Portal Configuration Guide
    10g Release 2 (10.1.4)
    B19305-03
    Alternatively you can also check the enterprise deployment guide :
    [7|http://download.oracle.com/docs/cd/B14099_19/core.1012/b13998/portal.htm#CACHEECD] Installing and Configuring the myPortalCompany Application Infrastructure
    Oracle® Application Server Enterprise Deployment Guide
    10g Release 2 (10.1.2)
    B13998-07
    For deployment from development to production, transport sets can be used :
    [10|http://download.oracle.com/docs/cd/B14099_19/portal.1014/b19305/cg_imex.htm#i1030999] Exporting and Importing Content
    Oracle® Application Server Portal Configuration Guide
    10g Release 2 (10.1.4)
    B19305-03
    Thanks,
    EJ

  • Question regarding implementation of Portal Service

    Hello,
    I want to create a portal service that calls our R/3 system and comes back with customer master data. For that I have to hand over the userid to the portal service.
    The Interface looks like that:
    import com.sapportals.portal.prt.service.IService;
    import com.lgs.model.CustomerDataBean;
    public interface IR3CustDataService extends IService
        public static final String KEY = "R3CustDataService";
        // returns an object with all customer master data from R/3
         public CustomerDataBean getCustomerData(String userid);
    The implementation of the method in the corresponding class is:
    CustomerDataBean cdb = new CustomerDataBean();
    public CustomerDataBean getCustomerData(String userid) {
              return cdb;
    Now I would implement the program logic (accessing R/3 and fill the CustomerDataBean) in the init method of the portal service class.
    public void init(IServiceContext serviceContext) {
                    mm_serviceContext = serviceContext;
                    implementation of program logic, usage of userid necessary
    My question is now how I can use the String userid in the init method? How can I hand over the userid to the init method so that I can use it?
    Any hint is really appreciated!
    Thanks a lot.
    Arno

    hi
    MY level of understandind u r problem is
       by application  u r sending the username and password to the portal and getting the required data by beans
    if so
    check this it may be usefull foru
    Integrating External Application Services without Web service
    bvr

  • Urgent!! How  to find all applications implemented on portal?

    Hi all,
    i am implementing a new portal, my requirement is i have my current portal running and have many applications and components implemented on it, i want to reflect all these on my new portal, so is there any method available so that i can search/find which all components/objects are there on my portal??Any help on this will be valuable,
    Regards,
    Ameya

    You can see all the components in system information... provided by system as well as ur own ..
    Another way is .. loggin on to VA .. check Deploy service.
    In this u can see all the components... custom as well as system provided.
    But u cant see iviews and all ... u can see iViews in system information only.
    I dont know if u can see a list of KM docs in a way u like to .. but to make sure u have all the docs on the other server .. u can use WebDav URL and copy all the docuemtns. If u have done any modifications to KM interface or defined any metadata for documents then you will have to use ICE  .. content exchange tool to trasport everything...
    Please be elaborate in ur requirement.. and one suggestion ... If you sit and compare evey component ... it might take ages to ensure both systems are same
    Normally we transport everything from one portal to another ... and KM is ICEd
    Cheers!!
    Ashutosh

  • Implementing Federated Portal Scenario

    Hi Portal Gurus,
    I have  two instances of SAP Portal 7.0 and one  of 6.0. Which two of these are eligible for implementing a federated portal scenario. What other things are required to execute this scanario.
    Any Step by Step guide is there?
    Thanks SDN.
    Karan

    Hi Karan,
    Refer this link
    Article
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3eea14b9-0a01-0010-06b9-8410ab7675f6
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/400c82cc-c570-2910-3d83-b3b2799b10e9
    http://help.sap.com/saphelp_nw04s/helpdata/en/5b/9f2d4293825333e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/43/222dfc0bb93fece10000000a11466f/frameset.htm
    What is a Federated Portal Network?
    Thanks and Regards
    Venkatesh

  • Help Required - Regarding New Implementation

    Hello Experts,
    Implementing a new SAP ... and got bit confused about the April 1 opening balances and March closure.
    On 1st March 2014 we entered the following Opening Balances -
    1. Open POs
    2. Open Sales Orders
    3. Stock Opening Balances
    Then for the month of March we have been running SAP and the legacy system in parallel , making the following transactions –
    1.       Sales Order (Invoiced in March only)
    2.       Deliveries
    3.       All AR Invoices
    4.       All Purchase Orders
    5.       All GRNs
    6.       All AP Invoices
    7.       No Bank receipts or payments were created. End of the month both AR and AP invoices will be Open for bank receipts and payments respectively.
    The main question is which transactions need to be created/ closed to have opening balances in SAP.
    (In other words ...
    What is required now to create the correct opening balances? Can we close the invoices, both sales and purchases, without creating receipts and payments, respectively?
    How do we need to enter the customer and supplier opening balances when we have already created all the invoices for the month of march?)
    Your help will be much appreciated...
    Thank you.
    Best Regards

    Hi, Venkat
    I think that your Subject is not relevant to your problem
    For Search Help problem please follow the test the following code.
    PARAMETERS: ppernr LIKE pa0001-pernr.
    DATA: i_return TYPE ddshretval OCCURS 0 WITH HEADER LINE,
          c TYPE c VALUE 'S'.
    * Search Help for Pernr
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR ppernr.
      TYPES: BEGIN OF t_pernr,
        pernr LIKE pa0001-pernr,
        ename LIKE pa0001-ename,
      END OF t_pernr.
      DATA: it_pa0001 TYPE STANDARD TABLE OF t_pernr WITH HEADER LINE.
      SELECT pernr ename from pa0001
        INTO CORRESPONDING FIELDS OF TABLE it_pa0001
        where pa0001~endda = '99991231' .
    *    WHERE zsdo~kunnr IN sokunnr.
      DELETE it_pa0001 WHERE pernr = '00000000'.
      SORT it_pa0001 BY pernr.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield    = 'PERNR'
          dynpprog    = sy-repid
          dynpnr      = sy-dynnr
          dynprofield = 'PERNR'
          value_org   = c
        TABLES
          value_tab   = it_pa0001
          return_tab  = i_return.
    Pleae Reply if any Issue,
    and If above is also not solution too, than Please Explain your Problem
    Kind Regards,
    Fasial
    Edited by: Faisal Altaf on Jan 17, 2009 2:46 PM

  • Is it possible to implement iSupplier Portal for Employee type Vendors

    We have iSupplier portal for external suppliers which we customized to show only invoices and payment advices.
    Is it possible to implement the same to our internal employees without creating them as new suppliers ?
    We want employees use iSupplier portal to view their expense(payments).

    If you are using presentation API then as Nagarajan said, you can use Endeca Dimension Search to power your TypeAhead/Predictive search.  Below are a few pointers that may help.
    Trigger typeahead only after user enters a few characters (ideally after 2-3 characters).
    Introduce a delay of a few milliseconds between your Endeca Searches.
    Limit the Dimensions to include using the Di parameter.
    Control the number of dimVals returned and other Dimension behavior using Drc and Dp
    Use Drc (to evaluate InStock products) in a seperate query with D=* to get a list of all valid DimVal IDs. Cache them and use this list to remove any out of stock dimVal IDs from the real query results.
    Use Dk and Dx to control match mode and your relevance ranking strategy to sort your results.
    Oracle Commerce Services also offers a prepackaged service called Endeca Predictive Search (EPS) module that can be quickly implemented to power TypeAhead. EPS provides other configurable features like caching, record search, frequent matches ,etc.  Reach out to your Oracle representative if that intersts you.
    All the best! I hope this helps.
    Best,
    Kaush
    P.S. Google limits the search result to 4 which, works for them and might work for you but to exploit the full potential of Predictive Search based on Endeca, try HomeDepot.com, Staples.com, etc. for inspiration.

  • NW BW 7.3 Implementation Requirements - Portal Patch

    Hi,
    We are planning to launch BW 7.3. So far we do not have a SAP-BW , however we are on ECC EHP4.
    Question :
    Do I have to be on ECC EHP5 to implement BW 7.3 ?
    Is there any Portal Package requirement to implement BW 7.3 ?
    I did gone thur release notes and implementation guide and unable to figure this out
    Can I just use BW 7.3 with BO4.0 with out a NW Portal{ without disturbing existing portal serving ECC} ?
    Thanks
    Gopi

    >>Do I have to be on ECC EHP5 to implement BW 7.3 ?
    No you do not need the newest ECC. If you are on R/3 (former ECC) 4.6 it should be fine.
    >>Is there any Portal Package requirement to implement BW 7.3 ?
    For BW 7.0 JAVA stack is mandatory since web reporting and some oter functionality (information broadcasting, printing etc. runs on JAVA). So not Portal but JAVA Stack is required if you plan to use JAVA based BW functionality.
    >>Can I just use BW 7.3 with BO4.0 with out a NW Portal{ without disturbing existing portal serving ECC} ?
    I think yes.

  • Regarding BADI implementation in Debugging

    Hi,
       i have a doubt regarding BADI.There are multiple badi implementations for VA02 transaction. now i am processing the VA02 transaction. Can i know which implementation is processing for the transaction.

    Hi Praveen,
    Use this code to find out the BADI of a Transaction code:
    *& Report ZGET_BADI
    REPORT ZGET_BADI.
    TABLES : TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA wa_tadir type tadir.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    *Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    *Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    *For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    endcase.
    Reward if useful
    Regards
    Ravi

  • Regarding the installation of portal

    hi there,
    i have installed sap netweaver ce  trail version with nwds , but was not able to find the portal component in the download from where can i download the portal component and for nw as ce 1.0 and is it necessary to install the portal for installing and configuring the uddi registry
    Thanks in advance

    Hi Zain,
      Please check the help link for registering webservice in UUDI registry
      <a href="http://help.sap.com/saphelp_erp2005/helpdata/en/f8/46537698664432b74aa4050ba73f25/content.htm">Configuring the UDDI Client and UDDI Server</a>
      <a href="http://help.sap.com/saphelp_nw04/helpdata/en/6c/8aac34d2d6e64dbcfc3ffb10bb3e9e/content.htm">Publishing</a>
    Regards,
    Vinoth.M

  • Change Tracker implementation in portal

    Hi,
    while implementing change tracker in Portal , one important point to be notted is to assign the below mention UME action to the roles created. Otherwise you will get MDM authorization error.
    UME Action are  as follows:
    tcmdmchangetrackersecurity-> MDM_CHANGE_TRACKER
    Thanks,
    shiny sunny
    SAP WebDynpro Consultant
    Lnt Infotech
    Banglaore

    To change the client in Portal:
    1. UME connects to you have to start the configtool found at \usr\sap\<SID>\<Instance>\j2ee\configtool\configtool.bat or .sh depending on your OS.
    2. When prompted for DB connection says yes. After that use the last button on the menu which says "switch to configuration editor mode" in it's tooltip. You will see a tree. Move the tree down to cluster_data -> server -> cfg -> services -> Propertysheet com.sap.security.core.ume.service.
    3. Open that one in editing mode by pressing the button with the pencil first and then doubleclick the entry u201CPropertysheet..." in the popup navigate to ume.r3.connection.master.client and change the value from 000 to whatever client you need it to connect to.
    4. Restart the server.
    5. The same thing can be done from the Admin tool but then the Server needs to be up and running. From configtool you only need to have the database running.

Maybe you are looking for

  • Apple's Iphone Recyling program

    Has anyone here ever tried recycling their iphones to apple? How long does it usually take before you get the gift card from them?

  • Bug in iPhoto v6 when using Mail

    Bug in image quality when sending photos with Mail. Description: I click on Email icon in iPhoto, and then choose Medium as the quality, that's when iPhoto tells me that the Photo Count = 1, and Estimated Size = 122Kb. And then the Mail app opens, an

  • Invalid column name (with ojdbc)

    hi, I created a resultSet by executing query with more then one table in it. (left join) and now i want to getObject. so I execute resultSet.getObject("tablename.columnName") and I get this error "invalid column name". when i'm doing the same thing w

  • Help! Spry Tabbed Panels

    Hi, I have a problem with my spry tabbed panels. The default tab is set to be the 1st tab, when I move to 2nd tab and navigate through the content, as the page refreshes, and before it is fully loaded it shows the content of the first tab for about 2

  • Change password for Domain\SAPservice SID and sid adm user

    Hi guys During NW711 installation, Ii gave OS User password different with master password. Now i would like to synchronise the  OS User password with master password(DDIC/SAP) How to change the password for below users SAP System administrator <Doma