How do get "Subscribe" function in cFolder to work?

Hello
Could anyone please tell me how to enable subscribe function on douments in cFolder. When tic the checkbox for "Subscribe" i want end users to get an e-mail with an hint that a document is updated.
Is this a SPRO activity?? I have checked but can not find where to enable so it actually works. And also, where do i specify e-mail adresses for this function? SU01 ??
Appreciate all help I can get. Thanx //Pelle

Hi
This is not SPRO activity..
you have to maintain 2 things...
In settings (on top links> right corner) of User he has to select
Send mail for notification as Immediate
and
for this the requirement is Email for the user Id should be mapped for both, the person who updates and one who needs to get a notification...
I hope this helps
There is 1 std setting by which automatically when the user is created the setting button in user is activated.
this is done in Network settings link on left panel.
This is generally handled by administrator role
Niranjan
P.S. Award points if useful...!

Similar Messages

  • How to get the function name/ID  of the current page

    HI,
    I searched the forum and google, but it is not clear on how to get the function name of the current page.
    I have 4 functions in my self service A ,B,C,D (seeded page links ) they all have to go to a page called hhhPG. Based on which function user is clicks I have to show the data in hhhPG.
    so my question is how to get the function name ? I mean I need to know if user click on link A , B, C or D link and came to this page.
    I found below in one forum and also there is getfunctionID in pageContext , but I do not know what to pass to getfunctionid("???") to get value.
    FunctionSecurity funcSecurity = pageContext.getFunctionSecurity();
    Or is there a better way of know where user is coming from ? like geturl....
    Please help, I need this ASAP.
    Thank you.

    Use below to find out how the user came into the page
    FunctionSecurity funcSecurity = pageContext.getFunctionSecurity();
    boolean isFunc1 = funcSecurity.testFunction(funcSecurity.getFunction("YOUR_FUNCTION_SHORT_NAME1"));
    boolean isFunc2 = funcSecurity.testFunction(funcSecurity.getFunction("YOUR_FUNCTION_SHORT_NAME2"));
    boolean isFunc3 = funcSecurity.testFunction(funcSecurity.getFunction("YOUR_FUNCTION_SHORT_NAME3"));
    boolean isFunc4 = funcSecurity.testFunction(funcSecurity.getFunction("YOUR_FUNCTION_SHORT_NAME4"));
    So one of them will be true based on the function the user came in.
    Write your logic based on these flags.
    Regards,
    Peddi.

  • How to get the function name in controller class

    Hi experts ,
    I am new to the OAF framework.
    i have created the two functions and bot he the function have the same controller class .i want to capture the function name or function id in the controller class.
    can you please let me know how to get the function id or function name in the controller class.

    Hi apurba,
    Thanks for the quick reply.
    i am trying to get the function name from the FunctionSecurity class,
    However in FunctionSecurity class there is no such method defined as getFunctionName();
    my requirement is ,i have two functions functionA and functionB defined.
    both the function has the same controller class.in controller class ,i need to get the function name ,based on the function name
    i will redirect the page to respective page.
    looking forward for you response.
    appreciate your help
    Thanks,
    KT

  • How to get Camera RAW / Photoshop CS5 to work with Canon 100D?

    How to get Camera RAW / Photoshop CS5 to work with Canon 100D? I don't want to by this product again and again...

    In what way is ACR not working in Bridge?  Is there no right-click Open in Camera Raw available from Bridge, or there is, but the ACR version is less than ACR 6.7.1 or what exactly is the issue? 
    Also, if you open Photoshop and do Help / About Plug-ins / Camera Raw, is ACR missing from the list, or if not, what version does it say is installed?
    You might also want to describe what methods you have tried to correct the issue, since saying you've tried what you've seen posted and they didn't work, isn't really much to go on.

  • Anyone.know.how.to.get.spacebar.and.delete.button.to.work??

    anyone.know.how.to.get.spacebar.and.delete.button.to.work??

    I think you are asking this in the wrong forum.  This is for TBD issues.

  • Anyone know how to get harman kardon soundsticks II to work on new iMac Mavericks

    Anyone know how to get harman kardon soundsticks II to work on new iMac Mavericks??

    I'm using the original HK Soundsticks on a 2013 MacBook Air running Mavericks.
    Don't they show up in the Sound Preferences?  Are they plugged directly into your iMac?
    Little more info would help.

  • How to get saturation function in system generator

    Hi,
    I use system generator and try to achieve the saturation function by using Xilinx Libary.
    For example, how could i get a function which is similar to the block "Saturation" in normal simulink library.
    The back ground is that i have a PWM signal in my FPGA model. Now i want to cut the negtive value. Or change all the negative value to zero.
    Thank you.

    The gateway in blocks have saturation option for saturation at the ports. For signals internal to the sysgen design, you can use the Convert block which also allows saturation option.
     

  • How to get this function working

    Dear buddies,
    I created a function which should check if a certain code exists in a certain table.
    Not sure how to get it done
    create or replace function check_code(crs_code in varchar) return integer is
      Result integer;
    begin
      if crs_code in (select cod_code from crs_code) then
        result := 1;
      else  
        result := 0;
      end if;
      return(Result);
    end check_code;error: Compilation errors for FUNCTION CONV.CHECK_CODE
    Error: PLS-00405: subquery not allowed in this context
    Line: 6
    Text: if crs_code in (select cod_code from crs_code) then
    Error: PL/SQL: Statement ignored
    Line: 6
    Text: if crs_code in (select cod_code from crs_code) then

    My guess is that
    create or replace function check_code(p_crs_code in varchar) return integer is
      l_Result integer;
    begin
      SELECT COUNT(*)
        INTO l_result
        FROM dual
       WHERE EXISTS (
          SELECT 1
            FROM crs_code
          WHERE cod_code = p_crs_code
      return( l_Result);
    end check_code;should work but you've provided no table structure, no sample data, and no desired output so it's a bit unclear. Note that it is a really bad idea to have parameter names that match table names. My assumption is that CRS_CODE is both a table and a parameter name in your original function. Otherwise, I'm not sure what your SELECT statement is attempting to do.
    Justin

  • How to get current function name?

    Hello, everyone!
    I want to get the current function name for debug purpose. I simply want to dump out current class name, function name (and better line number) of current executing statement. For example, I can embed my debugger inside my source codes if I can get the current function name as the following,
    <code>
    class foo
    void function goo()
    //operations
    myDebugger (getCurrentFunctionName(), informationString)
    </code>
    Then my debugger will have richer information which indicates in which function information is dumped. Have I made myself understood? If Java does not have such apporach to get current function name automatically, I have to define a function local variable which contains function name manually in each function I want to debug. And pass the variable to my debugger which seems rather silly.
    Can anyone help?
    Thanks in advance,
    George

    To elaborate a little: be sure to read the API on getStackTrace: because of JVM optimization
    there may be missing stack trace info, so look before you leap:
    public class Client {
        public static void main(String[] args) {
            f();
        static void f() {
            Debugger.log("testing");
    class Debugger {
        public static void log(String msg) {
            StackTraceElement[] trace = new Throwable().getStackTrace();
            if (trace.length >= 1) {
                StackTraceElement elt = trace[1];
                System.out.println(elt.getFileName() + ": " + elt.getClassName() + "." +
                    elt.getMethodName() + "(line " + elt.getLineNumber() + "): " + msg);
            } else
                System.out.println("[UNKNOWN CALLER]: " + msg);
    }

  • How to get an external hard drive to work on my iBook?

    I have an old iBook G4, and I recently bought a newer macbook.  I want to transfer all of my stuff from my old computer to my new one, but there's a problem.  I have a Toshiba external hard drive that I bought a few years ago to use on my mom's iMac.  It mounts on her computer, but for some reason, it won't mount or do anything on my iBook.  Whenever I hook the hard drive into one of my iBook's usb ports, nothing happens.  I have no clue what to do to get it to work.  Does anyone have any ideas?

    You can find the instructions here:
    https://discussions.apple.com/message/15189318#15189318
    Because Migration Assistant isn't the ideal way to migrate from PowerPC to Intel Macs, using Target Disk Mode, copying the critical contents to CD and DVD, an external hard drive, or networking will work better when moving from PowerPC to Intel Macs.  The initial section below discusses Target Disk Mode.  It is then followed by a section which discusses networking with Macs that lack Firewire.
    If both computers support the use of Firewire then you can use the following instructions:
    1. Repair the hard drive and permissions using Disk Utility.
    2. Backup your data.  This is vitally important in case you make a mistake or there's some other problem.
    3. Connect a Firewire cable between your old Mac and your new Intel Mac.
    4. Startup your old Mac in Target Disk Mode.
    5. Startup your new Mac for the first time, go through the setup and registration screens, but do NOT migrate data over. Get to your desktop on the new Mac without migrating any new data over.
    Copy the following items from your old Mac to the new Mac:
    In your /Home/ folder: Documents, Movies, Music, Pictures, and Sites folders.
    In your /Home/Library/ folder:
    /Home/Library/Application Support/AddressBook (copy the whole folder) /Home/Library/Application Support/iCal (copy the whole folder)
    Also in /Home/Library/Application Support (copy whatever else you need including folders for any third-party applications)
    /Home/Library/Keychains (copy the whole folder) /Home/Library/Mail (copy the whole folder) /Home/Library/Preferences/ (copy the whole folder) /Home /Library/Calendars (copy the whole folder) /Home /Library/iTunes (copy the whole folder) /Home /Library/Safari (copy the whole folder)
    If you want cookies:
    /Home/Library/Cookies/Cookies.plist /Home/Library/Application Support/WebFoundation/HTTPCookies.plist
    For Entourage users:
    Entourage is in /Home/Documents/Microsoft User Data Also in /Home/Library/Preferences/Microsoft.
    Credit goes to Macjack for this information.
    If you need to transfer data for other applications please ask the vendor or ask in the  Discussions where specific applications store their data.
    5. Once you have transferred what you need restart the new Mac and test to make sure the contents are there for each of the applications.
    Written by Kappy with additional contributions from a brody.Revised 4/17/2011
    You need to read the entire User Tip for warnings about what may be incompatible, but that is the gist of how to get things over. (To start up your iBook in FireWire Target Disk Mode, hold down the t key during startup.)

  • How to get PerformanceProfiler/DMS/JMX for TopLink working on GlassFish

    Greetings, all
    I'm trying to configure Toplink 11.1.1.0 (instead of Toplink Essentials) as JPA provider to run on GlassFish V1 UR1 with performance monitoring via PerformanceProfiler and cache invalidation when needed, with the following configuration
    persistence.xml
    - <provider>oracle.toplink.ejb.cmp3.EntityManagerFactoryProvider</provider>
    code extract 1
    em = (EntityManager)emf.createEntityManager();
    session = em.getServerSession();
    PerformanceProfiler pp = new PerformanceProfiler(session);
    session.setProfiler(pp);
    code extract 2
    session.getIdentityMapAccessor().invalidateClass(clazz);
    (A) However, I got the following exception and would appreciate any advice of any correction(s) needed and how to get it working.
    Internal Exception: Exception [TOPLINK-28007] (Oracle TopLink - 11g Release 1 (11.1.1.0.0) (Build 070502)): oracle.toplink.exceptions.EntityManagerSetupException
    Exception Description: Failed to instantiate ServerPlatform of type [oracle.toplink.essentials.platform.server.sunas.SunAS9ServerPlatform] specified in [toplink.target-server] property.
    Internal Exception: java.lang.NoSuchMethodException: oracle.toplink.essentials.platform.server.sunas.SunAS9ServerPlatform.<init>(oracle.toplink.sessions.DatabaseSession)].
    com.sun.enterprise.admin.event.AdminEventListenerException: javax.persistence.PersistenceException: Exception [TOPLINK-28018] (Oracle TopLink - 11g Release 1 (11.1.1.0.0) (Build 070502)): oracle.toplink.exceptions.EntityManagerSetupException
    Exception Description: (There is no English translation for this exception.)
    (B) Btw, it seems :
    a. oracle.toplink.platform.server.sunas.SunAS9ServerPlatform does not exist in toplink.jar
    b. oracle.toplink.essentials.platform.server.sunas.SunAS9ServerPlatform exists in toplink-essentials.jar but not in toplink.jar
    So my questions are :
    a. Only TopLink Essential (but not TopLink 11.1.1.0 JPA) currently support GlassFish ?
    b. But TopLink Essential does not not support for PerformanceProfiler/DMS monitoring?
    c. Hence, there is no way to get PerformanceProfiler/DMS/JMX monitoring for JPA for TopLink on GlassFish. If that's the case, when will PerformanceProfiler/DMS/JMX monitoring be supported with GlassFish?
    d. Is TopLink 11.1.1.0 JPA compliant? If yes, we should be able to get it working on GlassFish. Is there a sample application to show how this is actually done?
    Welcome and appreciate much any correction / advice if I've missed anything how to get PerformanceProfiler/DMS/JMX monitoring on TopLink (also TopLink cache) working on GlassFish / pointers to information in case it was documented, or discussed before.
    Btw, it seems that I was able to get session cache (per class/object/all) invalidation working using TopLink Essentials with GlassFish, but again, no performance monitoring (e.g. using JMX) there (as also mentioned on http://www.oracle.com/technology/products/ias/toplink/jpa/resources/faq.html#13)
    Thanks a lot !!
    Best regards.

    Hello David,
    The problem seems to be with,
    MBeanServer mbeanServer = MBeanServerFactory.createMBeanServer();
    This does not get the MBeanServer that weblogic server uses. Try getting
    the MBeanServer from MBeanHome and register your MBean in this server.
    Check out
    http://e-docs.bea.com/wls/docs81/jmx/basics.html
    to lookup MBeanHome and getting the MBeanServer.
    Thanks,
    -satya
    David Karr wrote:
    Like other people reading this group, I'm trying to get started with JMX in WebLogic (8.1) despite the apparent lack of useful information.
    I'll eventually be writing an mbean which is intended to run on each managed server (registered by a servlet) which will read and write a particular file on each managed server (contention problems are unavoidable).
    In the beginning, however, I'm just trying to build a simple POC, with a servlet that creates and registers a simple mbean. That part was deceptively easy, but I'm not sure I did it right, as I'm not sure of the best way to look at the results of what I did.
    I found the "wlshell" tool, which is a jmx client for WebLogic. After my servlet registers the mbean, I tried reloading the wlshell display, but I don't see anything new. I'm sure I'm misunderstanding something (probably in the "ObjectName" constructor).
    The "init()" method of my servlet looks like this:
    public void init()
    MBeanServer mbeanServer = MBeanServerFactory.createMBeanServer();
    Sample sample = new Sample();
    try
    ObjectName objectName = new ObjectName("Sample:name=sample");
    mbeanServer.registerMBean(sample, objectName);
    The Mbean and impl look like:
    public interface SampleMBean
    public void setFlag(boolean flag);
    public boolean getFlag();
    public class Sample implements SampleMBean
    private boolean flag;
    public void setFlag(boolean flag) { this.flag = flag; }
    public boolean getFlag() { return (flag); }

  • How to get animated gifs or jpgs to work

    thanks for reading!
    how do you get animated gifs or jpgs to work in iweb? i have a few that i made and worked when i had the old site up. but under iweb they wont, if you go to
    my site use my username as the domain. www.myusername.com you will see a open 24hr sign that s animated but wont work in iweb, also thier is a little gif of a radio at the buttom the dials move and the numbers change, under i web they dont work why?
    thank for reading this

    Not sure exactly what is happening over there on your end. Animated GIFs can be drag and dropped into iWeb, no problem. Inside iWeb when you drop them onto your page, YOU WILL NOT SEE THEM ANIMATE. You may even see them show up with a QT controller bar underneath them. But don't worry....once you publish your page, the GIF will be animated and the controller bar will disappear. Just try it!

  • How to get my drop down menu to work

    Hi,
    I'm stuck in how to get my sub menu to drop down. Every time I hover, it looks all jumbled. My site is candidlovephotography.com. Thank you very much!

    Have you created a drop-down menu on your page?  I don't see it at all.  Your menu code is this:
    <nav id="mainnav">
       <ul>
       <li><a href="index.html">Home</a></li>
       <li><a href="meetkristin.html">Meet Kristin</a></li>
       <li><a href="http://candidlovephotography.com/blog/">The Blog</a></li>
       <li><a href="http://wp.me/P4Gj7y-ak">Contact Me</a></li>
       <li><a href="Clients.html">Client Galleries</a></li>
       </ul>
       </nav>
    This is just a plain/straight one line menu.  It is not a drop-down menu.
    I suggest read this article to get the background info about Menu system:
    <Creating a pure CSS dropdown menu – CSS Wizardry – CSS, OOCSS, front-end architecture, performance and more, by Harry Ro…>
    I hope the above link works!!!!!

  • How to get an only audio line in working for HP ENVY 15?

    So, I have have an HP ENVY 15 (product number E1P05AV), and am trying to record audio (from a synthesizer, mono audio out) into a third-party program (REAPER, though Audacity would work too). I am trying to accomplish this through an audio line in through the combined headphone/mic port on the right side of the computer. However, all attempts/experiments so far have resulted in the computer recording from the internal microphone- not desired. I've browsed the web a bit, but have found nothing really of help.
    So, the question: how can I get the combined audio jack to work such that I can record audio from it, and not the internal microphone?

    Supernova187,
    I had the same problem with the HP "x2-k010nr". Bought the pc at OfficeMax/OfficeDepot and went to Radio Shack and bought the "adapter" since OfficeMax/OfficeDepot did not carry one. Spent days trying to figure out the same problem you are having.  Sent to pc to HP and they returned it and indicated that they could not find any problem. Went back to OfficeMax/OfficeDepot and bought an Asus Transformer and it worked properly for two days and the same problem happened and had to return it. There appears to be a very serious problem with external audio-in on any Microsoft 8.1 os system and external audio . I have given up on Microsoft os products until this problem is solved. I have been using my Gateway netbook with XP os for 4 years with zero problems with external audio-in or out.
    Ham123 Merry Christmas

  • How to get my iPod Classic 160 to work with my blu ray disc player

    How do I get my iPod Classic 160 to work with my blu ray disc player?

    Whats the model of the blu ray player?
    I'm assuming you would have to to buy a dock or AV cables that connects to ipod and correspond with the model of player.

Maybe you are looking for

  • Question on optimum choice of index - whether to use CTXCAT or CONTEXT

    Hi , I have a situation in which there are short texts that are to be searched for diacritical characters and for that I implemented CTXCAT type of index. The solution works fine except for left side wild card search - in that case I have suggested t

  • Go to destination button

    I'm trying to create a navigation system at the bottom of my pages so that when a reader is on one section of my issue, he/she can click on one of these buttons and be taken to the other sections. Currently I'm using the "go to destination" option wi

  • Raw/nef not visible in organiser

    Hi, I just upgraded from Elemets 7 to Elements 10 (since Win 7 and Elements 7 are not fully compatible). I installed full version Elements 10 and updated this directly, ADR 6.7 is installed. In the organiser the raw/nef (Nikon D5000) are not visible,

  • Help! How To Use Oracle as SQL for a Forum with Related Post

    Hi All, I added an SMF forum on my [Tech Blog|http://oscarmini.com] using the sub directory forum. Now I want to encode a fresh forum using Oracle for the database instead of the usual MySQL. I don't really know if this is possible. If it is, then le

  • What is wrong with the stroke in Photoshop CS5??

    The stroke tool (in the edit menu as well as the stroke effect) is a bit screwed up in CS5!! It renders really jaggy. Is this something that Adobe will fix soon? thanks; J.