Subscriptions Count to the FAVORITES folder in KM

We have a request from IT-Consulting to get the number of subscriptions to the FAVORITES folder in KM. Could you please help me get a start on this issue? Do we actually need to Hard code this in JAVA to get the results or can we pull this from any particular database? Also, if you feel there could be someone else who has more info on this, please pass on the contact. Thanks in advance,
Regards,
Siva

Hi Siva,
as Subscription has no Administration or Monitor UI where you can view all Subscriptions in the system and such things, you need to code a solution by yourself...sorry...
Prior to NW04 (SPS10) it wasn't possible to get all Subscriptions on a specific RID. In the NW04 API the ISubscriptionManager offers now a method:
public ISubscriptionList getSubscriptions(IResourceContext, RID, boolean)
this can give you all subscriptions on a specific RID.
So calling this method should give you what you need.
For the method signature and more please see the KMC Javadoc here:
https://media.sdn.sap.com/html/submitted_docs/nw_kmc/javadoc/index.html
If your running e.g. a EP60 Portal (or any other system prior NW04), the only (not supported) way to get all subscriptions, is to manually read the items from the DB. Therefore please see the tables: wcm_sub_subscriptions, wcm_sub_resources, wcm_sub_recipients.
Therefore please also see:
https://www.sdn.sap.com/sdn/collaboration.sdn?node=linkFnode6-1&contenttype=url&content=https://Re: Subscription
Hope this helps
Dirk

Similar Messages

  • My laptop running XP sp3 and FireFox 3.6 died. I salvaged the HD and put it in a drive enclosure. I bought a new Win7 machine and wish to import my old favorites (I don't have a backup, but the Favorites folder on the old HD is intact).

    My laptop running XP sp3 and FireFox 3.6 died. I salvaged the HD and put it in a drive enclosure. I bought a new Win7 machine and wish to import my old favorites (I don't have a backup, but the Favorites folder on the old HD is intact). I have not been able to determine how to import these favorites from the old HD to the new machine. I haven't found any FAQ that addresses this since I can't really start Firefox on the old HD in order to make a HTML backup. Any ideas? edit

    See this: <br />
    http://support.mozilla.com/en-US/kb/Recovering+important+data+from+an+old+profile

  • Where is the favorites folder in firefox?

    just where is the bookmarks folder in Firefox? i need to get my favorites into Firefox and when i use the import under the files tab i do get them put into the bookmarks but they are under a folder and i want them to be in the firs pull down when i click on the bookmarks button. thanks

    Firefox bookmarks are stored in one file named '''places.sqlite''' in your Profile folder.
    http://support.mozilla.com/en-us/kb/Profiles#How_to_find_your_profile

  • Is there any way to delete the favorites folder from the mac mail sidebar?

    I recently made the mistake of flagging two email messages. Immediately I now see a "Flagged" icon in my Mac Mail sidebar, right under the Inbox. I the "unflagged" the messages. They went away but the Flagged icon won't. It now seems to be a permanent fixture of my mail sidebar. Is there any way to move, relocate or delete a mailbox icon you don't use and don't want to see?

    There's no "downgrade" from OS X Server 10.6 Snow Leopard Server to client.
    Acquire the current OS X client software, boot the DVD and use Disk Utility to erase the target disk, and reinstall the software.
    Leaving the box with the server software running, with the services stopped, adds negligible performance overhead.  If any.

  • Where do I find the master folder where Firefox stores all bookmarks on my computer - like the favorites folder on IE?

    My bookmarks area mess with many duplicates. I want to sort them, eliminate the dupes. The Organize bookmarks function is too slow.

    See:
    * https://support.mozilla.org/en-US/kb/how-do-i-use-bookmarks#w_where-can-i-find-my-bookmarks

  • How to delete the a folder in the favorites file, macintosh hd

    When i want to delet a file i accidently put in the favorites folder on machintosh hd it won't delete!! Someone pls help   

    If this is in the Sidebar in a Finder window (i.e., the window for a folder), hold down Command and drag the item out of the Sidebar.

  • How to count files in a folder and subfolders of the folder.

    Hello everyone,
    I'm having a difficulty with countin files in a Regular folder and subfolders of the folder. I've tried to use SI_ANCESTOR  in a query; however, it gives me innacurate results.
    I used this hierarchy to create the code below, and it works to count all the files:
    Folder A ---> Folder B( subFolder of A)  -
    > Folder C(subFolder of B)  
    //get folder A
    IInfoObjects regFolders = infoStore.query ("SELECT * FROM CI_INFOOBJECTS WHERE SI_KIND='Folder' AND SI_PARENTID=0 AND SI_NAME!='User Folders' Order by SI_NAME");
    IFolder regFolder = (IFolder) regFolders.get(0);     
    //get files from Folder A     
    IInfoObjects rFiles = infoStore.query ("SELECT * FROM CI_INFOOBJECTS WHERE SI_PROGID !   = 'CrystalEnterprise.Folder'   AND SI_PARENTID=" + regFolder.getID() );
    ilesCount += rFiles.size();
    int subCntr=0;
    nt subCntr2=0;
      //get folder B      
    IInfoObjects rSubFolders = infoStore.query ("SELECT * FROM CI_INFOOBJECTS WHERE SI_PROGID = 'CrystalEnterprise.Folder' AND SI_PARENTID=" + regFolder.getID() );
    //get files from subFolders of Folder A
    while (subCntr < rSubFolders.size())
              IInfoObject subFolder=(IInfoObject)rSubFolders.get(subCntr);
              IInfoObjects subFiles = infoStore.query ("SELECT * FROM CI_INFOOBJECTS "
          + " WHERE SI_PROGID != 'CrystalEnterprise.Folder'" AND SI_PARENTID=" + subFolder.getID() );
             filesCount += subFiles.size();
             //get subFolders of Folder B                   
             IInfoObjects rSubFolders2 = infoStore.query ("SELECT * FROM CI_INFOOBJECTS WHERE SI_PROGID = 'CrystalEnterprise.Folder' AND SI_PARENTID=" + subFolder.getID() );
                         //get files from subFolders of Folder B
         while (subCntr2 < rSubFolders2.size())
              IInfoObject subFolder2=(IInfoObject)rSubFolders2.get(subCntr2);
              IInfoObjects subFiles2 = infoStore.query ("SELECT * FROM CI_INFOOBJECTS "
                   + " WHERE SI_PROGID != 'CrystalEnterprise.Folder'  AND SI_PARENTID=" + subFolder2.getID() );
                                               filesCount += subFiles2.size();
               subCntr2++;
              subCntr++;
    As you can see, the code is too complicated, and what if folder C has subFolder?
    I'm guessin maybe recursion would be one way to got, but I'm not really good with it, so I was wondering if anyone has any idea on how to go about doing it.
    Thank you,

    Hi,
    For detailed information, please refer to the BI 4.0 developers guide here.
    You can find the section "Setting up the development environment" in developers guide that have every single instruction to execute a java code specific to BI 4.0 environment.
    Also, here are the instructions for BO 3.1 environment:
    To configure a WAR file for a J2EE application that uses the BusinessObjects Enterprise XI 3.0 and 3.1 Java SDK, complete these steps:
    Create a lib folder in the WAR file's WEB-INF folder.
    Copy the Enterprise XI 3.0 or 3.1 Java SDK JAR files from the appropriate location below to the WAR file's WEB-INF\lib folder:
    Windows:
    ...\Program Files\Business Objects\common\4.0\java\lib
    UNIX:
    <businessobjects_root>/java/lib
    Copy the log4j.jar file from the appropriate location below to the WAR file's WEB-INF\lib folder:
    Windows:
    ...\Program Files\Business Objects\common\4.0\java\lib\external
    UNIX:
    <businessobjects_root>/java/lib/external
    Copy the entire crystalreportviewers12 folder from the appropriate location below to the WAR file's root folder.
    Windows:
    ...\Program Files\Business Objects\common\4.0
    UNIX:
    <businessobjects_root>/enterprise12/JavaSDK
    Open the web.xml file located in the WAR file's WEB-INF folder.
    Specify the location of the utility files used by the report viewers contained in the crystalreportviewers12 folder by inserting the following code below the <display-name> and <description> tags but within the <webapp> tag definition:
    <context-param>
    <param-name>crystal_image_uri</param-name>
    <param-value>/BOXIR3/crystalreportviewers12</param-value>
    </context-param>
    <servlet>
    <servlet-name>CrystalReportViewerServlet</servlet-name>
    <servlet-class>com.crystaldecisions.report.web.viewer.CrystalReportViewerServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>CrystalReportViewerServlet</servlet-name>
    <url-pattern>/CrystalReportViewerHandler</url-pattern>
    </servlet-mapping>
    Deploy the WAR file to the J2EE application server.
    You are now able to run an application using the BusinessObjects Enterprise XI 3.0 and 3.1 Java SDK on a J2EE web application server.
    Hope it helps.
    Regards,
    Anchal

  • Where it the bookmarks folder located on my hard drive? I want to copy to a cd to save them.

    Where is the bookmarks folder on my hard drive? I want to copy them to a cd to back them up. I have a lot of saved bookmarks that I do not want to lose. I know in MS that it is under the favorites folder, but I cannot find a bookmark folder.
    == This happened ==
    Not sure how often
    == n/a

    One file named '''places.sqlite''' in your Profile folder, which also contains your browsing history.
    [http://support.mozilla.com/en-us/kb/Profiles#How_to_find_your_profile]
    You might want to read this, too.
    https://support.mozilla.com/en-US/kb/Backing+up+and+restoring+bookmarks

  • Help! I deleted favorites folder?

    Hi I'm a new Mac user and it seems my favorites folder has disapeared- the kind with the red heart next to it? How can I get it back if its NOT in my trash? Making a new folder and renaming it "Favorites" doesn't bring back the same functionality as the old. Thanks so much!

    It sure doesn't. You will get the heart icon in the sidebar alright, but if you drag something to it the item is MOVED into the Favorites folder! In short, it now behaves like any other folder, except it gets the cool icon. The keyboard shortcut command-T now puts the selected item into the sidebar. There is no longer any easy way either thru the Finder menu or the contextual menu to add items to Favorites. In short, Apple evidently decided to do away with Favorites, this demise began in Panther I believe, and is now pretty much complete.
    You are expected to use the Dock and the Sidebar for quick access to your goodies. Of course both then get to be rather crowded and humongous if you have a lot of different things you like to keep handy.
    One thing you can do is make a folder, Faves, give it a nice custom icon, and drag it to either the Dock or the Sidebar (or both, for that matter). When you want to add something to it--an application, a file, a folder, whatever--hold down the command and option keys and click hold and drag the item to your Faves folder in the Sidebar or Dock. This will deposit an alias to the item in your Faves folder. If you click on it in the Sidebar you will get the list of all the things in it; if you control click or click and hold in the Dock you will again get a list of the things and can select one.
    Francine
    Schwieder

  • How do I import bookmarks from a Favorites folder that I've copied from another computer? I'm using Win 7

    I copied the "Favorites" folder off off another computer and now have in on a local hard drive. How do I either point Firefox to it or import those bookmarks. I'm using Win 7 and Firefox menu has no "Import" function that I can find.
    Thanks,
    Rich

    Firefox can't handle the .url type IE favorites.
    You would have to copy the favorites in that folder to the current IE favorites folder and see if you can import the IE favorites in Firefox.
    If not then you need to export the favorites in IE to an HTML file and import this file in Firefox.
    See "Import from another browser" and "Import from file":
    *http://kb.mozillazine.org/Import_bookmarks

  • How do I restore bookmarks from a favorites folder?

    My hard drive crashed and when replaced it I moved from Windows XP to Windows 7. I did not backup my Bookmarks with Firefox, but I do have a backup file listed under Favorites on an external drive. Most of my Bookmarks are in folder format. Is there any way to import or add the Favorites folder to Firefox without having to individually add each bookmark file?

    Export your favorites from IE in HTML format, and import that file into Firefox.
    In IE: <br />
    File > Import/Export - Export to HTML file
    ''then in Firefox:'' <br />
    Bookmarks > Organize Bookmarks -> Import & Backup - Import HTML... = From HTML file

  • How to get my favorites transferred - I have a new XP machine with a complete copy of the win98 C drive for the old machine which had Firfox accessing the favorites from an earlier IE installation as well as its own creations.

    I have tried various things - the import facility does not seen to be right to help - I've copied the favorites folder over but it is not seen
    Help appreciated.
    Roger

    It depends upon the version of Firefox you had on Windows 98.The last version that officially ran on Windows 98 was Firefox 2. In Firefox 2 bookmarks are stored in a file called bookmarks.html inside the profile folder. The normal location to find the profile folder in Windows 98 is inside this folder - C:\Windows\Application Data\Mozilla\Firefox\Profiles\
    The name of the profile folder is normally a string of random characters followed by .default, if you open that folder you should find the bookmarks.html file. You can import that file into your current computer by following the procedure in this link - https://support.mozilla.com/kb/Importing+Bookmarks+from+an+HTML+File
    If you had Firefox 3 on Windows 98, bookmarks are stored in a file called places.sqlite. If you have that file, you can copy it from your old profile folder and place it in your profile folder on the Windows XP computer, replacing the one that is already there. For details of how to find the profile folder on Windows XP see https://support.mozilla.com/kb/Profiles

  • Unable to create a KM Nav iview to favorites folder

    Hi,
    I'm trying to create KM navigational iview for the favorites folder. I gave the following path,
    /alias/userhome/<user.id>/Favorites
    But I get this error,
    Item not found
    /alias/userhome/<user.id>/Favorites
    The item you are attempting to access is not available. Check that the name or link is correct. You might also check whether the associated repository is currently accessible.
    But when I created one for BIUserHome,
    /alias/BIuserhome/<user.id>/Personal BEx Documents
    it works fine.
    Now, I know for sure that there is something wrong with the permissions of this folder. But I see full control for everyone.
    Could you please help me with this?
    Thank You,
    Ashwin

    You can always check the link to a KM folder by doing the following...
    Locate the folder in KM
    In the context menu of the folder select Details
    In the details window select Settings > Properties
    Click on the Access Links tab.
    Here you will find the correct URL for the file.
    It looks as though the folder ID id different to the name. This is the same in my EP
    Regards

  • Redirecting Favorites folder breaks SBL ?

    Here is a weird scenario that I have notice and have no idea why its causing an issue.
    As the topic mentions if I login to Windows 7 x64(has been joined to a domain) using SBL(authentication through device certificates) and I have my favorites folder redirected to a network location I will receive 2 popup messages from anyconnect.
    The 2 messages are:
    “VPN Service not available”
    “The vpn agent service is not responding. Please restart the application after a minute.”
    When I click ok on the last message, anyconnect client shutsdown. If I restart the anyconnect client, the client immediately connects.
    If I disable the favorites folder redirection Anyconnect & SBL work perfectly.
    Anyone else seen this issue ?
    John

    I have experienced the same issue and opened a TACS case.
    After some testing I was advised to set the IE proxy lockdown to 'No' in the AnyConnect Group Policy:
    Group Policy -> Advanced -> Browser Proxy -> Proxy Lockdown
    This resolved the VPN restarting.  A Bug has been opened for this issue:
    CSCue74449    Browser Proxy Code needs to execute on separate thread
    http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCue74449
    Jon

  • Everytime I open Safari on my MacBook Pro a pop-up window from my Finder menu, with the Applications highlighted on the left in the favorites column with the Resources folder highlighted comes up and locks my Safari page until I manually close the Resourc

    Everytime I open Safari on my MacBook Pro a pop-up window from my Finder menu, with the Applications highlighted on the left in the favorites column with the Resources folder highlighted comes up and locks my Safari page until I manually close the Resources window then I have to refresh the internet search address line at the top of Safari. Can someone tell me how to stop this. It started after a software upgrade. It didn’t do that before. Thank you.

    A few thoughts for diagnosis/testing purposes:
    Have you recently run the disk utility and repaired HD and permissions? If not do so.
    Boot into the Safe mode - hold down shift key on boot - and see if the problems are still there. Some functions won't work but see if anything odd happens.
    Check your startup items. Get rid of them temporarily.
    Create a new user account and see if the problems occur with the new account.
    Lastly, be sure your backup is up-to-date.

Maybe you are looking for