What is a single term property in a node?

what is a single term property in a node?

Hi Raffi,
The term is Singleton. Check below links for your answer -
Single Tone Node in Webdynpro for Java?
http://wiki.sdn.sap.com/wiki/display/WDJava/CardinalityProperty,SingletonProperty,Selection+Cardinality
http://help.sap.com/saphelp_rc10/helpdata/en/7a/787e40417c6d1de10000000a1550b0/content.htm
hope it helps.
Regards,
Sen

Similar Messages

  • Compares single value content property to single value property

    Hi,
    I am using WLPS 3.2 with weblogic apps 5.1.
    This is when regarding content selection rules. When u go into the rules
    management and try to create a content selection rule : Then display content
    based on:
    we see 3 templates to choose from. Now if u look at template 2 it says
    :Value with Property Example
    This template compares a single-value content property to another
    single-value property. content.investor_type equals user.investor_type
    It says this template compares "single value" content property to another
    "single-value property". What i did was set up a rule that comared a single
    value content property to a "multiple" value user property (i.e. the user
    property was allowed to have multiple values-check boxes). The rule was set
    up fine. When i ran the rule with the <pz:contentselector> tag it dint
    return the desired content object. Now if i set up the same rule to match a
    single valued user property then it worked!!! Could you please let me know
    why this happens and is this a limitation of the tool. What is an
    alternative solution for me to compare a content property to a multi valued
    user property.
    Thanks,
    --Kapil

    Hi Kapil,
    You're correct on all counts. This workaround does move the content
    selection into the JSP, rather than using a rule -- which is not ideal.
    Also, your suggestion to build one query string to cut down on the number of
    database calls is a good improvement.
    - Ginny
    "kapil khanna" <[email protected]> wrote in message
    news:[email protected]...
    Hi Ginny,
    I really appreciate ur response. This work around was not knew to me. Iwas
    expecting a better work around from some reasons:
    i) The definition of this rule is hard coded and not administered thu the
    tools interface.
    ii) There are multiple database calls for each property value retrieved
    every time the <cm:select> tag is executed which is very expensive.
    iii) The query that i build for the <cm:select> or <pz:contentQuery> tag
    doesnt support the in statement.
    My work around was something like this:
    Build the query string first which would look something like this
    CONTENT.interest like '*Science*' || CONTENT.interest like '*Astronomy*'
    Then run the <cm:select> or <pz:contentQuery> tag so that i have only one
    database call.
    Considering the user has 2 interests chosen Science and astronomy. I usethe
    like so that CONTENT can be tagged to accomodate multiple values which is
    very possible in a real life situation. For eg: <meta name="interest"
    content="Science,Astronomy" >
    Is this a better work around or am i totally out of line.
    Thanks for your help and time
    --Kapil
    "Ginny Peterson" <[email protected]> wrote in message
    news:[email protected]...
    Hi Kapil,
    Yes -- this is a limitation with the phrase templates. The "Value with
    Property" phrase template compares a single-value content property to
    another single-value property. What's key here (and often overlooked)
    is
    that fact that the property you're using must be a single-valueproperty.
    >>
    There is a workaround using the <cm:select> tag rather than the <pz>tags.
    Basically, it involves getting a list of the values for yourmultiple-value
    property, and iterating over that list, selecting the content for each
    of
    the items in the list.
    Here's some sample code. Assume you have a text, multiple, unrestricted
    property called "MyInterests" in property set "TestPropertySet"; a user
    might have values like this: "Science, Astronomy, Cooking".
    <%@ page extends="com.beasys.commerce.axiom.p13n.jsp.P13NJspBase"%>
    <%@ page import="com.beasys.commerce.content.ContentHelper"%>
    <%@ taglib uri="es.tld" prefix="es" %>
    <%@ taglib uri="cm.tld" prefix="cm" %>
    <%@ taglib uri="um.tld" prefix="um" %>
    <!-- Get the user and group names -->
    <%
    String userName = (String)getSessionValue(SERVICEMANAGER_USER,request);
    String groupName = (String)getSessionValue(SERVICEMANAGER_SUCCESSOR,
    request);
    %>
    <!-- Get the profile for the user -->
    <%
    // Check to see if logged in, then getProfile for the user with groupas
    successor
    if(getLoggedIn(request))
    %>
    <um:getProfile scope="session" profileKey="<%= userName %>"
    successorKey="<%= groupName %>" />
    <%
    else // use the default profile for the group
    %>
    <um:getProfile scope="session" profileKey="<%= groupName %>"
    groupOnly="true" />
    <%
    %>
    <!-- Get the property value for the user -->
    <um:getProperty id="areas" propertySet="TestPropertySet"
    propertyName="MyInterests" />
    <br><br>Interests for <%= userName %>:
    <%
    // Multi-valued properties are retrieved as an ArrayList, so cast to a
    Collection so we can iterate through
    Collection c = (Collection)areas;
    String queryString;
    Iterator i = c.iterator();
    while(i.hasNext())
    String nextVal = (String)i.next();
    queryString = "CONTENT.interests == '" + nextVal + "'";
    %>
    <cm:select contentHome="<%= ContentHelper.DEF_CONTENT_MANAGER_HOME %>"
    query="<%= queryString %>" id="docList"/>
    <es:forEachInArray id="aDoc" array="<%= docList %>"
    type="com.beasys.commerce.axiom.content.Content">
    <li>Matched document message:
    <cm:printProperty id="aDoc" name="message" encode="html"/>
    </es:forEachInArray>
    <%
    %>
    FYI, this limitation is not present in WLCS 3.5; it's much more flexiblein
    terms of using mutli-valued properties (and multi-valued meta tags) in
    rules.
    I hope this helps!
    - Ginny
    "kapil khanna" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    I am using WLPS 3.2 with weblogic apps 5.1.
    This is when regarding content selection rules. When u go into the
    rules
    management and try to create a content selection rule : Then displaycontent
    based on:
    we see 3 templates to choose from. Now if u look at template 2 it says
    :Value with Property Example
    This template compares a single-value content property to
    another
    single-value property. content.investor_type equalsuser.investor_type
    It says this template compares "single value" content property toanother
    "single-value property". What i did was set up a rule that comared asingle
    value content property to a "multiple" value user property (i.e. the
    user
    property was allowed to have multiple values-check boxes). The rule
    was
    set
    up fine. When i ran the rule with the <pz:contentselector> tag it dint
    return the desired content object. Now if i set up the same rule to
    match
    a
    single valued user property then it worked!!! Could you please let me
    know
    why this happens and is this a limitation of the tool. What is an
    alternative solution for me to compare a content property to a multivalued
    user property.
    Thanks,
    --Kapil

  • What is a unavailable term for managed metadata

    i my code, i use NavigationTermSet.GetTaxonomyTermSet(session).GetTermsWithCustomProperty("isTeamSiteRoot","yes",StringMatchOption.ExactMatch,1,true) to find a term with custom property.
    it return no result. if i set the last parameter to false, that is the trimUnavailable parameter, the term get returned.
    my question is what is a Unavailable term mean? i did not see the setting on a term management interface. i would review the code in with .net reflector if i have the time

    Hi GuYuming,
    It depends upon the IsAvailableFortagging property of Term Class (http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.taxonomy.term.isavailablefortagging(v=office.14).aspx)
    and this property is used for setting whether the term can be tagged in the UI.
    Msdn documentation on this has an explanation, see the remarks section-
    http://msdn.microsoft.com/en-us/library/ee569758(v=office.14).aspx
    HTH!
    MCITP: SharePoint 2010 Administrator
    MCTS - MOSS 2007 Configuring, .NET 2.0
    | SharePoint Architect | Evangelist |
    http://www.sharepointdeveloper.in/
    http://ramakrishnaraja.blogspot.com/

  • What is use of content-property in itemdescriptor

    Hi
    what is use of content-property in item descriptor? In which scenario it is used? Found below from ATG Docs, but still not clear.
    http://docs.oracle.com/cd/E24152_01/Platform.10-1/ATGRepositoryGuide/html/s1403contentattributesandproperties01.html
    Thanks In Advance.
    Gopi

    content-property is used in case of content repositories which has content repository items. Content repository is used just like regular SQL repositories. A content repository item can be thought as consisting of some content and its metadata. The content-property attribute is used in the content item-descriptor and is usually the name of the property that holds the content itself.
    E.g. "media" as you mentioned. Here the metadata might include properties like name, description, type, date of creation, keywords etc. while the content would include the binary-data of the media itself (in case of internal media type). So the declaration content-property="data" in the media item descriptor signifies that property called "data" in the media item will be holding the actual content. You can find more details about it and content repositories in the ATG Repository documentation.
    Edited by: Nitin Khare on Aug 16, 2012 6:59 AM

  • What are the new terms for renewal of payment for converting pdf to word?

    What are the new terms for renewal of payment for converting pdf to word?

    Hi joannep59572680,
    The terms haven't changed recently. ExportPDF subscriptions renew annually, unless your turn off Auto Renewal before your renewal date.
    Do you have a specific concern about your subscription?
    Best,
    Sara

  • What field represents Payment terms in order tables

    Hello BW-SD Experts
    I am implementing a project that requires a report on payment terms of an order. This is a BW project but however, it is an SD report.
    I need to know what field represents payment terms in SD tables - header or item table?
    Which field also represents complete delivery indicator.
    Thank you.

    hello
    thanks for your answer, its helpful but those fields you mentioned are not in 2LIS_11_VAHDR and 2LIS_11_VAITM where the SD consultant says I can find the payment terms and complete delivery indicator.
    Can you tell me if they are there? or the datasource with the fields you mentioned.
    Thanks

  • What is a "Single FAT Partition"?

    What is a "Single FAT Partition"?

    This is your third post, in the first one I strongly suggested that you read the Boot Camp directions, it appears that you have not.
    So I repeat my advice, read the directions before you bork your Mac.

  • Content Management - What exactly is a primary property

    Dear all,
    Can anybody tells me what exactly is a primary property in portal content
    management?
    Regards,
    Orion

    Orion,
    The content model does not distinguish between content and meta-content as many
    cm systems do - a node just contains properties. The primary property is there
    to distinguish what on the node is the actual content. More specifically, if you
    use ShowBinaryServlet or GetPropertyTag, they display the property that is marked
    as the primary property.
    Regards,
    James
    "Orion Yiu" <[email protected]> wrote:
    Dear all,
    Can anybody tells me what exactly is a primary property in portal content
    management?
    Regards,
    Orion

  • What is a single ton class?

    What is a single ton class and in which type applications or context this class is going to be used?

    Simply Singleton
    Use your singletons wisely
    When is a Singleton not a Singleton?
    Java Glossary : singleton
    How can I implement the Singleton pattern in the Java programming language?
    Singleton Pattern
    Java Singleton
    Using the Singleton Pattern
    Double-checked locking and the Singleton pattern

  • What is a JavaBeans bound property ?

    What is a JavaBeans bound property ?
    I don't understand this concept.
    It seems it have to do with the Look and Feel, to bound the model to the component or something like that?

    Let me change the question:
    SwingConstants.CENTER works. Why?
    Doesn't "import javax.swing.*" include SwingConstants?importing in Java is not like importing in C. Import javax.swing does not include the contents of the classes in those packages to the contents of the current class. It signals that the ClassLoader should look in that package to find a specific class(es) that will be used in this class. So by doing
    import javax.swing.SwingConstants;
    or any other import, you are not gaining the ability to use that class's variables (or constants) or members as if they were part of your class. You are just telling the runtime environment where to look for the class.
    A quick look through the Java Tutorial should do some good in understanding this. Or an explanation from someone smarter than I.

  • RM-30410: Warning: Single Record property ignored for non-control block

    Hi gurus,
    I have one block, as oracle default behavious is that when any user enters record and during that if he/she hits down arrow key then it gets to next new record, i want to prevent this behaviour.
    In other words i want that user should not enter second record and if he or she needs to enter second record after saving first then user can only do if he navigate to the form second time.
    In property pallete i put yes to single record but when i compile the form it gives me following warning
    FRM-30410: Warning: Single Record property ignored for non-control block Employees
    Created form file C:\my_forms\employees.fmxPlease seeks help that how can i sort it out.
    Thank you
    Hina

    if he/she hits down arrow key then it gets to next new record, i want to prevent this behaviour. Change the block's key-down and/or key-nxtrec trigger to
    begin
      null;
    end;(or give the user a message "Key not allowed here").

  • The business requires the ability for client to provide a remittance file detailing what invoices the single payment is to be applied to.

    The business requires the ability for client to provide a remittance file detailing what invoices the single payment is to be applied to.
    hi the requirement is we have 10000 sales orders for this sales orders only one invoice is created when customer pays the money to  this invoice(multiple line items in this single invoice) the remittance file should get  that what invoices that single payment is applied to

    Um, well looky here :)
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/cf6abdeb-a517-424c-bbef-050bee22a658/remoteapp-error-when-launching-dashboard-from-client-pc?forum=winserveressentials
    Grey
    PS: Has nothing to do with the price of eggs, but interesting ?
    http://www.windowsnetworking.com/articles-tutorials/netgeneral/host-remoteapps-windows-pcs-part1.html

  • Can I begin service with $100.00 card good for one year and what are the usage terms?

    Can I begin prepaid service with a $100.00 card good for one year and if so what are the usage terms?

    Yes; phone is for Verizon PREPAID plans. Sri I did not state that correctly. I see that there are prepaid plans with monthly usage etc. I see some offers on line for a $100.00 card that's good for one year.  Trying to determine if that is available from a Verizon store to begin a new plan. Checked with two different Verizon stores and got two opposite answers and neither was sure of the terms. Simply trying to get a low cost backup. Thank you for responding.

  • What are the licensing terms for Creative Cloud Market Assets (e.g., what does Royalty Free mean? Can I use it in items for sales)?

    What are the licensing terms for Creative Cloud Market Assets (e.g., what does Royalty Free mean? Can I use it in items for sales)?

    Found it Creative Commons — Attribution-NonCommercial-ShareAlike 3.0 Unported — CC BY-NC-SA 3.0

  • More than one deliveries in single tpsdls idoc as different nodes

    hi,
    can anyone help me out. i have to send multiple deliveries in single TPSDLS idoc as different nodes. is it possible? if yes then can anyone tell me how to do this?
    thanx.
    from
    lalit atit

    Dear Anup,
    Please try below steps
    1)Goto VL02N to change the delivery, you already created.
    Or you can do the following steps while you are creating a delivery also.
    2)Go to "pack" icon.
    3)In the upper section, enter the "packing material"
    4)In the lower section, change the "partial quantity" to 10 for material A.
    5)Select both the lines of upper section and lower section and click the green ok. It generates a shipping unit/handling unit number.
    6)Now, select both lines of upper & lower section & click the button "per part. qty" (New HU per part qty of material)
    Check: click "General Overview" icon to see whether it packed 10 pieces of material in 5 cartons.
    You can repeat the same process for Material A, B, C, D  and E.
    Hope this helps
    Thanks
    Murtuza

Maybe you are looking for

  • Reason for my mid 2009 MBP coming with a 60Watt Power Adapter?

          It was the year that the 60W charger came with the 15" MBP. My dog chewed it up, and I soldered it back together (which worked for some time) but now I have gone out and purchased another (An 85 watt) because my old one completely crapped out.

  • My sound won't work, how do i fix it if I've already tried the audio MIDI setup?

    So i plugged in a stereo system and when i unplugged it the sound won't work anymore unless it's plugged in? How do i fix it?

  • Wow, is there any way to report this kind of BS?

    http://itunes.apple.com/nz/app/night-vision-007/id402721327?mt=8 By all accounts a crappy app with crappy reviews and then the vendor makes "minor update" - AKA "hiding the old version reviews" and then suddenly gets loads of great reviews, all on th

  • ORDERS05, posting PO and raising Order in CRM

    Hi, I testing an ORDERS05 IDOC via WE19. I can see that there's a Distribution Order being created each time in CRM (viewable by CRMD_ORDERS), but there seems to be a number of messages, of which some say that the Distribution Center and Sales Org ar

  • How to compile forms in a UNIX CLI?

    Can anybody tell me how to compila a form in UNIX with Oracle 6 or 6i? I know I have to use the 'f60gen' or 'f60genm' commands, but I don't know witch arguments I have to use. Thanks in advance, Pablo.