WebCenter Blog TaskFlow in portal applications

Hello

IAM doing a webcenter portal application, duty use the taskflow Blog... iam little confused with supplied google links...

When I drag and drop the taskflow Blog, it will ask to enter parameter map and resource ID-... what to enter... ?

It would be useful that you give me step by step instructions and what are the exact requirements to application of articles.


Thank you and best regards,
Kiko.

What version of the webcenter Portal do you use?

in any case of PS3's from, all content of the blog is managed by server of the University Complutense of MADRID.
Therefore, you must establish a connection ucm for your application.
You must select a folder blog (where you articles will be kept), then drag it onto your page jspx.
It wil work. This process is only for the moment of conception.

If you want the same at run time, and you must add the taskflow the catalogue of resources blog and provide the path of the ucm file in the taskflow blog setting.

For more information, you can visit the developer's guide and the guide of the webcenter Portal administrator.

Links for blog taskflow parameters.
http://docs.Oracle.com/CD/E23943_01/WebCenter.1111/e10148/jpsdg_wiki.htm#BGBEHHAH

You talked about - resources-ID

Here the resource id means - the xcollectionID of the directory blog in the Complutense University of Madrid. If you know the file xcollectionId then in the resource ID parameter, provide the following value:

${"UCMCon #dCollectionID:5100000000005510011"}

where UCMCon is the name of your connection ucm and 5100000000005510011 your xCollectionId of the blog directory where you will store the blogs.

Hope this helps you.

Kind regards
Hoque

Tags: Fusion Middleware

Similar Questions

  • We look for details user for all users directly from Active Directory in a webcenter portal application?

    We look for details user for all users directly from Active Directory in a webcenter portal application?

    Hi again.

    Is not just WebCetnerDS in WebLogic... If it's a CustomPortal you had created a CustomPortalDS.

    You need to do a DB connection in your y JDeveloper Portal App than a link to the WebCenterDS schema.

    Deployment and testing of your WebCenter Portal: Application Framework - 11g Release 1 (11.1.1.7.0)

    Follow the links provided by Vinay on the WLST.

    Kind regards.

  • Find the query executed in webcenter content triggered from portal...


    Hello

    I want to see what query executed in webcenter content of the portal. How to see in the newspaper?

    1. connect to the administration Webcenter content Administrator console, navigate to Administration - "Audit Information System.

    2 'Sections Tracing Information' section, make a backup of the Sections "active."

    3. in the 'Active' chapters, add the new criteria:

    systemdatabase, search *, requestaudit

    4. Select 'Full Verbose', 'Save', then 'Refresh '.

    5. in the upper right corner, click on "View Server output" it will show the SQLs as below below.

  • Several attachments in the portal application form

    Hi guys,.

    is it possible to attach more than one attachment on a portal application form? I know after you have submitted the form, users can join objects, but in the form itself, the attachment field only allows you to point to a file. I tried to put a field attachment double on the screen but he transferred more than one attachment.

    Thank you

    Simeon

    The portal manage a file as an attachment. Need an improvement would be asked for several files. One solution would be to compress multiple files into one.

  • Taskflows migrating an application of EPMA HFM to a classic

    Hi guys,.

    I have asked me to migrate the taskflows in an application created with EPMA to a classic. Since this is the first time that I do this, I wanted to know if it is possible to do, and if you can recommend measures to make (some 'best practices' ;)))

    Thank you!

    See you soon,.

    Read

    Here are the major issues.

    I'm going to reach someone much more intelligent that I am when it comes to HFM.

    Without a doubt, I would start to direct to the data model in an attempt to find the table suitable for extracting workflow information, but there is probably a better way.

    Data-online http://www.oracle.com/technetwork/middleware/bi-foundation/epm-data-models-11121-354684.zip models

    Please stay tuned.

    Thank you

    Todd Rebner

  • How to make http post in the Webcenter Portal Application?

    Hi all

    We have a requirement in which we must train to an external URL.

    We have created a Taskflow bounded with page fragment. Added a button on the page fragment and had to form POST to an external URL the button click. Expected features, the URL of the external site will open in the same tab.

    But we can not directly use html form tag in the page jspx because it cannot have two form elements.

    Example code snippet that we use:

    " < form id ="meetingPost"action =" http://XYZ/reg.aspx "

    method = "POST" >

    < input type = "hidden" name = "userId" value = "12345" / >

    < / make >


    We have tried to do this programmatically as below. But it does not work.

    JSPX code:

    <? XML version = "1.0" encoding = "UTF - 8"? >

    " < = xmlns:jsp jsp:root ' http://Java.Sun.com/JSP/page "version ="2.1" "

              xmlns:f=" http://Java.Sun.com/JSF/core "

              xmlns:h=" http://Java.Sun.com/JSF/HTML "

    ' xmlns:af = ' http://xmlns.Oracle.com/ADF/faces/rich "> "

    < jsp:directive.page contentType = text/html"; Charset = UTF - 8 "/ >

    < f: view >

    < af:document id = "d1" >

    < af:form id = "f1" >

    < af:region value = "#{bindings." TestTF1.regionModel}"id ="r1"/ >

    < / af:form >

    < / af:document >

    < / f: view >

    < / jsp:root >

    JSFF code:

    <? XML version = "1.0" encoding = "UTF - 8"? >

    " < = xmlns:jsp jsp:root ' http://Java.Sun.com/JSP/page "version ="2.1" "

    ' xmlns:af = ' http://xmlns.Oracle.com/ADF/faces/rich "" "

              xmlns:f=" http://Java.Sun.com/JSF/core ">

    < af:resource type = "javascript" >

    function postToURL (url) {}

    var form = createElement ('form');

    form.setAttribute ("method", "POST");

    form.setAttribute ("action", url);

    Form._submit_function = form.submit;

    form.appendChild (document.createElement ("input", {type: "hidden", name: "userId", value: "12345"}));

    document.body.appendChild (form);

    Form._submit_function ();

    }

    < / af:resource >

    < af:panelGroupLayout id = "pgl1" layout = "horizontal" >

    < af:commandButton text = "Submit" id = "cb1".

    actionListener = "#{pageFlowScope.SampleBean.postToCvent}" > < / af:commandButton >

    < / af:panelGroupLayout >

    < / jsp:root >

    Managed Bean Code:

    {} public void postToCvent (ActionEvent actionEvent)
    FacesContext fctx = FacesContext.getCurrentInstance ();
    String url = " " http://XYZ/reg.aspx ";
    ExtendedRenderKitService service = Service.getRenderKitService (fctx, ExtendedRenderKitService.class);
    StringBuffer script = new StringBuffer();
    script. Append ("postToURL('");
    script. Append (URL);
    script. Append("')"); "
    service.addScript (fctx, script.toString ());

    }

    Thank you

    Bharat

    Abhijit salvation,

    sendRedirect don't GET, POST.

    in any case I solved the problem by substituting the attribute action for af:form using java script and adds input fields on the fly and able to reach the POST form to an external URL.

    JavaScript (test.js file):

    function postToCvent (event) {}

    If (event! = null) {}

    Get the source Customer attribute

    var url = event.getSource () .getProperty ('url');

    var userId = event.getSource () .getProperty ("userId");

    Get the form by Id element, it will be af:form Id

    var form = AdfPage.PAGE.findComponentByAbsoluteId ("mform");

    If (form! = null) {}

    formId var = form.getClientId ();

    document.getElementById (formId) .setAttribute ("method", "POST");

    document.getElementById (formId) .setAttribute ("action", url);

    Create and add the input field to your

    var hiddenField1 = document.createElement ("input");

    hiddenField1.setAttribute ("type", "hidden");

    hiddenField1.setAttribute ("name", "userId");

    hiddenField1.setAttribute ("value", username);

    document.getElementById (formId) .appendChild (hiddenField1);

    SubmitForm

    document.getElementById (formId) .submit ();

    }

    }

    JSFF code:


    http://XYZ/reg.aspx"/ >

    JSPX code:


    source="/resources/test.js"/ >

    Thank you

    Bharat

  • Override taskflow in portal integerated

    Hello

    Using webcenter Portal 11.1.1.8.0

    I have a workflow of adf [empTFDef] in my 11.1.1.7.0 jdeveloper.

    I joined this workflow as a shared library in webcenter portal using extend.spaces.

    This taskflow works very well in my webcenter portal.

    My scenario:

    If I made any changes in this empTFDef, I need to redeploy with the new version of extend.spaces,

    What is the right way? Don't we have other methods to do this.

    OK for your first question. If you make any changes in your taskflow just deploy your taskflow increase in the version of the implementation. You don't need to deploy the extend.spaces. Simply restart the server after deployed taskflow, that should be enough.

    No, you don't need add code for cookie. It's for my project. Simply ignore.

  • Not able to sign into webcenter content in the portal of physical machine Virtualbox

    Hi all

    I installed the virtual machine Portal webcenter. Everything works fine.

    Only one problem. I am not able to connect to the WCC to the physical computer. Comments page is displayed, but click on login page will badly formed in the url.

    I think it's because of OSH. Anyone know this problem.

    -Hit the url as - ip address of virtualbox/cs = notes of the WCC page

    -Click on the login page url will be like http://webcenter.oracle.local/webcenter/samlits/its?RPID=rp_00001 & TARGET = http://192.168.56.101:80 / adfAuthentication & login = true

    and error saying page is not available.  I think it's because of OSH. How do I solve this problem

    try to change your hosts file in C:\Windows\System32\Drivers\etc this place.

    Add an entry for your IP as below

    198.168.56.101 webcenter.oracle.local

    Try now...

  • Portal applications and the Application Manager both do not work.

    They have been inop now for over an hour. ETA for fix?

    There are intermittent problem past that we are working on the same.

  • WebCenter Portal frame Application system requirements

    Hello

    I have 2 WebCenter Portal Framework Applications, based on installation requirements, it seems I am only required to run the RCU once and each application is deployed in the respective MDS partition.

    Do I need to run twice the UCR and how WebLogic Custom Portal Managed Server is required?

    If you want to use WebCenter portal but also to build a Framework of portal applications, you must run the RCU twice since both require their own WEBCENTER scheme.

    Patterns for discussions and portlets are also required if you plan to use them. If you plan to use the recommendations, then the product of graphic activity must be installed. Analytical and graphical activity can be used by a single application within a domain. If the graphic activity is installed, the ACTIVITIES schema cannot be shared.

    http://docs.Oracle.com/CD/E29542_01/doc.1111/e22628/wcmap.htm#WCMAP103

    http://docs.Oracle.com/CD/E29542_01/WebCenter.1111/e35813/pywcp_planning.htm#CHDFDFHH

    Hello

    See that you want to deploy your application in HA environment you don't need to run the RCU for both parameters. You can use the same prefix...

    You must first install all binaries in knot and go more based on the topology you i.e. active - active or active-passive.

    In either model, you must configure the domain on node 1 say and propagate to the node 2 pack use unzip utility.

    Ref: http://docs.oracle.com/cd/E23943_01/core.1111/e10106/adf.htm#ASHIA1198

    If that's the answer to your questions. Please mark - it correct for another reason.

    Thank you

    Amey

  • How to remove the customization from portal webcenter application.

    Hello

    I use Jdev 11.1.1.6.

    I want to remove the customization of Webcenter portal application.

    All the adf faces component State should not be kept as a last tab selected, column converted etc...

    Thanks in advance

    Vikas M

    Hi Rohan,

    Yes I removed, activate the customization on the project portal view still does not.

    But I found the solution and now its work

    I deleted

    org.apache.myfaces.trinidad.CHANGE_PERSISTENCE

    oracle.adf.view.rich.change.MDSDocumentChangeManager

    entry of Web.xml

    And its work.

    Thank you all

  • Taskflow in my webcenter application

    Hi people,

    I created a Webcenter application and inside it a custom taskflow, now I would like to add this taskflow in my catalog of resources, but I have read that I need to deploy in a jar.

    My question is, even my taskflow is my application, I need deploy it in a jar, add in my application and therefore in RC? Or I can add a few references directly from my Webcenter application.

    I tried this:


    < resource id = 'job-workflow-definition '.
    repository = "application.classpath"
    path="PortalIT7.war/ADF_TaskFlow/Web-INF+taskflows+conteudo-definition.XML#task-flow-definition"/ >

    This:

    < resource id = 'job-workflow-definition '.
    repository = "application.classpath"
    path = "WEB - INF + taskflows conteudo - accordingly #-definition of task-flow" / >

    But no one works.

    Thks in advance

    I have not tried to add a taskflow since the classpath of the application to a catalogue of resources.
    But by it is recommended, you must create several jars for your application and your taskflow. Especially if you want to add your taskflow to your catalog of resources because if you have another application that wishes to use the taskflow even you cannot reference easily it unless you add the full jar file in the lib of the other application.

    Then, create a new application and deploy it as a library of the ADF. You should be able to reference which...

  • WebCenter large Portal Site with Jar of deployment/Configuration files

    Hello

    I have a large portal of WCS to deploy comprising many different groups 'applications'.
    Ideally, we want to deploy as an .ear file, containing menus, templates, preferences and a few other common structures.
    We want to challenge each request as a .jar File. What is the best way to do it?

    Can we build menus pointing to Taskflow .jar files without incorporating the .jar file in the application?



    Thank you very much


    João,

    To use the workflow in your WebCenter Portal Application you provide in JDeveloper, ADF JAR library classpath.
    However, when you deploy your WebCenter portal, you can configure your deployment profile to only deploy the library with the WebCenter Portal Application.
    Then just reference the shared lib deployment in weblogic.xml file.

    Kind regards.

  • Workflow in a portal ADF application

    Hello

    I doubt a workflow I created,
    I use ADF portal applications and I've created a workflow and I created jsff pages, however, when I put in the home.jspx my workflow and press run.
    it make the homepage, but I don't see why my task?


    Thank you

    You must set specific privileges on the taskflow.
    See the tutorial/hands-on lab at the end of this page:
    Lab - rich developing Web Applications with Oracle ADF, and WebCenter Portal
    http://www.Oracle.com/technetwork/community/Developer-Day/VDD-Oracle-Fusion-dev-day-1725597.html

  • What is the best solution of Webcenter to build an institutional Portal?

    In my team, we need to build an institutional portal for our company (it's a financial services company). So, we start rating the WebCenter Suite, but I m a bit confused about its battery.

    The needs of the portal is based to share dynamic content, such as news, information pages, cats/instant messages with clients, hotsites, change the skin/template/logo in run mode.

    Based in this tip, I know webcenter has two main ways to do things like that, there are site webcenter and webcenter space; so, my question:

    One of which are the best choice to offer this solution? Or the two working together in this case? How do you do that?

    Thank you.

    Edited by: user2043351 09/02/2012 05:37

    Check if the following information is userful, copied from the site of yannick:

    There have been many questions about when to use the WebCenter portal and when to use spaces WebCenter. There are specific use cases for each, and you can ask yourself a few simple questions that can help you to decide what to use. Generally WebCenter spaces is intended for intranet collaboration portals. In previous versions, spaces has been used because there is no easy way to build a portal with the WebCenter framework. Spaces was simply because it's there and that's why it has been misused a lot! Since the PS3, all good feature are out of the box available in a WebCenter portal application, then you should really watch the correct reason to use spaces or a portal. In this post, you can find a few questions that you can use to help your client or company to make the right decision. :

    (1) each user requires a personal space?
    One of the features in WebCenter spaces is personal space. In this space, each user can create their own pages and put some components they want to this topic. As an administrator, you can also create pages of role of companies that can be propagated to the personal space of specific users. When you want this kind of functionality, spaces WebCenter is necessary. These features are not available in a WebCenter portal. If you want to build in portal, it will take a lot of work.

    (2) not your project requires separate groups or micro-sites?
    One of the biggest features spaces is to create spaces for group. The space of each group have different pages. All the resources that you create (documents, discussions, events, lists,...) are related to the space of the group. You usually create a group for a Department, project,... to the Group of information into a coherent unit. If it's the functionality you are after, you definitely need spaces. These features are the main features of the spaces are usually among the first that you should look for.

    (3) not your project requires many customizations of the OOTB taskflows
    WebCenter to customize most of the out of the box taskflows. You can rearrange items, or add your own components. The way portal and workspaces with these customizations are slightly different. For portal, it can be easier. Taskflows customization Portal is just edit some pages jsff and xml with the role of customizer. They are automatically added to your gate, so no additional steps required. With spaces, you must create a separate project and import the contents of a generates the MAR file in the MDS using WLST scripts. This can be a bit heavy when you work with large projects and not as easy to maintain as a Portal personalization.

    (4) is the focus on the development of your project?
    When you set up a portal that requires a lot of custom development. If the amount of taskflows, you need to build is big and you need to do this split into several teams, it's a good idea to think using WebCenter portal instead of spaces. The reason is that the portal can be extended more easily. It is easy to separate the core portal development and the different taskflows. When you work with spaces, it's quite complicated to work as a team on the DesignwebCenterSpaces project, which is necessary to extend the spaces with additional taskflows.

    (5) do you need to build a PoC or very quickly?
    For proof of concept, spaces WebCenter is the way to go because you will not lose time on the construction of the core portal components. With a CEP, the base model is not the most important past. A CEP is all about to prove a technology or idea works. This can be easily done in spaces. Also note that once the POC is done, make sure you take the right decision for the use of spaces or a portal based on the previous questions. Not one of my arguments preferred for the use of spaces, but more often you want... When your due date is very close and you build a real working environment that it is better to go to space because you will not have to build the base of the portal. You can concentrate on the integration of your own custom features. This can still be a hassle as explained in question 4.

    What happens if you need both?
    These questions will help you decide whether to use WebCenter spaces. Of course, it happens a lot that you need to have the best of both worlds. What to do in such cases? Suppose you need to build a large intranet portal for a multinational company. Requirements requires each user to have a personal space to enable them to develop their own dashboards. The company also has a custom application that require the presence in the portal there is a lot of taskflows to develop. Basically, it is very easy. When you answer YES on both questions 1 and 2, you must go to space, regardless of the results of other issues. The reason for this is that implementation of these features in a custom WebCenter Portal requires such a big effort you'll save time by going for the spaces. You will lose time in the expansion of the spaces with your own custom taskflows, but it's nothing compared to the effort required to build your own framework for custom dashboard or spaces of group. If the two question 1 and 2 are NOT there is basically no real reason why you should go for spaces.

Maybe you are looking for