How get link value of content selector

Hi everybody
I have a content selector and I display the content like this:
<pz:contentSelector rule="selecContenido" id="nodes"/>
<utility:notNull item="${nodes}">
<ul>
<utility:forEachInArray array="${nodes}" id="node" type="com.bea.content.Node">
<li><cm:getProperty id="node" name="title"/></li>
<li><cm:getProperty id="node" name="cellphone"/></li>
</utility:forEachInArray>
</ul>
</utility:notNull>
the "cellphone" property is a link to another content, then when I see the result of JSP, I get something like that:
*this is the title
*/BEA Repository/6005
How can I get the values of "cellphone" content?
THANKS

Sorry Ryan, I'm not very sure if I understand well, but I don't know how can I get the id and use it to get link content values.
<utility:forEachInArray array="${nodes}" id="node" type="com.bea.content.Node">
<cm:getProperty id="node" name="title"/>
HERE IS THE PROBLEM ( I need use <cm:getProperty id="node" name="cellphone"/>)
<utility:forEachInArray array="${nodes}" id="node" type="com.bea.content.Node">
<cm:getProperty id="node" name="cellphone_name"/>
</utility:forEachInArray>
</utility:forEachInArray>
thanks

Similar Messages

  • I can not get link-value  from af:tree.

    Hello.
    I use jdeveloper 10g.
    I can not get link-value from tree.
    I use following code:
    <f:facet name="nodeStamp">
    <h:panelGroup binding="#{backing_dialogDic_dic_ETS.panelGroup1}"
    id="panelGroup1">
    <h:outputText value="#{item.vidNum} #{item.vidName}"
    binding="#{backing_dialogDic_dic_ETS.outputText1}"
    id="outputText1"/>
    <af:commandLink
    binding="#{backing_dialogDic_dic_ETS.commandLink2}"
    id="commandLink2"
    action="#{backing_dialogDic_dic_ETS.returnObject}">
    <af:setActionListener from="#{item.idVid}"
    to="#{processScope.ETSId}"/>
    <af:objectImage source="/images/icons/10.gif"
    shortDesc="Выбрать"
    binding="#{backing_dialogDic_dic_ETS.objectImage2}"
    id="objectImage2"/>
    </af:commandLink>
    </h:panelGroup>
    </f:facet>
    </af:tree>
    //in java bean:
    public String return_Object() {
    Object ob = JSFUtils.getManagedBeanValue("processScope.ETSId");
    System.out.println(o);
    return null;
    In console I see null.
    How I get this value???
    I can get this value if i use treeTable instead of tree.
    Thx, Dema.

    Hi,
    not that I think it matters, but the processScope is not a managed bean but a memory scope. So if
    JSFUtils.getManagedBeanValue("processScope.ETSId");
    assumes a managed bean then this may be incorrect as most likely there exist no managed bean with this name. You should be able to access the process scope from AdfFacesContext.getProcessScope(), which then returns a Map, which you call get("ETSId") on
    Frank

  • How to link Value Helps in Visual Composer?

    I would like to know, how to link value helps in VC...??? It's like.....after selecting a value from Value Help 1, how do i restrict my Value Help 2 values so that it contains the values that are relevant to the value selected from Value Help 1 only....???? Request you to please provide the solution.......

    Hi Christophe
    Thanks so much for your help. I have been trying to do the way that you have suggested but am unsuccessfull...... Can you please tell me as to where should I create a field in the second popup view...??? After I double click on the link between "Start" and the "BAPI" in the second popup view...... , I find no "+" symbol in the "Configure Element Panel"  using which I can add the value taken from the first popup view.....
    Is there any pdf file or documentation that shows as to how to do this process...????
    Waiting for your response..... Thanks for your suggestion.....
    Regards
    Deepak Jaju

  • [b]PG_MIN_ROW - how get the value??[/b]

    Hi,
    How can I get the value of PG_MIN_ROW when paginating?
    I want to use the value in a Java script, how can I set a variable=pg_min_row?
    Regards
    Evelyn

    You are correct the page is not submitted when the user clicks on the NEXT or PREVIOUS links. Here are some threads that may help you:
         Re: Submit data when click on pagination
         Re: Challenge: Save "dirty" form before navigating awayMaybe what would help is if you stepped back and explained what you attempting to do at a higher-level.
    Mike

  • How get Inserted value Id in MySql ?.

    Hi,
        How to Get Inserted value Id in MYSQL.
    I am using " select LAST_INSERT_ID() " But its not working Properly.Can u provide any other  solution For this.Please Help me.
    Thanks &  Regards
    Madhava Reddy.

    How to Get Inserted value Id in MYSQL.
    Hello,
    This is a forum for Transact-SQL = Microsooft SQL Server, not for MySQL; you should post your question to a more related forum.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • How get links the way I want them on new pages?

    For new pages, is there a way I can tell DW to make the links the color I want on all new pages? thanks.

    Yes you can by learning how to style your links:  I suggest try this link:
    <http://www.w3schools.com/css/css_link.asp>
    Make sure these new links are local to your pages.  this is done by putting the styles in the header section (avoid using inline styles for reasons best kept secret to avoid arguments).
    hth

  • How get context value form a dynamic created node

    Hi all,
    I have build my own dynamic view. In this view I use also a dynamic created Node. When I have more rows in my Node I see every row with context of the last row of the dynamic Node.
    this is the source I use.
    for (int x = 0; x < dynTabNode.size(); x++)
      dynTabNode.setLeadSelection(x);
      IWDGroup group = (IWDGroup)view.getElement("Group_name");
      IWDAttributeInfo aiName = wdContext.getChildNode("DayNode", IWDNode.LEAD_SELECTION).getNodeInfo().getAttribute("Name");
      IWDCaption name = (IWDCaption) view.createElement(IWDCaption.class, null);
      name.bindText(aiName);
      group.addChild(name);
      for (int i = 8; i < 18; i++)
        int teller = i * 100;
        IWDGroup group1 = (IWDGroup)view.getElement("hour" + teller);
        for (int z = 0; z < 12; z++)
          IWDImage image = (IWDImage) view.createElement(IWDImage.class, "Image" + teller + "_" + x);
          image.setWidth("10");
          image.setHeight("24px");
          image.setBorder(0);
          IWDAttributeInfo att = dynTabNode.getNodeInfo().getAttribute("hour" + teller);
          image.bindSource(att);
          group1.addChild(image);
          teller = teller + 5;
    How can I read my Node row for row?
    Richard
    Edited by: Armin Reichert on Jul 28, 2008 5:03 PM

    The reason is that all these Caption UI elements are bound against the same context attribute. At runtime this will be resolved to the attribute value of the lead-selected node element. In this example you can fix this by not binding the "text" property but setting it to the attribute value of the iterated node element:
    for (int x = 0; x < dynTabNode.size(); x++)
      dynTabNode.setLeadSelection(x);
      IWDGroup group = (IWDGroup)view.getElement("Group_name");
      IWDCaption name = (IWDCaption) view.createElement(IWDCaption.class, null);
      IWDNode dayNode = wdContext.getChildNode("DayNode", IWDNode.LEAD_SELECTION);
      String text = (String) dayNode.getElementAt(x).getAttributeValue("Name");
      name.setText(text);
      IWDAttributeInfo aiName = dayNode.getNodeInfo().getAttribute("Name");
      name.bindText(aiName);
      group.addChild(name);
    (I assume here that the node "DayNode" has the same size as dynTabNode. No idea if this assumption is correct)
    But this would not help for editable elements where you need to bind the edited property.
    Armin

  • How get the value by passing first letter

    Hi All,
    I have to display values based on first digit .
    Here is the query. " SELECT assetid,version_type FROM EDECO_ASSETS WHERE version_type like '1%'; "
    Sample data is.
    AssetId,Version_type.
    1201 1
    1202 1,2
    1203 1,2,3
    1204 10,11
    1205 10,12
    if I pass version_type is '1' then it should display 1201,1202,1203,
    if I pass vertsion_type '10' then it shoud display 1204,1205 records. DB version is 11g.
    Please let me know how to achieve this. Thanks in Advance.
    Regards,
    Rajasekhar
    Edited by: rajasekhar_n on Nov 17, 2008 4:53 AM

    in oracle 7i onwards you can do
    SELECT assetid,version_type FROM EDECO_ASSETS WHERE substr(version_type,1,instr(version_type,',')-1) = :p_parameter; In oracle 10 you could do
    SELECT assetid,version_type FROM EDECO_ASSETS where regexp_like (version_type,'^'||:p_parameter||'(,|$)+')
    No absolutly sure if I got the restriction correctly. Maybe some of the regexp_gurus can recheck.
    :p_parameter can be replaced with '1' or '10' as you like.
    Edited by: Sven W. on Nov 17, 2008 2:12 PM - changed repexp_like comparison

  • Content Selector Results After Re-ordering the Content in Admin Console

    Hi All,
    I am working on weblogic portal 10.2 and MySQL 5.0
    I have created 3 sample contents in portal admin console.
    And I have re-ordered the contents as mentioned in documentation below.
    http://e-docs.bea.com/wlp/docs102/cm/contentTypesCm.html#wp1096803
    Once they are re-ordered , I can able to see the changed order in the table "cm_node"
    But if I am trying to access those contents using content selectors, with the created type, those contents are not coming in changed order.
    results of content selector is order of creation ,
    pls suggest how to get the results of content selectors as per latest re-ordered content
    Srinivas

    Hi
    Thanks for your reply...
    I tried as per your suggetion....But its showing following warning in the console.
    kindly help needed.
    <Nov 4, 2008 10:24:35 AM IST> <Warning> <Search> <BEA-415620> <Invalid sort criteria "toProperty(
    'beatools_defaultView') ASC". Property "beatools_defaultView" must be a system property or explic
    it property.>
    Regards,
    Srinivas

  • How to get the link value

    Hi ,
    I have 3 links in a jsp page and based on whichever link i click i should get the value and pass it on to another jsp page.How can this be done.
    Any inputs??
    Regards,
    Maheshwaran Devaraj

    mheshpmr wrote:
    click here to go to index page
    here the "value" points the following : click here to go to the index page .
    How can I obtain this.You want the link text? Why?

  • How can I get the value for static content of 1 jsp into another jsp

    Hi, I have a jsp which have a header ,now i want this header value in another jsp dynamically.Can u tell me how I can do it?

    What I want to know is that , is it possible to get the value of a static content of one jsp into another jsp,something like getParameter() method that we use to get the value of a field in the jsp to a servlet,or to another jsp,the only difference here is I do not have a field here but a static jsp content .

  • How to Get the value when clicking on the link

    I had a problem with when clicking on the link.
    I need get the link value to the controller when clicking on the link.
    I am displaying the database columns in jsp using repeater in links.
    I am displaying the data like this:
    RED
    BLUE
    GREEN
    these are three links.when clicking on the link RED. RED should go to the controller.
    After getting RED to the controller i will get the RED value from the database.

    my requirement is like that only
    I have just given the example of emp and dept
    emp(empno,zone_group_id,zone_id,deptno,ename,emp_p_ind,last_update_datetime);
    dept_emp(empno,dept_no,loc,dname,sal_emp,grade,last_update_datetime);
    CREATE OR REPLACE VIEW emp_zone AS
    SELECT e.empno,
          (select zone_group_id from price_zone_group where rownum = 1) zone_group_id,
           d.loc zone_id,    
           d.grade,  
           d.last_update_datetime,
      FROM dept_emp d
          emp e
    WHERE d.empno=e.empno
       AND e.emp_p_ind = 'Y'
      WITH READ ONLY;
    Now
    my requirement is to get the data of emp_zone view and needs to store those data into some other temp table
    if any of the above base table got updated deleted or inserted then the view last_updatetime also will get updated but problem is why im not using base table
    direct because it is having huge data and it performance issue .i have to get the value on the basis of view only and using some logic

  • How to get the value of a node content in XML Literal in BPEL 2.0?

    Hi!
    I have a Problem Build A Expression in activity allocation XML Literal one, I would like to help me ...
    Well, I have the same activity in BPEL 1.0 version and now is Different is BPEL 2.0,
    I have a Web Service < WSEjecutaComandos > Where to have a function Remote Commands That runs ,
    Inputs my Web Service: " numEquipo int , String [ ] comandos , int numCta , int publicar , int version ,  String fecha"
    The second argument is a string array type ..
    Now in my BPEL process , I make is the following assignment:
    <assign name="AssignCreaPath">
                        <copy>
                            <from>
                             <literal>
                                  <fnCRexecElement xmlns="http://servicios/">
                                       <numEquipo>2</numEquipo>
                                       <comandos>mkdir etl/entradas/mmkis/</comandos>
                                       <numCuenta>1</numCuenta>
                                       <publicar>0</publicar>
                                 </fnCRexecElement>
                            </literal>
                            </from>
                            <to>$InvokeClear_fnCRexec_InputVariable.parameters</to>
                        </copy>
                        <copy>
                            <from>concat(ora:getContentAsString($InvokeClear_fnCRexec_InputVariable.parameters/comandos),$inputVariable.payload/client:fecha)</from>
                            <to>$InvokeClear_fnCRexec_InputVariable.parameters/comandos</to>
                        </copy>
                        <copy>
                            <from>$InvokeVersion_fnGetVersionProcesoByFecha_OutputVariable.parameters/version</from>
                            <to>$InvokeClear_fnCRexec_InputVariable.parameters/version</to>
                        </copy>
                        <copy>
                            <from>$inputVariable.payload/client:fecha</from>
                            <to>$InvokeClear_fnCRexec_InputVariable.parameters/fecha</to>
                        </copy>
                    </assign>
    Well the conflict that I have is this,
    previously defined a assign with XML Fragment copied it to the payload to the input variable Web Service (WSEjecutaComandos),
    and the XML is copied in each of the variables ,
    Then concatenate input values ( I remarked in red) < comandos > with the value from "fecha" ( String) , and again copy Variable < comandos > and did not have any problems
    but now with the new BPEL 2.0, I do the same thing using now Literal XML ( that good!) but the option to concatenate (I remarked in red) and copied to the same variable ( I remarked in blue ), I mark the following error :
    I should know, I'm doing wrong That , or you need to make XPath Function That The Value They already have the variable < comandos> will concatenate fecha ,
    and is the final value for my entry my Web Service.
    must be defined as the type values array <comandos[i]>
    define the following activities before $InvokeClear_fnCRexec_InputVariable.parameters/comandos[1],
    but it seems that this BPEL 2.0 does not respect me as index brackets .
    Thank you...
    Cheers,

    thanks for your help , it served me!
    I need to get the value of XMLNodeList <comandos> to concatenate the date.
    Attempt to XPath function ( ora:getContentAsString(NodeList elementAsNodeList)), but returns me a String, but a nodoXML.
    Cheers,
    Maby

  • How to get the values in separate columns

    Hello Everyone
    I am new to Bex, i have the sales data of 2008,2009,2010. now i have to display the sales order(key figure) for 2008,2009,2010 in separate columns for each customer(dimension) in a single report , can any one help me how to get this done in bex.
    Thanks
    Gupta

    Hi ,
    You can achieve this either creating New Selections or Restricted Key Figures.
    Right click on the structute>>>> New selcection>>> drag the year to right [  Right Click on it >>restrict it with 2008}>>>Drag the respected Key figure.
    So u will get the values 2008 in seperate column.
    COpy the New Selecten that u created and paste on the structure , chage the descriprion and year to 2009.
    do the same for 2010.
    Note:you can also achieve this by creating variable offsets.Check the following link
    http://help.sap.com/saphelp_bw33/helpdata/en/3f/89533e5ff4d064e10000000a114084/content.htm
    Regards,
    Ranganath

  • How to get the values and attributes of Longlived processes by using ProcessID.

    Hi Experts,
    For  every process we creates, LC ES2 creates processID.
    we know that if you creates  a long lived process, all  the  values which are in proces will be stored some where  in DB.
    Here my requirement is by using  processID I need to get all/some values/variables stored in database.
    I am not able to get values using processID. Here I don't have clue on  how to get the values.
    Please tell me  how to get the same by using  Process Management. Link/guide would be helpful
    Thanks
    Praveen.

    Searchable means you can put a filter criteria on it (e.g. where amount > 50000)
    Visible means you can add have this column returned as an output (and therefore you can add it as column in listview and see it in Task Details).
    These two attributes were provided so that queries could be done against the process variables, but the exact contents of the variables are not allowed to be seen.

Maybe you are looking for

  • CX_SY_CONVERSION_NO_DATE_TIME:XSLT exception when calling Web Service

    I have created a Web Service on our Sandbox SAP server and am attempting to call it from our DEV SAP Server.  The returning structure contains date fields that sometimes are null. A null date field in SAP is equal to 00000000. When I call the Web Ser

  • Question on IDM11g installer and OID 10g DAS self service tool

    Hi, I have setup the Oracle IDM 11g on windows box(XP). I have explored the same and found that, IDM11g has lot of differences when compared to IDM10g. One of the change that I have observed is the OID DAS Self service tool(Web GUI based). In OID 10g

  • #NA in preview mode, but looks fine in workspace?

    I recently upgraded to the newest fix pack and I'm not able to see data show up on the preview anymore.  I may have changed something in between and the upgrade issue may be a coincidence... The formula's I'm using are: =VLOOKUP((CONCATENATE($A$5,$B$

  • Any shortcuts to accessing ProRes 4:2:2 ...?

    hi folks, I have an older version of FCP (5.1.4) and the current version of FCE, neither of which seems to support Apple ProRes 422. My workflow these days requires use of PR422 as final output for edited video. I'm not interested in FCP X, I can't a

  • Respond ASAP

    I am incredibly disappointed that Adobe would issue a product (PSE 8) that crashes almost immediately after installation.  I am PC on Windows Vista.  I would like to have a good photo editing tool and I thought this would be a good starting product.