Show latest Documents in NewsIview with Repository Service

Hello together,
I have created a NewsIView and always if a document is uploading a repository service should copie the document in the folder the NewsIview listen to.
How I can create a Link or Content that could be shown in the News Iview in the following way:
New Documents are available: Link to the Document.
In the NewsIview are manually News shown, that are created with the XMLFormsBuilder and in the Form Based Publish -Format.
How I can create this format to show a Link to the uploaded Document in the NewsIview?Have I create such a format to display the documents in the News??
The Repository Service is already running and copies the documents....
Hope for Help Theresa

In our KM many documents were uploaded via WebService in different folders.
Now the Repository Service should copy the latest documents in the folder the NewsIview listen to.
That documents should shown to the End User the way...New documents: Link to the documents (Link points to the KM folder the NewsIview listen to...)
But for displaying the documents, that were uploaded with the WebService i need to convert the documents to the form based publishing format.
The enduser should see the manually news, created by the administrator and the latest documents, uploaded by the webservice. Can you follow me??
We have no trex this is why we tried to implement a repository service.
Very much thanks for your efforts!
Regards Theresa
Edited by: Theresa Wilfer on Oct 27, 2008 12:33 PM

Similar Messages

  • How to show CRM documents into Portal KM repository

    Hi all,
    I would like to be able to <b>show CRM documents</b> (for Business Transactions / Business Partners ) <b>into the Portal</b> via WebDAV.
    What configurations do I have to do in :
    1) CRM
    2) Portal
    I've already searched sdn for this topic, but maybe I'm using the wrong keywords, didn't find much ... a manual or how/to, interesting links would be very helpfull !
    Thank you in advance !
    Abjuh

    Hi Abjuh
    I have recently setup the same and the CRM config guide is the most usefull one :
    https://websmp201.sap-ag.de/~sapdownload/011000358700005796662005E/Config_50_EN_SP01A.pdf
    as of page 129 through 146.
    I started with testing on documents for business partners because this is a standard supported flow. Then I extended to non-standard supported business transactions
    In brief, for business partners , in CRM system I
    -Setup the HTTP Service in the Internet Communication Manager
    -Maintaining WebDAV Hierarchies
    and in portal  I :
    --Setup the HTTP Data Source
    -Setup the Memory Cache ( choose existing one )
    -Created WebDAV Repository Manager
    -Created an Index for the CRM Document Repository
    good luck
    The only thing I didn't manage to get to work yet is displaying the source object link in the search results

  • Copy Files with  Repository Service

    Hello together,
    I'm a Newbie in SAP Netweaver. I have the task to create e Repository Service, that listen to one Folder and if a document is uploaded, copies the file in another folder:
    Here my Code:
    public class NewsTest extends AbstractRepositoryService implements IReconfigurable, IResourceEventReceiver {
         private static final String TYPE = "service.sap.com.NewsTest";
         private Collection repositoryManagers;
         private static ResourceFactory resourceFactory;
         public NewsTest() {
              super();
              // Do not add code here. Add it to startUpImpl() instead
         public String getServiceType() {
              return NewsTest.TYPE;
         protected void startUpImpl(Collection repositoryManagers)
              throws ConfigurationException, StartupException {
              this.repositoryManagers = repositoryManagers;
              for (Iterator lIt = repositoryManagers.iterator(); lIt.hasNext();) {
                   IRepositoryManager lReposMgr = (IRepositoryManager) lIt.next();
                   try {
                        addRepositoryAssignment((IRepositoryManager) lIt.next());
                   //     resourceFactory = ResourceFactory.getInstance();
                   } catch (ServiceNotAvailableException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
         protected void shutDownImpl() {
              Iterator it = repositoryManagers.iterator();
              while (it.hasNext()) {
                   try {
                        removeRepositoryAssignment((IRepositoryManager) it.next());
                   } catch (WcmException e) {
                        e.printStackTrace();
         protected void addRepositoryAssignment(IRepositoryManager mgr)
              throws ServiceNotAvailableException {
              // Implement this method: Usually the service registers itself for certain events at the repository manager.
              try {
                   mgr.getEventBroker().register(this, new ResourceEvent(ResourceEvent.CREATE_CHILD, null));
              } catch (WcmException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
         protected void removeRepositoryAssignment(IRepositoryManager mgr)
              throws WcmException {
              // Implement this method: Usually the service must unregister itself as an event handler.
              mgr.getEventBroker().unregister(this, new ResourceEvent(ResourceEvent.CREATE_CHILD, null));
         public void reconfigure(IConfiguration config)
              throws ConfigurationException {
              this.stateHandler.preReconfigure();
              // check the new configuration data
              try {
              catch (ConfigurationException ex) {
                this.stateHandler.postReconfigure(ex);
                throw ex;
              this.config = config;
              this.stateHandler.postReconfigure();
         public void received(IEvent event) {
              IUser userid = null;
              try {
                     userid = WPUMFactory.getUserFactory().getUser("j2ee_admin");
                   } catch (UserManagementException e2) {
                        // TODO Auto-generated catch block
                        e2.printStackTrace();
              RID rid = RID.getRID("/optestDB");
                 ResourceContext ctx = new ResourceContext(userid);
              try {
                         IResource resource = ResourceFactory.getInstance().getResource(rid, ctx);
                         if(resource != null){
                         ICopyParameter param = new CopyParameter(true);
                         IResource copied = resource.copy(RID.getRID("/optestDB/Ziel"),param);
                         else {
                        //Resource not found
                   } catch (ResourceException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
    1)Why it doesn't work??The Method received(IEvent event) is called but no document will be copied...
    2) Is there any way to deploy a repository service hot?? For every change i had to restart the server...
    I'm Looking forward for Help!!
    Regards Theresa

    Theresa,
    This should have been the code.
    IResource resource = (IResource)event.getParameter();
    Sorry for that ...
    Try the modified code below....
    public void received(IEvent event) {
              IUser userid = null;
              try {
                   userid = WPUMFactory.getUserFactory().getUser("j2ee_admin");
              } catch (UserManagementException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              RID rid = RID.getRID("/optestDB");
              ResourceContext ctx = new ResourceContext(userid);
    //actual Document, that creates the event
              IResourceEvent myEvent = (IResourceEvent)event;
              // Wrong code IResource uploadres = myEvent.getResource();
                   IResource uploadedResource = (IResource)event.getParameter();
              try {
                   IResource resource = ResourceFactory.getInstance().getResource(rid, ctx);
                   if(resource != null){
                        ICopyParameter param = new CopyParameter(true);
                        //IResource copied = resource.copy(RID.getRID("/optestDB/Ziel"),param);
                       IResource copied_test = uploadedResource.copy(RID.getRID("/optestDB/Ziel"),param);               
                   else{
                        //resource not forund...
              } catch (ResourceException e1) {
                   // TODO Auto-generated catch block
                   e1.printStackTrace();
    Regards
    BP

  • How to configure SAP ECC DMS content repository with CRM Services Object

    hi,
    we have SAP Document management system which is currently integrated with SAP R/3 Ecc system .
    with ref. to sap standard functionality i am able to upload the document in DMS content repository through SAP R/3 Ecc System as below.
    step-1 ,T.code:CV01n
    a.     create - DMS Documents
    b.     Oupload Scanned documents in DMS system
    c.     select content repository
    d.     Save Document
    now, in same manner i want to store business documents in SAP ECC R/3 DMS content repository using CRM services trnsaction"CRMD_ORDER". kindly guide me suitably.
    regards,
    sunil

    i am explaining your proble
    a.    create - DMS Documents
    b.     Oupload Scanned documents in DMS system
    c.     select content repository
    d.     Save Document
    after saving open to document in cv02n and track status of doc i.e. AR CR & RE
    if RE status is there the it will repositor at server
    Regards,
    Sanjeev

  • Problem with the Repository service

    Hi friends,
    In my info admin console web page among the repository service and the integration service, i can see the health of the two services as up.
    But when i clicked my repository service individually it showed like
    The powercenter repository service is available
    But it also showed the below error along with the above line like
    the following error occurred while performing a repository action. Error - [pcsf_1007] cannot connect to repository[oracle_BI_DW_Base] because \n[[rep_57071] unable to connect to the repository database. Please check repository agent configuration. Failed to connect to repository service [Oracle_BI_DW_Base].]
    But my integration service is up and fine.
    Since due to the above error, i couldnt connect with any of my info clients(as repository seems to be down from the above error message)
    But my informatica service is up.
    Im not sure with this problem, but i remember that my DBA's has overwritten with some snapshots on the DB(that im using with BIAPPS) whether that could be the problem
    Since im aware that snapshots also a recent one and it does not have any chances of destroying(my BIAPPS metadata)
    Couldnt get with the problem clearly. Kindly help me with this.
    Thanks in advance.
    Regards,
    Saro

    Svee,
    Yes you are right, i started this informatica service a long before(but dint stopped it), now when i tried to restart the informatica services, it is starting suddenly and all of a sudden after 5 seconds, it is going down.
    Again i restarted it in services.msc and after that if i refresh(@ the top of services.msc) it means then the informatica service is going down again.
    This problem started again. what could be the fix for this svee.
    Regards,
    Saro

  • Repository service for counting downloaded documents

    Hi, 
        I want to write a repository Service for counting downloaded documents.
    In addRepositoryAssignment method, for which resource event type I have to register.
    (i.e)
      mgr.getEventBroker().register(this, ResourceEvent.??);
    or any other way to do this.
    Regards
    Ganesan S

    Hi Ganesan,
    Seems you have an index on the resources.
    I had a look into the repository service implementation on the blog. THis is what could be the reason:
    In <b>received</b> method you catch the GET resourceEvent (<b>first</b> hit). Then you get the resource in question and change/increment the property on this resource. For TREX in fact you change the resource. The event is catched by the IndexService and the TREX asks the CM for the document (<b>second</b> hit).
    I would suggest to store the hitcount in an Application property (this does not change the resource and fires no ResourceEvents) as here (could be some compilation errors - I haven't tested it but it should work):
    public void received(IEvent event) {
      IResourceEvent myEvent = (IResourceEvent) event;
      try {
        IResource res = myEvent.getResource();
        // get the app property service
        IRepositoryService repositoryService = repServiceFactory.getRepositoryService(res, IWcmConst.APP_PROPERTIES_SERVICE);
        IApplicationProperties aApplicationProperty = (IApplicationProperties) repositoryService;
        /// app property name
        PropertyName propertyNameHitCount = new PropertyName("http://sapportals.com/xmlns/cm","hitscount");
        //get the old value...
        IAppProperty hitcountOld = aApplicationProperty.getProperty(propertyNameHitCount, res);
        long hitcount_l = 0;
        if(hitcountOld!=null)  {
          hitcount_l = hitcountOld.getLongValue().longValue();
        hitcount_l++;
        // set the new value...
        AppProperty aAppProperty = new AppProperty(propertyNameHitCount, new Long(hitcount_l), null, true);
        aApplicationProperty.setProperty(aAppProperty, res);
      } catch (Exception e) {
        e.printStackTrace();
    I hope Detlev is ok with my solution
    Romano

  • Informatica 8.6.0 Repository Service fails with PCSF_10342 Exception

    Hi all,
    I am completing an Oracle BI Applications 7.9.6 install on Linux RH 5.0 and was f=getting on well until I have become stuck when trying to create the Informatica 8.6.0 Repository Service.
    Following the notes in Section 4.6.3 Creating the Informatica Repository Service of document Link:[Installation Guide for Informatica PowerCenter Users|http://download.oracle.com/docs/cd/E14223_01/bia.796/e14217/windows_ic.htm#CBHBAJIC].
    The first step was to install the Informatica PowerCenter 8.6.0 services + the HotFix 4.0. This completed successfully with a single Domain and Node installed on an application tier with the Domain repository stored in schema INFA on an Oracle database 10.2.0.4 (DWHD). I then moved onto creating a new schema (INFA_RESP) for the Repository. Unfortunately, after trying to create a Repository Service in the Domain folder I received the following error:
    +The Repository Service was created, but the service could not be enabled. You must enable the service to create the content. The following error occurred while attempting to create the content. Error - [PCSF_10342] Exception occurred: [Unable to start service [INFADevRepository] on any node specified for the service.].+
    Note I have tried creating both a Local and Global Repository and receive the same error message. I suspect it has something to do with the database connection. When I review the Domain properties it details each value for the Database Host, Port, Name and User. However, in the Repository Service it prompts for the ConnectString. The Informatica Administration documentation details using dbname.world for Oracle although I would have expected to have a connection string of Host:Port:ServiceName.
    Any suggestions or help greatly appreciated.
    Many thanks,
    Gary.

    When your repository service is created, it will default to Exclusive operating mode. You need to set it to Normal before creating the Integration Service. If this is documented anywhere, I haven't found it.

  • HT4623 Have just updated to the latest version of ios6 on my iPhone 4S and now I can't see the apps that need updating. Is showing 8 but just left with blank screen.

    Have just updated to the latest version of ios6 on my iPhone 4Sand now I can't see the apps that need updating. Is showing 8 but  just left with blank screen- how do I fix this?

    Look for the little Flag button in the lower left corner.

  • My Nokia Lumia 1520 does not show reader pdf files in my documents when syncing with my Windows 8.1 desktop. Why?

    I need to wipe my phone with customer service and dont want to lose my reader documents.

    It seems to be an issue with your phone software. I would suggest to update it. I doubt this is related to Adobe Reader.
    ~Deepak

  • How to make preflight profile witch find out if exist in document spot color with name "CutContour", if not show allert,  I try many combinations but nothing works

    How to make preflight profile witch find out if exist in document spot color with name "CutContour", if not show allert,  I try many combinations but nothing works

    Thanks very much for your help, but I'm still overlooking something. I double checked to make sure that I did not have a hidden .txt file extention. I then decided to abandon the lock on preferences idea until I get it working. I converted my mozilla.cfg file back to plain text. I made sure I do not have an extra blank line at the end of each file. The syntax looks good, as far as I can tell. I'll copy and paste what I have so far. Did I have the file locations correct posted above? Also, if you feel i can delete some lines of text in my mozilla.cfg file I'll be happy to do so.
    mozilla.cfg
    <pre><nowiki>//
    pref("privacy.sanitize.sanitizeOnShutdown", true);
    pref("privacy.sanitize.promptOnSanitize", false);
    pref("browser.rights.override", true);
    pref(“app.update.auto”, false);
    pref(“extensions.blocklist.enabled”, false);
    pref(“extensions.shownselectionUI”, true);
    pref(“browser.shell.checkDefaultBrowser”, false);
    pref(“toolkit.telemetry.enabled”, false);
    pref(“toolkit.telemetry.prompted”, 2);
    pref(“toolkit.telemetry.rejected”, true);
    pref(“app.update.auto”, false);
    pref(“browser.download.useDownloadDir”, true);
    pref(“browser.search.update”, false);
    pref(“signon.autofillForms”, false);
    pref(“signon.rememberSignons”, false);
    pref(“browser.download.manager.scanWhenDone”, true);
    pref(“browser.formfill.enable”, false);
    pref(“xpinstall.enabled”, true);</nowiki></pre>
    channel-prefs.js
    pref("app.update.channel", "release");
    override.ini
    [XRE]
    EnableProfileMigrator=false
    all-lmc.js
    pref("general.config.filename", "mozilla.cfg");
    defaultPref("browser.startup.homepage", "data:text/plain,browser.startup.homepage=http://bbc.co.uk");
    Again, thank you very much for your time. Do I create my own browserconfig.properties, and firefox.js? Also, I forgot to mention I'm running Windows 8.

  • Repository services on BI Document Repository topics

    In BI Document Repository topics in configuration of KM magement there is a field Repository Services (System Administration->System Configuration->Knowledge Management->Content Management ->Repository managers->BI Document Repository). I must add some repository services?
    Thank's a lot.
    Andrea

    Hi WR,
    did you find a solution? We have the same error
    Thank you
    Best Regards

  • HT4743 I just purchased an iTunes TV show and it successfully downloaded. It is now saying that I do not have the proper version of QuickTime on this version of iTunes (10.6.3). How can a show I purchased be incompatible with the latest version of iTunes?

    I just purchased an iTunes TV show and it successfully downloaded. It is now saying that I do not have the proper version of QuickTime on this version of iTunes (10.6.3).
    How can a show I purchased be incompatible with the latest version of iTunes?
    I want a refund, but I can't even figure out how to request one through support. Super frustrated and long time Apple customer.

    After a day of trying, both iTunes and my Apple TV are telling me that the episodes of Scooby Doo I purchased are incompatible due to QuickTime. I still don't understand how I purchased something from iTunes that doesn't work with iTunes.
    the exact error I receive when I try to play an episode is the following:
    "This movie requires QuickTime, which is not supported by this version of iTunes."
    Any advice would be great!

  • Uploader doesn't show "My Documents" folder

    I am unable to upload a file to the PDF converter service; the uploader doesn't show "My Documents folder..?? Help!!
    Regards,
    Marshall

    Hello Bernd,
    I thought I was getting access to Acrobat. Did I miss something on the Adobe site??
    Marshall Chamberlain authors the Ancestor Series of adventure-thrillers and other suspense-thrillers. He is recognized as an expert in the field of independent publishing. Story summaries and excerpts of his books are available at  <http://www.marshallchamberlain.com/> MarshallChamberlain.com. Please visit his website to discover more about this "above average man," his works, and what's coming next.                                                                               
    Connect with me:         <http://twitter.com/AuthorMarshall> twitter logo at one tenth size         <https://plus.google.com/u/0/105933698392363877165/posts> Google+ Button on tenth size        <http://www.facebook.com/profile.php?ref=profile&id=1240336502> Facebook Button at 14% of size         <http://www.linkedin.com/profile/view?id=23517362&trk=tab_pro> LinkedIn Button 12% of size

  • OMS version 10.2.0.4.2 is not compatible with repository version 10.1.0.4.0

    Im trying to start the database enterprise manager and I get this error on the log file:
    OMS version 10.2.0.4.2 is not compatible with repository version 10.1.0.4.0 Repository needs to be patched.
    Database version is 11.2
    O.S. version is: Linux 2.6.9-78.0.0.0.1.ELsmp #1 SMP Fri Jul 25 14:41:56 EDT 2008 i686 i686 i386 GNU/Linux
    I use this to upload database and console:
    export ORACLE_HOME=/opt/oracle/product/11.2.0/dbhome_1/
    export ORACLE_BASE=/opt/oracle/
    export ORACLE_SID=orcl
    /opt/oracle/product/11.2.0/dbhome_1/bin/lsnrctl start
    /opt/oracle/product/11.2.0/dbhome_1/bin/dbstart /opt/oracle/product/11.2.0/dbhome_1/
    /opt/oracle/product/11.2.0/dbhome_1/bin/emctl start dbconsole
    when I excecute that, I see this on the console:
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2009 Oracle Corporation. All rights reserved.
    https://192.168.2.210:1158/em/console/aboutApplication
    Starting Oracle Enterprise Manager 11g Database Control ........... started.
    Logs are generated in directory /opt/oracle/product/11.2.0/dbhome_1/machine_one_lega/sysman/log
    So I try to go there, and the web browser shows this:
    503 Service Unavailable
    Service is not initialized correctly. OMS version 10.2.0.4.2 is not compatible with repository version 10.1.0.4.0.
    Can you help me find this solution?
    thanks

    Hi Ingenio,
    This problem sometimes occur when the listener is not running, hence connection cannot be done without listener.

  • How to show sharepoint documents in salesforce ?

    How to show sharepoint documents in salesforce ?
    I should also be able to upload documents from salesforce directly to sharepoint document library/list if the users attach a document for a record in salesforce.   Any idea how to achieve this?
    What are the things need to be done if my sharepoint is available in intranet Or if it is SharePoint Online , how can we link this to salesforce (as Salesforce is global and can be accessed from anywhere). What are the security measures that I need to look
    at and how to achieve this? 
    Ex:- I have a record in salesforce account object. I have to attach a document for that record which should be directly uploaded to sharepoint and shouldn't exist in salesforce, but it should display the listview to the users once its uploaded to sharepoint
    and they should see them as if they exist inside salesforce, once they click on the link in the listview of the relatedlist, it should open the document from sharepoint.
    Thanks in advance.

    Hi,
    According to your post, my understanding is that you want to show SharePoint documents in salesforce.
    You need to integrate SharePoint with Salesforce.
    Nick Swan
    has written an article on how to integrate Salesforce and SharePoint 2007 through the Business Data Catalog.
    But it might be useful as the theory is the same for using SharePoint 2010 and the Business Connectivity Services:
    Salesforce and SharePoint
    Outside of that, there are some useful third-party products you can have a look at.
    Cloud Connector: http://www.layer2.de/en/community/FAQs/cloud-connector/Pages/Office-365-Salesforce-Integration-Migration-Replication.aspx
    DocAve Data Replication: http://www.avepoint.com/salesforce-data-replication/?gclid=CNjZ8sGwl6kCFYEc4Qod-xD-uQ
    DataZoom Script: http://www.siafoo.net/snippet/261
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

Maybe you are looking for

  • I tried to add on a Zotero integration app. It didn't work. Now each time I open Firefox it tries again to integrate the app and I get an error message.

    Here is the error message when I open up Firefox and it tries again to install the Zotero integration app: (I only have Word 2011) Installation could not be completed because an error occurred. [Exception... "'Neither Word 2004 nor Word 2008 appear t

  • Open a PNG file in Photoshop from Bridge

    Hello, When I click a .png file in Bridge it is opening in Fireworks. How can be able to open it in Photoshop? Thanks, Shivanand

  • Deleting Photo Files in Lightroom 4

    I use Aperture 3 and am thinking of switching to Lightroom 4.  I do not store my photos in the Aperture 3 library. Instead I store my photos in my own folder system on an external hard drive and I reference the files in Aperture.  This works well for

  • WSDL dynamic

    Hi Everyone, I have a WSDL generated by a Function Module Web Service Development: [http://dev.xxx.com:1080/sap/bc/srt/wsdl/bndg_4B9BE30395435803E10000000A01F005/wsdl11/allinone/ws_policy/document?sap-client=777] Quality: [http://quality.xxx.com.sa:1

  • Archiving batch material

    I want  to archive a batch material. I've run the job created by tx SARA, but it appears an error in the log saying that this material have a reservation. I went to the reservation list and it doesn´t exist any reservation for this material ... any i