OCS Content services web user interface

Greeting all,
Is Oracle drive client required to perform the edit feature when attempting to select edit under the web based content services on a file. When I select edit from the web based user interface on a file I get a error saying that oracle drive is not installed.

I reinstalled with the newer version as the upgrade from the previous version was not to smooth, and I was left over with to many broken pieces after the upgrade attempt.
I suspect that I'm going to find out that the file versioning and check in and check out features are going to require oracle drive installed as well. This is not a option for us, as our remote clients need to use a pure web type interface/connection. It seems as if oracle still has some work to do to get the content services Web UI to were we need this to go.

Similar Messages

  • OCS Content Services to Content DB

    Looking for clarification on the following:
    1. Can users of OCS Content Services upgrade to Content DB under their current OCS license?
    2. Is Content DB the foundation for Universal Content Management?
    3. Is Content DB related to the Content DB Suite?
    4. Is there an upgrade path from OCS Content Services to Content DB to Content DB Suite to Universal Content Management?

    Content Services will remain as part of Collaboration Suite, however at this stage there is unlikely to be further development into the Content Services product (at least from the original content dev team). The collaboration suite people are hard at work for the 11g release.
    Content DB was originally a fork in the codelines, and a rebundling under Database Enterprise Edition. It is actively worked upon (by the original content dev team) and is the content component of the new Oracle WebCenter.
    http://www.oracle.com/corporate/press/2006_oct/openworldsf06-23.html
    Assuming the Stellent acquisition proceeds, Content DB will also serve as a content infrastructure repository for various Stellent ecm solutions.
    http://www.stellent.com/stellent3/groups/mkt/documents/nativepage/oraclefaq.pdf
    So for any customer wanting to get the new/increased Content Management functionality - particuarly for content-centric custom applications, they will need to move to Content DB.
    Matt.

  • What options do we have around Web User Interfaces?

    Hi Guys,
    I am trying to find out some comparison of SAP's web user interfaces. In other words if i want to build applications which are web enabled what options do we have in SAP? Could someone provide some inputs regarding the same? or point me to a document which gives more details?
    Web enabled user interfaces available:
    1. ITS
    2. BSP
    3. Webdynpro - ABAP/JAVA
    4. NWBC
    5. Portal( Iviews)
    Is there anything more from the above list? Where can i find advantages and disadvantages of the above UI technology?
    Appreciate if i could get some pointers. Thanks in advance.
    Cheers

    Hi,
    Refer this link.
    http://www.architectsap.com/blog/sap/web-enabling-sap-options-scenarios-and-best-practices-sap-its/
    Edited by: ushamasani on Mar 8, 2012 3:45 PM

  • Designing web user interface

    Hi experts,
    can anybody tell me something about designing web user interface, like some of the key considerations? I did not successfully find it on our forum.
    Thanks.

    hi Joey,
    do you mean web template ?
    check
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/749a4622-0a01-0010-36bf-b6b30a2a3a22
    https://www.sdn.sap.com/irj/sdn/docs?rid=/webcontent/uuid/a8cd1f71-0a01-0010-4783-f119b6132d25 [original link is broken]
    http://help.sap.com/saphelp_nw04/helpdata/en/1a/456a3badc1b315e10000000a114084/frameset.htm
    hope this helps.

  • Content DB vs. OCS Content Services

    What's the difference between OCS Content Services 10g(10.1.2.0.3) and Content DB 10g Release 2(10.2.0)?
    I want to know new features of Content DB against OCS Content Services 10g.

    Content Services will remain as part of Collaboration Suite, however at this stage there is unlikely to be further development into the Content Services product (at least from the original content dev team). The collaboration suite people are hard at work for the 11g release.
    Content DB was originally a fork in the codelines, and a rebundling under Database Enterprise Edition. It is actively worked upon (by the original content dev team) and is the content component of the new Oracle WebCenter.
    http://www.oracle.com/corporate/press/2006_oct/openworldsf06-23.html
    Assuming the Stellent acquisition proceeds, Content DB will also serve as a content infrastructure repository for various Stellent ecm solutions.
    http://www.stellent.com/stellent3/groups/mkt/documents/nativepage/oraclefaq.pdf
    So for any customer wanting to get the new/increased Content Management functionality - particuarly for content-centric custom applications, they will need to move to Content DB.
    Matt.

  • How to add a new Field to the WEB User Interface in CRM 2007

    Dear experts,
    I have been struggling to add a new field to the (CRM 2007) user interface from available fields for a specific view.
    I have maintained settings in BS__WD_CMPWBàRuntime Repository editoràComponentàViewàConfigurationàNew ConfigurationàAvailable FieldsàField Propertiesàand save.
    But the field is only appearing in display mode in the Web UI, which doesnu2019t allows any user input.
    I need your help to resolve the issue, I would be grateful if you could provide step-by-step documentation with screenshots or any other kind of documentation.
    Each suggestion will be appreciated.
    Best regards,
    Raghu ram.

    Hi Raghu Ram,
    I think you added a new custom field using some method like EEWB etc.,
    Then, you are adding the field onto the UI using UI Configuration Tool .. right ?
    These are the steps to diagnose:
    Method 1.Check the field properties in the model browser first.
      It should be showing 'C' i.e., CHANGEABLE. If it is showing as 'R', it is only READABLE.
      In such a case you need to find a BADI to change the field properties.
      For example, in Marketing Applications OBJ BADI has a method CHANGE FIELD PROPERTIES for this purpose.
    Method 2. Debug and check what is the value coming for RV_DISABLED parameter in the GET_I method in BSP_WD_CMPWB. This should be FALSE.
    Method 3. Check what are the field properties in the UI Configuration tool.
    Make sure it is not a display only field.
    Regards,
    Masood Imrani S.

  • CRM 7. How to make mandatory the BP Roles on CRM Web User Interface.

    Dear CRM Gurus,
      The requirement in our project is to have as mandatory at least one BP Role (except the default role of BP). Is there any way to implement or configure the CRM system to display an error message when a user tries to save a BP from WEB UI without having maintained the BP Role ?
    Thanks in advanced, John

    Hi Jhon,
    Before raising the error message as Garcia suggested check the collection of bp_roles.. if no roles maintain then raise the message.
    you can raise the message in eh_onsave event of BP_HEAD/BPHEADOverview.
    Sample code to check the collection of bp roles..
    DATA: lv_collection TYPE REF TO if_bol_bo_col,
                lr_bp                TYPE REF TO cl_crm_bol_entity.
      lr_bp ?= me->typed_context->builheader->collection_wrapper->get_current( ).
      CHECK lr_bp IS BOUND.
    TRY.
          lv_collection = lr_bp->get_related_entities(
                 iv_relation_name = 'BuilRolesRel' ).
    *     delete difftype-dependent roles (not maintainable/ displayed
    *     in standard)
          cl_crm_uiu_bp_roles_service=>filter_difftype_dependent(
            CHANGING cr_collection = lv_collection ).
    *     delete lifecycle stages (which are roles as well) from coll
    *     of "normal" roles
          cl_bp_accountlifecycle_service=>filter_roles_exclusive_stage(
            CHANGING cr_collection = lv_collection ).
        CATCH cx_crm_genil_model_error.
    *       should never happen
          EXIT.
        CATCH cx_sy_ref_is_initial.
      ENDTRY.
    check lv_collection->size( ) le 0.
          raise error message.
    Hope this helps.
    Cheers,
    Sumit Mittal

  • Unable to create Business Service "Web Engine Interface" (sbl-dat-00227)

    Does anybody know about this issue? I can't test my workflows because of the same message please it is urgent fix it.
    Regards.

    Hi,
    Does the Application is working only on ENU or any other language. Pls confirm.
    If you are trying to test the worklfow other than ENU, this error will occur.
    There are some LOV Value for "ACCESS_RESOURCE_TYPE". Please check if it exists and the Language is ENU.
    Regards,
    Joseph Arul Dass

  • ICR - Web based User Interface

    Hello,
    Does anybody knows how can I activate the ICR web User Interface?
    Apparently it comes in EhP 6 but I have reviewed the content of all the EhP's including EhP7 and I cannot find anything.
    Thanks in advance for your help
    Regards
    Isabel

    Hi Ralph,
    Regarding #2 some of those fields have already been added to the ICR tables via customizing, so I don't think we have to add them again with this transaction if they are already there?
    #3 --> We have developed our own data extractor that takes the information from the FI tables and generates a tab delimited file to be imported into ICR. We had to do this because we are using our SAP system as the reconciliation system and we have to receive data from other entities outside our system. This extractor has been developed as a template that other entities will use to extract teh data from their SAP systems. Direct communication between the entities is not allowed for security reasons, so the only way was via file import.This Z extractor works perfectly via SAPGui but when we run it via the WEB UI it crashes and we get the error attached. We are going to use the Web UI for the first time with this project, so maybe there are some technical settings that have to adjusted or something like that, but it's only happening with this program.  :-S
    When we get this error the system crashes and we have restart the server.
    Before this message we used to also get this other one:
    Thanks a lot.
    Regards
    Isabel

  • Upgrade path from Content Services to Content DB

    Is there an official/unofficial upgrade guide on how to migrate from OCS Content Services to Content DB?
    And what about the licensing for the existing Content Services users?

    Contact your Sales/Account rep for licensing details - I believe there is some grandfather style licensing upgrade model in place.
    In terms of a migration/upgrade patch for Content Services to Content DB, we are currently looking in to this. For the time being though, we suggest that all new installations of Content Services actually utilize the Content DB installer (instead of the OCS installer).
    Matt.

  • Upgrade Content Services to Content DB

    Looking for clarification on the following:
    1. Can users of OCS Content Services upgrade to Content DB under their current OCS license?
    2. Is Content DB the foundation for Universal Content Management?
    3. Is Content DB related to the Content DB Suite?
    4. Is there an upgrade path from OCS to Content DB to Content DB Suite to Universal Content Management?

    Contact your Sales/Account rep for licensing details - I believe there is some grandfather style licensing upgrade model in place.
    In terms of a migration/upgrade patch for Content Services to Content DB, we are currently looking in to this. For the time being though, we suggest that all new installations of Content Services actually utilize the Content DB installer (instead of the OCS installer).
    Matt.

  • Graphic Designer / User-Interface Engineer Job Opening

    Title:
    Graphic Designer/User-Interface Engineer
    Job Qualifications:
    - Must be an innovative Graphic Designer/User-Interface
    Engineer
    - Minimum 4 years experience developing web-based user
    interfaces
    - Expert knowledge of Adobe graphic design applications such
    as Flash, Photoshop, and Illustrator or alike products
    - Experience with Adobe Flex and ActionScript3
    - Has a proven track record designing and documenting
    high-quality user interface designs for web-based applications
    - Possesses a strong visual design sense and general design
    principles
    - Has some background in object-oriented design and
    programming
    - Able to work effectively from a remote home office
    - Has excellent interpersonal and communication skills and
    collaborates well in person, online, or on the phone
    Job Description:
    This position offers an opportunity to work on high-end
    graphical design projects building rich Internet applications for
    Fortune 500 client companies in industries like financial services,
    software and consumer products. As a User-Interface Engineer, you
    will be expected to:
    • contribute strong leadership through all phases of
    development including functional requirements development, UI
    design and documentation
    • analyze and establish functional requirements and
    specifications using feedback from clients and other developers
    • apply your visual creativity and functional
    experience to design elegant and responsive web user interfaces
    with Adobe Flash (Flex expertise desired)
    • support other developers to ensure successful
    implementation of the designs
    • create appropriate documentation during development
    Candidates will be expected to provide a portfolio of their
    graphical design work in zip files or URL links for review.
    - Can be based anywhere in the U.S.
    - Up to 25 percent travel time required
    - Work on-site and from home
    - 3 to 6 month engagement with potential for perm placement
    If you are looking for a new exciting opportunity, please
    reply with your resume attached to [email protected]. Thank
    you for your interest and I look forward to hearing from you soon.
    Regards,
    Kevin Bakhmutsky

    Kevin,
    Are you only looking for a Graphic Designer or do you have
    other openings that could be filled by a Flex person with a J2EE
    background?

  • BPEL Custom Workflow (DocumentReviewWorkflow) with Content Services

    Hi All,
    Anybody working on BPEL Custom Workflows got Success in using the DocumentReviewWorkflow with the Content Services Development Kit 10.1.2.3.0
    Please update..
    Many Thanks in advance..!!!
    Prasant

    The DocumentReviewWorkflow that ships with the Content Services web services places the documents in the comments field.
    There are examples in the sample code - DocumentReviewWorkflowAction.java file demonstrates how to get the URLs from Oracle Content Services
    // Initialize the various Web Service Manager classes.
    StringBuffer sb = new StringBuffer(100);
    String endpoint = session.getServiceEndPoint();
    setUpManagers(session);
    try
    // Obtain the new/updated document items.
    Item[] documents = WorkflowUtils.getTargetDocuments(session,
    m_WorkflowId);
    int len = (documents == null) ? 0 : documents.length;
    for (int i = 0; i < len; i++)
    AttributeRequest[] pathar = WsUtil.newAttributeRequestArray(
    Attributes.URL);
    Item tmp =
    (Item) m_CommonManager.getItem(documents.getId(), pathar);
    String filepath = (String) WsUtil.getAttributesMap(
    tmp)
    .get(Attributes.URL);
    // Convert the String list to a single string for convenience.
    sb.append(filepath);
    sb.append("\n");
    finally
    session.logout();
    You can then add the document links as attachments by creating a list of attachments and then inserting the URLs for the documents in the URI - I've done it using a combination of Java and BPEL. Here is an excerpt
    <bpelx:exec name="countAttachments" language="Java" version="1.4"><![CDATA[/*Write your java code below e.g.
                   System.out.println("Hello, World");
              // Note that the documents come back as a list of
              // documents with a line break between them
              String filename = (String) getVariableData("filename");      
              String[] docnames = filename.split("\n");
    setVariableData("numberofdocuments", new Integer(docnames.length));
    ]]>
    </bpelx:exec>
    <assign name="initCounter">
    <copy>
    <from expression="0"/>
    <to variable="counter"/>
    </copy>
    <copy>
    <from>
    <attachment xmlns="http://xmlns.oracle.com/pcbpel/taskservice/task">
    <name/>
    <URI/>
    <content/>
    </attachment>
    </from>
    <to variable="ParallelVar1" query="/task:task/task:attachment"/>
    </copy>
    </assign>
    <while name="While_1" condition="bpws:getVariableData('counter') &lt; (bpws:getVariableData('numberofdocuments') - 1)">
    <assign name="createAttachmentList">
    <bpelx:append>
    <bpelx:from>
    <attachment xmlns="http://xmlns.oracle.com/pcbpel/taskservice/task">
    <name/>
    <URI/>
    <content/>
    </attachment>
    </bpelx:from>
    <bpelx:to variable="ParallelVar1" query="/task:task"/>
    </bpelx:append>
    <copy>
    <from expression="bpws:getVariableData('counter') + 1"/>
    <to variable="counter"/>
    </copy>
    </assign>
    </while>
    <bpelx:exec name="AddAttachmentsToList" language="Java" version="1.4"><![CDATA[/*Write your java code below e.g.
                   System.out.println("Hello, World");
              String filename = (String) getVariableData("filename");
              checkpoint();
              String[] docnames = filename.split("\n");
    for (int i = 0; i < docnames.length; i++) {
    int strlen = docnames[i].length();
    int slash = docnames[i].lastIndexOf('/');
    String filenameonly = docnames[i].substring(slash + 1, strlen);
    int item = i + 1;
    String varname = "/task:task/task:attachment[" + item + "]/task:name";
    String varuri = "/task:task/task:attachment[" + item + "]/task:URI";
    setVariableData("ParallelVar1", varname, filenameonly);
    setVariableData("ParallelVar1", varuri, docnames[i]);
    ]]>
    </bpelx:exec>
    This uses the fact that the document URLs are returned as a \n delimited string.

  • Configuration of SAP MDG User Interface in Customer Namespace - 7.0

    Hello All.
    I have been constantly reading about the mentioned content,
    SAP MDG user interfaces from one single place. A dedicated WebDynpro application is provided to manage all user interface configurations.
    You can also copy a standard SAP user interface configuration to the customer namespace and configure it to your requirements.
    Can anyone give more details about the SAP MDG User Interface or share any links which denotes the same in detail.
    Any Help Appreciated !!.
    Regards,
    Shankar

    The document mentioned in the link does not state anything related to use user interface in customer namespace as suggested by sap in Innovations page. this is more about FPM applications.
    Can you please suggest how do we use MDG User Interface in the customer environment directly as suggested by SAP.
    Regards,
    shankar

  • User interface builder for JSPs?

    Hi
    Has anyone used a good builder for a web user interface based on JSPs?
    Thanks

    There is no template for Interactive Reports like for a "normal" report. You need to modify the CSS and supply your own for this to happen.
    I believe most things are tagged with #apexir - firebug with Firebox is invaluable. This thread may help:
    Re: changing the look and feel of interactive report.

Maybe you are looking for

  • ENVY 120 will not copy or scan

    I unpacked my new ENVY 120 yesterday. I can print OK. Although on one occasion, printing 2 pages per sheets in duplex, the second side was unreadable. Tried again and the output was satisfactory. The issue I have is with copy which should be straight

  • Error while opening Traktor Scratch Pro!

    Hi, I'm Traktor Scratch Pro user which is a vinyl emulator! For 2 day's when i try to open the program e get allways the seam error report... I thank if you can help me! Process: Traktor [3672] Path: /Applications/Traktor/Traktor.app/Contents/MacOS/T

  • Automatic goods movement at the time of confirmation in IW42

    Hey gurus, In a maintenance order i ve reserved some materials to be issued from the stores. Now i am not issuing the reserved materials from the stores and going to iw42 for confirming the operations of the order. If i select the item overview of th

  • Colors in LR 4 Different in CS 5

    I have Lightroom 4 and CS 5.  My images in Lightroom look warm.  I export to Photoshop in ProPhotoRGB and the image will look great.  I save close and the edited image again looks warm in Lightroom.  If I change my monitor profile to ProPhotoRGB, the

  • How to convert a string data to a 1 d array

    Dear All, I am wondering if somebody help me. In the attached fle i have my program (in labview 8.6) which read temperature data and updates temperature during the time. I want to use the updated temperature in a calculation.  How can i get the new t