Creating a forum in portal

Hi masters!
I have to create a forum in sap portal and where can i start? Have you any documentation or suggestion to start somewhere?
Thanks.

Hi,
Link is working for me. I have attached below.
[https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1049553]
Hope this helps.
Manoj

Similar Messages

  • How to implement the Forums in portal

    HIii..
    I want to create a forum in my portal. Can any body tell me how to do this using TRAX and indexes.
    pls give some step by step procedure.
    Gud solution will be rewarded.
    Thanks

    Hi,
    Forums is available from NW07 SP12 and to create forums check this:
    http://help.sap.com/saphelp_nw70/helpdata/EN/44/93780e2d206999e10000000a11466f/frameset.htm
    If you want to enable Trex to search forum content then check this:
    http://help.sap.com/saphelp_nw70/helpdata/EN/47/17904a21fa3696e10000000a11466f/frameset.htm
    If you want to create index:
    http://help.sap.com/saphelp_nw70/helpdata/EN/52/20bc407e71712ae10000000a155106/frameset.htm
    Regards,
    Praveen Gudapati

  • How to create a forum based on java

    Hi.
    I'm new and maybe that's the wrong place, but I've got an urgent question. I wanna create a forum without php. Is there any open source solution I can use?
    Thanks

    http://www.mvnforum.com/mvnforumweb/index.jsp

  • Creating users in enterprise portals with CUA as userbase

    Hi All,
       we are using CUA system for maintaining the users and we want this users to be used in enterprise portals. So while installing WebAs itself, we specified the connection details to this CUA system. then we installed portal and we were able to view the users of CUA in portal.
      now i am creating a user from portal, create user option in UserManagement. but i just get an error like, could not create a user.
    i checked out in system administration->umconfiguration-> sap system. all the details that we specified during the webas installation appear there by default.
    so could you please let me know what the problem could be
    thank you

    Raj,
    I know that your problem was solved, but I've come across following SAP link. Hope, it helps other ppl..
    TITLE: Requirements for Service User Used to Connect to SAP Systems
    http://help.sap.com/saphelp_ep60sp2/helpdata/en/8f/67d27676ace84080964d4c4223bb3c/content.htm
    Thanks,
    Pritesh.

  • Attribute error while creating shopping cart in portal

    Hi,
    We are using SRM 7.0 . While creating shopping cart in portal , I am getting error " the attribute of the user are inconsistent or not defined. See transaction ppoma_bbp "
    I have maintained attributes of ACS,BSA,BUK,BWA,CUR,KNT,WGR & WRK . Done attribute check in BBP_ATTR_CHECK, it issued warning message for CAT attribute. All other attributes are Ok.
    Could anybody help to resolve this.
    Regards
    Ayyappan

    HI
    Step 1: Check the consistency of the User for Shopping Cart using Transaction BBP_CHECK_CONSISTENCY. THis will give you a snapshot of what is missing in user's attributes for creating a SC.
    Step 2. Go to PPOMA_BBP and note down the Position id and CP id of the user. Then check the consistency of these objects using BBP_BP_OM_INTEGRATE.
    It seems the combination of attributes is not in right place for this user
    Regards
    Virender Singh

  • How do I create a Forum in Muse.

    I have tried to research how to create a Forum in Muse and have not come up with anything.  Is there anyone who has done this?

    Muse output static pages only and does not interact with databases to create dynamic content. You could however, take advantage of Adobe hosting through Business Catalyst (webMarketing plan and above) that supports building a forum, however, there is no native support in Muse to integrate that as of yet. You would need to have knowledge of HTML/CSS and CMS's to get this done.
    If you search through this forum, you'll find quite a few threads that may be helpful to begin with.
    Thanks,
    Vinayak

  • Problem with creating new user in portal = portlet is not visible

    Hi,
    I've got a problem with creating new users in portal. In the Administer tab of the builder is the user portlet not visible.
    How can I make this portlet visible?
    Please Help
    thank you...
    Gilbert

    Hi..my problem slightly similar.
    I created one new user, and didn't select anything from "Public Groups Assignment" and "Privilege Assignment" for him.
    I expect the user will be a public user.
    But, when he try to logged in the portal,
    He cannot see all the PORTLETS related to database values..
    All he can see just LINKS -that all in my portal right now beside the report from database that the user cannot see :)
    So, what did i do wrong?
    Plz Advise, and thanks.

  • How do I create a forum (online community)?

    Can I create a forum(online community) using iWeb '08?

    istandnfaith wrote:
    Can I create a forum(online community) using iWeb '08?
    iWeb itself doesn't offer a way to do this, but consider opening a forum at free, web-based Lefora and hyperlinking from your iWeb site to it:
    http://www.lefora.com
    And as an alternative to setting up a basic text or image hyperlink to your external forum, you can link to it directly from iWeb's navigation bar:
    Create a blank internal page named "Forum" (actually you can name the page whatever you want.) Then in that Forum page add an HTML Snippet with the following code:
    <script type="text/javascript">
    parent.window.location = "http://www.yourforumname.com"; // change this to your own URL
    </script>
    ...Once published, clicking on "Forum" in iWeb's navbar will immediately redirect to your external forum page. (Thanks to Cyclosaurus for the code).

  • Creating Line Graphs in Portal

    Is it possible to create line graphs in Portal, I can create the bar graphs but they dont suit my needs.
    If not in Portal, are there any Oracle products that can create line graphs on data in a database?
    Thanks

    What about Oracle Graphics?
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Elliott Hamm:
    Is it possible to create line graphs in Portal, I can create the bar graphs but they dont suit my needs.
    If not in Portal, are there any Oracle products that can create line graphs on data in a database?
    Thanks<HR></BLOCKQUOTE>
    null

  • Help to create a forum in jsp

    hi experts
    i want to create a forum where i can discuss with my college friends actually this is a part of my college project (i want to create a simple forum) plz guide me if anybody have created forum in jsp if u could help by providing me some code it will great help for me (i need it just for understanding and increase my knowledge level)

    http://sourceforge.net/projects/jspbbs
    If this doesn't suit your needs there are other forum applications written in java on SourceForge

  • Creating a trigger in Portal

    I'm trying to create a trigger in Portal using the Wizard with the code below. It will not compile. Any ideas on why?
    Thank you,
    Sam
    DECLARE
    next_chemical_id msds.chemicals.id%TYPE;
    BEGIN
    SELECT chem_id.NEXTVAL
    INTO next_chemical_id
    FROM dual;
    :chemicals.id := next_chemical_id;
    END;
    null

    try creating the same trigger through SQL Plus. If you are able to create and not able to create through portal them pls post the correct error message with portal version.
    Thanx,
    Chetan.

  • Discussion Forum  - Retain Portal Login

    Hi all,
    Hope I'm in the right place for this.
    We are looking to install a discussion forum solution (currently running 9.0.4.1.0 - Build: 129).
    Ideally we would like the forum to work in the following way:
    A user logs into the portal, clicks on 'Discussion Forum' tab and posts a message. We would like the message to insert their login name (#USER.FULLNAME#) along with their message i.e. the user doesnt have to register to the forum, or enter their name or email.
    Is this possible with any of the forums out there?
    Thanks for your time.

    Hi There,
    <p/>
    You could check out the Oracle Provider for Jive Discussion Forums on Portal Integration Solutions page. You will need to buy Jive Discussion Forums and then install the providers.
    <p/>
    What you are asking for is definitely possible as the portlets provide a single sign-on mechanism to the users.
    <p/>
    thanks
    Harsha

  • How to create wiki pages in portal

    Is there any way available to create wiki pages in portal? All the users logged in portal can be able to create the pages. The users can have the option to search for the wiki's.
                How can we achieve this? Help us to drive this.

    Hi Parvathy,
    Please check the blog in below to have an idea.
    Wiki Wiki World and Portals
    Please do not forget reward points for good answers...
    Regards,

  • IVew Error:Create IVIEW in a Portal  for a SAP BW Query

    Hi,
    My requirment is to publish a BW Query to Portal.
    When i tried to create a iver for a particular BW query in portal.....it is pulling every thing.
    When i click to execute a query for which i created iview...a new window pops up and and displays queries according to roles
    Please update me whats happening
    Background:
    BW Version : 7.0
    Currently we are accessing a BW Reports/Queries using BEX WEB Analyzer.
    We are using a Standard Web Templete in WAD.
    When we create a New Query in BW Query designer and publish it a role folder(BW)-PFCG.
    When i execute BEX WEB Analyzer through Explorer i can access query from the folder in the role to which i published.
    I don't need to add each query to web templete when i publish the query to a pole folder in PFCG when i run the BEX WEB Analyzer the query will be in that role automaticall.
    Now i am planning to publish queries in Portal
    I created a role in Portal>Created a work set>assigned the workset to the role
    I am trying to create a iview
    Create a new iview> templete>Query string details
    i assigned this iview to the role
    When i try to access the query from the role i created. intsed of opening the query for which i created iview ...it is opening all the queries that i can access form BEX WEB Analyzer...
    Please update whats happening
    Please let me know if you need firther information
    Thanks

    Hi
    Thanks for the updare...the document (pdf) is not able open...file damegaed...
    PLease aupdate me
    When i created a iview for a single BW query why i can able to see all the queries in the BEX WEB Analyzer
    Thansk

  • Consider creating a forum category on AppleCare?

    Hi all (long time no speak),
    Anyhoo, it's just a suggestion, but I think it might be worthwhile to consider creating a forum category -- perhaps in the same "Special Interests" forum that this category on "Feedback about Discussions" is in -- that would corral posts having to do with all things AppleCare.  It could, for discussion's sake, be called AppleCare.
    Such a forum category could include, among other things, questions about how best to use AppleCare (both by mail and in person), and a whole host of the many issues that arise in connection with  the provision of inital and extended warranty technical service by both Apple and Apple-Authorized Service Providers. It could even be broader.
    Over the past year or so I have had two fantastic experiences with AppleCare at the 5th Avenue Store in NYC (one just recently that inspired this post), and such a forum category would allow me to share the specifics of those experiences and, more importantly, help others to utilize this important customer-service resource in the most efficient and effective way possible.
    Like I said, it's just an idea and I'm sure there are there flaws with this proposal that I've not considered, but hey, that what Discussions are for, right, vetting ideas.  So, please, by all means, feel free to discuss (amongst yourselves or in groups) and share your thoughts.
    Thanks for your consideration & (a long-belated) Happy 2009 to the entire AD community.
    -- JDee

    JDee wrote:
    Hi all (long time no speak),
    Thanks for your consideration & (a long-belated) Happy 2009 to the entire AD community.
    -- JDee
    Hi Stranger,
    As always, a thoughtful post.
    Take care and the best of luck to you!
    Joe

Maybe you are looking for

  • Launching report from button in forms

    I have a report with a user input parameter that i need to launch from a button within oracle forms, inputting the url does not display the report because of the perameter is there another way? ive looked into the built ins but they seem overly compl

  • JDBC Thin/OCI - Linux

    There are downloads for the latest JDBC drivers for Oracle provided for Solaris and NT. We only seem to be able to download a thin driver on Linux - is there an OCI version going to be becoming available or have I missed something? Thanks Jason.

  • More than one Thread accessing the same records in the database

    Hi, I have more than one thread accessing a synchronized method called getMinPrimaryKey() which gets the lowest of the primary key frm the table based on the a flag which is set to true. once it is retrieved the same method also sets the flag as fals

  • Transaction time out for an single ejb

    Hi, I have one ejb which need to run for long time. Did a quick search on the forum and find out that you can modify data-source.xml and server.xml to increase the time out period. But this is a "global" setting which will affect all the ejbs in the

  • I just to open every Google searched link in ( new tab ) in same webpage , when i click the link

    hello sir/mam i just to open every Google searched link in ( new tab ) in same webpage , when i click the link what to do please replay thank you