Content Management using WLP Vs using a Third Party CM Tool

Hi All,
In our Application we have a Workflow which we earlier implemented using WLI and stored the Content in File System ( The Dis advantages with this is no versioning capability , hard to manage the Content etc..)
Now we are plannning to use WLP's Content Management Capabilities.
Does the Library Services support a workflow ?? Does Workflow Definitions conform to any standard ?? (Like BPEL etc)
The Content we have is a set of forms ( XML Based) and are unique for each user Task . Might be using the goal technology to capture the data from the Users..
I would like to know the pros and cons of using WLP Content Management Features vs Storing the Content in a Full fledged CM tool and accessing it from the Portlets Deployed.
Features we are looking for are..
Versioning , Search Capabilities , History info
Thanks
Sateesh

How do I create plan.xml for every env Im not sure what you mean. Use vi/notepad if you want! See the section 'Using an Existing Deployment Plan to Configure an Application' in the link. You simply need to create this plan once with the value you want and you can use the same one with a different path value(the one you want to change) for each environment. Whether you want to create a template plan.xml whose value is replaced by an ant build is upto you.
Plan.xml is similar to a WLST script, you'd only need to parameterise the actual value you want to use as the path(and you'd have to run both for every deployment) - Im not sure this value is accessible over WLST though..
regards
deepak

Similar Messages

  • Images Content Management in WLP 10

    Hi,
    I am looking for some advice on content management of WLP 10 in two specific areas.
    1.  I want to save all the 'text' like labels on a JSP page,  into content management.  Is this a good idea? Is it preferable to maintain this is a property file?  If having this in content management is a good idea then what are the general guidelines to go about this.
    2. I would like to store all the images that appear on my web page in WLP content management on a file system repository.  The documentation suggests that this is possible and the uploaded images can also be exposed to a web server like Apache which usually handles static content rather than an app server.  What are the steps to make this work?  I tried the following and couldn't really make any progress..  Help is appreciated
      a. created a file system repo.
      b. set the cm_content_webpath to the apache url
      c. uploaded images to the repo
      d. what JSP tag do i use to generate the HTML <img> tag for me based on the content identifier name or resource name?  Is this even possible?
    -Ajaneesh

    1. I think a file is better for i18N.
    You can store the file itself in the Content management system and publish it , though there is always a disconnect between the developers and the Content Management users.
    (Runtime cached files are also better than CMS)
    2. you should simply read the path using cm:getProperty(This may have changed in 10.0!) tag and use the value in <img src="">
    regards
    deepak

  • Deploying manually CC PKG file built with CC Packager. Not using any third party deployment tool. However after each 5 installations, the PKG files corrupt and cannot be use for a 6th installation. I have to build a new PKG file using CC packager.  Why ?

    Deploying manually CC PKG file built with CC Packager. Not using any third party deployment tool. However after each 5 installations, the PKG files corrupt and cannot be use for a 6th installation. I have to build a new PKG file using CC packager.  Why ?

    http://helpx.adobe.com/creative-cloud/packager.html
    http://forums.adobe.com/community/download_install_setup/creative_suite_enterprise_deploym ent

  • Third Party Ticketing Tool integration with solman service desk scenario

    Hi,
    I need any guidance on integration Of third Party ticketing tools like OVSD with the SAP Solution Manager Service Desk Scenario.
    Regards,
    Kaustubh.

    Hi Maheshwar,
    What I am trying to do is, try to maintain the data like,,
    Caller ID-- sender
    Assignment of workgroup--
    Search Code--
    Priority--
    and description--
    now some of these are constants that we need not determine every time.
    but my question is, can we maintain these as a set of parameters in the method definitionunder parameters tabjust similar to MAIL_HEADER...which is displayed in the mail alert.
    we already have a scenario maintained in the HPSD where it reads the mail picks up specific content based on key words, and creates a ticket.
    and If we can maintain these by modifying the method, then where can we maintain the multiple data/options for this
    And also please send me what were the steps u have done.
    U used a Z method or customized the Function module??
    Bcz in my case I think I will have to do both..
    Regards,
    Kaustubh.
    Edited by: kaustubh on Jun 19, 2008 6:32 PM

  • EP integration with third party BI tools

    Hi,
    I was looking for information and pointers on EP integration with third party BI tools like Business Objects etc.  Would be grateful.
    Thanks,
    Madhu

    Thanks. We have a full fledged Business Objects reporting environment.  My question is:  As a beginner in the EP space, I would like to understand how to treat the  Business Objects environment as one of the content providers for the Enterprise Portal?  Are there any documents or manuals that talk about the integration of EP with Business Objects?  I know the question is too broad, but any pointers would be useful.

  • Third Party WCM tools integrated into SAP EP7

    Hi All,
    I am wondering if anybody has experiences with integrating a third party WCM tool with EP7 for intranet-style content in the portal, and whether an assessment versus Web Page Composer has been made?  I have looked at Web Page Composer but am interested in seeing what best-of-breed third party offerings are certified for integration to EP7 and how these compare.
    Points will be awarded for useful responses.
    Regards
    John

    Hi John,
    I've seen btexx easyWCM in some projects and although I do not like it, many users are quite content with the features.
    Afaik it is certified for SAP EP 7.0, have a look at it.
    regards,
    Christian

  • Oracle Third Party Backup tools

    What are some third party backup programs that people are using with oracle these days? Also when using third party backup tools, do these tools shutdown the database while backing up? Does the Archive Log mode need to be enable as well? Not big on Oracle so simple answers would work.
    thanks.

    I wouls suggest to go with RMAN. it's best tool and free.....Best third party backup tool is BMC SQL Backtrack.

  • Third party reporting tools

    I am trying to use a third party reporting tools.
    I have found one I like from Inetsoft.
    The problem I am having is running the sample code they provide. I keep getting the error of method not found in my package.class file. They have provide sample.java files, I am not sure how to get jdev to see the method.
    here is the .java code:
    package smart_package;
    import inetsoft.sree.*;
    import inetsoft.report.*;
    public class SimpleReplet extends BasicReplet
    public ReportSheet createReport(RepletRequest req) {
    StyleSheet report = new StyleSheet();
    report.addText("This is a very simple Replet!");
    return report;
    here is the event code:
    &lt;event name="print_report" &gt;
    &lt;method class="smart_package.SimpleReplet" method="createReport"/&gt;
    &lt;/event&gt;
    my question is why do I get this error:
    Warning(43,73): report.uix: Parsing error, line 43, column 73: Could not find method createReport in smart_package.SimpleReplet
    also if anyone has a suggest on a third party reporting tool let me know.
    thanks

    I think that I figured out my own problem. my problem was method not found in class.
    here is the solution:
    I need a method with a EventResult to start the process. and then that method would call the third party method.
    package smart_package;
    import java.util.*;
    import java.text.*;
    import java.io.*;
    import inetsoft.report.*;
    import inetsoft.report.io.*;
    import oracle.cabo.servlet.BajaContext;
    import oracle.cabo.servlet.Page;
    import oracle.cabo.servlet.event.EventResult;
    import oracle.cabo.servlet.event.PageEvent;
    public class PrintReport
    public PrintReport()
    // HERE IS THE KEY!!!
    public static EventResult StartPrint(BajaContext context,
    Page page,
    PageEvent event)
    createReport();
    return null;
    public static void createReport()
    try
    StyleSheet report = new StyleSheet();
    report.addText("This is a simple report");
    PreviewView previewer = Previewer.createPreviewer();
    previewer.print(report);
    previewer.pack();
    previewer.setVisible(true);
    previewer.setExitOnClose(true);
    catch(Exception ignore) {}
    my event on the uix page:
    <event name="print_report" >
    <ctrl:method class="smart_package.PrintReport" method="StartPrint" />
    </event>

  • Login window - Third party code/Tool/Gui????

    Hai Friends,
    Is there any third party code/tool/gui/ available for login frame.
    I want to store/keep all login/logout details -in a file.
    i need to store user names and passwords -encrypted in a file.
    The login frame(or a single frame with) Login,Cancel,Create new user,change password.
    Please guide me.
    Thank You

    Thanks for ur reply. I want to store the user name and passwords in encrypted form.
    i am using type4 jdbc3.0 driver to access Ms Sql Server.
    and i don't want to use any connection with the database until the user login. Also i don't want to keep the login/logout information in database-it could be much better if i use a file.
    please guide me!
    Expecting help from experts,
    MartinHilpert , Michal Dunn, Camickr, and others.

  • MSSCCI Provider to connect third party developer tool (PowerBuilder)

    Attempting to use the Microsoft Team Foundation Server MSSCCI Provider to connect third party developer tool (PowerBuilder) to TFS. Unfortunately, I am receiving a Nonspecific Error on the Initialization through the MSSCCI, and have not been able to find
    a resolution through internet searches

    Hi K,  
    Thanks for your post.
    What’s the version of your TFS?
    Which version of TFS MSSCCI Provider you tried to install?
    According the description in
    TFS 2013 MSSCCI Provider, it support the PowerBuilder 11.5, please confirm that. And you need installed the VS 2013 or Team Explorer 2013 on the same client. 
    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.

  • How to achieve Number Ranges in third party CRM tool and in SAP CRM

    Hello Guru's,
    My business requirement is I have to create LEAD from third party CRM tool to SAP CRM and vice versa i want to maintain number ranges for created lead in both side.
    How can I achieve this please provide me your valuable suggestions and document.
    Thank's In Advance

    Hi,
    In SAP IMG screen maintain the external number range in CRM  through the below path.
    CRM-Transactions-basic setting-Define Number range.
    Also maintain the same number range for lead in the third party crm.
    Regards,
    Ashish

  • Access data from a third party warehousing tools in BEx WAD

    Hi,
           I would like to know whether it's possible to access data from a third party warehousing tools ( For eg: Cognos) in BEx Web Application designer. Any help would be appreciated.
    Thanks

    Hi,
    BEx Web Application designer is only integrated to BIW server. So We can not access data of other tools unless the data is stored in the BIW server as the data in any data target. 
    With rgds,
    Anil Kumar Sharma .P

  • Can I use Oracle IPM with a third party content managemen system?

    Hello,
    Our client has a requirment to use Oracle IPM with a non-Oracle content management system. That is they don't want to Oracle UCM. Is it possible? If yes, can you please direct me to some kind of documentation.
    Any help is greatly appreciated.
    Regards
    Abhishek

    I think you should draw a scheme of your architecture for yourself.
    An A/P solution consists of:
    - scanning (hence, ODC/ODDC)
    - repository of images (IPM based on UCM)
    - workflows (BPM as a part of IPM license)
    - connector to an application (usually, Oracle EBS Adapter is used here)
    If you don't intend to use any part of the solution (e.g. you have a different ERP system than EBS, you have your own repository), you can replace it with your own parts. However, be aware that you will have take care of the integration - Oracle can integrate for you only those parts that Oracle has under control (ODC is integrated to UCM/IPM, IPM/UCM is integrated to EBS, workflows know how to call UCM/IPM services). Of course, it uses open standards (web services or RIDC), so you may implement the integration yourself.

  • Using JAXB for classes extending third party objects

    I am trying to use JMX WS connector in my project. I have stuck with a problem I cannot solve. For example, I have class
    public class TypedObjectName extends ObjectName
    I do not know how to annotate this class. If I am trying to use @XmlRootElement annotation and provide no-arg default constructor for this class, JAXB throws an error
    Caused by: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalAnnotationExceptions
    javax.management.ObjectName does not have a no-arg default constructor.
    this problem is related to the following location:
    at javax.management.ObjectName
    at com.hp.usage.mgmt.naming.TypedObjectName
    I am not able to modify ObjectName because it is a part of jdk, third party class from javax.management. I need to have this class in JAXB context since one my service has a method with this type, for example
    *public interface PerformanceMeasurement {*
    public TypedObjectName getJob();
    Any ideas to make it workable?

    Yes, right, I have seen this blog and if you read it carefully, there is a note rearding root object
    The root object case is not quite as clean. The result of the unmarshal operation will be the adapted object, then you will need to call the conversion code yourself.
    It means I need to change an API, in case of JMX WS Connector, instead of
    public interface PerformanceMeasurement {
    public TypedObjectName getJob();
    I will provide
    public interface PerformanceMeasurement {
    public TypedObjectNameAdapter getJob();
    Not sure that it is a good idea
    Edited by: tvv2000 on 03.02.2013 21:24

  • I purchased my iMac using the same (and only) Apple ID I use to purchase apps. Third-party apps update fine, but the apps that came with my iMac (iPhoto, iMovie, etc) bring up a message saying I have to log in with the account I used to purchase them.

    I used my only Apple ID to purchase my iMac (Intel-based one).  I've never been able to update core apps that came with it.  I can update third party apps I've bought (like Coda), but when I try to update Garage Band, iPhoto, iMovie and so on, a popup message appears saying "You have updates available for other accounts" and "Log in with the account you used to purchase this app in order to update it", or similar (see screenshot above).
    The OS seems to get its updates fine - it's just the core apps from the App Store.
    I've only ever had one Apple ID, so I have no idea what to do.  I went to ask the Genius bar at my local Apple store, and they couldn't help, and insisted that I must have purchased the iMac using a different account, but I definitely didn't.  There are a few posts on non-Apple forums of this happening to other people, so it must be a rare bug.
    I'm a little concerned it may affect my ability to update from Lion to Mountian Lion.  Can anyone help?
    Dan

    Have you done a Disk Repair and a Disk Permissions Repair?
    If that doesn't resolve the problem I would suggest calling customer support about this issue as it is most likely on their (Apple's) end that the problem exists. 

Maybe you are looking for

  • Problem with Dreamweaver cs4 tutorial

    Hi I have been following the dreamweaver tutorial (go to http://www.adobe.com/devnet/dreamweaver/articles/first_cs4_website_pt4.html) All been well up until adding main image text. It looks fine in design view (see snapshot attached) but when I go to

  • I am running version 5 and every dayI get an unwanted pop up for update to version 6. How can I stop this pop up?

    I believe version 6 is still beta and I do not want to install it until it has been fully tested. That is why I don't want or need the update pop up. How can I block pop ups relating to version 6 until I download it. Thanks and regards Ian Tocher

  • Run time error in upgrade

    the epc check shows an dump error of this kind. Indirect Index Access to Internal Table T_PA0169 Outside a LOOP, this causes a short dump. THE CODE IS. if t_pa0169-endda eq '99991231'.         append t_pa0169 to t_change169.      delete t_pa0169.    

  • Details about FND

    Hi all, Can you please provide me some links from where I can get details about fnd. I'm new to oracle application framework.I need to know the ideas behind the fnd tables.Specially FND_RESPONSIBILITY and the menus. Thanks in advance, KP...

  • Dudas Con alarma diaria...

    debido a que en la version 2005 no puedo poner autorizaciones para la tranferencia de stock entre bodegas como en el 2007 y esta version se va a actualizar completa a fin de año es que se me presenta la siguiente duda... como puedo generar una alarma