How to subscribe to a group space in Oracle Web Center application

Hi All,
I am a newbie to Oracle Web Center and playing in and around with the Oracle WebCenter Spaces..
At the time of creation of Group Space in Oracle WebCenter Application, there are two options :
1. Adding the members by the owner of the group space
2. Opening the open group space which allows others users can join by searching the specified GroupSpace and joining into that group space.
If i try to do like this, I was getting this error :
WCS#2010.07.21.15.05.39: Unable to send subscription notification to moderator(s). The reason is : Can not retrieve group space workflow configuration. Please contact administrator.
Can anyone please help me to solve this out..
Thanks in advance
Regards,
Sandeep
Edited by: user10681665 on 22-Jul-2010 02:13

Sandeep,
To get this notifications to work, you need to setup BPEL and connect WebCenter to your BPEL server.
Regards,
Rob

Similar Messages

  • How to start EM in Oracle Web Center?

    Please guide how to start EM in Oracle Web Center?
    as i am not getting emctl file in BIN Directory of Oracle Web Center Home...
    Please guide and help
    Thanks,
    Waheed.

    Hi All,
    I got the solution how to start EM in Webcenter .
    If in your configuration is there any other HTTP server is running then its comfilect with your current Webcenter with HTTP server installation. so try to installed only Oracle Webcenter Freamwork only...after that try to open the Application server control page with 8888, it will definately work...

  • BPM work spaces integration with Web-Center work spaces

    Hi ,
    I have a requirement of Integrating BPM work space with WEB-CENTER SPACES.
    Can any one suggest me how to integrate....?
    Thanks & Regards
    PRAMILA PADAM

    Ok, Figured out the issue,
    Values in the OAF_AXF_CMD_PARAMS table was not matching with the actual attributes on the OAF pages. The four values
    Entity Name, Primary Key, View Object and Attributes are to be entered for each page where we are intending to have the MA button.
    Thanks,
    Rajiv.

  • How to execute a BI query/view from a web dynpro application?

    Hi all,
    I am trying to connect to a BI system from a Web Dynpro application. I have to execute a view/query and process the output in my application. Please guide me about how to establish the connection to the BI system from my web dynpro application and then execute the query/view.
    I have tried executing/modelling the BI query/view using Visual Composer but I get an error saying 'QueryView Instantiation failed' when I try to drag the view/query on to the design board.
    Please guide me and help me achieve this.
    Thanks & Regards,
    Kishan

    Hi Kishan,
    Define system for BI in portal and define JCo destination, then from WDJ application use can query BI.
    Create the Technical System and connect with JCO Destinations
    or
    Connecting through the BI Connecters (ex: XMLA Connecter)
    Refer below link:-
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/60f35908-ecd4-2910-6c89-e75e1054d9d1?quicklink=index&overridelayout=true
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/60f35908-ecd4-2910-6c89-e75e1054d9d1
    In this document you will get details related to connector and other admin activity.
    Hope this may help you.
    Deepak!!!

  • How to make use of Portal service in the web dynpro application

    hi
    I have some portal service and how to use that in the web dynpro application.
    and also what is the main diff between Portal Component and web dynpro application.
    do we required portal to run web dynpro application.
    thanks
    mmukesh

    Hi,
    >> I have some portal service and how to use that in the web dynpro application.
    Yes. U can use Portal service in webdynpro. Check the link given by subathra.
    >> and also what is the main diff between Portal Component and web dynpro application
    Portal Components are components designed to run in portal server while webdynpro application can run in J2EE WebAS.
    >> do we required portal to run web dynpro application.
    No for general cases. Just WebAS is sufficient to run webdynpro appl. But if u use portal service in ur webdynpro appl, then make sure both (portal service and webdynpro appl) run on same J2EE engine. That is mandatory.
    Regards,
    Vijai

  • How can I enable java applet plug-in and Web Start applications via terminal?

    Since the last Java update to Snow Leopard, I have found that the system periodically disables the Java applet plug-in after a period of disuse.  I know I can go to /Applications/Utilities/Java Preferences and just click to re-enable Java.  But I want to write a script which will do this periodically for a couple hundred Mac users where I work. 
    My question is - how can I reenable the Java applet plug-in and web start applications via Terminal command?  Is this possible?  Is there a plist file that can be modified, etc.?
    Bob Reed

    It is my understanding that Apple's most recent Java update automatically disables Java after a certain period of time that it hasn't been used.  We don't want users to have to keep re-enabling it.  So we wanted to find a way to do this via script either run by a Casper JSS server or stored locally on each workstation.   With the guidance provided by Mark Jalbert above and some text from a script written by Rich Trouton, I was able to make a script (with some minor changes) and a launch agent to re-run the script upon login.  So the preference is always enabled.
    For your reference, the script content is:
    #!/bin/sh
    # DYNAMICALLY SET THE UUID FOR THE BYHOST FILE NAMING
    if [[ `ioreg -rd1 -c IOPlatformExpertDevice | grep -i "UUID" | cut -c27-50` == "00000000-0000-1000-8000-" ]]; then
    MAC_UUID=`ioreg -rd1 -c IOPlatformExpertDevice | grep -i "UUID" | cut -c51-62 | awk {'print tolower()'}`
    elif [[ `ioreg -rd1 -c IOPlatformExpertDevice | grep -i "UUID" | cut -c27-50` != "00000000-0000-1000-8000-" ]]; then
    MAC_UUID=`ioreg -rd1 -c IOPlatformExpertDevice | grep -i "UUID" | cut -c27-62`
    fi
    # Set the the "Enable applet plug-in and Web Start Applications" setting in the Java Preferences for the current user.
    /usr/libexec/PlistBuddy -c "Delete :GeneralByTask:Any:WebComponentsEnabled" /Users/$USER/Library/Preferences/ByHost/com.apple.java.JavaPreferences.${MAC_UU ID}.plist
    /usr/libexec/PlistBuddy -c "Add :GeneralByTask:Any:WebComponentsEnabled bool true" /Users/$USER/Library/Preferences/ByHost/com.apple.java.JavaPreferences.${MAC_UU ID}.plist
    /usr/libexec/PlistBuddy -c "Delete :GeneralByTask:Any:WebComponentsLastUsed" /Users/$USER/Library/Preferences/ByHost/com.apple.java.JavaPreferences.${MAC_UU ID}.plist
    /usr/libexec/PlistBuddy -c "Add :GeneralByTask:Any:WebComponentsLastUsed real $(( $(date "+%s") - 978307200 ))" /Users/$USER/Library/Preferences/ByHost/com.apple.java.JavaPreferences.${MAC_UU ID}.plist
    The launch agent plist content is:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
              <key>Disabled</key>
              <false/>
              <key>Label</key>
              <string>org.XXXXX.enableJavaPlugin</string>
              <key>ProgramArguments</key>
              <array>
                        <string>sh</string>
                        <string>/Library/Scripts/XXXXX/enableJava_plugin.sh</string>
              </array>
              <key>RunAtLoad</key>
              <true/>
              <key>StartOnMount</key>
              <true/>
    </dict>
    </plist>
    I hope this is helpful to anyone wishing to keep the Java web plugin enabled.
    Bob
    Message was edited by: Robert Reed2

  • How to call a method of a zclass into web dynpro application

    How to call a method of a zclass into web dynpro application

    Hi,
    if the method is of type static then u can access it directly as below.
    call method class_name=>method_name
    If the method is instance method then U need to create the object of that class. then through this object u can access the method.
    CALL METHOD Obj_name->method_name

  • How do you call a function module in a web dynpro application ?

    Why do you delete my postings ?????????????????????????????
    pls see subject
    Edited by: Ilhan Ertas on Apr 1, 2009 4:51 PM
    Edited by: Ilhan Ertas on Apr 1, 2009 4:52 PM

    Its not me deleting them.  Perhaps a different moderator or a technical problem within SCN itself.
    Someone might be concerned about your question because it is very basic.
    You can call a function module from WD the same way you did in any ABAP program - with the CALL FUNCTION syntax.  There is a service call wizard that will generate a matching context and calling code for you - but it is just a helper, code generator.  Everything it does can be done by hand as well (and often better than the generator).

  • HOW TO CREATE A EVENT IN WORKFLOW THROUGH ORACLE APPS 11i Application

    Dear all,
    I am un able to create a Business Event in Oracle Work flow Version 2.6.3 through Oracle Apps11i " Workflow Administrator Responsibility" ..
    In Workflow Administrator Responsibility, I could search the Business Events bUT i cannot create the Business Events...
    Please help me to sort the Issue....
    Regards,
    Vijay Kumar L.P.

    Hi Anand,
    Move to a more relevant forum for a better support.
    Simply I found some useful link for you:
    https://social.msdn.microsoft.com/Forums/en-US/df44ac69-35e8-4757-b11e-731cd38c295f/creating-pdf-in-wince?forum=netfxcompact
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Logon group SPACE

    How can i delete logon group SPACE?
    I'd like have 1 logon group custom: gruppo1.
    I don't like have SPACE from groups SAP GUI ( version 7.10).
    Help me.
    thank Tou

    Hi,
    You can not delete the SPACE logon group, it's a SAP default logon group. You can create your own gruppo1 logon group in SMLG trx.
    Regards,
    Sachin Rane.

  • Trimming double byte space in Oracle

    Dear All,
    DB Version: Oracle 10g
    Client : Oracle SQL Developer
    How can we TRIM double byte space in Oracle without first converting it into single byte and then using TRIM function.
    Sample data is :
    トヨタカロ-ラナンカイ (カ 
    I want to TRIM trailing double byte space.
    Regards,
    Vikas Kumar

    untested, because of missing examples
    TRIM(TRAILING doubleByteCharacter FROM sampleData)ok there is an example now, so this will work
    select trim(trailing ' ' from '有限会社 ヴオーグ      ') from dual;
    "     P>
    {code}
    Edited by: Sven W. on Aug 27, 2010 5:30 PM
    Edited by: Sven W. on Aug 27, 2010 5:31 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to link the ALRTINBOX in a ABAP Web Dynpro application?

    How can I link the ALRTINBOX window in a web dynpro application view?

    Hi Rahki,
    The status of what?
    There are traffic light icons that you can use, or you can set  the cell design (which changes the background colour of a cell (if you are in a table).
    I often use this to indicate on a review step whether a cell/row has been inserted, modified or deleted from a table.
    Chris

  • How i can change port that oracle web server listen on in 10gEx

    Hi
    Thank you for reading my psot
    How i can change the port 8080 that oracle web server listen on it ?
    I have other server listening on this port and i can not change that port.
    I have oracle 10g Express edition

    This question has been asked and answered several times in the XE forum. Feel free to join us in the XE forum at Oracle Database Express Edition (XE)
    If you're not registered there, do so using http://www.oracle.com/technology/xe/registration
    The answer is to use dbms_xdb's sethttpport procedure.

  • How to get pages list for a group space or create a page for a group space

    hi All,
    I am using wc11.1.1.3, I want to use java api to implementing the following functions in site template:
    1. Get pages list for a given group space
    2. Create a page for a given group space
    I researched the following codes from web site:
    PageDef newPage = mPageService.createPage(
    PERSONAL_USER_PAGE, pageNameFormat, pageTitle,
    "MyPageTemplate1.jspx",
    "/mytemplates/",
    null, null, null);
    What should be used instead of PERSONAL_USER_PAGE if a group space page is intended to be created? which parameter is for defining group space name that the page should be created for?
    By the way, PageService seems has method for getting list of pages, but how to use it to get page list which is in a specified gs?
    Best regards

    did you manage to get the page list using Page Service API?

  • How to Subscribe to Outlook Calendar in Group WIKI Calendar

    Ok, here's what I've been trying to figure out how to do for about a year.  Our small office uses PC's with Outlook as our Calendar.  We are not on Exchange Server.  We are using Mac Mini Snow Leopard Server ver. 10.6.8. I'm trying to figure out a way so that our office can look at one central calendar and see individual calendars for each of the users.  I don't want all the users to have their events/appointments on 1 calendar because then you can't tell whose event/appointment it is.   I've setup a Group WIKI and have activated the Calendar and have a group consisting of the attorneys assigned to the Group.  Outlook 10 can publish its calendar as to a webdav server.  In fact I'm able to subscribe to my Outlook Calendar once its been published in the iCal client on the Snow Leopard server.  It updates in both directions when changes are made.  The problem is that when I go into the Group WIKI Calendar, although I can create calendars there and then PUBLISH them so they can be Subscribed to in either iCal or in Outlook 2010, I can't figure out how to SUBSCRIBE to a webdav/caldav calendar, ie. the Outlook 2010 that's been published, in the WIKI Calendar.  Thanks for your help.

    Hello,
    I'm afraid I'm not familiar with the specific intricacy of your situation (a hosted domain at Outlook.com), and so do not know if indeed that is causal to your issues. But perhaps a workaround will be useful? For example, if you indeed use your hosted domain for your email, but create a true Outlook.com account for the use of only Calendar and Contact synchronization, then that might work?
    You can find complete instructions here:
    http://supportforums.blackberry.com/t5/General-BlackBerry-10-Smartphone/How-To-OTA-Sync-BB10-and-non...
    For your email account, you simply use the domain they are hosting, and for Contacts/Calendar, the true Outlook.com account that you create for that purpose.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for

  • Oracle Database Size Estimation Technique

    Hello All, I am planning to estimate a database in Oracle. Its a fresh database and will not take any data from any other legacy or flat file systems. Do anyone of you can provide me with a checklist sort of thing which will enable me to estimate the

  • Date Conversion- Formula

    Hi All, I have Info Object 0DOC_DATE - Data type (DATS ) Length - 8 ; in transfer rules i need to write a formula to convert the date format as MM/YYYY Instead of DD/MM/YYYY. Please suggest to write formula in transfer rules ASAP. Thanks

  • Clarify ADF BC and JPA

    I am a Forms programmer, want to start learning Jdeveloper and java. I read many books and 11g tutorals. I am confused that are there 2 different methods in create database entities? 1. I want to clarify that ADF BC and JPA are 2 different things, is

  • AEBS 802.11n 5GHz gives "invalid password" - need a solution!

    After an update to 7.2.1 I've been trying for the past 4 hours to get back on my 5GHz network, but no success. I hope someone can resolve this, because it's getting extremely annoying. - 802.11n (b/g compatible) 2.4GHz, pass or no pass -> works - 802

  • [SOLVED] E17 - "Incorrect Root Filename" when trying to use edje_decc

    Hi, I decided to give E17 another try (on Arch this time, last time was on Bodhi) as a second DE.  I wanted to try creating my own theme this time now that I have some more experience with editing configs from using Arch but I am not able to get the